Page MenuHomeFreeBSD

VFS: add flags arg to VOP_STAT() and VOP_GETATTR()
AbandonedPublic

Authored by kib on Sep 20 2024, 6:28 AM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, May 17, 10:42 AM
Unknown Object (File)
Sun, May 17, 7:51 AM
Unknown Object (File)
Thu, May 14, 3:52 AM
Unknown Object (File)
Wed, May 13, 10:20 PM
Unknown Object (File)
Wed, May 13, 10:12 PM
Unknown Object (File)
Mar 19 2026, 12:09 PM
Unknown Object (File)
Mar 2 2026, 2:57 PM
Unknown Object (File)
Feb 27 2026, 6:45 PM

Details

Reviewers
emaste
markj
olce
Group Reviewers
cam

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

kib requested review of this revision.Sep 20 2024, 6:28 AM

Also add flags to VOP_ATTRIB.9

Also add flags to VOP_ATTRIB.9

Done is separate commit.

/home/emaste/src/freebsd-git/wipbsd/sys/security/audit/audit_arg.c:874:53: error: too few arguments to function call, expected 4, have 3
  874 |         error = VOP_GETATTR(vp, &vattr, curthread->td_ucred);
      |                 ~~~~~~~~~~~                                ^
/home/emaste/src/freebsd-git/wipbsd/sys/security/audit/audit_arg.c:874:53: error: too few arguments to function call, expected 4, have 3
  874 |         error = VOP_GETATTR(vp, &vattr, curthread->td_ucred);
      |                 ~~~~~~~~~~~                                ^

Fixed, the whole patch series is available at https://kib.kiev.ua/git/gitweb.cgi?p=deviant3.git;a=shortlog;h=refs/heads/noautomount

Also sys/dev/xen/blkback/blkback.c. My wip build was successful patching audit and xen; I didn't look for other VOP_GETATTR cases.

This revision is now accepted and ready to land.Sep 20 2024, 12:54 PM

This requires a __FreeBSD_version bump, of course, to accommodate out-of-tree zfs.ko.