aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/daemon.c
diff options
context:
space:
mode:
authorSteven Whitehouse <swhiteho@redhat.com>2008-11-19 10:08:22 +0000
committerSteven Whitehouse <swhiteho@redhat.com>2009-01-05 07:39:07 +0000
commit9ac1b4d9b6f885ccd7d8f56bceb609003a920ff7 (patch)
tree3208c627ca63e4167b2ce1d4bf4849b478d7a0e4 /fs/gfs2/daemon.c
parent813e0c46c9e2a0c6f0b6e774faac82afd7a2e812 (diff)
downloadlinux-9ac1b4d9b6f885ccd7d8f56bceb609003a920ff7.tar.gz
GFS2: Move gfs2_recoverd into recovery.c
By moving gfs2_recoverd, we can make an additional function static and it also leaves only (the already scheduled for removal) gfs2_glockd in daemon.c. At the same time the declaration of gfs2_quotad is moved to quota.h to reflect the new location of gfs2_quotad in a previous patch. Also the recovery.h and quota.h headers are cleaned up. Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/daemon.c')
-rw-r--r--fs/gfs2/daemon.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/fs/gfs2/daemon.c b/fs/gfs2/daemon.c
index 5668aa77b95af..2662df0d5b937 100644
--- a/fs/gfs2/daemon.c
+++ b/fs/gfs2/daemon.c
@@ -59,25 +59,3 @@ int gfs2_glockd(void *data)
return 0;
}
-/**
- * gfs2_recoverd - Recover dead machine's journals
- * @sdp: Pointer to GFS2 superblock
- *
- */
-
-int gfs2_recoverd(void *data)
-{
- struct gfs2_sbd *sdp = data;
- unsigned long t;
-
- while (!kthread_should_stop()) {
- gfs2_check_journals(sdp);
- t = gfs2_tune_get(sdp, gt_recoverd_secs) * HZ;
- if (freezing(current))
- refrigerator();
- schedule_timeout_interruptible(t);
- }
-
- return 0;
-}
-