diff options
Diffstat (limited to 'fs/nfsd/nfssvc.c')
-rw-r--r-- | fs/nfsd/nfssvc.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/fs/nfsd/nfssvc.c b/fs/nfsd/nfssvc.c index c3eb0759fd57..ef0a3686639d 100644 --- a/fs/nfsd/nfssvc.c +++ b/fs/nfsd/nfssvc.c | |||
@@ -546,3 +546,10 @@ nfsd_dispatch(struct svc_rqst *rqstp, __be32 *statp) | |||
546 | nfsd_cache_update(rqstp, proc->pc_cachetype, statp + 1); | 546 | nfsd_cache_update(rqstp, proc->pc_cachetype, statp + 1); |
547 | return 1; | 547 | return 1; |
548 | } | 548 | } |
549 | |||
550 | int nfsd_pool_stats_open(struct inode *inode, struct file *file) | ||
551 | { | ||
552 | if (nfsd_serv == NULL) | ||
553 | return -ENODEV; | ||
554 | return svc_pool_stats_open(nfsd_serv, file); | ||
555 | } | ||