aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs
diff options
context:
space:
mode:
authorTrond Myklebust <trond.myklebust@hammerspace.com>2021-11-04 18:03:26 -0400
committerTrond Myklebust <trond.myklebust@hammerspace.com>2021-11-05 14:54:38 -0400
commitd4a95a7e5a4d3b68b26f70668cf77324a11b5718 (patch)
tree12090884de9446c035b4b6aa7c05e8bc23c7f07c /fs/nfs
parentNFSv4.2: alloc_file_pseudo() takes an open flag, not an f_mode (diff)
downloadlinux-dev-d4a95a7e5a4d3b68b26f70668cf77324a11b5718.tar.xz
linux-dev-d4a95a7e5a4d3b68b26f70668cf77324a11b5718.zip
NFS: Always initialise fattr->label in nfs_fattr_alloc()
We're about to add a check in nfs_free_fattr() for whether or not the label is non-zero. Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Diffstat (limited to 'fs/nfs')
-rw-r--r--fs/nfs/inode.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c
index b4cb75c45f90..0b5b1e44b2c4 100644
--- a/fs/nfs/inode.c
+++ b/fs/nfs/inode.c
@@ -1598,8 +1598,10 @@ struct nfs_fattr *nfs_alloc_fattr(void)
struct nfs_fattr *fattr;
fattr = kmalloc(sizeof(*fattr), GFP_NOFS);
- if (fattr != NULL)
+ if (fattr != NULL) {
nfs_fattr_init(fattr);
+ fattr->label = NULL;
+ }
return fattr;
}
EXPORT_SYMBOL_GPL(nfs_alloc_fattr);