diff options
author | Colin Ian King <colin.king@canonical.com> | 2018-07-17 10:42:53 -0400 |
---|---|---|
committer | Mike Marshall <hubcap@omnibond.com> | 2018-08-14 12:07:14 -0400 |
commit | e1b437691a624a7e767bbb140c730d2779797f53 (patch) | |
tree | 4fb6ab5d907aca79a5f8185742a07dfca062c6cc | |
parent | 8bf782f64737be055e6c1fad7a4c7cae7aae2d99 (diff) |
orangefs: remove redundant pointer orangefs_inode
Pointer orangefs_inode is being assigned but is never used hence it is
redundant and can be removed.
Cleans up clang warning:
warning: variable 'orangefs_inode' set but not used [-Wunused-but-set-variable]
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
-rw-r--r-- | fs/orangefs/inode.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/orangefs/inode.c b/fs/orangefs/inode.c index 6e4d2af8f5bc..31932879b716 100644 --- a/fs/orangefs/inode.c +++ b/fs/orangefs/inode.c | |||
@@ -251,7 +251,6 @@ int orangefs_getattr(const struct path *path, struct kstat *stat, | |||
251 | { | 251 | { |
252 | int ret = -ENOENT; | 252 | int ret = -ENOENT; |
253 | struct inode *inode = path->dentry->d_inode; | 253 | struct inode *inode = path->dentry->d_inode; |
254 | struct orangefs_inode_s *orangefs_inode = NULL; | ||
255 | 254 | ||
256 | gossip_debug(GOSSIP_INODE_DEBUG, | 255 | gossip_debug(GOSSIP_INODE_DEBUG, |
257 | "orangefs_getattr: called on %pd\n", | 256 | "orangefs_getattr: called on %pd\n", |
@@ -262,8 +261,6 @@ int orangefs_getattr(const struct path *path, struct kstat *stat, | |||
262 | generic_fillattr(inode, stat); | 261 | generic_fillattr(inode, stat); |
263 | 262 | ||
264 | /* override block size reported to stat */ | 263 | /* override block size reported to stat */ |
265 | orangefs_inode = ORANGEFS_I(inode); | ||
266 | |||
267 | if (request_mask & STATX_SIZE) | 264 | if (request_mask & STATX_SIZE) |
268 | stat->result_mask = STATX_BASIC_STATS; | 265 | stat->result_mask = STATX_BASIC_STATS; |
269 | else | 266 | else |