diff options
author | Bob Peterson <rpeterso@redhat.com> | 2015-12-18 11:44:49 -0600 |
---|---|---|
committer | Bob Peterson <rpeterso@redhat.com> | 2016-03-15 10:46:50 -0400 |
commit | 73b462d2808d7cbca4d7886cf6aaed850640e6cd (patch) | |
tree | 922e552a06158c985e03ab2c197808e9499d9028 /fs/gfs2/inode.c | |
parent | ff34245d524a898eee6e013eb1ec165095277148 (diff) | |
download | blackbird-op-linux-73b462d2808d7cbca4d7886cf6aaed850640e6cd.tar.gz blackbird-op-linux-73b462d2808d7cbca4d7886cf6aaed850640e6cd.zip |
GFS2: Eliminate parameter non_block on gfs2_inode_lookup
Now that we're not filtering out I_FREEING inodes from our lookups
anymore, we can eliminate the non_block parameter from the lookup
function.
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Acked-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/inode.c')
-rw-r--r-- | fs/gfs2/inode.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c index 689ddb09e159..fa0c781c2522 100644 --- a/fs/gfs2/inode.c +++ b/fs/gfs2/inode.c @@ -80,13 +80,12 @@ static void gfs2_set_iop(struct inode *inode) * @sb: The super block * @no_addr: The inode number * @type: The type of the inode - * non_block: Can we block on inodes that are being freed? * * Returns: A VFS inode, or an error */ struct inode *gfs2_inode_lookup(struct super_block *sb, unsigned int type, - u64 no_addr, u64 no_formal_ino, int non_block) + u64 no_addr, u64 no_formal_ino) { struct inode *inode; struct gfs2_inode *ip; @@ -170,7 +169,7 @@ struct inode *gfs2_lookup_by_inum(struct gfs2_sbd *sdp, u64 no_addr, if (error) goto fail; - inode = gfs2_inode_lookup(sb, DT_UNKNOWN, no_addr, 0, 1); + inode = gfs2_inode_lookup(sb, DT_UNKNOWN, no_addr, 0); if (IS_ERR(inode)) goto fail; |