mirror of
https://github.com/adulau/aha.git
synced 2024-12-29 04:06:22 +00:00
make nfs_automount_list static
nfs_automount_list can now become static. Signed-off-by: Adrian Bunk <bunk@kernel.org> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
parent
daa7da5fd3
commit
a3dab29353
2 changed files with 1 additions and 2 deletions
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
static void nfs_expire_automounts(struct work_struct *work);
|
static void nfs_expire_automounts(struct work_struct *work);
|
||||||
|
|
||||||
LIST_HEAD(nfs_automount_list);
|
static LIST_HEAD(nfs_automount_list);
|
||||||
static DECLARE_DELAYED_WORK(nfs_automount_task, nfs_expire_automounts);
|
static DECLARE_DELAYED_WORK(nfs_automount_task, nfs_expire_automounts);
|
||||||
int nfs_mountpoint_expiry_timeout = 500 * HZ;
|
int nfs_mountpoint_expiry_timeout = 500 * HZ;
|
||||||
|
|
||||||
|
|
|
@ -430,7 +430,6 @@ extern void nfs_unregister_sysctl(void);
|
||||||
/*
|
/*
|
||||||
* linux/fs/nfs/namespace.c
|
* linux/fs/nfs/namespace.c
|
||||||
*/
|
*/
|
||||||
extern struct list_head nfs_automount_list;
|
|
||||||
extern const struct inode_operations nfs_mountpoint_inode_operations;
|
extern const struct inode_operations nfs_mountpoint_inode_operations;
|
||||||
extern const struct inode_operations nfs_referral_inode_operations;
|
extern const struct inode_operations nfs_referral_inode_operations;
|
||||||
extern int nfs_mountpoint_expiry_timeout;
|
extern int nfs_mountpoint_expiry_timeout;
|
||||||
|
|
Loading…
Reference in a new issue