diff options
author | Amerigo Wang <amwang@redhat.com> | 2011-05-24 20:13:11 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-25 11:39:44 -0400 |
commit | e50c1f609c63223adaa38f5a79b18759a00adf72 (patch) | |
tree | 0a8b2f19e873413500b232aa21bc251520770b7c /include | |
parent | dbee8a0affd5e6eaa5d7c816c4bc233f6f110f50 (diff) |
fscache: remove dead code under CONFIG_WORKQUEUE_DEBUGFS
There is no CONFIG_WORKQUEUE_DEBUGFS any more, so this code is dead.
Signed-off-by: WANG Cong <amwang@redhat.com>
Cc: David Howells <dhowells@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/fscache-cache.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/linux/fscache-cache.h b/include/linux/fscache-cache.h index 76427e688d15..af095b54502e 100644 --- a/include/linux/fscache-cache.h +++ b/include/linux/fscache-cache.h | |||
@@ -100,17 +100,6 @@ struct fscache_operation { | |||
100 | 100 | ||
101 | /* operation releaser */ | 101 | /* operation releaser */ |
102 | fscache_operation_release_t release; | 102 | fscache_operation_release_t release; |
103 | |||
104 | #ifdef CONFIG_WORKQUEUE_DEBUGFS | ||
105 | struct work_struct put_work; /* work to delay operation put */ | ||
106 | const char *name; /* operation name */ | ||
107 | const char *state; /* operation state */ | ||
108 | #define fscache_set_op_name(OP, N) do { (OP)->name = (N); } while(0) | ||
109 | #define fscache_set_op_state(OP, S) do { (OP)->state = (S); } while(0) | ||
110 | #else | ||
111 | #define fscache_set_op_name(OP, N) do { } while(0) | ||
112 | #define fscache_set_op_state(OP, S) do { } while(0) | ||
113 | #endif | ||
114 | }; | 103 | }; |
115 | 104 | ||
116 | extern atomic_t fscache_op_debug_id; | 105 | extern atomic_t fscache_op_debug_id; |
@@ -137,7 +126,6 @@ static inline void fscache_operation_init(struct fscache_operation *op, | |||
137 | op->processor = processor; | 126 | op->processor = processor; |
138 | op->release = release; | 127 | op->release = release; |
139 | INIT_LIST_HEAD(&op->pend_link); | 128 | INIT_LIST_HEAD(&op->pend_link); |
140 | fscache_set_op_state(op, "Init"); | ||
141 | } | 129 | } |
142 | 130 | ||
143 | /* | 131 | /* |