diff options
author | YueHaibing <yuehaibing@huawei.com> | 2019-10-25 21:41:19 +0800 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@hammerspace.com> | 2019-11-18 10:37:58 +0100 |
commit | 9c91fa36b6179859aca6317b23933ffbc4f76940 (patch) | |
tree | ee0cac20bade1167559d0e9ec685dadcd16c0f0b /fs/nfs | |
parent | d49dd11753f4f5dde5d67c4e1d3edf65eb35c381 (diff) | |
download | linux-9c91fa36b6179859aca6317b23933ffbc4f76940.tar.gz linux-9c91fa36b6179859aca6317b23933ffbc4f76940.tar.bz2 linux-9c91fa36b6179859aca6317b23933ffbc4f76940.zip |
NFS: remove unneeded semicolon
remove unneeded semicolon.
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Diffstat (limited to 'fs/nfs')
-rw-r--r-- | fs/nfs/super.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/nfs/super.c b/fs/nfs/super.c index a84df7d63403..8d8d04bb9d64 100644 --- a/fs/nfs/super.c +++ b/fs/nfs/super.c @@ -1592,7 +1592,7 @@ static int nfs_parse_mount_options(char *raw, dfprintk(MOUNT, "NFS: invalid " "lookupcache argument\n"); return 0; - }; + } break; case Opt_fscache_uniq: if (nfs_get_option_str(args, &mnt->fscache_uniq)) @@ -1625,7 +1625,7 @@ static int nfs_parse_mount_options(char *raw, dfprintk(MOUNT, "NFS: invalid " "local_lock argument\n"); return 0; - }; + } break; /* @@ -2585,7 +2585,7 @@ static void nfs_get_cache_cookie(struct super_block *sb, if (mnt_s->fscache_key) { uniq = mnt_s->fscache_key->key.uniquifier; ulen = mnt_s->fscache_key->key.uniq_len; - }; + } } else return; |