aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/sunrpc/cache.h1
-rw-r--r--net/sunrpc/cache.c7
-rw-r--r--net/sunrpc/sunrpc_syms.c1
3 files changed, 8 insertions, 1 deletions
diff --git a/include/linux/sunrpc/cache.h b/include/linux/sunrpc/cache.h
index 6f52b4d7c447..7bf3e84b92f4 100644
--- a/include/linux/sunrpc/cache.h
+++ b/include/linux/sunrpc/cache.h
@@ -192,6 +192,7 @@ extern int cache_check(struct cache_detail *detail,
192extern void cache_flush(void); 192extern void cache_flush(void);
193extern void cache_purge(struct cache_detail *detail); 193extern void cache_purge(struct cache_detail *detail);
194#define NEVER (0x7FFFFFFF) 194#define NEVER (0x7FFFFFFF)
195extern void __init cache_initialize(void);
195extern int cache_register(struct cache_detail *cd); 196extern int cache_register(struct cache_detail *cd);
196extern void cache_unregister(struct cache_detail *cd); 197extern void cache_unregister(struct cache_detail *cd);
197 198
diff --git a/net/sunrpc/cache.c b/net/sunrpc/cache.c
index 58de76c8540c..939d048ef92b 100644
--- a/net/sunrpc/cache.c
+++ b/net/sunrpc/cache.c
@@ -320,7 +320,7 @@ static struct cache_detail *current_detail;
320static int current_index; 320static int current_index;
321 321
322static void do_cache_clean(struct work_struct *work); 322static void do_cache_clean(struct work_struct *work);
323static DECLARE_DELAYED_WORK(cache_cleaner, do_cache_clean); 323static struct delayed_work cache_cleaner;
324 324
325static void sunrpc_init_cache_detail(struct cache_detail *cd) 325static void sunrpc_init_cache_detail(struct cache_detail *cd)
326{ 326{
@@ -1504,6 +1504,11 @@ static int create_cache_proc_entries(struct cache_detail *cd)
1504} 1504}
1505#endif 1505#endif
1506 1506
1507void __init cache_initialize(void)
1508{
1509 INIT_DELAYED_WORK_DEFERRABLE(&cache_cleaner, do_cache_clean);
1510}
1511
1507int cache_register(struct cache_detail *cd) 1512int cache_register(struct cache_detail *cd)
1508{ 1513{
1509 int ret; 1514 int ret;
diff --git a/net/sunrpc/sunrpc_syms.c b/net/sunrpc/sunrpc_syms.c
index f438347d817b..c52b18489149 100644
--- a/net/sunrpc/sunrpc_syms.c
+++ b/net/sunrpc/sunrpc_syms.c
@@ -43,6 +43,7 @@ init_sunrpc(void)
43#ifdef CONFIG_PROC_FS 43#ifdef CONFIG_PROC_FS
44 rpc_proc_init(); 44 rpc_proc_init();
45#endif 45#endif
46 cache_initialize();
46 cache_register(&ip_map_cache); 47 cache_register(&ip_map_cache);
47 cache_register(&unix_gid_cache); 48 cache_register(&unix_gid_cache);
48 svc_init_xprt_sock(); /* svc sock transport */ 49 svc_init_xprt_sock(); /* svc sock transport */