1 /*
2 * segment.c - NILFS segment constructor.
3 *
4 * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 *
20 * Written by Ryusuke Konishi <ryusuke@osrg.net>
21 *
22 */
23
24 #include <linux/pagemap.h>
25 #include <linux/buffer_head.h>
26 #include <linux/writeback.h>
27 #include <linux/bio.h>
28 #include <linux/completion.h>
29 #include <linux/blkdev.h>
30 #include <linux/backing-dev.h>
31 #include <linux/freezer.h>
32 #include <linux/kthread.h>
33 #include <linux/crc32.h>
34 #include <linux/pagevec.h>
35 #include <linux/slab.h>
36 #include "nilfs.h"
37 #include "btnode.h"
38 #include "page.h"
39 #include "segment.h"
40 #include "sufile.h"
41 #include "cpfile.h"
42 #include "ifile.h"
43 #include "segbuf.h"
44
45
46 /*
47 * Segment constructor
48 */
49 #define SC_N_INODEVEC 16 /* Size of locally allocated inode vector */
50
51 #define SC_MAX_SEGDELTA 64 /* Upper limit of the number of segments
52 appended in collection retry loop */
53
54 /* Construction mode */
55 enum {
56 SC_LSEG_SR = 1, /* Make a logical segment having a super root */
57 SC_LSEG_DSYNC, /* Flush data blocks of a given file and make
58 a logical segment without a super root */
59 SC_FLUSH_FILE, /* Flush data files, leads to segment writes without
60 creating a checkpoint */
61 SC_FLUSH_DAT, /* Flush DAT file. This also creates segments without
62 a checkpoint */
63 };
64
65 /* Stage numbers of dirty block collection */
66 enum {
67 NILFS_ST_INIT = 0,
68 NILFS_ST_GC, /* Collecting dirty blocks for GC */
69 NILFS_ST_FILE,
70 NILFS_ST_IFILE,
71 NILFS_ST_CPFILE,
72 NILFS_ST_SUFILE,
73 NILFS_ST_DAT,
74 NILFS_ST_SR, /* Super root */
75 NILFS_ST_DSYNC, /* Data sync blocks */
76 NILFS_ST_DONE,
77 };
78
79 /* State flags of collection */
80 #define NILFS_CF_NODE 0x0001 /* Collecting node blocks */
81 #define NILFS_CF_IFILE_STARTED 0x0002 /* IFILE stage has started */
82 #define NILFS_CF_SUFREED 0x0004 /* segment usages has been freed */
83 #define NILFS_CF_HISTORY_MASK (NILFS_CF_IFILE_STARTED | NILFS_CF_SUFREED)
84
85 /* Operations depending on the construction mode and file type */
86 struct nilfs_sc_operations {
87 int (*collect_data)(struct nilfs_sc_info *, struct buffer_head *,
88 struct inode *);
89 int (*collect_node)(struct nilfs_sc_info *, struct buffer_head *,
90 struct inode *);
91 int (*collect_bmap)(struct nilfs_sc_info *, struct buffer_head *,
92 struct inode *);
93 void (*write_data_binfo)(struct nilfs_sc_info *,
94 struct nilfs_segsum_pointer *,
95 union nilfs_binfo *);
96 void (*write_node_binfo)(struct nilfs_sc_info *,
97 struct nilfs_segsum_pointer *,
98 union nilfs_binfo *);
99 };
100
101 /*
102 * Other definitions
103 */
104 static void nilfs_segctor_start_timer(struct nilfs_sc_info *);
105 static void nilfs_segctor_do_flush(struct nilfs_sc_info *, int);
106 static void nilfs_segctor_do_immediate_flush(struct nilfs_sc_info *);
107 static void nilfs_dispose_list(struct the_nilfs *, struct list_head *, int);
108
109 #define nilfs_cnt32_gt(a, b) \
110 (typecheck(__u32, a) && typecheck(__u32, b) && \
111 ((__s32)(b) - (__s32)(a) < 0))
112 #define nilfs_cnt32_ge(a, b) \
113 (typecheck(__u32, a) && typecheck(__u32, b) && \
114 ((__s32)(a) - (__s32)(b) >= 0))
115 #define nilfs_cnt32_lt(a, b) nilfs_cnt32_gt(b, a)
116 #define nilfs_cnt32_le(a, b) nilfs_cnt32_ge(b, a)
117
nilfs_prepare_segment_lock(struct nilfs_transaction_info * ti)118 static int nilfs_prepare_segment_lock(struct nilfs_transaction_info *ti)
119 {
120 struct nilfs_transaction_info *cur_ti = current->journal_info;
121 void *save = NULL;
122
123 if (cur_ti) {
124 if (cur_ti->ti_magic == NILFS_TI_MAGIC)
125 return ++cur_ti->ti_count;
126 else {
127 /*
128 * If journal_info field is occupied by other FS,
129 * it is saved and will be restored on
130 * nilfs_transaction_commit().
131 */
132 printk(KERN_WARNING
133 "NILFS warning: journal info from a different "
134 "FS\n");
135 save = current->journal_info;
136 }
137 }
138 if (!ti) {
139 ti = kmem_cache_alloc(nilfs_transaction_cachep, GFP_NOFS);
140 if (!ti)
141 return -ENOMEM;
142 ti->ti_flags = NILFS_TI_DYNAMIC_ALLOC;
143 } else {
144 ti->ti_flags = 0;
145 }
146 ti->ti_count = 0;
147 ti->ti_save = save;
148 ti->ti_magic = NILFS_TI_MAGIC;
149 current->journal_info = ti;
150 return 0;
151 }
152
153 /**
154 * nilfs_transaction_begin - start indivisible file operations.
155 * @sb: super block
156 * @ti: nilfs_transaction_info
157 * @vacancy_check: flags for vacancy rate checks
158 *
159 * nilfs_transaction_begin() acquires a reader/writer semaphore, called
160 * the segment semaphore, to make a segment construction and write tasks
161 * exclusive. The function is used with nilfs_transaction_commit() in pairs.
162 * The region enclosed by these two functions can be nested. To avoid a
163 * deadlock, the semaphore is only acquired or released in the outermost call.
164 *
165 * This function allocates a nilfs_transaction_info struct to keep context
166 * information on it. It is initialized and hooked onto the current task in
167 * the outermost call. If a pre-allocated struct is given to @ti, it is used
168 * instead; otherwise a new struct is assigned from a slab.
169 *
170 * When @vacancy_check flag is set, this function will check the amount of
171 * free space, and will wait for the GC to reclaim disk space if low capacity.
172 *
173 * Return Value: On success, 0 is returned. On error, one of the following
174 * negative error code is returned.
175 *
176 * %-ENOMEM - Insufficient memory available.
177 *
178 * %-ENOSPC - No space left on device
179 */
nilfs_transaction_begin(struct super_block * sb,struct nilfs_transaction_info * ti,int vacancy_check)180 int nilfs_transaction_begin(struct super_block *sb,
181 struct nilfs_transaction_info *ti,
182 int vacancy_check)
183 {
184 struct the_nilfs *nilfs;
185 int ret = nilfs_prepare_segment_lock(ti);
186
187 if (unlikely(ret < 0))
188 return ret;
189 if (ret > 0)
190 return 0;
191
192 vfs_check_frozen(sb, SB_FREEZE_WRITE);
193
194 nilfs = sb->s_fs_info;
195 down_read(&nilfs->ns_segctor_sem);
196 if (vacancy_check && nilfs_near_disk_full(nilfs)) {
197 up_read(&nilfs->ns_segctor_sem);
198 ret = -ENOSPC;
199 goto failed;
200 }
201 return 0;
202
203 failed:
204 ti = current->journal_info;
205 current->journal_info = ti->ti_save;
206 if (ti->ti_flags & NILFS_TI_DYNAMIC_ALLOC)
207 kmem_cache_free(nilfs_transaction_cachep, ti);
208 return ret;
209 }
210
211 /**
212 * nilfs_transaction_commit - commit indivisible file operations.
213 * @sb: super block
214 *
215 * nilfs_transaction_commit() releases the read semaphore which is
216 * acquired by nilfs_transaction_begin(). This is only performed
217 * in outermost call of this function. If a commit flag is set,
218 * nilfs_transaction_commit() sets a timer to start the segment
219 * constructor. If a sync flag is set, it starts construction
220 * directly.
221 */
nilfs_transaction_commit(struct super_block * sb)222 int nilfs_transaction_commit(struct super_block *sb)
223 {
224 struct nilfs_transaction_info *ti = current->journal_info;
225 struct the_nilfs *nilfs = sb->s_fs_info;
226 int err = 0;
227
228 BUG_ON(ti == NULL || ti->ti_magic != NILFS_TI_MAGIC);
229 ti->ti_flags |= NILFS_TI_COMMIT;
230 if (ti->ti_count > 0) {
231 ti->ti_count--;
232 return 0;
233 }
234 if (nilfs->ns_writer) {
235 struct nilfs_sc_info *sci = nilfs->ns_writer;
236
237 if (ti->ti_flags & NILFS_TI_COMMIT)
238 nilfs_segctor_start_timer(sci);
239 if (atomic_read(&nilfs->ns_ndirtyblks) > sci->sc_watermark)
240 nilfs_segctor_do_flush(sci, 0);
241 }
242 up_read(&nilfs->ns_segctor_sem);
243 current->journal_info = ti->ti_save;
244
245 if (ti->ti_flags & NILFS_TI_SYNC)
246 err = nilfs_construct_segment(sb);
247 if (ti->ti_flags & NILFS_TI_DYNAMIC_ALLOC)
248 kmem_cache_free(nilfs_transaction_cachep, ti);
249 return err;
250 }
251
nilfs_transaction_abort(struct super_block * sb)252 void nilfs_transaction_abort(struct super_block *sb)
253 {
254 struct nilfs_transaction_info *ti = current->journal_info;
255 struct the_nilfs *nilfs = sb->s_fs_info;
256
257 BUG_ON(ti == NULL || ti->ti_magic != NILFS_TI_MAGIC);
258 if (ti->ti_count > 0) {
259 ti->ti_count--;
260 return;
261 }
262 up_read(&nilfs->ns_segctor_sem);
263
264 current->journal_info = ti->ti_save;
265 if (ti->ti_flags & NILFS_TI_DYNAMIC_ALLOC)
266 kmem_cache_free(nilfs_transaction_cachep, ti);
267 }
268
nilfs_relax_pressure_in_lock(struct super_block * sb)269 void nilfs_relax_pressure_in_lock(struct super_block *sb)
270 {
271 struct the_nilfs *nilfs = sb->s_fs_info;
272 struct nilfs_sc_info *sci = nilfs->ns_writer;
273
274 if (!sci || !sci->sc_flush_request)
275 return;
276
277 set_bit(NILFS_SC_PRIOR_FLUSH, &sci->sc_flags);
278 up_read(&nilfs->ns_segctor_sem);
279
280 down_write(&nilfs->ns_segctor_sem);
281 if (sci->sc_flush_request &&
282 test_bit(NILFS_SC_PRIOR_FLUSH, &sci->sc_flags)) {
283 struct nilfs_transaction_info *ti = current->journal_info;
284
285 ti->ti_flags |= NILFS_TI_WRITER;
286 nilfs_segctor_do_immediate_flush(sci);
287 ti->ti_flags &= ~NILFS_TI_WRITER;
288 }
289 downgrade_write(&nilfs->ns_segctor_sem);
290 }
291
nilfs_transaction_lock(struct super_block * sb,struct nilfs_transaction_info * ti,int gcflag)292 static void nilfs_transaction_lock(struct super_block *sb,
293 struct nilfs_transaction_info *ti,
294 int gcflag)
295 {
296 struct nilfs_transaction_info *cur_ti = current->journal_info;
297 struct the_nilfs *nilfs = sb->s_fs_info;
298 struct nilfs_sc_info *sci = nilfs->ns_writer;
299
300 WARN_ON(cur_ti);
301 ti->ti_flags = NILFS_TI_WRITER;
302 ti->ti_count = 0;
303 ti->ti_save = cur_ti;
304 ti->ti_magic = NILFS_TI_MAGIC;
305 INIT_LIST_HEAD(&ti->ti_garbage);
306 current->journal_info = ti;
307
308 for (;;) {
309 down_write(&nilfs->ns_segctor_sem);
310 if (!test_bit(NILFS_SC_PRIOR_FLUSH, &sci->sc_flags))
311 break;
312
313 nilfs_segctor_do_immediate_flush(sci);
314
315 up_write(&nilfs->ns_segctor_sem);
316 yield();
317 }
318 if (gcflag)
319 ti->ti_flags |= NILFS_TI_GC;
320 }
321
nilfs_transaction_unlock(struct super_block * sb)322 static void nilfs_transaction_unlock(struct super_block *sb)
323 {
324 struct nilfs_transaction_info *ti = current->journal_info;
325 struct the_nilfs *nilfs = sb->s_fs_info;
326
327 BUG_ON(ti == NULL || ti->ti_magic != NILFS_TI_MAGIC);
328 BUG_ON(ti->ti_count > 0);
329
330 up_write(&nilfs->ns_segctor_sem);
331 current->journal_info = ti->ti_save;
332 if (!list_empty(&ti->ti_garbage))
333 nilfs_dispose_list(nilfs, &ti->ti_garbage, 0);
334 }
335
nilfs_segctor_map_segsum_entry(struct nilfs_sc_info * sci,struct nilfs_segsum_pointer * ssp,unsigned bytes)336 static void *nilfs_segctor_map_segsum_entry(struct nilfs_sc_info *sci,
337 struct nilfs_segsum_pointer *ssp,
338 unsigned bytes)
339 {
340 struct nilfs_segment_buffer *segbuf = sci->sc_curseg;
341 unsigned blocksize = sci->sc_super->s_blocksize;
342 void *p;
343
344 if (unlikely(ssp->offset + bytes > blocksize)) {
345 ssp->offset = 0;
346 BUG_ON(NILFS_SEGBUF_BH_IS_LAST(ssp->bh,
347 &segbuf->sb_segsum_buffers));
348 ssp->bh = NILFS_SEGBUF_NEXT_BH(ssp->bh);
349 }
350 p = ssp->bh->b_data + ssp->offset;
351 ssp->offset += bytes;
352 return p;
353 }
354
355 /**
356 * nilfs_segctor_reset_segment_buffer - reset the current segment buffer
357 * @sci: nilfs_sc_info
358 */
nilfs_segctor_reset_segment_buffer(struct nilfs_sc_info * sci)359 static int nilfs_segctor_reset_segment_buffer(struct nilfs_sc_info *sci)
360 {
361 struct nilfs_segment_buffer *segbuf = sci->sc_curseg;
362 struct buffer_head *sumbh;
363 unsigned sumbytes;
364 unsigned flags = 0;
365 int err;
366
367 if (nilfs_doing_gc())
368 flags = NILFS_SS_GC;
369 err = nilfs_segbuf_reset(segbuf, flags, sci->sc_seg_ctime, sci->sc_cno);
370 if (unlikely(err))
371 return err;
372
373 sumbh = NILFS_SEGBUF_FIRST_BH(&segbuf->sb_segsum_buffers);
374 sumbytes = segbuf->sb_sum.sumbytes;
375 sci->sc_finfo_ptr.bh = sumbh; sci->sc_finfo_ptr.offset = sumbytes;
376 sci->sc_binfo_ptr.bh = sumbh; sci->sc_binfo_ptr.offset = sumbytes;
377 sci->sc_blk_cnt = sci->sc_datablk_cnt = 0;
378 return 0;
379 }
380
nilfs_segctor_feed_segment(struct nilfs_sc_info * sci)381 static int nilfs_segctor_feed_segment(struct nilfs_sc_info *sci)
382 {
383 sci->sc_nblk_this_inc += sci->sc_curseg->sb_sum.nblocks;
384 if (NILFS_SEGBUF_IS_LAST(sci->sc_curseg, &sci->sc_segbufs))
385 return -E2BIG; /* The current segment is filled up
386 (internal code) */
387 sci->sc_curseg = NILFS_NEXT_SEGBUF(sci->sc_curseg);
388 return nilfs_segctor_reset_segment_buffer(sci);
389 }
390
nilfs_segctor_add_super_root(struct nilfs_sc_info * sci)391 static int nilfs_segctor_add_super_root(struct nilfs_sc_info *sci)
392 {
393 struct nilfs_segment_buffer *segbuf = sci->sc_curseg;
394 int err;
395
396 if (segbuf->sb_sum.nblocks >= segbuf->sb_rest_blocks) {
397 err = nilfs_segctor_feed_segment(sci);
398 if (err)
399 return err;
400 segbuf = sci->sc_curseg;
401 }
402 err = nilfs_segbuf_extend_payload(segbuf, &segbuf->sb_super_root);
403 if (likely(!err))
404 segbuf->sb_sum.flags |= NILFS_SS_SR;
405 return err;
406 }
407
408 /*
409 * Functions for making segment summary and payloads
410 */
nilfs_segctor_segsum_block_required(struct nilfs_sc_info * sci,const struct nilfs_segsum_pointer * ssp,unsigned binfo_size)411 static int nilfs_segctor_segsum_block_required(
412 struct nilfs_sc_info *sci, const struct nilfs_segsum_pointer *ssp,
413 unsigned binfo_size)
414 {
415 unsigned blocksize = sci->sc_super->s_blocksize;
416 /* Size of finfo and binfo is enough small against blocksize */
417
418 return ssp->offset + binfo_size +
419 (!sci->sc_blk_cnt ? sizeof(struct nilfs_finfo) : 0) >
420 blocksize;
421 }
422
nilfs_segctor_begin_finfo(struct nilfs_sc_info * sci,struct inode * inode)423 static void nilfs_segctor_begin_finfo(struct nilfs_sc_info *sci,
424 struct inode *inode)
425 {
426 sci->sc_curseg->sb_sum.nfinfo++;
427 sci->sc_binfo_ptr = sci->sc_finfo_ptr;
428 nilfs_segctor_map_segsum_entry(
429 sci, &sci->sc_binfo_ptr, sizeof(struct nilfs_finfo));
430
431 if (NILFS_I(inode)->i_root &&
432 !test_bit(NILFS_SC_HAVE_DELTA, &sci->sc_flags))
433 set_bit(NILFS_SC_HAVE_DELTA, &sci->sc_flags);
434 /* skip finfo */
435 }
436
nilfs_segctor_end_finfo(struct nilfs_sc_info * sci,struct inode * inode)437 static void nilfs_segctor_end_finfo(struct nilfs_sc_info *sci,
438 struct inode *inode)
439 {
440 struct nilfs_finfo *finfo;
441 struct nilfs_inode_info *ii;
442 struct nilfs_segment_buffer *segbuf;
443 __u64 cno;
444
445 if (sci->sc_blk_cnt == 0)
446 return;
447
448 ii = NILFS_I(inode);
449
450 if (test_bit(NILFS_I_GCINODE, &ii->i_state))
451 cno = ii->i_cno;
452 else if (NILFS_ROOT_METADATA_FILE(inode->i_ino))
453 cno = 0;
454 else
455 cno = sci->sc_cno;
456
457 finfo = nilfs_segctor_map_segsum_entry(sci, &sci->sc_finfo_ptr,
458 sizeof(*finfo));
459 finfo->fi_ino = cpu_to_le64(inode->i_ino);
460 finfo->fi_nblocks = cpu_to_le32(sci->sc_blk_cnt);
461 finfo->fi_ndatablk = cpu_to_le32(sci->sc_datablk_cnt);
462 finfo->fi_cno = cpu_to_le64(cno);
463
464 segbuf = sci->sc_curseg;
465 segbuf->sb_sum.sumbytes = sci->sc_binfo_ptr.offset +
466 sci->sc_super->s_blocksize * (segbuf->sb_sum.nsumblk - 1);
467 sci->sc_finfo_ptr = sci->sc_binfo_ptr;
468 sci->sc_blk_cnt = sci->sc_datablk_cnt = 0;
469 }
470
nilfs_segctor_add_file_block(struct nilfs_sc_info * sci,struct buffer_head * bh,struct inode * inode,unsigned binfo_size)471 static int nilfs_segctor_add_file_block(struct nilfs_sc_info *sci,
472 struct buffer_head *bh,
473 struct inode *inode,
474 unsigned binfo_size)
475 {
476 struct nilfs_segment_buffer *segbuf;
477 int required, err = 0;
478
479 retry:
480 segbuf = sci->sc_curseg;
481 required = nilfs_segctor_segsum_block_required(
482 sci, &sci->sc_binfo_ptr, binfo_size);
483 if (segbuf->sb_sum.nblocks + required + 1 > segbuf->sb_rest_blocks) {
484 nilfs_segctor_end_finfo(sci, inode);
485 err = nilfs_segctor_feed_segment(sci);
486 if (err)
487 return err;
488 goto retry;
489 }
490 if (unlikely(required)) {
491 err = nilfs_segbuf_extend_segsum(segbuf);
492 if (unlikely(err))
493 goto failed;
494 }
495 if (sci->sc_blk_cnt == 0)
496 nilfs_segctor_begin_finfo(sci, inode);
497
498 nilfs_segctor_map_segsum_entry(sci, &sci->sc_binfo_ptr, binfo_size);
499 /* Substitution to vblocknr is delayed until update_blocknr() */
500 nilfs_segbuf_add_file_buffer(segbuf, bh);
501 sci->sc_blk_cnt++;
502 failed:
503 return err;
504 }
505
506 /*
507 * Callback functions that enumerate, mark, and collect dirty blocks
508 */
nilfs_collect_file_data(struct nilfs_sc_info * sci,struct buffer_head * bh,struct inode * inode)509 static int nilfs_collect_file_data(struct nilfs_sc_info *sci,
510 struct buffer_head *bh, struct inode *inode)
511 {
512 int err;
513
514 err = nilfs_bmap_propagate(NILFS_I(inode)->i_bmap, bh);
515 if (err < 0)
516 return err;
517
518 err = nilfs_segctor_add_file_block(sci, bh, inode,
519 sizeof(struct nilfs_binfo_v));
520 if (!err)
521 sci->sc_datablk_cnt++;
522 return err;
523 }
524
nilfs_collect_file_node(struct nilfs_sc_info * sci,struct buffer_head * bh,struct inode * inode)525 static int nilfs_collect_file_node(struct nilfs_sc_info *sci,
526 struct buffer_head *bh,
527 struct inode *inode)
528 {
529 return nilfs_bmap_propagate(NILFS_I(inode)->i_bmap, bh);
530 }
531
nilfs_collect_file_bmap(struct nilfs_sc_info * sci,struct buffer_head * bh,struct inode * inode)532 static int nilfs_collect_file_bmap(struct nilfs_sc_info *sci,
533 struct buffer_head *bh,
534 struct inode *inode)
535 {
536 WARN_ON(!buffer_dirty(bh));
537 return nilfs_segctor_add_file_block(sci, bh, inode, sizeof(__le64));
538 }
539
nilfs_write_file_data_binfo(struct nilfs_sc_info * sci,struct nilfs_segsum_pointer * ssp,union nilfs_binfo * binfo)540 static void nilfs_write_file_data_binfo(struct nilfs_sc_info *sci,
541 struct nilfs_segsum_pointer *ssp,
542 union nilfs_binfo *binfo)
543 {
544 struct nilfs_binfo_v *binfo_v = nilfs_segctor_map_segsum_entry(
545 sci, ssp, sizeof(*binfo_v));
546 *binfo_v = binfo->bi_v;
547 }
548
nilfs_write_file_node_binfo(struct nilfs_sc_info * sci,struct nilfs_segsum_pointer * ssp,union nilfs_binfo * binfo)549 static void nilfs_write_file_node_binfo(struct nilfs_sc_info *sci,
550 struct nilfs_segsum_pointer *ssp,
551 union nilfs_binfo *binfo)
552 {
553 __le64 *vblocknr = nilfs_segctor_map_segsum_entry(
554 sci, ssp, sizeof(*vblocknr));
555 *vblocknr = binfo->bi_v.bi_vblocknr;
556 }
557
558 static struct nilfs_sc_operations nilfs_sc_file_ops = {
559 .collect_data = nilfs_collect_file_data,
560 .collect_node = nilfs_collect_file_node,
561 .collect_bmap = nilfs_collect_file_bmap,
562 .write_data_binfo = nilfs_write_file_data_binfo,
563 .write_node_binfo = nilfs_write_file_node_binfo,
564 };
565
nilfs_collect_dat_data(struct nilfs_sc_info * sci,struct buffer_head * bh,struct inode * inode)566 static int nilfs_collect_dat_data(struct nilfs_sc_info *sci,
567 struct buffer_head *bh, struct inode *inode)
568 {
569 int err;
570
571 err = nilfs_bmap_propagate(NILFS_I(inode)->i_bmap, bh);
572 if (err < 0)
573 return err;
574
575 err = nilfs_segctor_add_file_block(sci, bh, inode, sizeof(__le64));
576 if (!err)
577 sci->sc_datablk_cnt++;
578 return err;
579 }
580
nilfs_collect_dat_bmap(struct nilfs_sc_info * sci,struct buffer_head * bh,struct inode * inode)581 static int nilfs_collect_dat_bmap(struct nilfs_sc_info *sci,
582 struct buffer_head *bh, struct inode *inode)
583 {
584 WARN_ON(!buffer_dirty(bh));
585 return nilfs_segctor_add_file_block(sci, bh, inode,
586 sizeof(struct nilfs_binfo_dat));
587 }
588
nilfs_write_dat_data_binfo(struct nilfs_sc_info * sci,struct nilfs_segsum_pointer * ssp,union nilfs_binfo * binfo)589 static void nilfs_write_dat_data_binfo(struct nilfs_sc_info *sci,
590 struct nilfs_segsum_pointer *ssp,
591 union nilfs_binfo *binfo)
592 {
593 __le64 *blkoff = nilfs_segctor_map_segsum_entry(sci, ssp,
594 sizeof(*blkoff));
595 *blkoff = binfo->bi_dat.bi_blkoff;
596 }
597
nilfs_write_dat_node_binfo(struct nilfs_sc_info * sci,struct nilfs_segsum_pointer * ssp,union nilfs_binfo * binfo)598 static void nilfs_write_dat_node_binfo(struct nilfs_sc_info *sci,
599 struct nilfs_segsum_pointer *ssp,
600 union nilfs_binfo *binfo)
601 {
602 struct nilfs_binfo_dat *binfo_dat =
603 nilfs_segctor_map_segsum_entry(sci, ssp, sizeof(*binfo_dat));
604 *binfo_dat = binfo->bi_dat;
605 }
606
607 static struct nilfs_sc_operations nilfs_sc_dat_ops = {
608 .collect_data = nilfs_collect_dat_data,
609 .collect_node = nilfs_collect_file_node,
610 .collect_bmap = nilfs_collect_dat_bmap,
611 .write_data_binfo = nilfs_write_dat_data_binfo,
612 .write_node_binfo = nilfs_write_dat_node_binfo,
613 };
614
615 static struct nilfs_sc_operations nilfs_sc_dsync_ops = {
616 .collect_data = nilfs_collect_file_data,
617 .collect_node = NULL,
618 .collect_bmap = NULL,
619 .write_data_binfo = nilfs_write_file_data_binfo,
620 .write_node_binfo = NULL,
621 };
622
nilfs_lookup_dirty_data_buffers(struct inode * inode,struct list_head * listp,size_t nlimit,loff_t start,loff_t end)623 static size_t nilfs_lookup_dirty_data_buffers(struct inode *inode,
624 struct list_head *listp,
625 size_t nlimit,
626 loff_t start, loff_t end)
627 {
628 struct address_space *mapping = inode->i_mapping;
629 struct pagevec pvec;
630 pgoff_t index = 0, last = ULONG_MAX;
631 size_t ndirties = 0;
632 int i;
633
634 if (unlikely(start != 0 || end != LLONG_MAX)) {
635 /*
636 * A valid range is given for sync-ing data pages. The
637 * range is rounded to per-page; extra dirty buffers
638 * may be included if blocksize < pagesize.
639 */
640 index = start >> PAGE_SHIFT;
641 last = end >> PAGE_SHIFT;
642 }
643 pagevec_init(&pvec, 0);
644 repeat:
645 if (unlikely(index > last) ||
646 !pagevec_lookup_tag(&pvec, mapping, &index, PAGECACHE_TAG_DIRTY,
647 min_t(pgoff_t, last - index,
648 PAGEVEC_SIZE - 1) + 1))
649 return ndirties;
650
651 for (i = 0; i < pagevec_count(&pvec); i++) {
652 struct buffer_head *bh, *head;
653 struct page *page = pvec.pages[i];
654
655 if (unlikely(page->index > last))
656 break;
657
658 lock_page(page);
659 if (!page_has_buffers(page))
660 create_empty_buffers(page, 1 << inode->i_blkbits, 0);
661 unlock_page(page);
662
663 bh = head = page_buffers(page);
664 do {
665 if (!buffer_dirty(bh) || buffer_async_write(bh))
666 continue;
667 get_bh(bh);
668 list_add_tail(&bh->b_assoc_buffers, listp);
669 ndirties++;
670 if (unlikely(ndirties >= nlimit)) {
671 pagevec_release(&pvec);
672 cond_resched();
673 return ndirties;
674 }
675 } while (bh = bh->b_this_page, bh != head);
676 }
677 pagevec_release(&pvec);
678 cond_resched();
679 goto repeat;
680 }
681
nilfs_lookup_dirty_node_buffers(struct inode * inode,struct list_head * listp)682 static void nilfs_lookup_dirty_node_buffers(struct inode *inode,
683 struct list_head *listp)
684 {
685 struct nilfs_inode_info *ii = NILFS_I(inode);
686 struct address_space *mapping = &ii->i_btnode_cache;
687 struct pagevec pvec;
688 struct buffer_head *bh, *head;
689 unsigned int i;
690 pgoff_t index = 0;
691
692 pagevec_init(&pvec, 0);
693
694 while (pagevec_lookup_tag(&pvec, mapping, &index, PAGECACHE_TAG_DIRTY,
695 PAGEVEC_SIZE)) {
696 for (i = 0; i < pagevec_count(&pvec); i++) {
697 bh = head = page_buffers(pvec.pages[i]);
698 do {
699 if (buffer_dirty(bh) &&
700 !buffer_async_write(bh)) {
701 get_bh(bh);
702 list_add_tail(&bh->b_assoc_buffers,
703 listp);
704 }
705 bh = bh->b_this_page;
706 } while (bh != head);
707 }
708 pagevec_release(&pvec);
709 cond_resched();
710 }
711 }
712
nilfs_dispose_list(struct the_nilfs * nilfs,struct list_head * head,int force)713 static void nilfs_dispose_list(struct the_nilfs *nilfs,
714 struct list_head *head, int force)
715 {
716 struct nilfs_inode_info *ii, *n;
717 struct nilfs_inode_info *ivec[SC_N_INODEVEC], **pii;
718 unsigned nv = 0;
719
720 while (!list_empty(head)) {
721 spin_lock(&nilfs->ns_inode_lock);
722 list_for_each_entry_safe(ii, n, head, i_dirty) {
723 list_del_init(&ii->i_dirty);
724 if (force) {
725 if (unlikely(ii->i_bh)) {
726 brelse(ii->i_bh);
727 ii->i_bh = NULL;
728 }
729 } else if (test_bit(NILFS_I_DIRTY, &ii->i_state)) {
730 set_bit(NILFS_I_QUEUED, &ii->i_state);
731 list_add_tail(&ii->i_dirty,
732 &nilfs->ns_dirty_files);
733 continue;
734 }
735 ivec[nv++] = ii;
736 if (nv == SC_N_INODEVEC)
737 break;
738 }
739 spin_unlock(&nilfs->ns_inode_lock);
740
741 for (pii = ivec; nv > 0; pii++, nv--)
742 iput(&(*pii)->vfs_inode);
743 }
744 }
745
nilfs_test_metadata_dirty(struct the_nilfs * nilfs,struct nilfs_root * root)746 static int nilfs_test_metadata_dirty(struct the_nilfs *nilfs,
747 struct nilfs_root *root)
748 {
749 int ret = 0;
750
751 if (nilfs_mdt_fetch_dirty(root->ifile))
752 ret++;
753 if (nilfs_mdt_fetch_dirty(nilfs->ns_cpfile))
754 ret++;
755 if (nilfs_mdt_fetch_dirty(nilfs->ns_sufile))
756 ret++;
757 if ((ret || nilfs_doing_gc()) && nilfs_mdt_fetch_dirty(nilfs->ns_dat))
758 ret++;
759 return ret;
760 }
761
nilfs_segctor_clean(struct nilfs_sc_info * sci)762 static int nilfs_segctor_clean(struct nilfs_sc_info *sci)
763 {
764 return list_empty(&sci->sc_dirty_files) &&
765 !test_bit(NILFS_SC_DIRTY, &sci->sc_flags) &&
766 sci->sc_nfreesegs == 0 &&
767 (!nilfs_doing_gc() || list_empty(&sci->sc_gc_inodes));
768 }
769
nilfs_segctor_confirm(struct nilfs_sc_info * sci)770 static int nilfs_segctor_confirm(struct nilfs_sc_info *sci)
771 {
772 struct the_nilfs *nilfs = sci->sc_super->s_fs_info;
773 int ret = 0;
774
775 if (nilfs_test_metadata_dirty(nilfs, sci->sc_root))
776 set_bit(NILFS_SC_DIRTY, &sci->sc_flags);
777
778 spin_lock(&nilfs->ns_inode_lock);
779 if (list_empty(&nilfs->ns_dirty_files) && nilfs_segctor_clean(sci))
780 ret++;
781
782 spin_unlock(&nilfs->ns_inode_lock);
783 return ret;
784 }
785
nilfs_segctor_clear_metadata_dirty(struct nilfs_sc_info * sci)786 static void nilfs_segctor_clear_metadata_dirty(struct nilfs_sc_info *sci)
787 {
788 struct the_nilfs *nilfs = sci->sc_super->s_fs_info;
789
790 nilfs_mdt_clear_dirty(sci->sc_root->ifile);
791 nilfs_mdt_clear_dirty(nilfs->ns_cpfile);
792 nilfs_mdt_clear_dirty(nilfs->ns_sufile);
793 nilfs_mdt_clear_dirty(nilfs->ns_dat);
794 }
795
nilfs_segctor_create_checkpoint(struct nilfs_sc_info * sci)796 static int nilfs_segctor_create_checkpoint(struct nilfs_sc_info *sci)
797 {
798 struct the_nilfs *nilfs = sci->sc_super->s_fs_info;
799 struct buffer_head *bh_cp;
800 struct nilfs_checkpoint *raw_cp;
801 int err;
802
803 /* XXX: this interface will be changed */
804 err = nilfs_cpfile_get_checkpoint(nilfs->ns_cpfile, nilfs->ns_cno, 1,
805 &raw_cp, &bh_cp);
806 if (likely(!err)) {
807 /* The following code is duplicated with cpfile. But, it is
808 needed to collect the checkpoint even if it was not newly
809 created */
810 mark_buffer_dirty(bh_cp);
811 nilfs_mdt_mark_dirty(nilfs->ns_cpfile);
812 nilfs_cpfile_put_checkpoint(
813 nilfs->ns_cpfile, nilfs->ns_cno, bh_cp);
814 } else
815 WARN_ON(err == -EINVAL || err == -ENOENT);
816
817 return err;
818 }
819
nilfs_segctor_fill_in_checkpoint(struct nilfs_sc_info * sci)820 static int nilfs_segctor_fill_in_checkpoint(struct nilfs_sc_info *sci)
821 {
822 struct the_nilfs *nilfs = sci->sc_super->s_fs_info;
823 struct buffer_head *bh_cp;
824 struct nilfs_checkpoint *raw_cp;
825 int err;
826
827 err = nilfs_cpfile_get_checkpoint(nilfs->ns_cpfile, nilfs->ns_cno, 0,
828 &raw_cp, &bh_cp);
829 if (unlikely(err)) {
830 WARN_ON(err == -EINVAL || err == -ENOENT);
831 goto failed_ibh;
832 }
833 raw_cp->cp_snapshot_list.ssl_next = 0;
834 raw_cp->cp_snapshot_list.ssl_prev = 0;
835 raw_cp->cp_inodes_count =
836 cpu_to_le64(atomic_read(&sci->sc_root->inodes_count));
837 raw_cp->cp_blocks_count =
838 cpu_to_le64(atomic_read(&sci->sc_root->blocks_count));
839 raw_cp->cp_nblk_inc =
840 cpu_to_le64(sci->sc_nblk_inc + sci->sc_nblk_this_inc);
841 raw_cp->cp_create = cpu_to_le64(sci->sc_seg_ctime);
842 raw_cp->cp_cno = cpu_to_le64(nilfs->ns_cno);
843
844 if (test_bit(NILFS_SC_HAVE_DELTA, &sci->sc_flags))
845 nilfs_checkpoint_clear_minor(raw_cp);
846 else
847 nilfs_checkpoint_set_minor(raw_cp);
848
849 nilfs_write_inode_common(sci->sc_root->ifile,
850 &raw_cp->cp_ifile_inode, 1);
851 nilfs_cpfile_put_checkpoint(nilfs->ns_cpfile, nilfs->ns_cno, bh_cp);
852 return 0;
853
854 failed_ibh:
855 return err;
856 }
857
nilfs_fill_in_file_bmap(struct inode * ifile,struct nilfs_inode_info * ii)858 static void nilfs_fill_in_file_bmap(struct inode *ifile,
859 struct nilfs_inode_info *ii)
860
861 {
862 struct buffer_head *ibh;
863 struct nilfs_inode *raw_inode;
864
865 if (test_bit(NILFS_I_BMAP, &ii->i_state)) {
866 ibh = ii->i_bh;
867 BUG_ON(!ibh);
868 raw_inode = nilfs_ifile_map_inode(ifile, ii->vfs_inode.i_ino,
869 ibh);
870 nilfs_bmap_write(ii->i_bmap, raw_inode);
871 nilfs_ifile_unmap_inode(ifile, ii->vfs_inode.i_ino, ibh);
872 }
873 }
874
nilfs_segctor_fill_in_file_bmap(struct nilfs_sc_info * sci)875 static void nilfs_segctor_fill_in_file_bmap(struct nilfs_sc_info *sci)
876 {
877 struct nilfs_inode_info *ii;
878
879 list_for_each_entry(ii, &sci->sc_dirty_files, i_dirty) {
880 nilfs_fill_in_file_bmap(sci->sc_root->ifile, ii);
881 set_bit(NILFS_I_COLLECTED, &ii->i_state);
882 }
883 }
884
nilfs_segctor_fill_in_super_root(struct nilfs_sc_info * sci,struct the_nilfs * nilfs)885 static void nilfs_segctor_fill_in_super_root(struct nilfs_sc_info *sci,
886 struct the_nilfs *nilfs)
887 {
888 struct buffer_head *bh_sr;
889 struct nilfs_super_root *raw_sr;
890 unsigned isz, srsz;
891
892 bh_sr = NILFS_LAST_SEGBUF(&sci->sc_segbufs)->sb_super_root;
893 raw_sr = (struct nilfs_super_root *)bh_sr->b_data;
894 isz = nilfs->ns_inode_size;
895 srsz = NILFS_SR_BYTES(isz);
896
897 raw_sr->sr_bytes = cpu_to_le16(srsz);
898 raw_sr->sr_nongc_ctime
899 = cpu_to_le64(nilfs_doing_gc() ?
900 nilfs->ns_nongc_ctime : sci->sc_seg_ctime);
901 raw_sr->sr_flags = 0;
902
903 nilfs_write_inode_common(nilfs->ns_dat, (void *)raw_sr +
904 NILFS_SR_DAT_OFFSET(isz), 1);
905 nilfs_write_inode_common(nilfs->ns_cpfile, (void *)raw_sr +
906 NILFS_SR_CPFILE_OFFSET(isz), 1);
907 nilfs_write_inode_common(nilfs->ns_sufile, (void *)raw_sr +
908 NILFS_SR_SUFILE_OFFSET(isz), 1);
909 memset((void *)raw_sr + srsz, 0, nilfs->ns_blocksize - srsz);
910 }
911
nilfs_redirty_inodes(struct list_head * head)912 static void nilfs_redirty_inodes(struct list_head *head)
913 {
914 struct nilfs_inode_info *ii;
915
916 list_for_each_entry(ii, head, i_dirty) {
917 if (test_bit(NILFS_I_COLLECTED, &ii->i_state))
918 clear_bit(NILFS_I_COLLECTED, &ii->i_state);
919 }
920 }
921
nilfs_drop_collected_inodes(struct list_head * head)922 static void nilfs_drop_collected_inodes(struct list_head *head)
923 {
924 struct nilfs_inode_info *ii;
925
926 list_for_each_entry(ii, head, i_dirty) {
927 if (!test_and_clear_bit(NILFS_I_COLLECTED, &ii->i_state))
928 continue;
929
930 clear_bit(NILFS_I_INODE_DIRTY, &ii->i_state);
931 set_bit(NILFS_I_UPDATED, &ii->i_state);
932 }
933 }
934
nilfs_segctor_apply_buffers(struct nilfs_sc_info * sci,struct inode * inode,struct list_head * listp,int (* collect)(struct nilfs_sc_info *,struct buffer_head *,struct inode *))935 static int nilfs_segctor_apply_buffers(struct nilfs_sc_info *sci,
936 struct inode *inode,
937 struct list_head *listp,
938 int (*collect)(struct nilfs_sc_info *,
939 struct buffer_head *,
940 struct inode *))
941 {
942 struct buffer_head *bh, *n;
943 int err = 0;
944
945 if (collect) {
946 list_for_each_entry_safe(bh, n, listp, b_assoc_buffers) {
947 list_del_init(&bh->b_assoc_buffers);
948 err = collect(sci, bh, inode);
949 brelse(bh);
950 if (unlikely(err))
951 goto dispose_buffers;
952 }
953 return 0;
954 }
955
956 dispose_buffers:
957 while (!list_empty(listp)) {
958 bh = list_first_entry(listp, struct buffer_head,
959 b_assoc_buffers);
960 list_del_init(&bh->b_assoc_buffers);
961 brelse(bh);
962 }
963 return err;
964 }
965
nilfs_segctor_buffer_rest(struct nilfs_sc_info * sci)966 static size_t nilfs_segctor_buffer_rest(struct nilfs_sc_info *sci)
967 {
968 /* Remaining number of blocks within segment buffer */
969 return sci->sc_segbuf_nblocks -
970 (sci->sc_nblk_this_inc + sci->sc_curseg->sb_sum.nblocks);
971 }
972
nilfs_segctor_scan_file(struct nilfs_sc_info * sci,struct inode * inode,struct nilfs_sc_operations * sc_ops)973 static int nilfs_segctor_scan_file(struct nilfs_sc_info *sci,
974 struct inode *inode,
975 struct nilfs_sc_operations *sc_ops)
976 {
977 LIST_HEAD(data_buffers);
978 LIST_HEAD(node_buffers);
979 int err;
980
981 if (!(sci->sc_stage.flags & NILFS_CF_NODE)) {
982 size_t n, rest = nilfs_segctor_buffer_rest(sci);
983
984 n = nilfs_lookup_dirty_data_buffers(
985 inode, &data_buffers, rest + 1, 0, LLONG_MAX);
986 if (n > rest) {
987 err = nilfs_segctor_apply_buffers(
988 sci, inode, &data_buffers,
989 sc_ops->collect_data);
990 BUG_ON(!err); /* always receive -E2BIG or true error */
991 goto break_or_fail;
992 }
993 }
994 nilfs_lookup_dirty_node_buffers(inode, &node_buffers);
995
996 if (!(sci->sc_stage.flags & NILFS_CF_NODE)) {
997 err = nilfs_segctor_apply_buffers(
998 sci, inode, &data_buffers, sc_ops->collect_data);
999 if (unlikely(err)) {
1000 /* dispose node list */
1001 nilfs_segctor_apply_buffers(
1002 sci, inode, &node_buffers, NULL);
1003 goto break_or_fail;
1004 }
1005 sci->sc_stage.flags |= NILFS_CF_NODE;
1006 }
1007 /* Collect node */
1008 err = nilfs_segctor_apply_buffers(
1009 sci, inode, &node_buffers, sc_ops->collect_node);
1010 if (unlikely(err))
1011 goto break_or_fail;
1012
1013 nilfs_bmap_lookup_dirty_buffers(NILFS_I(inode)->i_bmap, &node_buffers);
1014 err = nilfs_segctor_apply_buffers(
1015 sci, inode, &node_buffers, sc_ops->collect_bmap);
1016 if (unlikely(err))
1017 goto break_or_fail;
1018
1019 nilfs_segctor_end_finfo(sci, inode);
1020 sci->sc_stage.flags &= ~NILFS_CF_NODE;
1021
1022 break_or_fail:
1023 return err;
1024 }
1025
nilfs_segctor_scan_file_dsync(struct nilfs_sc_info * sci,struct inode * inode)1026 static int nilfs_segctor_scan_file_dsync(struct nilfs_sc_info *sci,
1027 struct inode *inode)
1028 {
1029 LIST_HEAD(data_buffers);
1030 size_t n, rest = nilfs_segctor_buffer_rest(sci);
1031 int err;
1032
1033 n = nilfs_lookup_dirty_data_buffers(inode, &data_buffers, rest + 1,
1034 sci->sc_dsync_start,
1035 sci->sc_dsync_end);
1036
1037 err = nilfs_segctor_apply_buffers(sci, inode, &data_buffers,
1038 nilfs_collect_file_data);
1039 if (!err) {
1040 nilfs_segctor_end_finfo(sci, inode);
1041 BUG_ON(n > rest);
1042 /* always receive -E2BIG or true error if n > rest */
1043 }
1044 return err;
1045 }
1046
nilfs_segctor_collect_blocks(struct nilfs_sc_info * sci,int mode)1047 static int nilfs_segctor_collect_blocks(struct nilfs_sc_info *sci, int mode)
1048 {
1049 struct the_nilfs *nilfs = sci->sc_super->s_fs_info;
1050 struct list_head *head;
1051 struct nilfs_inode_info *ii;
1052 size_t ndone;
1053 int err = 0;
1054
1055 switch (sci->sc_stage.scnt) {
1056 case NILFS_ST_INIT:
1057 /* Pre-processes */
1058 sci->sc_stage.flags = 0;
1059
1060 if (!test_bit(NILFS_SC_UNCLOSED, &sci->sc_flags)) {
1061 sci->sc_nblk_inc = 0;
1062 sci->sc_curseg->sb_sum.flags = NILFS_SS_LOGBGN;
1063 if (mode == SC_LSEG_DSYNC) {
1064 sci->sc_stage.scnt = NILFS_ST_DSYNC;
1065 goto dsync_mode;
1066 }
1067 }
1068
1069 sci->sc_stage.dirty_file_ptr = NULL;
1070 sci->sc_stage.gc_inode_ptr = NULL;
1071 if (mode == SC_FLUSH_DAT) {
1072 sci->sc_stage.scnt = NILFS_ST_DAT;
1073 goto dat_stage;
1074 }
1075 sci->sc_stage.scnt++; /* Fall through */
1076 case NILFS_ST_GC:
1077 if (nilfs_doing_gc()) {
1078 head = &sci->sc_gc_inodes;
1079 ii = list_prepare_entry(sci->sc_stage.gc_inode_ptr,
1080 head, i_dirty);
1081 list_for_each_entry_continue(ii, head, i_dirty) {
1082 err = nilfs_segctor_scan_file(
1083 sci, &ii->vfs_inode,
1084 &nilfs_sc_file_ops);
1085 if (unlikely(err)) {
1086 sci->sc_stage.gc_inode_ptr = list_entry(
1087 ii->i_dirty.prev,
1088 struct nilfs_inode_info,
1089 i_dirty);
1090 goto break_or_fail;
1091 }
1092 set_bit(NILFS_I_COLLECTED, &ii->i_state);
1093 }
1094 sci->sc_stage.gc_inode_ptr = NULL;
1095 }
1096 sci->sc_stage.scnt++; /* Fall through */
1097 case NILFS_ST_FILE:
1098 head = &sci->sc_dirty_files;
1099 ii = list_prepare_entry(sci->sc_stage.dirty_file_ptr, head,
1100 i_dirty);
1101 list_for_each_entry_continue(ii, head, i_dirty) {
1102 clear_bit(NILFS_I_DIRTY, &ii->i_state);
1103
1104 err = nilfs_segctor_scan_file(sci, &ii->vfs_inode,
1105 &nilfs_sc_file_ops);
1106 if (unlikely(err)) {
1107 sci->sc_stage.dirty_file_ptr =
1108 list_entry(ii->i_dirty.prev,
1109 struct nilfs_inode_info,
1110 i_dirty);
1111 goto break_or_fail;
1112 }
1113 /* sci->sc_stage.dirty_file_ptr = NILFS_I(inode); */
1114 /* XXX: required ? */
1115 }
1116 sci->sc_stage.dirty_file_ptr = NULL;
1117 if (mode == SC_FLUSH_FILE) {
1118 sci->sc_stage.scnt = NILFS_ST_DONE;
1119 return 0;
1120 }
1121 sci->sc_stage.scnt++;
1122 sci->sc_stage.flags |= NILFS_CF_IFILE_STARTED;
1123 /* Fall through */
1124 case NILFS_ST_IFILE:
1125 err = nilfs_segctor_scan_file(sci, sci->sc_root->ifile,
1126 &nilfs_sc_file_ops);
1127 if (unlikely(err))
1128 break;
1129 sci->sc_stage.scnt++;
1130 /* Creating a checkpoint */
1131 err = nilfs_segctor_create_checkpoint(sci);
1132 if (unlikely(err))
1133 break;
1134 /* Fall through */
1135 case NILFS_ST_CPFILE:
1136 err = nilfs_segctor_scan_file(sci, nilfs->ns_cpfile,
1137 &nilfs_sc_file_ops);
1138 if (unlikely(err))
1139 break;
1140 sci->sc_stage.scnt++; /* Fall through */
1141 case NILFS_ST_SUFILE:
1142 err = nilfs_sufile_freev(nilfs->ns_sufile, sci->sc_freesegs,
1143 sci->sc_nfreesegs, &ndone);
1144 if (unlikely(err)) {
1145 nilfs_sufile_cancel_freev(nilfs->ns_sufile,
1146 sci->sc_freesegs, ndone,
1147 NULL);
1148 break;
1149 }
1150 sci->sc_stage.flags |= NILFS_CF_SUFREED;
1151
1152 err = nilfs_segctor_scan_file(sci, nilfs->ns_sufile,
1153 &nilfs_sc_file_ops);
1154 if (unlikely(err))
1155 break;
1156 sci->sc_stage.scnt++; /* Fall through */
1157 case NILFS_ST_DAT:
1158 dat_stage:
1159 err = nilfs_segctor_scan_file(sci, nilfs->ns_dat,
1160 &nilfs_sc_dat_ops);
1161 if (unlikely(err))
1162 break;
1163 if (mode == SC_FLUSH_DAT) {
1164 sci->sc_stage.scnt = NILFS_ST_DONE;
1165 return 0;
1166 }
1167 sci->sc_stage.scnt++; /* Fall through */
1168 case NILFS_ST_SR:
1169 if (mode == SC_LSEG_SR) {
1170 /* Appending a super root */
1171 err = nilfs_segctor_add_super_root(sci);
1172 if (unlikely(err))
1173 break;
1174 }
1175 /* End of a logical segment */
1176 sci->sc_curseg->sb_sum.flags |= NILFS_SS_LOGEND;
1177 sci->sc_stage.scnt = NILFS_ST_DONE;
1178 return 0;
1179 case NILFS_ST_DSYNC:
1180 dsync_mode:
1181 sci->sc_curseg->sb_sum.flags |= NILFS_SS_SYNDT;
1182 ii = sci->sc_dsync_inode;
1183 if (!test_bit(NILFS_I_BUSY, &ii->i_state))
1184 break;
1185
1186 err = nilfs_segctor_scan_file_dsync(sci, &ii->vfs_inode);
1187 if (unlikely(err))
1188 break;
1189 sci->sc_curseg->sb_sum.flags |= NILFS_SS_LOGEND;
1190 sci->sc_stage.scnt = NILFS_ST_DONE;
1191 return 0;
1192 case NILFS_ST_DONE:
1193 return 0;
1194 default:
1195 BUG();
1196 }
1197
1198 break_or_fail:
1199 return err;
1200 }
1201
1202 /**
1203 * nilfs_segctor_begin_construction - setup segment buffer to make a new log
1204 * @sci: nilfs_sc_info
1205 * @nilfs: nilfs object
1206 */
nilfs_segctor_begin_construction(struct nilfs_sc_info * sci,struct the_nilfs * nilfs)1207 static int nilfs_segctor_begin_construction(struct nilfs_sc_info *sci,
1208 struct the_nilfs *nilfs)
1209 {
1210 struct nilfs_segment_buffer *segbuf, *prev;
1211 __u64 nextnum;
1212 int err, alloc = 0;
1213
1214 segbuf = nilfs_segbuf_new(sci->sc_super);
1215 if (unlikely(!segbuf))
1216 return -ENOMEM;
1217
1218 if (list_empty(&sci->sc_write_logs)) {
1219 nilfs_segbuf_map(segbuf, nilfs->ns_segnum,
1220 nilfs->ns_pseg_offset, nilfs);
1221 if (segbuf->sb_rest_blocks < NILFS_PSEG_MIN_BLOCKS) {
1222 nilfs_shift_to_next_segment(nilfs);
1223 nilfs_segbuf_map(segbuf, nilfs->ns_segnum, 0, nilfs);
1224 }
1225
1226 segbuf->sb_sum.seg_seq = nilfs->ns_seg_seq;
1227 nextnum = nilfs->ns_nextnum;
1228
1229 if (nilfs->ns_segnum == nilfs->ns_nextnum)
1230 /* Start from the head of a new full segment */
1231 alloc++;
1232 } else {
1233 /* Continue logs */
1234 prev = NILFS_LAST_SEGBUF(&sci->sc_write_logs);
1235 nilfs_segbuf_map_cont(segbuf, prev);
1236 segbuf->sb_sum.seg_seq = prev->sb_sum.seg_seq;
1237 nextnum = prev->sb_nextnum;
1238
1239 if (segbuf->sb_rest_blocks < NILFS_PSEG_MIN_BLOCKS) {
1240 nilfs_segbuf_map(segbuf, prev->sb_nextnum, 0, nilfs);
1241 segbuf->sb_sum.seg_seq++;
1242 alloc++;
1243 }
1244 }
1245
1246 err = nilfs_sufile_mark_dirty(nilfs->ns_sufile, segbuf->sb_segnum);
1247 if (err)
1248 goto failed;
1249
1250 if (alloc) {
1251 err = nilfs_sufile_alloc(nilfs->ns_sufile, &nextnum);
1252 if (err)
1253 goto failed;
1254 }
1255 nilfs_segbuf_set_next_segnum(segbuf, nextnum, nilfs);
1256
1257 BUG_ON(!list_empty(&sci->sc_segbufs));
1258 list_add_tail(&segbuf->sb_list, &sci->sc_segbufs);
1259 sci->sc_segbuf_nblocks = segbuf->sb_rest_blocks;
1260 return 0;
1261
1262 failed:
1263 nilfs_segbuf_free(segbuf);
1264 return err;
1265 }
1266
nilfs_segctor_extend_segments(struct nilfs_sc_info * sci,struct the_nilfs * nilfs,int nadd)1267 static int nilfs_segctor_extend_segments(struct nilfs_sc_info *sci,
1268 struct the_nilfs *nilfs, int nadd)
1269 {
1270 struct nilfs_segment_buffer *segbuf, *prev;
1271 struct inode *sufile = nilfs->ns_sufile;
1272 __u64 nextnextnum;
1273 LIST_HEAD(list);
1274 int err, ret, i;
1275
1276 prev = NILFS_LAST_SEGBUF(&sci->sc_segbufs);
1277 /*
1278 * Since the segment specified with nextnum might be allocated during
1279 * the previous construction, the buffer including its segusage may
1280 * not be dirty. The following call ensures that the buffer is dirty
1281 * and will pin the buffer on memory until the sufile is written.
1282 */
1283 err = nilfs_sufile_mark_dirty(sufile, prev->sb_nextnum);
1284 if (unlikely(err))
1285 return err;
1286
1287 for (i = 0; i < nadd; i++) {
1288 /* extend segment info */
1289 err = -ENOMEM;
1290 segbuf = nilfs_segbuf_new(sci->sc_super);
1291 if (unlikely(!segbuf))
1292 goto failed;
1293
1294 /* map this buffer to region of segment on-disk */
1295 nilfs_segbuf_map(segbuf, prev->sb_nextnum, 0, nilfs);
1296 sci->sc_segbuf_nblocks += segbuf->sb_rest_blocks;
1297
1298 /* allocate the next next full segment */
1299 err = nilfs_sufile_alloc(sufile, &nextnextnum);
1300 if (unlikely(err))
1301 goto failed_segbuf;
1302
1303 segbuf->sb_sum.seg_seq = prev->sb_sum.seg_seq + 1;
1304 nilfs_segbuf_set_next_segnum(segbuf, nextnextnum, nilfs);
1305
1306 list_add_tail(&segbuf->sb_list, &list);
1307 prev = segbuf;
1308 }
1309 list_splice_tail(&list, &sci->sc_segbufs);
1310 return 0;
1311
1312 failed_segbuf:
1313 nilfs_segbuf_free(segbuf);
1314 failed:
1315 list_for_each_entry(segbuf, &list, sb_list) {
1316 ret = nilfs_sufile_free(sufile, segbuf->sb_nextnum);
1317 WARN_ON(ret); /* never fails */
1318 }
1319 nilfs_destroy_logs(&list);
1320 return err;
1321 }
1322
nilfs_free_incomplete_logs(struct list_head * logs,struct the_nilfs * nilfs)1323 static void nilfs_free_incomplete_logs(struct list_head *logs,
1324 struct the_nilfs *nilfs)
1325 {
1326 struct nilfs_segment_buffer *segbuf, *prev;
1327 struct inode *sufile = nilfs->ns_sufile;
1328 int ret;
1329
1330 segbuf = NILFS_FIRST_SEGBUF(logs);
1331 if (nilfs->ns_nextnum != segbuf->sb_nextnum) {
1332 ret = nilfs_sufile_free(sufile, segbuf->sb_nextnum);
1333 WARN_ON(ret); /* never fails */
1334 }
1335 if (atomic_read(&segbuf->sb_err)) {
1336 /* Case 1: The first segment failed */
1337 if (segbuf->sb_pseg_start != segbuf->sb_fseg_start)
1338 /* Case 1a: Partial segment appended into an existing
1339 segment */
1340 nilfs_terminate_segment(nilfs, segbuf->sb_fseg_start,
1341 segbuf->sb_fseg_end);
1342 else /* Case 1b: New full segment */
1343 set_nilfs_discontinued(nilfs);
1344 }
1345
1346 prev = segbuf;
1347 list_for_each_entry_continue(segbuf, logs, sb_list) {
1348 if (prev->sb_nextnum != segbuf->sb_nextnum) {
1349 ret = nilfs_sufile_free(sufile, segbuf->sb_nextnum);
1350 WARN_ON(ret); /* never fails */
1351 }
1352 if (atomic_read(&segbuf->sb_err) &&
1353 segbuf->sb_segnum != nilfs->ns_nextnum)
1354 /* Case 2: extended segment (!= next) failed */
1355 nilfs_sufile_set_error(sufile, segbuf->sb_segnum);
1356 prev = segbuf;
1357 }
1358 }
1359
nilfs_segctor_update_segusage(struct nilfs_sc_info * sci,struct inode * sufile)1360 static void nilfs_segctor_update_segusage(struct nilfs_sc_info *sci,
1361 struct inode *sufile)
1362 {
1363 struct nilfs_segment_buffer *segbuf;
1364 unsigned long live_blocks;
1365 int ret;
1366
1367 list_for_each_entry(segbuf, &sci->sc_segbufs, sb_list) {
1368 live_blocks = segbuf->sb_sum.nblocks +
1369 (segbuf->sb_pseg_start - segbuf->sb_fseg_start);
1370 ret = nilfs_sufile_set_segment_usage(sufile, segbuf->sb_segnum,
1371 live_blocks,
1372 sci->sc_seg_ctime);
1373 WARN_ON(ret); /* always succeed because the segusage is dirty */
1374 }
1375 }
1376
nilfs_cancel_segusage(struct list_head * logs,struct inode * sufile)1377 static void nilfs_cancel_segusage(struct list_head *logs, struct inode *sufile)
1378 {
1379 struct nilfs_segment_buffer *segbuf;
1380 int ret;
1381
1382 segbuf = NILFS_FIRST_SEGBUF(logs);
1383 ret = nilfs_sufile_set_segment_usage(sufile, segbuf->sb_segnum,
1384 segbuf->sb_pseg_start -
1385 segbuf->sb_fseg_start, 0);
1386 WARN_ON(ret); /* always succeed because the segusage is dirty */
1387
1388 list_for_each_entry_continue(segbuf, logs, sb_list) {
1389 ret = nilfs_sufile_set_segment_usage(sufile, segbuf->sb_segnum,
1390 0, 0);
1391 WARN_ON(ret); /* always succeed */
1392 }
1393 }
1394
nilfs_segctor_truncate_segments(struct nilfs_sc_info * sci,struct nilfs_segment_buffer * last,struct inode * sufile)1395 static void nilfs_segctor_truncate_segments(struct nilfs_sc_info *sci,
1396 struct nilfs_segment_buffer *last,
1397 struct inode *sufile)
1398 {
1399 struct nilfs_segment_buffer *segbuf = last;
1400 int ret;
1401
1402 list_for_each_entry_continue(segbuf, &sci->sc_segbufs, sb_list) {
1403 sci->sc_segbuf_nblocks -= segbuf->sb_rest_blocks;
1404 ret = nilfs_sufile_free(sufile, segbuf->sb_nextnum);
1405 WARN_ON(ret);
1406 }
1407 nilfs_truncate_logs(&sci->sc_segbufs, last);
1408 }
1409
1410
nilfs_segctor_collect(struct nilfs_sc_info * sci,struct the_nilfs * nilfs,int mode)1411 static int nilfs_segctor_collect(struct nilfs_sc_info *sci,
1412 struct the_nilfs *nilfs, int mode)
1413 {
1414 struct nilfs_cstage prev_stage = sci->sc_stage;
1415 int err, nadd = 1;
1416
1417 /* Collection retry loop */
1418 for (;;) {
1419 sci->sc_nblk_this_inc = 0;
1420 sci->sc_curseg = NILFS_FIRST_SEGBUF(&sci->sc_segbufs);
1421
1422 err = nilfs_segctor_reset_segment_buffer(sci);
1423 if (unlikely(err))
1424 goto failed;
1425
1426 err = nilfs_segctor_collect_blocks(sci, mode);
1427 sci->sc_nblk_this_inc += sci->sc_curseg->sb_sum.nblocks;
1428 if (!err)
1429 break;
1430
1431 if (unlikely(err != -E2BIG))
1432 goto failed;
1433
1434 /* The current segment is filled up */
1435 if (mode != SC_LSEG_SR || sci->sc_stage.scnt < NILFS_ST_CPFILE)
1436 break;
1437
1438 nilfs_clear_logs(&sci->sc_segbufs);
1439
1440 if (sci->sc_stage.flags & NILFS_CF_SUFREED) {
1441 err = nilfs_sufile_cancel_freev(nilfs->ns_sufile,
1442 sci->sc_freesegs,
1443 sci->sc_nfreesegs,
1444 NULL);
1445 WARN_ON(err); /* do not happen */
1446 sci->sc_stage.flags &= ~NILFS_CF_SUFREED;
1447 }
1448
1449 err = nilfs_segctor_extend_segments(sci, nilfs, nadd);
1450 if (unlikely(err))
1451 return err;
1452
1453 nadd = min_t(int, nadd << 1, SC_MAX_SEGDELTA);
1454 sci->sc_stage = prev_stage;
1455 }
1456 nilfs_segctor_truncate_segments(sci, sci->sc_curseg, nilfs->ns_sufile);
1457 return 0;
1458
1459 failed:
1460 return err;
1461 }
1462
nilfs_list_replace_buffer(struct buffer_head * old_bh,struct buffer_head * new_bh)1463 static void nilfs_list_replace_buffer(struct buffer_head *old_bh,
1464 struct buffer_head *new_bh)
1465 {
1466 BUG_ON(!list_empty(&new_bh->b_assoc_buffers));
1467
1468 list_replace_init(&old_bh->b_assoc_buffers, &new_bh->b_assoc_buffers);
1469 /* The caller must release old_bh */
1470 }
1471
1472 static int
nilfs_segctor_update_payload_blocknr(struct nilfs_sc_info * sci,struct nilfs_segment_buffer * segbuf,int mode)1473 nilfs_segctor_update_payload_blocknr(struct nilfs_sc_info *sci,
1474 struct nilfs_segment_buffer *segbuf,
1475 int mode)
1476 {
1477 struct inode *inode = NULL;
1478 sector_t blocknr;
1479 unsigned long nfinfo = segbuf->sb_sum.nfinfo;
1480 unsigned long nblocks = 0, ndatablk = 0;
1481 struct nilfs_sc_operations *sc_op = NULL;
1482 struct nilfs_segsum_pointer ssp;
1483 struct nilfs_finfo *finfo = NULL;
1484 union nilfs_binfo binfo;
1485 struct buffer_head *bh, *bh_org;
1486 ino_t ino = 0;
1487 int err = 0;
1488
1489 if (!nfinfo)
1490 goto out;
1491
1492 blocknr = segbuf->sb_pseg_start + segbuf->sb_sum.nsumblk;
1493 ssp.bh = NILFS_SEGBUF_FIRST_BH(&segbuf->sb_segsum_buffers);
1494 ssp.offset = sizeof(struct nilfs_segment_summary);
1495
1496 list_for_each_entry(bh, &segbuf->sb_payload_buffers, b_assoc_buffers) {
1497 if (bh == segbuf->sb_super_root)
1498 break;
1499 if (!finfo) {
1500 finfo = nilfs_segctor_map_segsum_entry(
1501 sci, &ssp, sizeof(*finfo));
1502 ino = le64_to_cpu(finfo->fi_ino);
1503 nblocks = le32_to_cpu(finfo->fi_nblocks);
1504 ndatablk = le32_to_cpu(finfo->fi_ndatablk);
1505
1506 inode = bh->b_page->mapping->host;
1507
1508 if (mode == SC_LSEG_DSYNC)
1509 sc_op = &nilfs_sc_dsync_ops;
1510 else if (ino == NILFS_DAT_INO)
1511 sc_op = &nilfs_sc_dat_ops;
1512 else /* file blocks */
1513 sc_op = &nilfs_sc_file_ops;
1514 }
1515 bh_org = bh;
1516 get_bh(bh_org);
1517 err = nilfs_bmap_assign(NILFS_I(inode)->i_bmap, &bh, blocknr,
1518 &binfo);
1519 if (bh != bh_org)
1520 nilfs_list_replace_buffer(bh_org, bh);
1521 brelse(bh_org);
1522 if (unlikely(err))
1523 goto failed_bmap;
1524
1525 if (ndatablk > 0)
1526 sc_op->write_data_binfo(sci, &ssp, &binfo);
1527 else
1528 sc_op->write_node_binfo(sci, &ssp, &binfo);
1529
1530 blocknr++;
1531 if (--nblocks == 0) {
1532 finfo = NULL;
1533 if (--nfinfo == 0)
1534 break;
1535 } else if (ndatablk > 0)
1536 ndatablk--;
1537 }
1538 out:
1539 return 0;
1540
1541 failed_bmap:
1542 return err;
1543 }
1544
nilfs_segctor_assign(struct nilfs_sc_info * sci,int mode)1545 static int nilfs_segctor_assign(struct nilfs_sc_info *sci, int mode)
1546 {
1547 struct nilfs_segment_buffer *segbuf;
1548 int err;
1549
1550 list_for_each_entry(segbuf, &sci->sc_segbufs, sb_list) {
1551 err = nilfs_segctor_update_payload_blocknr(sci, segbuf, mode);
1552 if (unlikely(err))
1553 return err;
1554 nilfs_segbuf_fill_in_segsum(segbuf);
1555 }
1556 return 0;
1557 }
1558
nilfs_begin_page_io(struct page * page)1559 static void nilfs_begin_page_io(struct page *page)
1560 {
1561 if (!page || PageWriteback(page))
1562 /* For split b-tree node pages, this function may be called
1563 twice. We ignore the 2nd or later calls by this check. */
1564 return;
1565
1566 lock_page(page);
1567 clear_page_dirty_for_io(page);
1568 set_page_writeback(page);
1569 unlock_page(page);
1570 }
1571
nilfs_segctor_prepare_write(struct nilfs_sc_info * sci)1572 static void nilfs_segctor_prepare_write(struct nilfs_sc_info *sci)
1573 {
1574 struct nilfs_segment_buffer *segbuf;
1575 struct page *bd_page = NULL, *fs_page = NULL;
1576
1577 list_for_each_entry(segbuf, &sci->sc_segbufs, sb_list) {
1578 struct buffer_head *bh;
1579
1580 list_for_each_entry(bh, &segbuf->sb_segsum_buffers,
1581 b_assoc_buffers) {
1582 set_buffer_async_write(bh);
1583 if (bh->b_page != bd_page) {
1584 if (bd_page) {
1585 lock_page(bd_page);
1586 clear_page_dirty_for_io(bd_page);
1587 set_page_writeback(bd_page);
1588 unlock_page(bd_page);
1589 }
1590 bd_page = bh->b_page;
1591 }
1592 }
1593
1594 list_for_each_entry(bh, &segbuf->sb_payload_buffers,
1595 b_assoc_buffers) {
1596 set_buffer_async_write(bh);
1597 if (bh == segbuf->sb_super_root) {
1598 if (bh->b_page != bd_page) {
1599 lock_page(bd_page);
1600 clear_page_dirty_for_io(bd_page);
1601 set_page_writeback(bd_page);
1602 unlock_page(bd_page);
1603 bd_page = bh->b_page;
1604 }
1605 break;
1606 }
1607 if (bh->b_page != fs_page) {
1608 nilfs_begin_page_io(fs_page);
1609 fs_page = bh->b_page;
1610 }
1611 }
1612 }
1613 if (bd_page) {
1614 lock_page(bd_page);
1615 clear_page_dirty_for_io(bd_page);
1616 set_page_writeback(bd_page);
1617 unlock_page(bd_page);
1618 }
1619 nilfs_begin_page_io(fs_page);
1620 }
1621
nilfs_segctor_write(struct nilfs_sc_info * sci,struct the_nilfs * nilfs)1622 static int nilfs_segctor_write(struct nilfs_sc_info *sci,
1623 struct the_nilfs *nilfs)
1624 {
1625 int ret;
1626
1627 ret = nilfs_write_logs(&sci->sc_segbufs, nilfs);
1628 list_splice_tail_init(&sci->sc_segbufs, &sci->sc_write_logs);
1629 return ret;
1630 }
1631
nilfs_end_page_io(struct page * page,int err)1632 static void nilfs_end_page_io(struct page *page, int err)
1633 {
1634 if (!page)
1635 return;
1636
1637 if (buffer_nilfs_node(page_buffers(page)) && !PageWriteback(page)) {
1638 /*
1639 * For b-tree node pages, this function may be called twice
1640 * or more because they might be split in a segment.
1641 */
1642 if (PageDirty(page)) {
1643 /*
1644 * For pages holding split b-tree node buffers, dirty
1645 * flag on the buffers may be cleared discretely.
1646 * In that case, the page is once redirtied for
1647 * remaining buffers, and it must be cancelled if
1648 * all the buffers get cleaned later.
1649 */
1650 lock_page(page);
1651 if (nilfs_page_buffers_clean(page))
1652 __nilfs_clear_page_dirty(page);
1653 unlock_page(page);
1654 }
1655 return;
1656 }
1657
1658 if (!err) {
1659 if (!nilfs_page_buffers_clean(page))
1660 __set_page_dirty_nobuffers(page);
1661 ClearPageError(page);
1662 } else {
1663 __set_page_dirty_nobuffers(page);
1664 SetPageError(page);
1665 }
1666
1667 end_page_writeback(page);
1668 }
1669
nilfs_abort_logs(struct list_head * logs,int err)1670 static void nilfs_abort_logs(struct list_head *logs, int err)
1671 {
1672 struct nilfs_segment_buffer *segbuf;
1673 struct page *bd_page = NULL, *fs_page = NULL;
1674 struct buffer_head *bh;
1675
1676 if (list_empty(logs))
1677 return;
1678
1679 list_for_each_entry(segbuf, logs, sb_list) {
1680 list_for_each_entry(bh, &segbuf->sb_segsum_buffers,
1681 b_assoc_buffers) {
1682 clear_buffer_async_write(bh);
1683 if (bh->b_page != bd_page) {
1684 if (bd_page)
1685 end_page_writeback(bd_page);
1686 bd_page = bh->b_page;
1687 }
1688 }
1689
1690 list_for_each_entry(bh, &segbuf->sb_payload_buffers,
1691 b_assoc_buffers) {
1692 clear_buffer_async_write(bh);
1693 if (bh == segbuf->sb_super_root) {
1694 if (bh->b_page != bd_page) {
1695 end_page_writeback(bd_page);
1696 bd_page = bh->b_page;
1697 }
1698 break;
1699 }
1700 if (bh->b_page != fs_page) {
1701 nilfs_end_page_io(fs_page, err);
1702 fs_page = bh->b_page;
1703 }
1704 }
1705 }
1706 if (bd_page)
1707 end_page_writeback(bd_page);
1708
1709 nilfs_end_page_io(fs_page, err);
1710 }
1711
nilfs_segctor_abort_construction(struct nilfs_sc_info * sci,struct the_nilfs * nilfs,int err)1712 static void nilfs_segctor_abort_construction(struct nilfs_sc_info *sci,
1713 struct the_nilfs *nilfs, int err)
1714 {
1715 LIST_HEAD(logs);
1716 int ret;
1717
1718 list_splice_tail_init(&sci->sc_write_logs, &logs);
1719 ret = nilfs_wait_on_logs(&logs);
1720 nilfs_abort_logs(&logs, ret ? : err);
1721
1722 list_splice_tail_init(&sci->sc_segbufs, &logs);
1723 nilfs_cancel_segusage(&logs, nilfs->ns_sufile);
1724 nilfs_free_incomplete_logs(&logs, nilfs);
1725
1726 if (sci->sc_stage.flags & NILFS_CF_SUFREED) {
1727 ret = nilfs_sufile_cancel_freev(nilfs->ns_sufile,
1728 sci->sc_freesegs,
1729 sci->sc_nfreesegs,
1730 NULL);
1731 WARN_ON(ret); /* do not happen */
1732 }
1733
1734 nilfs_destroy_logs(&logs);
1735 }
1736
nilfs_set_next_segment(struct the_nilfs * nilfs,struct nilfs_segment_buffer * segbuf)1737 static void nilfs_set_next_segment(struct the_nilfs *nilfs,
1738 struct nilfs_segment_buffer *segbuf)
1739 {
1740 nilfs->ns_segnum = segbuf->sb_segnum;
1741 nilfs->ns_nextnum = segbuf->sb_nextnum;
1742 nilfs->ns_pseg_offset = segbuf->sb_pseg_start - segbuf->sb_fseg_start
1743 + segbuf->sb_sum.nblocks;
1744 nilfs->ns_seg_seq = segbuf->sb_sum.seg_seq;
1745 nilfs->ns_ctime = segbuf->sb_sum.ctime;
1746 }
1747
nilfs_segctor_complete_write(struct nilfs_sc_info * sci)1748 static void nilfs_segctor_complete_write(struct nilfs_sc_info *sci)
1749 {
1750 struct nilfs_segment_buffer *segbuf;
1751 struct page *bd_page = NULL, *fs_page = NULL;
1752 struct the_nilfs *nilfs = sci->sc_super->s_fs_info;
1753 int update_sr = false;
1754
1755 list_for_each_entry(segbuf, &sci->sc_write_logs, sb_list) {
1756 struct buffer_head *bh;
1757
1758 list_for_each_entry(bh, &segbuf->sb_segsum_buffers,
1759 b_assoc_buffers) {
1760 set_buffer_uptodate(bh);
1761 clear_buffer_dirty(bh);
1762 clear_buffer_async_write(bh);
1763 if (bh->b_page != bd_page) {
1764 if (bd_page)
1765 end_page_writeback(bd_page);
1766 bd_page = bh->b_page;
1767 }
1768 }
1769 /*
1770 * We assume that the buffers which belong to the same page
1771 * continue over the buffer list.
1772 * Under this assumption, the last BHs of pages is
1773 * identifiable by the discontinuity of bh->b_page
1774 * (page != fs_page).
1775 *
1776 * For B-tree node blocks, however, this assumption is not
1777 * guaranteed. The cleanup code of B-tree node pages needs
1778 * special care.
1779 */
1780 list_for_each_entry(bh, &segbuf->sb_payload_buffers,
1781 b_assoc_buffers) {
1782 set_buffer_uptodate(bh);
1783 clear_buffer_dirty(bh);
1784 clear_buffer_async_write(bh);
1785 clear_buffer_delay(bh);
1786 clear_buffer_nilfs_volatile(bh);
1787 clear_buffer_nilfs_redirected(bh);
1788 if (bh == segbuf->sb_super_root) {
1789 if (bh->b_page != bd_page) {
1790 end_page_writeback(bd_page);
1791 bd_page = bh->b_page;
1792 }
1793 update_sr = true;
1794 break;
1795 }
1796 if (bh->b_page != fs_page) {
1797 nilfs_end_page_io(fs_page, 0);
1798 fs_page = bh->b_page;
1799 }
1800 }
1801
1802 if (!nilfs_segbuf_simplex(segbuf)) {
1803 if (segbuf->sb_sum.flags & NILFS_SS_LOGBGN) {
1804 set_bit(NILFS_SC_UNCLOSED, &sci->sc_flags);
1805 sci->sc_lseg_stime = jiffies;
1806 }
1807 if (segbuf->sb_sum.flags & NILFS_SS_LOGEND)
1808 clear_bit(NILFS_SC_UNCLOSED, &sci->sc_flags);
1809 }
1810 }
1811 /*
1812 * Since pages may continue over multiple segment buffers,
1813 * end of the last page must be checked outside of the loop.
1814 */
1815 if (bd_page)
1816 end_page_writeback(bd_page);
1817
1818 nilfs_end_page_io(fs_page, 0);
1819
1820 nilfs_drop_collected_inodes(&sci->sc_dirty_files);
1821
1822 if (nilfs_doing_gc())
1823 nilfs_drop_collected_inodes(&sci->sc_gc_inodes);
1824 else
1825 nilfs->ns_nongc_ctime = sci->sc_seg_ctime;
1826
1827 sci->sc_nblk_inc += sci->sc_nblk_this_inc;
1828
1829 segbuf = NILFS_LAST_SEGBUF(&sci->sc_write_logs);
1830 nilfs_set_next_segment(nilfs, segbuf);
1831
1832 if (update_sr) {
1833 nilfs_set_last_segment(nilfs, segbuf->sb_pseg_start,
1834 segbuf->sb_sum.seg_seq, nilfs->ns_cno++);
1835
1836 clear_bit(NILFS_SC_HAVE_DELTA, &sci->sc_flags);
1837 clear_bit(NILFS_SC_DIRTY, &sci->sc_flags);
1838 set_bit(NILFS_SC_SUPER_ROOT, &sci->sc_flags);
1839 nilfs_segctor_clear_metadata_dirty(sci);
1840 } else
1841 clear_bit(NILFS_SC_SUPER_ROOT, &sci->sc_flags);
1842 }
1843
nilfs_segctor_wait(struct nilfs_sc_info * sci)1844 static int nilfs_segctor_wait(struct nilfs_sc_info *sci)
1845 {
1846 int ret;
1847
1848 ret = nilfs_wait_on_logs(&sci->sc_write_logs);
1849 if (!ret) {
1850 nilfs_segctor_complete_write(sci);
1851 nilfs_destroy_logs(&sci->sc_write_logs);
1852 }
1853 return ret;
1854 }
1855
nilfs_segctor_collect_dirty_files(struct nilfs_sc_info * sci,struct the_nilfs * nilfs)1856 static int nilfs_segctor_collect_dirty_files(struct nilfs_sc_info *sci,
1857 struct the_nilfs *nilfs)
1858 {
1859 struct nilfs_inode_info *ii, *n;
1860 struct inode *ifile = sci->sc_root->ifile;
1861
1862 spin_lock(&nilfs->ns_inode_lock);
1863 retry:
1864 list_for_each_entry_safe(ii, n, &nilfs->ns_dirty_files, i_dirty) {
1865 if (!ii->i_bh) {
1866 struct buffer_head *ibh;
1867 int err;
1868
1869 spin_unlock(&nilfs->ns_inode_lock);
1870 err = nilfs_ifile_get_inode_block(
1871 ifile, ii->vfs_inode.i_ino, &ibh);
1872 if (unlikely(err)) {
1873 nilfs_warning(sci->sc_super, __func__,
1874 "failed to get inode block.\n");
1875 return err;
1876 }
1877 mark_buffer_dirty(ibh);
1878 nilfs_mdt_mark_dirty(ifile);
1879 spin_lock(&nilfs->ns_inode_lock);
1880 if (likely(!ii->i_bh))
1881 ii->i_bh = ibh;
1882 else
1883 brelse(ibh);
1884 goto retry;
1885 }
1886
1887 clear_bit(NILFS_I_QUEUED, &ii->i_state);
1888 set_bit(NILFS_I_BUSY, &ii->i_state);
1889 list_move_tail(&ii->i_dirty, &sci->sc_dirty_files);
1890 }
1891 spin_unlock(&nilfs->ns_inode_lock);
1892
1893 return 0;
1894 }
1895
nilfs_segctor_drop_written_files(struct nilfs_sc_info * sci,struct the_nilfs * nilfs)1896 static void nilfs_segctor_drop_written_files(struct nilfs_sc_info *sci,
1897 struct the_nilfs *nilfs)
1898 {
1899 struct nilfs_transaction_info *ti = current->journal_info;
1900 struct nilfs_inode_info *ii, *n;
1901
1902 spin_lock(&nilfs->ns_inode_lock);
1903 list_for_each_entry_safe(ii, n, &sci->sc_dirty_files, i_dirty) {
1904 if (!test_and_clear_bit(NILFS_I_UPDATED, &ii->i_state) ||
1905 test_bit(NILFS_I_DIRTY, &ii->i_state))
1906 continue;
1907
1908 clear_bit(NILFS_I_BUSY, &ii->i_state);
1909 brelse(ii->i_bh);
1910 ii->i_bh = NULL;
1911 list_move_tail(&ii->i_dirty, &ti->ti_garbage);
1912 }
1913 spin_unlock(&nilfs->ns_inode_lock);
1914 }
1915
1916 /*
1917 * Main procedure of segment constructor
1918 */
nilfs_segctor_do_construct(struct nilfs_sc_info * sci,int mode)1919 static int nilfs_segctor_do_construct(struct nilfs_sc_info *sci, int mode)
1920 {
1921 struct the_nilfs *nilfs = sci->sc_super->s_fs_info;
1922 int err;
1923
1924 sci->sc_stage.scnt = NILFS_ST_INIT;
1925 sci->sc_cno = nilfs->ns_cno;
1926
1927 err = nilfs_segctor_collect_dirty_files(sci, nilfs);
1928 if (unlikely(err))
1929 goto out;
1930
1931 if (nilfs_test_metadata_dirty(nilfs, sci->sc_root))
1932 set_bit(NILFS_SC_DIRTY, &sci->sc_flags);
1933
1934 if (nilfs_segctor_clean(sci))
1935 goto out;
1936
1937 do {
1938 sci->sc_stage.flags &= ~NILFS_CF_HISTORY_MASK;
1939
1940 err = nilfs_segctor_begin_construction(sci, nilfs);
1941 if (unlikely(err))
1942 goto out;
1943
1944 /* Update time stamp */
1945 sci->sc_seg_ctime = get_seconds();
1946
1947 err = nilfs_segctor_collect(sci, nilfs, mode);
1948 if (unlikely(err))
1949 goto failed;
1950
1951 /* Avoid empty segment */
1952 if (sci->sc_stage.scnt == NILFS_ST_DONE &&
1953 nilfs_segbuf_empty(sci->sc_curseg)) {
1954 nilfs_segctor_abort_construction(sci, nilfs, 1);
1955 goto out;
1956 }
1957
1958 err = nilfs_segctor_assign(sci, mode);
1959 if (unlikely(err))
1960 goto failed;
1961
1962 if (sci->sc_stage.flags & NILFS_CF_IFILE_STARTED)
1963 nilfs_segctor_fill_in_file_bmap(sci);
1964
1965 if (mode == SC_LSEG_SR &&
1966 sci->sc_stage.scnt >= NILFS_ST_CPFILE) {
1967 err = nilfs_segctor_fill_in_checkpoint(sci);
1968 if (unlikely(err))
1969 goto failed_to_write;
1970
1971 nilfs_segctor_fill_in_super_root(sci, nilfs);
1972 }
1973 nilfs_segctor_update_segusage(sci, nilfs->ns_sufile);
1974
1975 /* Write partial segments */
1976 nilfs_segctor_prepare_write(sci);
1977
1978 nilfs_add_checksums_on_logs(&sci->sc_segbufs,
1979 nilfs->ns_crc_seed);
1980
1981 err = nilfs_segctor_write(sci, nilfs);
1982 if (unlikely(err))
1983 goto failed_to_write;
1984
1985 if (sci->sc_stage.scnt == NILFS_ST_DONE ||
1986 nilfs->ns_blocksize_bits != PAGE_CACHE_SHIFT) {
1987 /*
1988 * At this point, we avoid double buffering
1989 * for blocksize < pagesize because page dirty
1990 * flag is turned off during write and dirty
1991 * buffers are not properly collected for
1992 * pages crossing over segments.
1993 */
1994 err = nilfs_segctor_wait(sci);
1995 if (err)
1996 goto failed_to_write;
1997 }
1998 } while (sci->sc_stage.scnt != NILFS_ST_DONE);
1999
2000 out:
2001 nilfs_segctor_drop_written_files(sci, nilfs);
2002 return err;
2003
2004 failed_to_write:
2005 if (sci->sc_stage.flags & NILFS_CF_IFILE_STARTED)
2006 nilfs_redirty_inodes(&sci->sc_dirty_files);
2007
2008 failed:
2009 if (nilfs_doing_gc())
2010 nilfs_redirty_inodes(&sci->sc_gc_inodes);
2011 nilfs_segctor_abort_construction(sci, nilfs, err);
2012 goto out;
2013 }
2014
2015 /**
2016 * nilfs_segctor_start_timer - set timer of background write
2017 * @sci: nilfs_sc_info
2018 *
2019 * If the timer has already been set, it ignores the new request.
2020 * This function MUST be called within a section locking the segment
2021 * semaphore.
2022 */
nilfs_segctor_start_timer(struct nilfs_sc_info * sci)2023 static void nilfs_segctor_start_timer(struct nilfs_sc_info *sci)
2024 {
2025 spin_lock(&sci->sc_state_lock);
2026 if (!(sci->sc_state & NILFS_SEGCTOR_COMMIT)) {
2027 sci->sc_timer.expires = jiffies + sci->sc_interval;
2028 add_timer(&sci->sc_timer);
2029 sci->sc_state |= NILFS_SEGCTOR_COMMIT;
2030 }
2031 spin_unlock(&sci->sc_state_lock);
2032 }
2033
nilfs_segctor_do_flush(struct nilfs_sc_info * sci,int bn)2034 static void nilfs_segctor_do_flush(struct nilfs_sc_info *sci, int bn)
2035 {
2036 spin_lock(&sci->sc_state_lock);
2037 if (!(sci->sc_flush_request & (1 << bn))) {
2038 unsigned long prev_req = sci->sc_flush_request;
2039
2040 sci->sc_flush_request |= (1 << bn);
2041 if (!prev_req)
2042 wake_up(&sci->sc_wait_daemon);
2043 }
2044 spin_unlock(&sci->sc_state_lock);
2045 }
2046
2047 /**
2048 * nilfs_flush_segment - trigger a segment construction for resource control
2049 * @sb: super block
2050 * @ino: inode number of the file to be flushed out.
2051 */
nilfs_flush_segment(struct super_block * sb,ino_t ino)2052 void nilfs_flush_segment(struct super_block *sb, ino_t ino)
2053 {
2054 struct the_nilfs *nilfs = sb->s_fs_info;
2055 struct nilfs_sc_info *sci = nilfs->ns_writer;
2056
2057 if (!sci || nilfs_doing_construction())
2058 return;
2059 nilfs_segctor_do_flush(sci, NILFS_MDT_INODE(sb, ino) ? ino : 0);
2060 /* assign bit 0 to data files */
2061 }
2062
2063 struct nilfs_segctor_wait_request {
2064 wait_queue_t wq;
2065 __u32 seq;
2066 int err;
2067 atomic_t done;
2068 };
2069
nilfs_segctor_sync(struct nilfs_sc_info * sci)2070 static int nilfs_segctor_sync(struct nilfs_sc_info *sci)
2071 {
2072 struct nilfs_segctor_wait_request wait_req;
2073 int err = 0;
2074
2075 spin_lock(&sci->sc_state_lock);
2076 init_wait(&wait_req.wq);
2077 wait_req.err = 0;
2078 atomic_set(&wait_req.done, 0);
2079 wait_req.seq = ++sci->sc_seq_request;
2080 spin_unlock(&sci->sc_state_lock);
2081
2082 init_waitqueue_entry(&wait_req.wq, current);
2083 add_wait_queue(&sci->sc_wait_request, &wait_req.wq);
2084 set_current_state(TASK_INTERRUPTIBLE);
2085 wake_up(&sci->sc_wait_daemon);
2086
2087 for (;;) {
2088 if (atomic_read(&wait_req.done)) {
2089 err = wait_req.err;
2090 break;
2091 }
2092 if (!signal_pending(current)) {
2093 schedule();
2094 continue;
2095 }
2096 err = -ERESTARTSYS;
2097 break;
2098 }
2099 finish_wait(&sci->sc_wait_request, &wait_req.wq);
2100 return err;
2101 }
2102
nilfs_segctor_wakeup(struct nilfs_sc_info * sci,int err)2103 static void nilfs_segctor_wakeup(struct nilfs_sc_info *sci, int err)
2104 {
2105 struct nilfs_segctor_wait_request *wrq, *n;
2106 unsigned long flags;
2107
2108 spin_lock_irqsave(&sci->sc_wait_request.lock, flags);
2109 list_for_each_entry_safe(wrq, n, &sci->sc_wait_request.task_list,
2110 wq.task_list) {
2111 if (!atomic_read(&wrq->done) &&
2112 nilfs_cnt32_ge(sci->sc_seq_done, wrq->seq)) {
2113 wrq->err = err;
2114 atomic_set(&wrq->done, 1);
2115 }
2116 if (atomic_read(&wrq->done)) {
2117 wrq->wq.func(&wrq->wq,
2118 TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE,
2119 0, NULL);
2120 }
2121 }
2122 spin_unlock_irqrestore(&sci->sc_wait_request.lock, flags);
2123 }
2124
2125 /**
2126 * nilfs_construct_segment - construct a logical segment
2127 * @sb: super block
2128 *
2129 * Return Value: On success, 0 is retured. On errors, one of the following
2130 * negative error code is returned.
2131 *
2132 * %-EROFS - Read only filesystem.
2133 *
2134 * %-EIO - I/O error
2135 *
2136 * %-ENOSPC - No space left on device (only in a panic state).
2137 *
2138 * %-ERESTARTSYS - Interrupted.
2139 *
2140 * %-ENOMEM - Insufficient memory available.
2141 */
nilfs_construct_segment(struct super_block * sb)2142 int nilfs_construct_segment(struct super_block *sb)
2143 {
2144 struct the_nilfs *nilfs = sb->s_fs_info;
2145 struct nilfs_sc_info *sci = nilfs->ns_writer;
2146 struct nilfs_transaction_info *ti;
2147 int err;
2148
2149 if (!sci)
2150 return -EROFS;
2151
2152 /* A call inside transactions causes a deadlock. */
2153 BUG_ON((ti = current->journal_info) && ti->ti_magic == NILFS_TI_MAGIC);
2154
2155 err = nilfs_segctor_sync(sci);
2156 return err;
2157 }
2158
2159 /**
2160 * nilfs_construct_dsync_segment - construct a data-only logical segment
2161 * @sb: super block
2162 * @inode: inode whose data blocks should be written out
2163 * @start: start byte offset
2164 * @end: end byte offset (inclusive)
2165 *
2166 * Return Value: On success, 0 is retured. On errors, one of the following
2167 * negative error code is returned.
2168 *
2169 * %-EROFS - Read only filesystem.
2170 *
2171 * %-EIO - I/O error
2172 *
2173 * %-ENOSPC - No space left on device (only in a panic state).
2174 *
2175 * %-ERESTARTSYS - Interrupted.
2176 *
2177 * %-ENOMEM - Insufficient memory available.
2178 */
nilfs_construct_dsync_segment(struct super_block * sb,struct inode * inode,loff_t start,loff_t end)2179 int nilfs_construct_dsync_segment(struct super_block *sb, struct inode *inode,
2180 loff_t start, loff_t end)
2181 {
2182 struct the_nilfs *nilfs = sb->s_fs_info;
2183 struct nilfs_sc_info *sci = nilfs->ns_writer;
2184 struct nilfs_inode_info *ii;
2185 struct nilfs_transaction_info ti;
2186 int err = 0;
2187
2188 if (!sci)
2189 return -EROFS;
2190
2191 nilfs_transaction_lock(sb, &ti, 0);
2192
2193 ii = NILFS_I(inode);
2194 if (test_bit(NILFS_I_INODE_DIRTY, &ii->i_state) ||
2195 nilfs_test_opt(nilfs, STRICT_ORDER) ||
2196 test_bit(NILFS_SC_UNCLOSED, &sci->sc_flags) ||
2197 nilfs_discontinued(nilfs)) {
2198 nilfs_transaction_unlock(sb);
2199 err = nilfs_segctor_sync(sci);
2200 return err;
2201 }
2202
2203 spin_lock(&nilfs->ns_inode_lock);
2204 if (!test_bit(NILFS_I_QUEUED, &ii->i_state) &&
2205 !test_bit(NILFS_I_BUSY, &ii->i_state)) {
2206 spin_unlock(&nilfs->ns_inode_lock);
2207 nilfs_transaction_unlock(sb);
2208 return 0;
2209 }
2210 spin_unlock(&nilfs->ns_inode_lock);
2211 sci->sc_dsync_inode = ii;
2212 sci->sc_dsync_start = start;
2213 sci->sc_dsync_end = end;
2214
2215 err = nilfs_segctor_do_construct(sci, SC_LSEG_DSYNC);
2216
2217 nilfs_transaction_unlock(sb);
2218 return err;
2219 }
2220
2221 #define FLUSH_FILE_BIT (0x1) /* data file only */
2222 #define FLUSH_DAT_BIT (1 << NILFS_DAT_INO) /* DAT only */
2223
2224 /**
2225 * nilfs_segctor_accept - record accepted sequence count of log-write requests
2226 * @sci: segment constructor object
2227 */
nilfs_segctor_accept(struct nilfs_sc_info * sci)2228 static void nilfs_segctor_accept(struct nilfs_sc_info *sci)
2229 {
2230 spin_lock(&sci->sc_state_lock);
2231 sci->sc_seq_accepted = sci->sc_seq_request;
2232 spin_unlock(&sci->sc_state_lock);
2233 del_timer_sync(&sci->sc_timer);
2234 }
2235
2236 /**
2237 * nilfs_segctor_notify - notify the result of request to caller threads
2238 * @sci: segment constructor object
2239 * @mode: mode of log forming
2240 * @err: error code to be notified
2241 */
nilfs_segctor_notify(struct nilfs_sc_info * sci,int mode,int err)2242 static void nilfs_segctor_notify(struct nilfs_sc_info *sci, int mode, int err)
2243 {
2244 /* Clear requests (even when the construction failed) */
2245 spin_lock(&sci->sc_state_lock);
2246
2247 if (mode == SC_LSEG_SR) {
2248 sci->sc_state &= ~NILFS_SEGCTOR_COMMIT;
2249 sci->sc_seq_done = sci->sc_seq_accepted;
2250 nilfs_segctor_wakeup(sci, err);
2251 sci->sc_flush_request = 0;
2252 } else {
2253 if (mode == SC_FLUSH_FILE)
2254 sci->sc_flush_request &= ~FLUSH_FILE_BIT;
2255 else if (mode == SC_FLUSH_DAT)
2256 sci->sc_flush_request &= ~FLUSH_DAT_BIT;
2257
2258 /* re-enable timer if checkpoint creation was not done */
2259 if ((sci->sc_state & NILFS_SEGCTOR_COMMIT) &&
2260 time_before(jiffies, sci->sc_timer.expires))
2261 add_timer(&sci->sc_timer);
2262 }
2263 spin_unlock(&sci->sc_state_lock);
2264 }
2265
2266 /**
2267 * nilfs_segctor_construct - form logs and write them to disk
2268 * @sci: segment constructor object
2269 * @mode: mode of log forming
2270 */
nilfs_segctor_construct(struct nilfs_sc_info * sci,int mode)2271 static int nilfs_segctor_construct(struct nilfs_sc_info *sci, int mode)
2272 {
2273 struct the_nilfs *nilfs = sci->sc_super->s_fs_info;
2274 struct nilfs_super_block **sbp;
2275 int err = 0;
2276
2277 nilfs_segctor_accept(sci);
2278
2279 if (nilfs_discontinued(nilfs))
2280 mode = SC_LSEG_SR;
2281 if (!nilfs_segctor_confirm(sci))
2282 err = nilfs_segctor_do_construct(sci, mode);
2283
2284 if (likely(!err)) {
2285 if (mode != SC_FLUSH_DAT)
2286 atomic_set(&nilfs->ns_ndirtyblks, 0);
2287 if (test_bit(NILFS_SC_SUPER_ROOT, &sci->sc_flags) &&
2288 nilfs_discontinued(nilfs)) {
2289 down_write(&nilfs->ns_sem);
2290 err = -EIO;
2291 sbp = nilfs_prepare_super(sci->sc_super,
2292 nilfs_sb_will_flip(nilfs));
2293 if (likely(sbp)) {
2294 nilfs_set_log_cursor(sbp[0], nilfs);
2295 err = nilfs_commit_super(sci->sc_super,
2296 NILFS_SB_COMMIT);
2297 }
2298 up_write(&nilfs->ns_sem);
2299 }
2300 }
2301
2302 nilfs_segctor_notify(sci, mode, err);
2303 return err;
2304 }
2305
nilfs_construction_timeout(unsigned long data)2306 static void nilfs_construction_timeout(unsigned long data)
2307 {
2308 struct task_struct *p = (struct task_struct *)data;
2309 wake_up_process(p);
2310 }
2311
2312 static void
nilfs_remove_written_gcinodes(struct the_nilfs * nilfs,struct list_head * head)2313 nilfs_remove_written_gcinodes(struct the_nilfs *nilfs, struct list_head *head)
2314 {
2315 struct nilfs_inode_info *ii, *n;
2316
2317 list_for_each_entry_safe(ii, n, head, i_dirty) {
2318 if (!test_bit(NILFS_I_UPDATED, &ii->i_state))
2319 continue;
2320 list_del_init(&ii->i_dirty);
2321 truncate_inode_pages(&ii->vfs_inode.i_data, 0);
2322 nilfs_btnode_cache_clear(&ii->i_btnode_cache);
2323 iput(&ii->vfs_inode);
2324 }
2325 }
2326
nilfs_clean_segments(struct super_block * sb,struct nilfs_argv * argv,void ** kbufs)2327 int nilfs_clean_segments(struct super_block *sb, struct nilfs_argv *argv,
2328 void **kbufs)
2329 {
2330 struct the_nilfs *nilfs = sb->s_fs_info;
2331 struct nilfs_sc_info *sci = nilfs->ns_writer;
2332 struct nilfs_transaction_info ti;
2333 int err;
2334
2335 if (unlikely(!sci))
2336 return -EROFS;
2337
2338 nilfs_transaction_lock(sb, &ti, 1);
2339
2340 err = nilfs_mdt_save_to_shadow_map(nilfs->ns_dat);
2341 if (unlikely(err))
2342 goto out_unlock;
2343
2344 err = nilfs_ioctl_prepare_clean_segments(nilfs, argv, kbufs);
2345 if (unlikely(err)) {
2346 nilfs_mdt_restore_from_shadow_map(nilfs->ns_dat);
2347 goto out_unlock;
2348 }
2349
2350 sci->sc_freesegs = kbufs[4];
2351 sci->sc_nfreesegs = argv[4].v_nmembs;
2352 list_splice_tail_init(&nilfs->ns_gc_inodes, &sci->sc_gc_inodes);
2353
2354 for (;;) {
2355 err = nilfs_segctor_construct(sci, SC_LSEG_SR);
2356 nilfs_remove_written_gcinodes(nilfs, &sci->sc_gc_inodes);
2357
2358 if (likely(!err))
2359 break;
2360
2361 nilfs_warning(sb, __func__,
2362 "segment construction failed. (err=%d)", err);
2363 set_current_state(TASK_INTERRUPTIBLE);
2364 schedule_timeout(sci->sc_interval);
2365 }
2366 if (nilfs_test_opt(nilfs, DISCARD)) {
2367 int ret = nilfs_discard_segments(nilfs, sci->sc_freesegs,
2368 sci->sc_nfreesegs);
2369 if (ret) {
2370 printk(KERN_WARNING
2371 "NILFS warning: error %d on discard request, "
2372 "turning discards off for the device\n", ret);
2373 nilfs_clear_opt(nilfs, DISCARD);
2374 }
2375 }
2376
2377 out_unlock:
2378 sci->sc_freesegs = NULL;
2379 sci->sc_nfreesegs = 0;
2380 nilfs_mdt_clear_shadow_map(nilfs->ns_dat);
2381 nilfs_transaction_unlock(sb);
2382 return err;
2383 }
2384
nilfs_segctor_thread_construct(struct nilfs_sc_info * sci,int mode)2385 static void nilfs_segctor_thread_construct(struct nilfs_sc_info *sci, int mode)
2386 {
2387 struct nilfs_transaction_info ti;
2388
2389 nilfs_transaction_lock(sci->sc_super, &ti, 0);
2390 nilfs_segctor_construct(sci, mode);
2391
2392 /*
2393 * Unclosed segment should be retried. We do this using sc_timer.
2394 * Timeout of sc_timer will invoke complete construction which leads
2395 * to close the current logical segment.
2396 */
2397 if (test_bit(NILFS_SC_UNCLOSED, &sci->sc_flags))
2398 nilfs_segctor_start_timer(sci);
2399
2400 nilfs_transaction_unlock(sci->sc_super);
2401 }
2402
nilfs_segctor_do_immediate_flush(struct nilfs_sc_info * sci)2403 static void nilfs_segctor_do_immediate_flush(struct nilfs_sc_info *sci)
2404 {
2405 int mode = 0;
2406 int err;
2407
2408 spin_lock(&sci->sc_state_lock);
2409 mode = (sci->sc_flush_request & FLUSH_DAT_BIT) ?
2410 SC_FLUSH_DAT : SC_FLUSH_FILE;
2411 spin_unlock(&sci->sc_state_lock);
2412
2413 if (mode) {
2414 err = nilfs_segctor_do_construct(sci, mode);
2415
2416 spin_lock(&sci->sc_state_lock);
2417 sci->sc_flush_request &= (mode == SC_FLUSH_FILE) ?
2418 ~FLUSH_FILE_BIT : ~FLUSH_DAT_BIT;
2419 spin_unlock(&sci->sc_state_lock);
2420 }
2421 clear_bit(NILFS_SC_PRIOR_FLUSH, &sci->sc_flags);
2422 }
2423
nilfs_segctor_flush_mode(struct nilfs_sc_info * sci)2424 static int nilfs_segctor_flush_mode(struct nilfs_sc_info *sci)
2425 {
2426 if (!test_bit(NILFS_SC_UNCLOSED, &sci->sc_flags) ||
2427 time_before(jiffies, sci->sc_lseg_stime + sci->sc_mjcp_freq)) {
2428 if (!(sci->sc_flush_request & ~FLUSH_FILE_BIT))
2429 return SC_FLUSH_FILE;
2430 else if (!(sci->sc_flush_request & ~FLUSH_DAT_BIT))
2431 return SC_FLUSH_DAT;
2432 }
2433 return SC_LSEG_SR;
2434 }
2435
2436 /**
2437 * nilfs_segctor_thread - main loop of the segment constructor thread.
2438 * @arg: pointer to a struct nilfs_sc_info.
2439 *
2440 * nilfs_segctor_thread() initializes a timer and serves as a daemon
2441 * to execute segment constructions.
2442 */
nilfs_segctor_thread(void * arg)2443 static int nilfs_segctor_thread(void *arg)
2444 {
2445 struct nilfs_sc_info *sci = (struct nilfs_sc_info *)arg;
2446 struct the_nilfs *nilfs = sci->sc_super->s_fs_info;
2447 int timeout = 0;
2448
2449 sci->sc_timer.data = (unsigned long)current;
2450 sci->sc_timer.function = nilfs_construction_timeout;
2451
2452 /* start sync. */
2453 sci->sc_task = current;
2454 wake_up(&sci->sc_wait_task); /* for nilfs_segctor_start_thread() */
2455 printk(KERN_INFO
2456 "segctord starting. Construction interval = %lu seconds, "
2457 "CP frequency < %lu seconds\n",
2458 sci->sc_interval / HZ, sci->sc_mjcp_freq / HZ);
2459
2460 spin_lock(&sci->sc_state_lock);
2461 loop:
2462 for (;;) {
2463 int mode;
2464
2465 if (sci->sc_state & NILFS_SEGCTOR_QUIT)
2466 goto end_thread;
2467
2468 if (timeout || sci->sc_seq_request != sci->sc_seq_done)
2469 mode = SC_LSEG_SR;
2470 else if (!sci->sc_flush_request)
2471 break;
2472 else
2473 mode = nilfs_segctor_flush_mode(sci);
2474
2475 spin_unlock(&sci->sc_state_lock);
2476 nilfs_segctor_thread_construct(sci, mode);
2477 spin_lock(&sci->sc_state_lock);
2478 timeout = 0;
2479 }
2480
2481
2482 if (freezing(current)) {
2483 spin_unlock(&sci->sc_state_lock);
2484 try_to_freeze();
2485 spin_lock(&sci->sc_state_lock);
2486 } else {
2487 DEFINE_WAIT(wait);
2488 int should_sleep = 1;
2489
2490 prepare_to_wait(&sci->sc_wait_daemon, &wait,
2491 TASK_INTERRUPTIBLE);
2492
2493 if (sci->sc_seq_request != sci->sc_seq_done)
2494 should_sleep = 0;
2495 else if (sci->sc_flush_request)
2496 should_sleep = 0;
2497 else if (sci->sc_state & NILFS_SEGCTOR_COMMIT)
2498 should_sleep = time_before(jiffies,
2499 sci->sc_timer.expires);
2500
2501 if (should_sleep) {
2502 spin_unlock(&sci->sc_state_lock);
2503 schedule();
2504 spin_lock(&sci->sc_state_lock);
2505 }
2506 finish_wait(&sci->sc_wait_daemon, &wait);
2507 timeout = ((sci->sc_state & NILFS_SEGCTOR_COMMIT) &&
2508 time_after_eq(jiffies, sci->sc_timer.expires));
2509
2510 if (nilfs_sb_dirty(nilfs) && nilfs_sb_need_update(nilfs))
2511 set_nilfs_discontinued(nilfs);
2512 }
2513 goto loop;
2514
2515 end_thread:
2516 spin_unlock(&sci->sc_state_lock);
2517
2518 /* end sync. */
2519 sci->sc_task = NULL;
2520 wake_up(&sci->sc_wait_task); /* for nilfs_segctor_kill_thread() */
2521 return 0;
2522 }
2523
nilfs_segctor_start_thread(struct nilfs_sc_info * sci)2524 static int nilfs_segctor_start_thread(struct nilfs_sc_info *sci)
2525 {
2526 struct task_struct *t;
2527
2528 t = kthread_run(nilfs_segctor_thread, sci, "segctord");
2529 if (IS_ERR(t)) {
2530 int err = PTR_ERR(t);
2531
2532 printk(KERN_ERR "NILFS: error %d creating segctord thread\n",
2533 err);
2534 return err;
2535 }
2536 wait_event(sci->sc_wait_task, sci->sc_task != NULL);
2537 return 0;
2538 }
2539
nilfs_segctor_kill_thread(struct nilfs_sc_info * sci)2540 static void nilfs_segctor_kill_thread(struct nilfs_sc_info *sci)
2541 __acquires(&sci->sc_state_lock)
2542 __releases(&sci->sc_state_lock)
2543 {
2544 sci->sc_state |= NILFS_SEGCTOR_QUIT;
2545
2546 while (sci->sc_task) {
2547 wake_up(&sci->sc_wait_daemon);
2548 spin_unlock(&sci->sc_state_lock);
2549 wait_event(sci->sc_wait_task, sci->sc_task == NULL);
2550 spin_lock(&sci->sc_state_lock);
2551 }
2552 }
2553
2554 /*
2555 * Setup & clean-up functions
2556 */
nilfs_segctor_new(struct super_block * sb,struct nilfs_root * root)2557 static struct nilfs_sc_info *nilfs_segctor_new(struct super_block *sb,
2558 struct nilfs_root *root)
2559 {
2560 struct the_nilfs *nilfs = sb->s_fs_info;
2561 struct nilfs_sc_info *sci;
2562
2563 sci = kzalloc(sizeof(*sci), GFP_KERNEL);
2564 if (!sci)
2565 return NULL;
2566
2567 sci->sc_super = sb;
2568
2569 nilfs_get_root(root);
2570 sci->sc_root = root;
2571
2572 init_waitqueue_head(&sci->sc_wait_request);
2573 init_waitqueue_head(&sci->sc_wait_daemon);
2574 init_waitqueue_head(&sci->sc_wait_task);
2575 spin_lock_init(&sci->sc_state_lock);
2576 INIT_LIST_HEAD(&sci->sc_dirty_files);
2577 INIT_LIST_HEAD(&sci->sc_segbufs);
2578 INIT_LIST_HEAD(&sci->sc_write_logs);
2579 INIT_LIST_HEAD(&sci->sc_gc_inodes);
2580 init_timer(&sci->sc_timer);
2581
2582 sci->sc_interval = HZ * NILFS_SC_DEFAULT_TIMEOUT;
2583 sci->sc_mjcp_freq = HZ * NILFS_SC_DEFAULT_SR_FREQ;
2584 sci->sc_watermark = NILFS_SC_DEFAULT_WATERMARK;
2585
2586 if (nilfs->ns_interval)
2587 sci->sc_interval = HZ * nilfs->ns_interval;
2588 if (nilfs->ns_watermark)
2589 sci->sc_watermark = nilfs->ns_watermark;
2590 return sci;
2591 }
2592
nilfs_segctor_write_out(struct nilfs_sc_info * sci)2593 static void nilfs_segctor_write_out(struct nilfs_sc_info *sci)
2594 {
2595 int ret, retrycount = NILFS_SC_CLEANUP_RETRY;
2596
2597 /* The segctord thread was stopped and its timer was removed.
2598 But some tasks remain. */
2599 do {
2600 struct nilfs_transaction_info ti;
2601
2602 nilfs_transaction_lock(sci->sc_super, &ti, 0);
2603 ret = nilfs_segctor_construct(sci, SC_LSEG_SR);
2604 nilfs_transaction_unlock(sci->sc_super);
2605
2606 } while (ret && retrycount-- > 0);
2607 }
2608
2609 /**
2610 * nilfs_segctor_destroy - destroy the segment constructor.
2611 * @sci: nilfs_sc_info
2612 *
2613 * nilfs_segctor_destroy() kills the segctord thread and frees
2614 * the nilfs_sc_info struct.
2615 * Caller must hold the segment semaphore.
2616 */
nilfs_segctor_destroy(struct nilfs_sc_info * sci)2617 static void nilfs_segctor_destroy(struct nilfs_sc_info *sci)
2618 {
2619 struct the_nilfs *nilfs = sci->sc_super->s_fs_info;
2620 int flag;
2621
2622 up_write(&nilfs->ns_segctor_sem);
2623
2624 spin_lock(&sci->sc_state_lock);
2625 nilfs_segctor_kill_thread(sci);
2626 flag = ((sci->sc_state & NILFS_SEGCTOR_COMMIT) || sci->sc_flush_request
2627 || sci->sc_seq_request != sci->sc_seq_done);
2628 spin_unlock(&sci->sc_state_lock);
2629
2630 if (flag || !nilfs_segctor_confirm(sci))
2631 nilfs_segctor_write_out(sci);
2632
2633 if (!list_empty(&sci->sc_dirty_files)) {
2634 nilfs_warning(sci->sc_super, __func__,
2635 "dirty file(s) after the final construction\n");
2636 nilfs_dispose_list(nilfs, &sci->sc_dirty_files, 1);
2637 }
2638
2639 WARN_ON(!list_empty(&sci->sc_segbufs));
2640 WARN_ON(!list_empty(&sci->sc_write_logs));
2641
2642 nilfs_put_root(sci->sc_root);
2643
2644 down_write(&nilfs->ns_segctor_sem);
2645
2646 del_timer_sync(&sci->sc_timer);
2647 kfree(sci);
2648 }
2649
2650 /**
2651 * nilfs_attach_log_writer - attach log writer
2652 * @sb: super block instance
2653 * @root: root object of the current filesystem tree
2654 *
2655 * This allocates a log writer object, initializes it, and starts the
2656 * log writer.
2657 *
2658 * Return Value: On success, 0 is returned. On error, one of the following
2659 * negative error code is returned.
2660 *
2661 * %-ENOMEM - Insufficient memory available.
2662 */
nilfs_attach_log_writer(struct super_block * sb,struct nilfs_root * root)2663 int nilfs_attach_log_writer(struct super_block *sb, struct nilfs_root *root)
2664 {
2665 struct the_nilfs *nilfs = sb->s_fs_info;
2666 int err;
2667
2668 if (nilfs->ns_writer) {
2669 /*
2670 * This happens if the filesystem was remounted
2671 * read/write after nilfs_error degenerated it into a
2672 * read-only mount.
2673 */
2674 nilfs_detach_log_writer(sb);
2675 }
2676
2677 nilfs->ns_writer = nilfs_segctor_new(sb, root);
2678 if (!nilfs->ns_writer)
2679 return -ENOMEM;
2680
2681 err = nilfs_segctor_start_thread(nilfs->ns_writer);
2682 if (err) {
2683 kfree(nilfs->ns_writer);
2684 nilfs->ns_writer = NULL;
2685 }
2686 return err;
2687 }
2688
2689 /**
2690 * nilfs_detach_log_writer - destroy log writer
2691 * @sb: super block instance
2692 *
2693 * This kills log writer daemon, frees the log writer object, and
2694 * destroys list of dirty files.
2695 */
nilfs_detach_log_writer(struct super_block * sb)2696 void nilfs_detach_log_writer(struct super_block *sb)
2697 {
2698 struct the_nilfs *nilfs = sb->s_fs_info;
2699 LIST_HEAD(garbage_list);
2700
2701 down_write(&nilfs->ns_segctor_sem);
2702 if (nilfs->ns_writer) {
2703 nilfs_segctor_destroy(nilfs->ns_writer);
2704 nilfs->ns_writer = NULL;
2705 }
2706
2707 /* Force to free the list of dirty files */
2708 spin_lock(&nilfs->ns_inode_lock);
2709 if (!list_empty(&nilfs->ns_dirty_files)) {
2710 list_splice_init(&nilfs->ns_dirty_files, &garbage_list);
2711 nilfs_warning(sb, __func__,
2712 "Hit dirty file after stopped log writer\n");
2713 }
2714 spin_unlock(&nilfs->ns_inode_lock);
2715 up_write(&nilfs->ns_segctor_sem);
2716
2717 nilfs_dispose_list(nilfs, &garbage_list, 1);
2718 }
2719