diff options
author | David Howells | 2006-08-23 02:06:13 +0200 |
---|---|---|
committer | Trond Myklebust | 2006-09-23 05:24:37 +0200 |
commit | 6aaca566503296a73f956908ec98173946134fe2 (patch) | |
tree | 7625bbfa14cddd93ed3e2afa03caf4b553116f76 /fs/nfs/internal.h | |
parent | NFS: Share NFS superblocks per-protocol per-server per-FSID (diff) | |
download | kernel-qcow2-linux-6aaca566503296a73f956908ec98173946134fe2.tar.gz kernel-qcow2-linux-6aaca566503296a73f956908ec98173946134fe2.tar.xz kernel-qcow2-linux-6aaca566503296a73f956908ec98173946134fe2.zip |
NFS: Add server and volume lists to /proc
Make two new proc files available:
/proc/fs/nfsfs/servers
/proc/fs/nfsfs/volumes
The first lists the servers with which we are currently dealing (struct
nfs_client), and the second lists the volumes we have on those servers (struct
nfs_server).
Signed-Off-By: David Howells <dhowells@redhat.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/internal.h')
-rw-r--r-- | fs/nfs/internal.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/fs/nfs/internal.h b/fs/nfs/internal.h index e73ba4f1052a..bea0b016bd70 100644 --- a/fs/nfs/internal.h +++ b/fs/nfs/internal.h @@ -47,6 +47,18 @@ extern void nfs_free_server(struct nfs_server *server); extern struct nfs_server *nfs_clone_server(struct nfs_server *, struct nfs_fh *, struct nfs_fattr *); +#ifdef CONFIG_PROC_FS +extern int __init nfs_fs_proc_init(void); +extern void nfs_fs_proc_exit(void); +#else +static inline int nfs_fs_proc_init(void) +{ + return 0; +} +static inline void nfs_fs_proc_exit(void) +{ +} +#endif /* nfs4namespace.c */ #ifdef CONFIG_NFS_V4 |