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)
Mon, May 11, 1:16 PM
Unknown Object (File)
Mon, May 11, 5:44 AM
Unknown Object (File)
Sun, May 10, 11:39 PM
Unknown Object (File)
Sun, May 10, 12:21 PM
Unknown Object (File)
Sun, May 10, 12:21 PM
Unknown Object (File)
Wed, May 6, 4:14 AM
Unknown Object (File)
Wed, Apr 29, 1:50 AM
Unknown Object (File)
Tue, Apr 28, 11:52 AM
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.