aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/daemon.c
diff options
context:
space:
mode:
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 5668aa77b95a..2662df0d5b93 100644
--- a/fs/gfs2/daemon.c
+++ b/fs/gfs2/daemon.c
@@ -59,25 +59,3 @@ int gfs2_glockd(void *data)
59 return 0; 59 return 0;
60} 60}
61 61
62/**
63 * gfs2_recoverd - Recover dead machine's journals
64 * @sdp: Pointer to GFS2 superblock
65 *
66 */
67
68int gfs2_recoverd(void *data)
69{
70 struct gfs2_sbd *sdp = data;
71 unsigned long t;
72
73 while (!kthread_should_stop()) {
74 gfs2_check_journals(sdp);
75 t = gfs2_tune_get(sdp, gt_recoverd_secs) * HZ;
76 if (freezing(current))
77 refrigerator();
78 schedule_timeout_interruptible(t);
79 }
80
81 return 0;
82}
83