diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2008-06-11 13:26:14 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2008-07-15 18:10:51 -0400 |
commit | fa6dc9dc59c3a76fd209a97c8cf37395980fb903 (patch) | |
tree | 3af530da9d0a21f385007afb34bc058e3f6cab21 /fs/nfs/super.c | |
parent | a3d01454bc58b5a211ef64a7670572a40b71e682 (diff) |
NFS: Remove attribute update related BKL references
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/super.c')
-rw-r--r-- | fs/nfs/super.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/fs/nfs/super.c b/fs/nfs/super.c index 47cf83e917be..1b94e3650f5c 100644 --- a/fs/nfs/super.c +++ b/fs/nfs/super.c | |||
@@ -374,8 +374,6 @@ static int nfs_statfs(struct dentry *dentry, struct kstatfs *buf) | |||
374 | }; | 374 | }; |
375 | int error; | 375 | int error; |
376 | 376 | ||
377 | lock_kernel(); | ||
378 | |||
379 | error = server->nfs_client->rpc_ops->statfs(server, fh, &res); | 377 | error = server->nfs_client->rpc_ops->statfs(server, fh, &res); |
380 | if (error < 0) | 378 | if (error < 0) |
381 | goto out_err; | 379 | goto out_err; |
@@ -407,12 +405,10 @@ static int nfs_statfs(struct dentry *dentry, struct kstatfs *buf) | |||
407 | 405 | ||
408 | buf->f_namelen = server->namelen; | 406 | buf->f_namelen = server->namelen; |
409 | 407 | ||
410 | unlock_kernel(); | ||
411 | return 0; | 408 | return 0; |
412 | 409 | ||
413 | out_err: | 410 | out_err: |
414 | dprintk("%s: statfs error = %d\n", __func__, -error); | 411 | dprintk("%s: statfs error = %d\n", __func__, -error); |
415 | unlock_kernel(); | ||
416 | return error; | 412 | return error; |
417 | } | 413 | } |
418 | 414 | ||