diff options
author | Tomohiro Kusumi <[email protected]> | 2019-04-20 04:03:32 +0900 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2019-04-19 12:03:32 -0700 |
commit | a35c12073ccc1ae22f816c1128363cb337bb3b06 (patch) | |
tree | 8b57d7197c61dbf77f0a220fff43b180c1a8e85d /module/zfs | |
parent | 17cbc2e62b7d561d59ece976f17fe422516587a8 (diff) |
Fix incorrect "[UNUSED]" comments
These aren't unused.
`flag` in zfs_create() also isn't to indicate large file.
Reviewed-by: Richard Elling <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: George Melikov <[email protected]>
Reviewed-by: Richard Laager <[email protected]>
Signed-off-by: Tomohiro Kusumi <[email protected]>
Closes #8635
Diffstat (limited to 'module/zfs')
-rw-r--r-- | module/zfs/zfs_vnops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/zfs/zfs_vnops.c b/module/zfs/zfs_vnops.c index 0de75a891..18dfc5a68 100644 --- a/module/zfs/zfs_vnops.c +++ b/module/zfs/zfs_vnops.c @@ -1291,7 +1291,7 @@ zfs_lookup(struct inode *dip, char *nm, struct inode **ipp, int flags, * excl - flag indicating exclusive or non-exclusive mode. * mode - mode to open file with. * cr - credentials of caller. - * flag - large file flag [UNUSED]. + * flag - file flag. * vsecp - ACL to be set * * OUT: ipp - inode of created or trunc'd entry. @@ -4916,7 +4916,7 @@ convoff(struct inode *ip, flock64_t *lckdat, int whence, offset_t offset) * bfp - section of file to free/alloc. * flag - current file open mode flags. * offset - current file offset. - * cr - credentials of caller [UNUSED]. + * cr - credentials of caller. * * RETURN: 0 on success, error code on failure. * |