diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2015-02-10 11:03:22 +0300 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@primarydata.com> | 2015-02-10 08:41:23 -0500 |
commit | 4c21462acc530bb81c6ae30e5bbd0b06f8c50626 (patch) | |
tree | ec290cf46a7e60f50100068d59fae2563f551f2a /fs/nfs | |
parent | 480486b4733d5bc7d9fe765b34bc6c2b72d5c12e (diff) | |
download | op-kernel-dev-4c21462acc530bb81c6ae30e5bbd0b06f8c50626.zip op-kernel-dev-4c21462acc530bb81c6ae30e5bbd0b06f8c50626.tar.gz |
pnfs: delete an unintended goto
There was an extra goto here where it shouldn't be, because of a merge
error.
Fixes: e2c63e091e29 ('Merge branch 'flexfiles'')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Diffstat (limited to 'fs/nfs')
-rw-r--r-- | fs/nfs/pnfs.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/nfs/pnfs.c b/fs/nfs/pnfs.c index 107b321..4f802b0 100644 --- a/fs/nfs/pnfs.c +++ b/fs/nfs/pnfs.c @@ -1078,7 +1078,6 @@ bool pnfs_roc(struct inode *ino) goto out_noroc; } - goto out_noroc; pnfs_clear_retry_layoutget(lo); list_for_each_entry_safe(lseg, tmp, &lo->plh_segs, pls_list) if (test_bit(NFS_LSEG_ROC, &lseg->pls_flags)) { |