Skip to content

Commit

Permalink
orangefs: remove redundant pointer orangefs_inode
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Colin Ian King authored and Mike Marshall committed Aug 14, 2018
1 parent 8bf782f commit e1b4376
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions fs/orangefs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,6 @@ int orangefs_getattr(const struct path *path, struct kstat *stat,
{
int ret = -ENOENT;
struct inode *inode = path->dentry->d_inode;
struct orangefs_inode_s *orangefs_inode = NULL;

gossip_debug(GOSSIP_INODE_DEBUG,
"orangefs_getattr: called on %pd\n",
Expand All @@ -262,8 +261,6 @@ int orangefs_getattr(const struct path *path, struct kstat *stat,
generic_fillattr(inode, stat);

/* override block size reported to stat */
orangefs_inode = ORANGEFS_I(inode);

if (request_mask & STATX_SIZE)
stat->result_mask = STATX_BASIC_STATS;
else
Expand Down

0 comments on commit e1b4376

Please sign in to comment.