diff options
Diffstat (limited to 'fs/gfs2/daemon.c')
-rw-r--r-- | fs/gfs2/daemon.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/fs/gfs2/daemon.c b/fs/gfs2/daemon.c index 9e7b9f296786..1453605c8f32 100644 --- a/fs/gfs2/daemon.c +++ b/fs/gfs2/daemon.c | |||
@@ -25,7 +25,6 @@ | |||
25 | #include "quota.h" | 25 | #include "quota.h" |
26 | #include "recovery.h" | 26 | #include "recovery.h" |
27 | #include "super.h" | 27 | #include "super.h" |
28 | #include "unlinked.h" | ||
29 | #include "util.h" | 28 | #include "util.h" |
30 | 29 | ||
31 | /* This uses schedule_timeout() instead of msleep() because it's good for | 30 | /* This uses schedule_timeout() instead of msleep() because it's good for |
@@ -195,29 +194,3 @@ int gfs2_quotad(void *data) | |||
195 | return 0; | 194 | return 0; |
196 | } | 195 | } |
197 | 196 | ||
198 | /** | ||
199 | * gfs2_inoded - Deallocate unlinked inodes | ||
200 | * @sdp: Pointer to GFS2 superblock | ||
201 | * | ||
202 | */ | ||
203 | |||
204 | int gfs2_inoded(void *data) | ||
205 | { | ||
206 | struct gfs2_sbd *sdp = data; | ||
207 | unsigned long t; | ||
208 | int error; | ||
209 | |||
210 | while (!kthread_should_stop()) { | ||
211 | error = gfs2_unlinked_dealloc(sdp); | ||
212 | if (error && | ||
213 | error != -EROFS && | ||
214 | !test_bit(SDF_SHUTDOWN, &sdp->sd_flags)) | ||
215 | fs_err(sdp, "inoded: error = %d\n", error); | ||
216 | |||
217 | t = gfs2_tune_get(sdp, gt_inoded_secs) * HZ; | ||
218 | schedule_timeout_interruptible(t); | ||
219 | } | ||
220 | |||
221 | return 0; | ||
222 | } | ||
223 | |||