diff options
author | Kinglong Mee <kinglongmee@gmail.com> | 2017-02-07 21:47:16 +0800 |
---|---|---|
committer | Anna Schumaker <Anna.Schumaker@Netapp.com> | 2017-02-08 17:02:45 -0500 |
commit | 863d7d9c2e0cbbde6cd15f87c4431dd806f2d917 (patch) | |
tree | c99169539a6a1c92201ebd0bec23c9d6cee2e270 /include/linux | |
parent | 2864486bd0fdd14431058650c91fcb9fba605d43 (diff) | |
download | linux-863d7d9c2e0cbbde6cd15f87c4431dd806f2d917.tar.gz linux-863d7d9c2e0cbbde6cd15f87c4431dd806f2d917.tar.bz2 linux-863d7d9c2e0cbbde6cd15f87c4431dd806f2d917.zip |
sunrpc/nfs: cleanup procfs/pipefs entry in cache_detail
Record flush/channel/content entries is useless, remove them.
Signed-off-by: Kinglong Mee <kinglongmee@gmail.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/sunrpc/cache.h | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/include/linux/sunrpc/cache.h b/include/linux/sunrpc/cache.h index 62a60eeacb0a..bb5c9c80f12e 100644 --- a/include/linux/sunrpc/cache.h +++ b/include/linux/sunrpc/cache.h @@ -63,15 +63,6 @@ struct cache_head { #define CACHE_NEW_EXPIRY 120 /* keep new things pending confirmation for 120 seconds */ -struct cache_detail_procfs { - struct proc_dir_entry *proc_ent; - struct proc_dir_entry *flush_ent, *channel_ent, *content_ent; -}; - -struct cache_detail_pipefs { - struct dentry *dir; -}; - struct cache_detail { struct module * owner; int hash_size; @@ -123,9 +114,9 @@ struct cache_detail { time_t last_warn; /* when we last warned about no readers */ union { - struct cache_detail_procfs procfs; - struct cache_detail_pipefs pipefs; - } u; + struct proc_dir_entry *procfs; + struct dentry *pipefs; + }; struct net *net; }; |