]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit - sys/vm/vm_fault.c
vfs: remove the thread argument from vget
authorMateusz Guzik <mjg@FreeBSD.org>
Sun, 16 Aug 2020 17:18:54 +0000 (17:18 +0000)
committerMateusz Guzik <mjg@FreeBSD.org>
Sun, 16 Aug 2020 17:18:54 +0000 (17:18 +0000)
commita92a971bbb94ad5b44e2a5bbdc669ad3ae762c8d
tree2b25fe1e41aaf0791b26dd5a4b8ad0cad897fe6e
parentd59f3890c36601f4f62bb4a0b7db977e42339588
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