Page MenuHomeFreeBSD

copy_file_range: Call vn_rdwr() even for zero-length files
ClosedPublic

Authored by markj on Jan 20 2024, 5:29 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Apr 1, 10:58 AM
Unknown Object (File)
Mar 6 2025, 11:59 AM
Unknown Object (File)
Feb 28 2025, 7:59 PM
Unknown Object (File)
Feb 28 2025, 6:45 PM
Unknown Object (File)
Feb 28 2025, 5:56 PM
Unknown Object (File)
Feb 28 2025, 4:24 PM
Unknown Object (File)
Feb 28 2025, 12:22 PM
Unknown Object (File)
Feb 28 2025, 12:17 PM
Subscribers

Details

Summary

This ensures that we invoke VOP_READ on the input file even if it's
empty, which in turn helps ensure that filesystems update the atime of
the file.

PR: 274615

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped
Build Status
Buildable 55512
Build 52401: arc lint + arc unit

Event Timeline

markj requested review of this revision.Jan 20 2024, 5:29 PM
This revision is now accepted and ready to land.Jan 20 2024, 6:45 PM

Needs rebasing but passes the additional test from D44609.

sys/kern/vfs_vnops.c
3573

Instead of adding a flag, you could simply switch from while to do-while.

sys/kern/vfs_vnops.c
3573

It's not that simple - we could have interrupted != 0 before the first iteration.

This revision was automatically updated to reflect the committed changes.