diff options
author | David Howells <dhowells@redhat.com> | 2009-04-03 11:42:42 -0400 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2009-04-03 11:42:42 -0400 |
commit | 8ec442ae4c6577ed181682e534d4eef524e30b3c (patch) | |
tree | 44fb9013929f7227781525d1904ac16d6723ce6e /fs/nfs/fscache.h | |
parent | 3b9ce977b2f31b6c396b6fb620df9881a30fac9d (diff) |
NFS: Register NFS for caching and retrieve the top-level index
Register NFS for caching and retrieve the top-level cache index object cookie.
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: Steve Dickson <steved@redhat.com>
Acked-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Acked-by: Al Viro <viro@zeniv.linux.org.uk>
Tested-by: Daire Byrne <Daire.Byrne@framestore.com>
Diffstat (limited to 'fs/nfs/fscache.h')
-rw-r--r-- | fs/nfs/fscache.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/fs/nfs/fscache.h b/fs/nfs/fscache.h new file mode 100644 index 000000000000..ccfcdc58066e --- /dev/null +++ b/fs/nfs/fscache.h | |||
@@ -0,0 +1,35 @@ | |||
1 | /* NFS filesystem cache interface definitions | ||
2 | * | ||
3 | * Copyright (C) 2008 Red Hat, Inc. All Rights Reserved. | ||
4 | * Written by David Howells (dhowells@redhat.com) | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU General Public Licence | ||
8 | * as published by the Free Software Foundation; either version | ||
9 | * 2 of the Licence, or (at your option) any later version. | ||
10 | */ | ||
11 | |||
12 | #ifndef _NFS_FSCACHE_H | ||
13 | #define _NFS_FSCACHE_H | ||
14 | |||
15 | #include <linux/nfs_fs.h> | ||
16 | #include <linux/nfs_mount.h> | ||
17 | #include <linux/nfs4_mount.h> | ||
18 | #include <linux/fscache.h> | ||
19 | |||
20 | #ifdef CONFIG_NFS_FSCACHE | ||
21 | |||
22 | /* | ||
23 | * fscache-index.c | ||
24 | */ | ||
25 | extern struct fscache_netfs nfs_fscache_netfs; | ||
26 | |||
27 | extern int nfs_fscache_register(void); | ||
28 | extern void nfs_fscache_unregister(void); | ||
29 | |||
30 | #else /* CONFIG_NFS_FSCACHE */ | ||
31 | static inline int nfs_fscache_register(void) { return 0; } | ||
32 | static inline void nfs_fscache_unregister(void) {} | ||
33 | |||
34 | #endif /* CONFIG_NFS_FSCACHE */ | ||
35 | #endif /* _NFS_FSCACHE_H */ | ||