]>
Commit | Line | Data |
---|---|---|
b3b94faa DT |
1 | /* |
2 | * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. | |
da6dd40d | 3 | * Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved. |
b3b94faa DT |
4 | * |
5 | * This copyrighted material is made available to anyone wishing to use, | |
6 | * modify, copy, or redistribute it subject to the terms and conditions | |
e9fc2aa0 | 7 | * of the GNU General Public License version 2. |
b3b94faa DT |
8 | */ |
9 | ||
10 | #include <linux/sched.h> | |
11 | #include <linux/slab.h> | |
12 | #include <linux/spinlock.h> | |
13 | #include <linux/completion.h> | |
14 | #include <linux/buffer_head.h> | |
5c676f6d | 15 | #include <linux/gfs2_ondisk.h> |
71b86f56 | 16 | #include <linux/crc32.h> |
a25311c8 | 17 | #include <linux/delay.h> |
ec69b188 SW |
18 | #include <linux/kthread.h> |
19 | #include <linux/freezer.h> | |
254db57f | 20 | #include <linux/bio.h> |
4667a0ec | 21 | #include <linux/writeback.h> |
b3b94faa DT |
22 | |
23 | #include "gfs2.h" | |
5c676f6d | 24 | #include "incore.h" |
b3b94faa DT |
25 | #include "bmap.h" |
26 | #include "glock.h" | |
27 | #include "log.h" | |
28 | #include "lops.h" | |
29 | #include "meta_io.h" | |
5c676f6d | 30 | #include "util.h" |
71b86f56 | 31 | #include "dir.h" |
63997775 | 32 | #include "trace_gfs2.h" |
b3b94faa DT |
33 | |
34 | #define PULL 1 | |
35 | ||
b3b94faa DT |
36 | /** |
37 | * gfs2_struct2blk - compute stuff | |
38 | * @sdp: the filesystem | |
39 | * @nstruct: the number of structures | |
40 | * @ssize: the size of the structures | |
41 | * | |
42 | * Compute the number of log descriptor blocks needed to hold a certain number | |
43 | * of structures of a certain size. | |
44 | * | |
45 | * Returns: the number of blocks needed (minimum is always 1) | |
46 | */ | |
47 | ||
48 | unsigned int gfs2_struct2blk(struct gfs2_sbd *sdp, unsigned int nstruct, | |
49 | unsigned int ssize) | |
50 | { | |
51 | unsigned int blks; | |
52 | unsigned int first, second; | |
53 | ||
54 | blks = 1; | |
faa31ce8 | 55 | first = (sdp->sd_sb.sb_bsize - sizeof(struct gfs2_log_descriptor)) / ssize; |
b3b94faa DT |
56 | |
57 | if (nstruct > first) { | |
568f4c96 SW |
58 | second = (sdp->sd_sb.sb_bsize - |
59 | sizeof(struct gfs2_meta_header)) / ssize; | |
5c676f6d | 60 | blks += DIV_ROUND_UP(nstruct - first, second); |
b3b94faa DT |
61 | } |
62 | ||
63 | return blks; | |
64 | } | |
65 | ||
1e1a3d03 SW |
66 | /** |
67 | * gfs2_remove_from_ail - Remove an entry from the ail lists, updating counters | |
68 | * @mapping: The associated mapping (maybe NULL) | |
69 | * @bd: The gfs2_bufdata to remove | |
70 | * | |
c618e87a | 71 | * The ail lock _must_ be held when calling this function |
1e1a3d03 SW |
72 | * |
73 | */ | |
74 | ||
f91a0d3e | 75 | void gfs2_remove_from_ail(struct gfs2_bufdata *bd) |
1e1a3d03 SW |
76 | { |
77 | bd->bd_ail = NULL; | |
1ad38c43 SW |
78 | list_del_init(&bd->bd_ail_st_list); |
79 | list_del_init(&bd->bd_ail_gl_list); | |
1e1a3d03 | 80 | atomic_dec(&bd->bd_gl->gl_ail_count); |
1e1a3d03 SW |
81 | brelse(bd->bd_bh); |
82 | } | |
83 | ||
ddacfaf7 SW |
84 | /** |
85 | * gfs2_ail1_start_one - Start I/O on a part of the AIL | |
86 | * @sdp: the filesystem | |
4667a0ec SW |
87 | * @wbc: The writeback control structure |
88 | * @ai: The ail structure | |
ddacfaf7 SW |
89 | * |
90 | */ | |
91 | ||
4f1de018 SW |
92 | static int gfs2_ail1_start_one(struct gfs2_sbd *sdp, |
93 | struct writeback_control *wbc, | |
94 | struct gfs2_ail *ai) | |
d6a079e8 DC |
95 | __releases(&sdp->sd_ail_lock) |
96 | __acquires(&sdp->sd_ail_lock) | |
ddacfaf7 | 97 | { |
5ac048bb | 98 | struct gfs2_glock *gl = NULL; |
4667a0ec | 99 | struct address_space *mapping; |
ddacfaf7 SW |
100 | struct gfs2_bufdata *bd, *s; |
101 | struct buffer_head *bh; | |
ddacfaf7 | 102 | |
4667a0ec SW |
103 | list_for_each_entry_safe_reverse(bd, s, &ai->ai_ail1_list, bd_ail_st_list) { |
104 | bh = bd->bd_bh; | |
ddacfaf7 | 105 | |
4667a0ec | 106 | gfs2_assert(sdp, bd->bd_ail == ai); |
ddacfaf7 | 107 | |
4667a0ec SW |
108 | if (!buffer_busy(bh)) { |
109 | if (!buffer_uptodate(bh)) | |
110 | gfs2_io_error_bh(sdp, bh); | |
111 | list_move(&bd->bd_ail_st_list, &ai->ai_ail2_list); | |
112 | continue; | |
113 | } | |
114 | ||
115 | if (!buffer_dirty(bh)) | |
116 | continue; | |
117 | if (gl == bd->bd_gl) | |
118 | continue; | |
119 | gl = bd->bd_gl; | |
120 | list_move(&bd->bd_ail_st_list, &ai->ai_ail1_list); | |
121 | mapping = bh->b_page->mapping; | |
4f1de018 SW |
122 | if (!mapping) |
123 | continue; | |
4667a0ec SW |
124 | spin_unlock(&sdp->sd_ail_lock); |
125 | generic_writepages(mapping, wbc); | |
126 | spin_lock(&sdp->sd_ail_lock); | |
127 | if (wbc->nr_to_write <= 0) | |
128 | break; | |
4f1de018 | 129 | return 1; |
4667a0ec | 130 | } |
4f1de018 SW |
131 | |
132 | return 0; | |
4667a0ec | 133 | } |
ddacfaf7 | 134 | |
ddacfaf7 | 135 | |
4667a0ec SW |
136 | /** |
137 | * gfs2_ail1_flush - start writeback of some ail1 entries | |
138 | * @sdp: The super block | |
139 | * @wbc: The writeback control structure | |
140 | * | |
141 | * Writes back some ail1 entries, according to the limits in the | |
142 | * writeback control structure | |
143 | */ | |
ddacfaf7 | 144 | |
4667a0ec SW |
145 | void gfs2_ail1_flush(struct gfs2_sbd *sdp, struct writeback_control *wbc) |
146 | { | |
147 | struct list_head *head = &sdp->sd_ail1_list; | |
148 | struct gfs2_ail *ai; | |
ddacfaf7 | 149 | |
c83ae9ca | 150 | trace_gfs2_ail_flush(sdp, wbc, 1); |
4667a0ec | 151 | spin_lock(&sdp->sd_ail_lock); |
4f1de018 | 152 | restart: |
4667a0ec SW |
153 | list_for_each_entry_reverse(ai, head, ai_list) { |
154 | if (wbc->nr_to_write <= 0) | |
ddacfaf7 | 155 | break; |
4f1de018 SW |
156 | if (gfs2_ail1_start_one(sdp, wbc, ai)) |
157 | goto restart; | |
4667a0ec SW |
158 | } |
159 | spin_unlock(&sdp->sd_ail_lock); | |
c83ae9ca | 160 | trace_gfs2_ail_flush(sdp, wbc, 0); |
4667a0ec SW |
161 | } |
162 | ||
163 | /** | |
164 | * gfs2_ail1_start - start writeback of all ail1 entries | |
165 | * @sdp: The superblock | |
166 | */ | |
167 | ||
168 | static void gfs2_ail1_start(struct gfs2_sbd *sdp) | |
169 | { | |
170 | struct writeback_control wbc = { | |
171 | .sync_mode = WB_SYNC_NONE, | |
172 | .nr_to_write = LONG_MAX, | |
173 | .range_start = 0, | |
174 | .range_end = LLONG_MAX, | |
175 | }; | |
176 | ||
177 | return gfs2_ail1_flush(sdp, &wbc); | |
ddacfaf7 SW |
178 | } |
179 | ||
180 | /** | |
181 | * gfs2_ail1_empty_one - Check whether or not a trans in the AIL has been synced | |
182 | * @sdp: the filesystem | |
183 | * @ai: the AIL entry | |
184 | * | |
185 | */ | |
186 | ||
4667a0ec | 187 | static void gfs2_ail1_empty_one(struct gfs2_sbd *sdp, struct gfs2_ail *ai) |
ddacfaf7 SW |
188 | { |
189 | struct gfs2_bufdata *bd, *s; | |
190 | struct buffer_head *bh; | |
191 | ||
192 | list_for_each_entry_safe_reverse(bd, s, &ai->ai_ail1_list, | |
193 | bd_ail_st_list) { | |
194 | bh = bd->bd_bh; | |
ddacfaf7 | 195 | gfs2_assert(sdp, bd->bd_ail == ai); |
4667a0ec SW |
196 | if (buffer_busy(bh)) |
197 | continue; | |
ddacfaf7 SW |
198 | if (!buffer_uptodate(bh)) |
199 | gfs2_io_error_bh(sdp, bh); | |
ddacfaf7 SW |
200 | list_move(&bd->bd_ail_st_list, &ai->ai_ail2_list); |
201 | } | |
202 | ||
ddacfaf7 SW |
203 | } |
204 | ||
4667a0ec SW |
205 | /** |
206 | * gfs2_ail1_empty - Try to empty the ail1 lists | |
207 | * @sdp: The superblock | |
208 | * | |
209 | * Tries to empty the ail1 lists, starting with the oldest first | |
210 | */ | |
b3b94faa | 211 | |
4667a0ec | 212 | static int gfs2_ail1_empty(struct gfs2_sbd *sdp) |
b3b94faa DT |
213 | { |
214 | struct gfs2_ail *ai, *s; | |
215 | int ret; | |
216 | ||
d6a079e8 | 217 | spin_lock(&sdp->sd_ail_lock); |
b3b94faa | 218 | list_for_each_entry_safe_reverse(ai, s, &sdp->sd_ail1_list, ai_list) { |
4667a0ec SW |
219 | gfs2_ail1_empty_one(sdp, ai); |
220 | if (list_empty(&ai->ai_ail1_list)) | |
b3b94faa | 221 | list_move(&ai->ai_list, &sdp->sd_ail2_list); |
4667a0ec | 222 | else |
b3b94faa DT |
223 | break; |
224 | } | |
b3b94faa | 225 | ret = list_empty(&sdp->sd_ail1_list); |
d6a079e8 | 226 | spin_unlock(&sdp->sd_ail_lock); |
b3b94faa DT |
227 | |
228 | return ret; | |
229 | } | |
230 | ||
26b06a69 SW |
231 | static void gfs2_ail1_wait(struct gfs2_sbd *sdp) |
232 | { | |
233 | struct gfs2_ail *ai; | |
234 | struct gfs2_bufdata *bd; | |
235 | struct buffer_head *bh; | |
236 | ||
237 | spin_lock(&sdp->sd_ail_lock); | |
238 | list_for_each_entry_reverse(ai, &sdp->sd_ail1_list, ai_list) { | |
239 | list_for_each_entry(bd, &ai->ai_ail1_list, bd_ail_st_list) { | |
240 | bh = bd->bd_bh; | |
241 | if (!buffer_locked(bh)) | |
242 | continue; | |
243 | get_bh(bh); | |
244 | spin_unlock(&sdp->sd_ail_lock); | |
245 | wait_on_buffer(bh); | |
246 | brelse(bh); | |
247 | return; | |
248 | } | |
249 | } | |
250 | spin_unlock(&sdp->sd_ail_lock); | |
251 | } | |
ddacfaf7 SW |
252 | |
253 | /** | |
254 | * gfs2_ail2_empty_one - Check whether or not a trans in the AIL has been synced | |
255 | * @sdp: the filesystem | |
256 | * @ai: the AIL entry | |
257 | * | |
258 | */ | |
259 | ||
260 | static void gfs2_ail2_empty_one(struct gfs2_sbd *sdp, struct gfs2_ail *ai) | |
261 | { | |
262 | struct list_head *head = &ai->ai_ail2_list; | |
263 | struct gfs2_bufdata *bd; | |
264 | ||
265 | while (!list_empty(head)) { | |
266 | bd = list_entry(head->prev, struct gfs2_bufdata, | |
267 | bd_ail_st_list); | |
268 | gfs2_assert(sdp, bd->bd_ail == ai); | |
f91a0d3e | 269 | gfs2_remove_from_ail(bd); |
ddacfaf7 SW |
270 | } |
271 | } | |
272 | ||
b3b94faa DT |
273 | static void ail2_empty(struct gfs2_sbd *sdp, unsigned int new_tail) |
274 | { | |
275 | struct gfs2_ail *ai, *safe; | |
276 | unsigned int old_tail = sdp->sd_log_tail; | |
277 | int wrap = (new_tail < old_tail); | |
278 | int a, b, rm; | |
279 | ||
d6a079e8 | 280 | spin_lock(&sdp->sd_ail_lock); |
b3b94faa DT |
281 | |
282 | list_for_each_entry_safe(ai, safe, &sdp->sd_ail2_list, ai_list) { | |
283 | a = (old_tail <= ai->ai_first); | |
284 | b = (ai->ai_first < new_tail); | |
285 | rm = (wrap) ? (a || b) : (a && b); | |
286 | if (!rm) | |
287 | continue; | |
288 | ||
289 | gfs2_ail2_empty_one(sdp, ai); | |
290 | list_del(&ai->ai_list); | |
291 | gfs2_assert_warn(sdp, list_empty(&ai->ai_ail1_list)); | |
292 | gfs2_assert_warn(sdp, list_empty(&ai->ai_ail2_list)); | |
293 | kfree(ai); | |
294 | } | |
295 | ||
d6a079e8 | 296 | spin_unlock(&sdp->sd_ail_lock); |
b3b94faa DT |
297 | } |
298 | ||
299 | /** | |
300 | * gfs2_log_reserve - Make a log reservation | |
301 | * @sdp: The GFS2 superblock | |
302 | * @blks: The number of blocks to reserve | |
303 | * | |
89918647 | 304 | * Note that we never give out the last few blocks of the journal. Thats |
2332c443 | 305 | * due to the fact that there is a small number of header blocks |
b004157a SW |
306 | * associated with each log flush. The exact number can't be known until |
307 | * flush time, so we ensure that we have just enough free blocks at all | |
308 | * times to avoid running out during a log flush. | |
309 | * | |
5e687eac BM |
310 | * We no longer flush the log here, instead we wake up logd to do that |
311 | * for us. To avoid the thundering herd and to ensure that we deal fairly | |
312 | * with queued waiters, we use an exclusive wait. This means that when we | |
313 | * get woken with enough journal space to get our reservation, we need to | |
314 | * wake the next waiter on the list. | |
315 | * | |
b3b94faa DT |
316 | * Returns: errno |
317 | */ | |
318 | ||
319 | int gfs2_log_reserve(struct gfs2_sbd *sdp, unsigned int blks) | |
320 | { | |
89918647 | 321 | unsigned reserved_blks = 6 * (4096 / sdp->sd_vfs->s_blocksize); |
5e687eac BM |
322 | unsigned wanted = blks + reserved_blks; |
323 | DEFINE_WAIT(wait); | |
324 | int did_wait = 0; | |
325 | unsigned int free_blocks; | |
b3b94faa DT |
326 | |
327 | if (gfs2_assert_warn(sdp, blks) || | |
328 | gfs2_assert_warn(sdp, blks <= sdp->sd_jdesc->jd_blocks)) | |
329 | return -EINVAL; | |
5e687eac BM |
330 | retry: |
331 | free_blocks = atomic_read(&sdp->sd_log_blks_free); | |
332 | if (unlikely(free_blocks <= wanted)) { | |
333 | do { | |
334 | prepare_to_wait_exclusive(&sdp->sd_log_waitq, &wait, | |
335 | TASK_UNINTERRUPTIBLE); | |
336 | wake_up(&sdp->sd_logd_waitq); | |
337 | did_wait = 1; | |
338 | if (atomic_read(&sdp->sd_log_blks_free) <= wanted) | |
339 | io_schedule(); | |
340 | free_blocks = atomic_read(&sdp->sd_log_blks_free); | |
341 | } while(free_blocks <= wanted); | |
342 | finish_wait(&sdp->sd_log_waitq, &wait); | |
b3b94faa | 343 | } |
5e687eac BM |
344 | if (atomic_cmpxchg(&sdp->sd_log_blks_free, free_blocks, |
345 | free_blocks - blks) != free_blocks) | |
346 | goto retry; | |
63997775 | 347 | trace_gfs2_log_blocks(sdp, -blks); |
5e687eac BM |
348 | |
349 | /* | |
350 | * If we waited, then so might others, wake them up _after_ we get | |
351 | * our share of the log. | |
352 | */ | |
353 | if (unlikely(did_wait)) | |
354 | wake_up(&sdp->sd_log_waitq); | |
484adff8 SW |
355 | |
356 | down_read(&sdp->sd_log_flush_lock); | |
b3b94faa DT |
357 | |
358 | return 0; | |
359 | } | |
360 | ||
cd915493 | 361 | static u64 log_bmap(struct gfs2_sbd *sdp, unsigned int lbn) |
b3b94faa | 362 | { |
da6dd40d BP |
363 | struct gfs2_journal_extent *je; |
364 | ||
365 | list_for_each_entry(je, &sdp->sd_jdesc->extent_list, extent_list) { | |
366 | if (lbn >= je->lblock && lbn < je->lblock + je->blocks) | |
ff91cc9b | 367 | return je->dblock + lbn - je->lblock; |
da6dd40d BP |
368 | } |
369 | ||
370 | return -1; | |
b3b94faa DT |
371 | } |
372 | ||
373 | /** | |
374 | * log_distance - Compute distance between two journal blocks | |
375 | * @sdp: The GFS2 superblock | |
376 | * @newer: The most recent journal block of the pair | |
377 | * @older: The older journal block of the pair | |
378 | * | |
379 | * Compute the distance (in the journal direction) between two | |
380 | * blocks in the journal | |
381 | * | |
382 | * Returns: the distance in blocks | |
383 | */ | |
384 | ||
faa31ce8 | 385 | static inline unsigned int log_distance(struct gfs2_sbd *sdp, unsigned int newer, |
b3b94faa DT |
386 | unsigned int older) |
387 | { | |
388 | int dist; | |
389 | ||
390 | dist = newer - older; | |
391 | if (dist < 0) | |
392 | dist += sdp->sd_jdesc->jd_blocks; | |
393 | ||
394 | return dist; | |
395 | } | |
396 | ||
2332c443 RP |
397 | /** |
398 | * calc_reserved - Calculate the number of blocks to reserve when | |
399 | * refunding a transaction's unused buffers. | |
400 | * @sdp: The GFS2 superblock | |
401 | * | |
402 | * This is complex. We need to reserve room for all our currently used | |
403 | * metadata buffers (e.g. normal file I/O rewriting file time stamps) and | |
404 | * all our journaled data buffers for journaled files (e.g. files in the | |
405 | * meta_fs like rindex, or files for which chattr +j was done.) | |
406 | * If we don't reserve enough space, gfs2_log_refund and gfs2_log_flush | |
407 | * will count it as free space (sd_log_blks_free) and corruption will follow. | |
408 | * | |
409 | * We can have metadata bufs and jdata bufs in the same journal. So each | |
410 | * type gets its own log header, for which we need to reserve a block. | |
411 | * In fact, each type has the potential for needing more than one header | |
412 | * in cases where we have more buffers than will fit on a journal page. | |
413 | * Metadata journal entries take up half the space of journaled buffer entries. | |
414 | * Thus, metadata entries have buf_limit (502) and journaled buffers have | |
415 | * databuf_limit (251) before they cause a wrap around. | |
416 | * | |
417 | * Also, we need to reserve blocks for revoke journal entries and one for an | |
418 | * overall header for the lot. | |
419 | * | |
420 | * Returns: the number of blocks reserved | |
421 | */ | |
422 | static unsigned int calc_reserved(struct gfs2_sbd *sdp) | |
423 | { | |
424 | unsigned int reserved = 0; | |
425 | unsigned int mbuf_limit, metabufhdrs_needed; | |
426 | unsigned int dbuf_limit, databufhdrs_needed; | |
427 | unsigned int revokes = 0; | |
428 | ||
429 | mbuf_limit = buf_limit(sdp); | |
430 | metabufhdrs_needed = (sdp->sd_log_commited_buf + | |
431 | (mbuf_limit - 1)) / mbuf_limit; | |
432 | dbuf_limit = databuf_limit(sdp); | |
433 | databufhdrs_needed = (sdp->sd_log_commited_databuf + | |
434 | (dbuf_limit - 1)) / dbuf_limit; | |
435 | ||
2e95e3f6 | 436 | if (sdp->sd_log_commited_revoke > 0) |
2332c443 RP |
437 | revokes = gfs2_struct2blk(sdp, sdp->sd_log_commited_revoke, |
438 | sizeof(u64)); | |
439 | ||
440 | reserved = sdp->sd_log_commited_buf + metabufhdrs_needed + | |
441 | sdp->sd_log_commited_databuf + databufhdrs_needed + | |
442 | revokes; | |
443 | /* One for the overall header */ | |
444 | if (reserved) | |
445 | reserved++; | |
446 | return reserved; | |
447 | } | |
448 | ||
b3b94faa DT |
449 | static unsigned int current_tail(struct gfs2_sbd *sdp) |
450 | { | |
451 | struct gfs2_ail *ai; | |
452 | unsigned int tail; | |
453 | ||
d6a079e8 | 454 | spin_lock(&sdp->sd_ail_lock); |
b3b94faa | 455 | |
faa31ce8 | 456 | if (list_empty(&sdp->sd_ail1_list)) { |
b3b94faa | 457 | tail = sdp->sd_log_head; |
faa31ce8 SW |
458 | } else { |
459 | ai = list_entry(sdp->sd_ail1_list.prev, struct gfs2_ail, ai_list); | |
b3b94faa DT |
460 | tail = ai->ai_first; |
461 | } | |
462 | ||
d6a079e8 | 463 | spin_unlock(&sdp->sd_ail_lock); |
b3b94faa DT |
464 | |
465 | return tail; | |
466 | } | |
467 | ||
16615be1 | 468 | void gfs2_log_incr_head(struct gfs2_sbd *sdp) |
b3b94faa DT |
469 | { |
470 | if (sdp->sd_log_flush_head == sdp->sd_log_tail) | |
16615be1 | 471 | BUG_ON(sdp->sd_log_flush_head != sdp->sd_log_head); |
b3b94faa DT |
472 | |
473 | if (++sdp->sd_log_flush_head == sdp->sd_jdesc->jd_blocks) { | |
474 | sdp->sd_log_flush_head = 0; | |
475 | sdp->sd_log_flush_wrapped = 1; | |
476 | } | |
477 | } | |
478 | ||
16615be1 SW |
479 | /** |
480 | * gfs2_log_write_endio - End of I/O for a log buffer | |
481 | * @bh: The buffer head | |
482 | * @uptodate: I/O Status | |
483 | * | |
484 | */ | |
485 | ||
486 | static void gfs2_log_write_endio(struct buffer_head *bh, int uptodate) | |
487 | { | |
488 | struct gfs2_sbd *sdp = bh->b_private; | |
489 | bh->b_private = NULL; | |
490 | ||
491 | end_buffer_write_sync(bh, uptodate); | |
492 | if (atomic_dec_and_test(&sdp->sd_log_in_flight)) | |
493 | wake_up(&sdp->sd_log_flush_wait); | |
494 | } | |
495 | ||
b3b94faa DT |
496 | /** |
497 | * gfs2_log_get_buf - Get and initialize a buffer to use for log control data | |
498 | * @sdp: The GFS2 superblock | |
499 | * | |
500 | * Returns: the buffer_head | |
501 | */ | |
502 | ||
503 | struct buffer_head *gfs2_log_get_buf(struct gfs2_sbd *sdp) | |
504 | { | |
cd915493 | 505 | u64 blkno = log_bmap(sdp, sdp->sd_log_flush_head); |
b3b94faa DT |
506 | struct buffer_head *bh; |
507 | ||
16615be1 | 508 | bh = sb_getblk(sdp->sd_vfs, blkno); |
b3b94faa DT |
509 | lock_buffer(bh); |
510 | memset(bh->b_data, 0, bh->b_size); | |
511 | set_buffer_uptodate(bh); | |
512 | clear_buffer_dirty(bh); | |
16615be1 SW |
513 | gfs2_log_incr_head(sdp); |
514 | atomic_inc(&sdp->sd_log_in_flight); | |
515 | bh->b_private = sdp; | |
516 | bh->b_end_io = gfs2_log_write_endio; | |
b3b94faa DT |
517 | |
518 | return bh; | |
519 | } | |
520 | ||
16615be1 SW |
521 | /** |
522 | * gfs2_fake_write_endio - | |
523 | * @bh: The buffer head | |
524 | * @uptodate: The I/O Status | |
525 | * | |
526 | */ | |
527 | ||
528 | static void gfs2_fake_write_endio(struct buffer_head *bh, int uptodate) | |
529 | { | |
530 | struct buffer_head *real_bh = bh->b_private; | |
5a60c532 SW |
531 | struct gfs2_bufdata *bd = real_bh->b_private; |
532 | struct gfs2_sbd *sdp = bd->bd_gl->gl_sbd; | |
16615be1 SW |
533 | |
534 | end_buffer_write_sync(bh, uptodate); | |
535 | free_buffer_head(bh); | |
536 | unlock_buffer(real_bh); | |
537 | brelse(real_bh); | |
538 | if (atomic_dec_and_test(&sdp->sd_log_in_flight)) | |
539 | wake_up(&sdp->sd_log_flush_wait); | |
540 | } | |
541 | ||
b3b94faa DT |
542 | /** |
543 | * gfs2_log_fake_buf - Build a fake buffer head to write metadata buffer to log | |
544 | * @sdp: the filesystem | |
545 | * @data: the data the buffer_head should point to | |
546 | * | |
547 | * Returns: the log buffer descriptor | |
548 | */ | |
549 | ||
550 | struct buffer_head *gfs2_log_fake_buf(struct gfs2_sbd *sdp, | |
551 | struct buffer_head *real) | |
552 | { | |
cd915493 | 553 | u64 blkno = log_bmap(sdp, sdp->sd_log_flush_head); |
b3b94faa DT |
554 | struct buffer_head *bh; |
555 | ||
16615be1 | 556 | bh = alloc_buffer_head(GFP_NOFS | __GFP_NOFAIL); |
b3b94faa | 557 | atomic_set(&bh->b_count, 1); |
16615be1 | 558 | bh->b_state = (1 << BH_Mapped) | (1 << BH_Uptodate) | (1 << BH_Lock); |
18ec7d5c | 559 | set_bh_page(bh, real->b_page, bh_offset(real)); |
b3b94faa DT |
560 | bh->b_blocknr = blkno; |
561 | bh->b_size = sdp->sd_sb.sb_bsize; | |
562 | bh->b_bdev = sdp->sd_vfs->s_bdev; | |
16615be1 SW |
563 | bh->b_private = real; |
564 | bh->b_end_io = gfs2_fake_write_endio; | |
b3b94faa | 565 | |
16615be1 SW |
566 | gfs2_log_incr_head(sdp); |
567 | atomic_inc(&sdp->sd_log_in_flight); | |
b3b94faa DT |
568 | |
569 | return bh; | |
570 | } | |
571 | ||
2332c443 | 572 | static void log_pull_tail(struct gfs2_sbd *sdp, unsigned int new_tail) |
b3b94faa DT |
573 | { |
574 | unsigned int dist = log_distance(sdp, new_tail, sdp->sd_log_tail); | |
575 | ||
576 | ail2_empty(sdp, new_tail); | |
577 | ||
fd041f0b | 578 | atomic_add(dist, &sdp->sd_log_blks_free); |
63997775 | 579 | trace_gfs2_log_blocks(sdp, dist); |
5e687eac BM |
580 | gfs2_assert_withdraw(sdp, atomic_read(&sdp->sd_log_blks_free) <= |
581 | sdp->sd_jdesc->jd_blocks); | |
b3b94faa DT |
582 | |
583 | sdp->sd_log_tail = new_tail; | |
584 | } | |
585 | ||
586 | /** | |
587 | * log_write_header - Get and initialize a journal header buffer | |
588 | * @sdp: The GFS2 superblock | |
589 | * | |
590 | * Returns: the initialized log buffer descriptor | |
591 | */ | |
592 | ||
cd915493 | 593 | static void log_write_header(struct gfs2_sbd *sdp, u32 flags, int pull) |
b3b94faa | 594 | { |
cd915493 | 595 | u64 blkno = log_bmap(sdp, sdp->sd_log_flush_head); |
b3b94faa DT |
596 | struct buffer_head *bh; |
597 | struct gfs2_log_header *lh; | |
598 | unsigned int tail; | |
cd915493 | 599 | u32 hash; |
b3b94faa | 600 | |
b3b94faa DT |
601 | bh = sb_getblk(sdp->sd_vfs, blkno); |
602 | lock_buffer(bh); | |
603 | memset(bh->b_data, 0, bh->b_size); | |
604 | set_buffer_uptodate(bh); | |
605 | clear_buffer_dirty(bh); | |
b3b94faa | 606 | |
4667a0ec | 607 | gfs2_ail1_empty(sdp); |
b3b94faa DT |
608 | tail = current_tail(sdp); |
609 | ||
610 | lh = (struct gfs2_log_header *)bh->b_data; | |
611 | memset(lh, 0, sizeof(struct gfs2_log_header)); | |
612 | lh->lh_header.mh_magic = cpu_to_be32(GFS2_MAGIC); | |
e3167ded | 613 | lh->lh_header.mh_type = cpu_to_be32(GFS2_METATYPE_LH); |
0ab7d13f | 614 | lh->lh_header.__pad0 = cpu_to_be64(0); |
e3167ded | 615 | lh->lh_header.mh_format = cpu_to_be32(GFS2_FORMAT_LH); |
0ab7d13f | 616 | lh->lh_header.mh_jid = cpu_to_be32(sdp->sd_jdesc->jd_jid); |
e0f2bf78 SW |
617 | lh->lh_sequence = cpu_to_be64(sdp->sd_log_sequence++); |
618 | lh->lh_flags = cpu_to_be32(flags); | |
619 | lh->lh_tail = cpu_to_be32(tail); | |
620 | lh->lh_blkno = cpu_to_be32(sdp->sd_log_flush_head); | |
b3b94faa DT |
621 | hash = gfs2_disk_hash(bh->b_data, sizeof(struct gfs2_log_header)); |
622 | lh->lh_hash = cpu_to_be32(hash); | |
623 | ||
254db57f | 624 | bh->b_end_io = end_buffer_write_sync; |
254db57f | 625 | get_bh(bh); |
f1e4d518 | 626 | if (test_bit(SDF_NOBARRIERS, &sdp->sd_flags)) |
65299a3b | 627 | submit_bh(WRITE_SYNC | REQ_META | REQ_PRIO, bh); |
f1e4d518 | 628 | else |
65299a3b | 629 | submit_bh(WRITE_FLUSH_FUA | REQ_META | REQ_PRIO, bh); |
f1e4d518 CH |
630 | wait_on_buffer(bh); |
631 | ||
254db57f | 632 | if (!buffer_uptodate(bh)) |
b3b94faa DT |
633 | gfs2_io_error_bh(sdp, bh); |
634 | brelse(bh); | |
635 | ||
636 | if (sdp->sd_log_tail != tail) | |
2332c443 | 637 | log_pull_tail(sdp, tail); |
b3b94faa DT |
638 | else |
639 | gfs2_assert_withdraw(sdp, !pull); | |
640 | ||
641 | sdp->sd_log_idle = (tail == sdp->sd_log_flush_head); | |
16615be1 | 642 | gfs2_log_incr_head(sdp); |
b3b94faa DT |
643 | } |
644 | ||
645 | static void log_flush_commit(struct gfs2_sbd *sdp) | |
646 | { | |
16615be1 SW |
647 | DEFINE_WAIT(wait); |
648 | ||
649 | if (atomic_read(&sdp->sd_log_in_flight)) { | |
650 | do { | |
651 | prepare_to_wait(&sdp->sd_log_flush_wait, &wait, | |
652 | TASK_UNINTERRUPTIBLE); | |
653 | if (atomic_read(&sdp->sd_log_in_flight)) | |
654 | io_schedule(); | |
655 | } while(atomic_read(&sdp->sd_log_in_flight)); | |
656 | finish_wait(&sdp->sd_log_flush_wait, &wait); | |
b3b94faa DT |
657 | } |
658 | ||
16615be1 | 659 | log_write_header(sdp, 0, 0); |
b3b94faa DT |
660 | } |
661 | ||
d7b616e2 SW |
662 | static void gfs2_ordered_write(struct gfs2_sbd *sdp) |
663 | { | |
664 | struct gfs2_bufdata *bd; | |
665 | struct buffer_head *bh; | |
666 | LIST_HEAD(written); | |
667 | ||
668 | gfs2_log_lock(sdp); | |
669 | while (!list_empty(&sdp->sd_log_le_ordered)) { | |
670 | bd = list_entry(sdp->sd_log_le_ordered.next, struct gfs2_bufdata, bd_le.le_list); | |
671 | list_move(&bd->bd_le.le_list, &written); | |
672 | bh = bd->bd_bh; | |
673 | if (!buffer_dirty(bh)) | |
674 | continue; | |
675 | get_bh(bh); | |
676 | gfs2_log_unlock(sdp); | |
677 | lock_buffer(bh); | |
b8e7cbb6 | 678 | if (buffer_mapped(bh) && test_clear_buffer_dirty(bh)) { |
d7b616e2 | 679 | bh->b_end_io = end_buffer_write_sync; |
721a9602 | 680 | submit_bh(WRITE_SYNC, bh); |
d7b616e2 SW |
681 | } else { |
682 | unlock_buffer(bh); | |
683 | brelse(bh); | |
684 | } | |
685 | gfs2_log_lock(sdp); | |
686 | } | |
687 | list_splice(&written, &sdp->sd_log_le_ordered); | |
688 | gfs2_log_unlock(sdp); | |
689 | } | |
690 | ||
691 | static void gfs2_ordered_wait(struct gfs2_sbd *sdp) | |
692 | { | |
693 | struct gfs2_bufdata *bd; | |
694 | struct buffer_head *bh; | |
695 | ||
696 | gfs2_log_lock(sdp); | |
697 | while (!list_empty(&sdp->sd_log_le_ordered)) { | |
698 | bd = list_entry(sdp->sd_log_le_ordered.prev, struct gfs2_bufdata, bd_le.le_list); | |
699 | bh = bd->bd_bh; | |
700 | if (buffer_locked(bh)) { | |
701 | get_bh(bh); | |
702 | gfs2_log_unlock(sdp); | |
703 | wait_on_buffer(bh); | |
704 | brelse(bh); | |
705 | gfs2_log_lock(sdp); | |
706 | continue; | |
707 | } | |
708 | list_del_init(&bd->bd_le.le_list); | |
709 | } | |
710 | gfs2_log_unlock(sdp); | |
711 | } | |
712 | ||
b3b94faa | 713 | /** |
b09e593d | 714 | * gfs2_log_flush - flush incore transaction(s) |
b3b94faa DT |
715 | * @sdp: the filesystem |
716 | * @gl: The glock structure to flush. If NULL, flush the whole incore log | |
717 | * | |
718 | */ | |
719 | ||
ed4878e8 | 720 | void gfs2_log_flush(struct gfs2_sbd *sdp, struct gfs2_glock *gl) |
b3b94faa DT |
721 | { |
722 | struct gfs2_ail *ai; | |
723 | ||
484adff8 | 724 | down_write(&sdp->sd_log_flush_lock); |
f55ab26a | 725 | |
2bcd610d SW |
726 | /* Log might have been flushed while we waited for the flush lock */ |
727 | if (gl && !test_bit(GLF_LFLUSH, &gl->gl_flags)) { | |
728 | up_write(&sdp->sd_log_flush_lock); | |
729 | return; | |
f55ab26a | 730 | } |
63997775 | 731 | trace_gfs2_log_flush(sdp, 1); |
f55ab26a | 732 | |
b09e593d SW |
733 | ai = kzalloc(sizeof(struct gfs2_ail), GFP_NOFS | __GFP_NOFAIL); |
734 | INIT_LIST_HEAD(&ai->ai_ail1_list); | |
735 | INIT_LIST_HEAD(&ai->ai_ail2_list); | |
b3b94faa | 736 | |
16615be1 SW |
737 | if (sdp->sd_log_num_buf != sdp->sd_log_commited_buf) { |
738 | printk(KERN_INFO "GFS2: log buf %u %u\n", sdp->sd_log_num_buf, | |
739 | sdp->sd_log_commited_buf); | |
740 | gfs2_assert_withdraw(sdp, 0); | |
741 | } | |
742 | if (sdp->sd_log_num_databuf != sdp->sd_log_commited_databuf) { | |
743 | printk(KERN_INFO "GFS2: log databuf %u %u\n", | |
744 | sdp->sd_log_num_databuf, sdp->sd_log_commited_databuf); | |
745 | gfs2_assert_withdraw(sdp, 0); | |
746 | } | |
b3b94faa DT |
747 | gfs2_assert_withdraw(sdp, |
748 | sdp->sd_log_num_revoke == sdp->sd_log_commited_revoke); | |
749 | ||
b3b94faa DT |
750 | sdp->sd_log_flush_head = sdp->sd_log_head; |
751 | sdp->sd_log_flush_wrapped = 0; | |
752 | ai->ai_first = sdp->sd_log_flush_head; | |
753 | ||
d7b616e2 | 754 | gfs2_ordered_write(sdp); |
b3b94faa | 755 | lops_before_commit(sdp); |
d7b616e2 SW |
756 | gfs2_ordered_wait(sdp); |
757 | ||
16615be1 | 758 | if (sdp->sd_log_head != sdp->sd_log_flush_head) |
b3b94faa | 759 | log_flush_commit(sdp); |
2332c443 RP |
760 | else if (sdp->sd_log_tail != current_tail(sdp) && !sdp->sd_log_idle){ |
761 | gfs2_log_lock(sdp); | |
fd041f0b | 762 | atomic_dec(&sdp->sd_log_blks_free); /* Adjust for unreserved buffer */ |
63997775 | 763 | trace_gfs2_log_blocks(sdp, -1); |
2332c443 | 764 | gfs2_log_unlock(sdp); |
b3b94faa | 765 | log_write_header(sdp, 0, PULL); |
2332c443 | 766 | } |
b3b94faa | 767 | lops_after_commit(sdp, ai); |
b09e593d | 768 | |
fe1a698f SW |
769 | gfs2_log_lock(sdp); |
770 | sdp->sd_log_head = sdp->sd_log_flush_head; | |
faa31ce8 SW |
771 | sdp->sd_log_blks_reserved = 0; |
772 | sdp->sd_log_commited_buf = 0; | |
2332c443 | 773 | sdp->sd_log_commited_databuf = 0; |
faa31ce8 | 774 | sdp->sd_log_commited_revoke = 0; |
b3b94faa | 775 | |
d6a079e8 | 776 | spin_lock(&sdp->sd_ail_lock); |
b3b94faa DT |
777 | if (!list_empty(&ai->ai_ail1_list)) { |
778 | list_add(&ai->ai_list, &sdp->sd_ail1_list); | |
779 | ai = NULL; | |
780 | } | |
d6a079e8 | 781 | spin_unlock(&sdp->sd_ail_lock); |
b3b94faa | 782 | gfs2_log_unlock(sdp); |
63997775 | 783 | trace_gfs2_log_flush(sdp, 0); |
484adff8 | 784 | up_write(&sdp->sd_log_flush_lock); |
b3b94faa DT |
785 | |
786 | kfree(ai); | |
787 | } | |
788 | ||
789 | static void log_refund(struct gfs2_sbd *sdp, struct gfs2_trans *tr) | |
790 | { | |
2332c443 | 791 | unsigned int reserved; |
ac39aadd | 792 | unsigned int unused; |
b3b94faa DT |
793 | |
794 | gfs2_log_lock(sdp); | |
795 | ||
796 | sdp->sd_log_commited_buf += tr->tr_num_buf_new - tr->tr_num_buf_rm; | |
2332c443 RP |
797 | sdp->sd_log_commited_databuf += tr->tr_num_databuf_new - |
798 | tr->tr_num_databuf_rm; | |
799 | gfs2_assert_withdraw(sdp, (((int)sdp->sd_log_commited_buf) >= 0) || | |
800 | (((int)sdp->sd_log_commited_databuf) >= 0)); | |
b3b94faa | 801 | sdp->sd_log_commited_revoke += tr->tr_num_revoke - tr->tr_num_revoke_rm; |
2332c443 | 802 | reserved = calc_reserved(sdp); |
62be1f71 | 803 | gfs2_assert_withdraw(sdp, sdp->sd_log_blks_reserved + tr->tr_reserved >= reserved); |
ac39aadd | 804 | unused = sdp->sd_log_blks_reserved - reserved + tr->tr_reserved; |
ac39aadd | 805 | atomic_add(unused, &sdp->sd_log_blks_free); |
63997775 | 806 | trace_gfs2_log_blocks(sdp, unused); |
fd041f0b | 807 | gfs2_assert_withdraw(sdp, atomic_read(&sdp->sd_log_blks_free) <= |
2332c443 | 808 | sdp->sd_jdesc->jd_blocks); |
b3b94faa DT |
809 | sdp->sd_log_blks_reserved = reserved; |
810 | ||
811 | gfs2_log_unlock(sdp); | |
812 | } | |
813 | ||
d0109bfa BP |
814 | static void buf_lo_incore_commit(struct gfs2_sbd *sdp, struct gfs2_trans *tr) |
815 | { | |
816 | struct list_head *head = &tr->tr_list_buf; | |
817 | struct gfs2_bufdata *bd; | |
818 | ||
819 | gfs2_log_lock(sdp); | |
820 | while (!list_empty(head)) { | |
821 | bd = list_entry(head->next, struct gfs2_bufdata, bd_list_tr); | |
822 | list_del_init(&bd->bd_list_tr); | |
823 | tr->tr_num_buf--; | |
824 | } | |
825 | gfs2_log_unlock(sdp); | |
826 | gfs2_assert_warn(sdp, !tr->tr_num_buf); | |
827 | } | |
828 | ||
b3b94faa DT |
829 | /** |
830 | * gfs2_log_commit - Commit a transaction to the log | |
831 | * @sdp: the filesystem | |
832 | * @tr: the transaction | |
833 | * | |
5e687eac BM |
834 | * We wake up gfs2_logd if the number of pinned blocks exceed thresh1 |
835 | * or the total number of used blocks (pinned blocks plus AIL blocks) | |
836 | * is greater than thresh2. | |
837 | * | |
838 | * At mount time thresh1 is 1/3rd of journal size, thresh2 is 2/3rd of | |
839 | * journal size. | |
840 | * | |
b3b94faa DT |
841 | * Returns: errno |
842 | */ | |
843 | ||
844 | void gfs2_log_commit(struct gfs2_sbd *sdp, struct gfs2_trans *tr) | |
845 | { | |
846 | log_refund(sdp, tr); | |
d0109bfa | 847 | buf_lo_incore_commit(sdp, tr); |
b3b94faa | 848 | |
484adff8 | 849 | up_read(&sdp->sd_log_flush_lock); |
b3b94faa | 850 | |
5e687eac BM |
851 | if (atomic_read(&sdp->sd_log_pinned) > atomic_read(&sdp->sd_log_thresh1) || |
852 | ((sdp->sd_jdesc->jd_blocks - atomic_read(&sdp->sd_log_blks_free)) > | |
853 | atomic_read(&sdp->sd_log_thresh2))) | |
854 | wake_up(&sdp->sd_logd_waitq); | |
b3b94faa DT |
855 | } |
856 | ||
857 | /** | |
858 | * gfs2_log_shutdown - write a shutdown header into a journal | |
859 | * @sdp: the filesystem | |
860 | * | |
861 | */ | |
862 | ||
863 | void gfs2_log_shutdown(struct gfs2_sbd *sdp) | |
864 | { | |
484adff8 | 865 | down_write(&sdp->sd_log_flush_lock); |
b3b94faa | 866 | |
b3b94faa | 867 | gfs2_assert_withdraw(sdp, !sdp->sd_log_blks_reserved); |
b3b94faa DT |
868 | gfs2_assert_withdraw(sdp, !sdp->sd_log_num_buf); |
869 | gfs2_assert_withdraw(sdp, !sdp->sd_log_num_revoke); | |
870 | gfs2_assert_withdraw(sdp, !sdp->sd_log_num_rg); | |
871 | gfs2_assert_withdraw(sdp, !sdp->sd_log_num_databuf); | |
872 | gfs2_assert_withdraw(sdp, list_empty(&sdp->sd_ail1_list)); | |
873 | ||
874 | sdp->sd_log_flush_head = sdp->sd_log_head; | |
875 | sdp->sd_log_flush_wrapped = 0; | |
876 | ||
2332c443 RP |
877 | log_write_header(sdp, GFS2_LOG_HEAD_UNMOUNT, |
878 | (sdp->sd_log_tail == current_tail(sdp)) ? 0 : PULL); | |
b3b94faa | 879 | |
fd041f0b | 880 | gfs2_assert_warn(sdp, atomic_read(&sdp->sd_log_blks_free) == sdp->sd_jdesc->jd_blocks); |
a74604be SW |
881 | gfs2_assert_warn(sdp, sdp->sd_log_head == sdp->sd_log_tail); |
882 | gfs2_assert_warn(sdp, list_empty(&sdp->sd_ail2_list)); | |
b3b94faa DT |
883 | |
884 | sdp->sd_log_head = sdp->sd_log_flush_head; | |
b3b94faa DT |
885 | sdp->sd_log_tail = sdp->sd_log_head; |
886 | ||
484adff8 | 887 | up_write(&sdp->sd_log_flush_lock); |
b3b94faa DT |
888 | } |
889 | ||
a25311c8 SW |
890 | |
891 | /** | |
892 | * gfs2_meta_syncfs - sync all the buffers in a filesystem | |
893 | * @sdp: the filesystem | |
894 | * | |
895 | */ | |
896 | ||
897 | void gfs2_meta_syncfs(struct gfs2_sbd *sdp) | |
898 | { | |
899 | gfs2_log_flush(sdp, NULL); | |
900 | for (;;) { | |
5e687eac | 901 | gfs2_ail1_start(sdp); |
26b06a69 | 902 | gfs2_ail1_wait(sdp); |
4667a0ec | 903 | if (gfs2_ail1_empty(sdp)) |
a25311c8 | 904 | break; |
a25311c8 | 905 | } |
380f7c65 | 906 | gfs2_log_flush(sdp, NULL); |
a25311c8 SW |
907 | } |
908 | ||
5e687eac BM |
909 | static inline int gfs2_jrnl_flush_reqd(struct gfs2_sbd *sdp) |
910 | { | |
911 | return (atomic_read(&sdp->sd_log_pinned) >= atomic_read(&sdp->sd_log_thresh1)); | |
912 | } | |
913 | ||
914 | static inline int gfs2_ail_flush_reqd(struct gfs2_sbd *sdp) | |
915 | { | |
916 | unsigned int used_blocks = sdp->sd_jdesc->jd_blocks - atomic_read(&sdp->sd_log_blks_free); | |
917 | return used_blocks >= atomic_read(&sdp->sd_log_thresh2); | |
918 | } | |
ec69b188 SW |
919 | |
920 | /** | |
921 | * gfs2_logd - Update log tail as Active Items get flushed to in-place blocks | |
922 | * @sdp: Pointer to GFS2 superblock | |
923 | * | |
924 | * Also, periodically check to make sure that we're using the most recent | |
925 | * journal index. | |
926 | */ | |
927 | ||
928 | int gfs2_logd(void *data) | |
929 | { | |
930 | struct gfs2_sbd *sdp = data; | |
5e687eac BM |
931 | unsigned long t = 1; |
932 | DEFINE_WAIT(wait); | |
933 | unsigned preflush; | |
ec69b188 SW |
934 | |
935 | while (!kthread_should_stop()) { | |
ec69b188 | 936 | |
5e687eac BM |
937 | preflush = atomic_read(&sdp->sd_log_pinned); |
938 | if (gfs2_jrnl_flush_reqd(sdp) || t == 0) { | |
4667a0ec | 939 | gfs2_ail1_empty(sdp); |
5e687eac | 940 | gfs2_log_flush(sdp, NULL); |
5e687eac | 941 | } |
ec69b188 | 942 | |
5e687eac BM |
943 | if (gfs2_ail_flush_reqd(sdp)) { |
944 | gfs2_ail1_start(sdp); | |
26b06a69 | 945 | gfs2_ail1_wait(sdp); |
4667a0ec | 946 | gfs2_ail1_empty(sdp); |
ec69b188 | 947 | gfs2_log_flush(sdp, NULL); |
ec69b188 SW |
948 | } |
949 | ||
26b06a69 SW |
950 | if (!gfs2_ail_flush_reqd(sdp)) |
951 | wake_up(&sdp->sd_log_waitq); | |
952 | ||
ec69b188 SW |
953 | t = gfs2_tune_get(sdp, gt_logd_secs) * HZ; |
954 | if (freezing(current)) | |
955 | refrigerator(); | |
5e687eac BM |
956 | |
957 | do { | |
958 | prepare_to_wait(&sdp->sd_logd_waitq, &wait, | |
5f487490 | 959 | TASK_INTERRUPTIBLE); |
5e687eac BM |
960 | if (!gfs2_ail_flush_reqd(sdp) && |
961 | !gfs2_jrnl_flush_reqd(sdp) && | |
962 | !kthread_should_stop()) | |
963 | t = schedule_timeout(t); | |
964 | } while(t && !gfs2_ail_flush_reqd(sdp) && | |
965 | !gfs2_jrnl_flush_reqd(sdp) && | |
966 | !kthread_should_stop()); | |
967 | finish_wait(&sdp->sd_logd_waitq, &wait); | |
ec69b188 SW |
968 | } |
969 | ||
970 | return 0; | |
971 | } | |
972 |