Page MenuHomeFreeBSD

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

Authored by kib on Fri, Sep 20, 6:28 AM.

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.Fri, Sep 20, 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.Fri, Sep 20, 12:54 PM