]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit - sys/kern/uipc_mqueue.c
vfs: remove the thread argument from vget
authormjg <mjg@FreeBSD.org>
Sun, 16 Aug 2020 17:18:54 +0000 (17:18 +0000)
committermjg <mjg@FreeBSD.org>
Sun, 16 Aug 2020 17:18:54 +0000 (17:18 +0000)
commit0c7391ed923d3907ca1502e633f0fdbc05e5fcdf
tree2b25fe1e41aaf0791b26dd5a4b8ad0cad897fe6e
parent26268c7c3156d0f0da0f461e5b8c49013033b1ca
vfs: remove the thread argument from vget

It was already asserted to be curthread.

Semantic patch:

@@

expression arg1, arg2, arg3;

@@

- vget(arg1, arg2, arg3)
+ vget(arg1, arg2)
25 files changed:
sys/compat/linuxkpi/common/include/linux/fs.h
sys/fs/autofs/autofs_vnops.c
sys/fs/ext2fs/ext2_vfsops.c
sys/fs/fdescfs/fdesc_vfsops.c
sys/fs/fdescfs/fdesc_vnops.c
sys/fs/fuse/fuse_vfsops.c
sys/fs/msdosfs/msdosfs_vfsops.c
sys/fs/nfsclient/nfs_clvfsops.c
sys/fs/nullfs/null_vfsops.c
sys/fs/pseudofs/pseudofs_vncache.c
sys/fs/smbfs/smbfs_node.c
sys/fs/smbfs/smbfs_vfsops.c
sys/fs/tmpfs/tmpfs_subr.c
sys/fs/tmpfs/tmpfs_vfsops.c
sys/kern/uipc_mqueue.c
sys/kern/vfs_default.c
sys/kern/vfs_subr.c
sys/sys/vnode.h
sys/ufs/ffs/ffs_alloc.c
sys/ufs/ffs/ffs_softdep.c
sys/ufs/ffs/ffs_vfsops.c
sys/ufs/ufs/ufs_quota.c
sys/vm/vm_fault.c
sys/vm/vm_mmap.c
sys/vm/vm_pageout.c