diff options
author | Mateusz Guzik <mjg@FreeBSD.org> | 2020-08-16 17:18:54 +0000 |
---|---|---|
committer | Mateusz Guzik <mjg@FreeBSD.org> | 2020-08-16 17:18:54 +0000 |
commit | a92a971bbb94ad5b44e2a5bbdc669ad3ae762c8d (patch) | |
tree | 2b25fe1e41aaf0791b26dd5a4b8ad0cad897fe6e /sys/compat/linuxkpi/common | |
parent | d59f3890c36601f4f62bb4a0b7db977e42339588 (diff) |
Notes
Diffstat (limited to 'sys/compat/linuxkpi/common')
-rw-r--r-- | sys/compat/linuxkpi/common/include/linux/fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/compat/linuxkpi/common/include/linux/fs.h b/sys/compat/linuxkpi/common/include/linux/fs.h index 7f5993bd7754f..f400fc7cbfda7 100644 --- a/sys/compat/linuxkpi/common/include/linux/fs.h +++ b/sys/compat/linuxkpi/common/include/linux/fs.h @@ -260,7 +260,7 @@ igrab(struct inode *inode) { int error; - error = vget(inode, 0, curthread); + error = vget(inode, 0); if (error) return (NULL); |