Page MenuHomeFreeBSD

vn_vmap_seekhole(): align running offset to the block boundary.
ClosedPublic

Authored by kib on Apr 3 2019, 2:08 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Mar 14, 9:27 PM
Unknown Object (File)
Sat, Mar 14, 6:30 AM
Unknown Object (File)
Sat, Mar 14, 6:25 AM
Unknown Object (File)
Sat, Mar 14, 1:47 AM
Unknown Object (File)
Fri, Mar 13, 2:32 AM
Unknown Object (File)
Sat, Mar 7, 6:54 PM
Unknown Object (File)
Sat, Mar 7, 12:32 PM
Unknown Object (File)
Jan 20 2026, 4:14 PM
Subscribers

Details

Summary

Otherwise we might miss the last iteration where EOF appears below unaligned noff.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

sys/kern/vfs_vnops.c
2171 ↗(On Diff #55776)

Shouldn't it be noff += noff % bsize == 0 ? bsize : bsize - noff % bsize? Or even noff += bsize - noff % bsize.

Fix invalid calculation of realignment.

This revision is now accepted and ready to land.Apr 4 2019, 11:06 PM
This revision was automatically updated to reflect the committed changes.