Page MenuHomeFreeBSD

vfs: remove flags argument from VOP_UNLOCK
ClosedPublic

Authored by mjg on Aug 27 2019, 5:55 AM.
Tags
None
Referenced Files
Unknown Object (File)
Feb 23 2024, 12:08 PM
Unknown Object (File)
Feb 19 2024, 9:22 AM
Unknown Object (File)
Jan 17 2024, 10:26 AM
Unknown Object (File)
Dec 23 2023, 8:44 PM
Unknown Object (File)
Dec 20 2023, 7:10 AM
Unknown Object (File)
Dec 3 2023, 1:23 PM
Unknown Object (File)
Oct 20 2023, 1:33 PM
Unknown Object (File)
Oct 11 2023, 1:28 AM
Subscribers

Details

Summary

Below is the only material part of the change, the rest was mostly autogenerated with coccinelle and can be found here:

https://people.freebsd.org/~mjg/vop-unlock-flags-removal.diff

Test Plan

universe
ports exprun

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped
Build Status
Buildable 26124

Event Timeline

kib added inline comments.
sys/kern/vfs_subr.c
4888

Remove this empty _post method ?

This revision is now accepted and ready to land.Aug 27 2019, 3:53 PM

As expected several ports failed, unfortunately some of them have rather nasty code which will require a lot of care and testing.

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=240156

most notably open-vm-tools has copy-pasted and modified old variant of null_unlock. Thus removal of the flags argument will wait a little bit until I get around to sorting this out.

Can you post the coccinelle script used somewhere? Thanks.