2 * segment.c - NILFS segment constructor.
4 * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation.
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.
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.
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
20 * Written by Ryusuke Konishi <ryusuke@osrg.net>
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>
49 #define SC_N_INODEVEC 16 /* Size of locally allocated inode vector */
51 #define SC_MAX_SEGDELTA 64 /* Upper limit of the number of segments
52 appended in collection retry loop */
54 /* Construction mode */
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
65 /* Stage numbers of dirty block collection */
68 NILFS_ST_GC
, /* Collecting dirty blocks for GC */
74 NILFS_ST_SR
, /* Super root */
75 NILFS_ST_DSYNC
, /* Data sync blocks */
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)
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
*,
89 int (*collect_node
)(struct nilfs_sc_info
*, struct buffer_head
*,
91 int (*collect_bmap
)(struct nilfs_sc_info
*, struct buffer_head
*,
93 void (*write_data_binfo
)(struct nilfs_sc_info
*,
94 struct nilfs_segsum_pointer
*,
96 void (*write_node_binfo
)(struct nilfs_sc_info
*,
97 struct nilfs_segsum_pointer
*,
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 nilfs_sb_info
*, struct list_head
*,
110 #define nilfs_cnt32_gt(a, b) \
111 (typecheck(__u32, a) && typecheck(__u32, b) && \
112 ((__s32)(b) - (__s32)(a) < 0))
113 #define nilfs_cnt32_ge(a, b) \
114 (typecheck(__u32, a) && typecheck(__u32, b) && \
115 ((__s32)(a) - (__s32)(b) >= 0))
116 #define nilfs_cnt32_lt(a, b) nilfs_cnt32_gt(b, a)
117 #define nilfs_cnt32_le(a, b) nilfs_cnt32_ge(b, a)
119 static int nilfs_prepare_segment_lock(struct nilfs_transaction_info
*ti
)
121 struct nilfs_transaction_info
*cur_ti
= current
->journal_info
;
125 if (cur_ti
->ti_magic
== NILFS_TI_MAGIC
)
126 return ++cur_ti
->ti_count
;
129 * If journal_info field is occupied by other FS,
130 * it is saved and will be restored on
131 * nilfs_transaction_commit().
134 "NILFS warning: journal info from a different "
136 save
= current
->journal_info
;
140 ti
= kmem_cache_alloc(nilfs_transaction_cachep
, GFP_NOFS
);
143 ti
->ti_flags
= NILFS_TI_DYNAMIC_ALLOC
;
149 ti
->ti_magic
= NILFS_TI_MAGIC
;
150 current
->journal_info
= ti
;
155 * nilfs_transaction_begin - start indivisible file operations.
157 * @ti: nilfs_transaction_info
158 * @vacancy_check: flags for vacancy rate checks
160 * nilfs_transaction_begin() acquires a reader/writer semaphore, called
161 * the segment semaphore, to make a segment construction and write tasks
162 * exclusive. The function is used with nilfs_transaction_commit() in pairs.
163 * The region enclosed by these two functions can be nested. To avoid a
164 * deadlock, the semaphore is only acquired or released in the outermost call.
166 * This function allocates a nilfs_transaction_info struct to keep context
167 * information on it. It is initialized and hooked onto the current task in
168 * the outermost call. If a pre-allocated struct is given to @ti, it is used
169 * instead; otherwise a new struct is assigned from a slab.
171 * When @vacancy_check flag is set, this function will check the amount of
172 * free space, and will wait for the GC to reclaim disk space if low capacity.
174 * Return Value: On success, 0 is returned. On error, one of the following
175 * negative error code is returned.
177 * %-ENOMEM - Insufficient memory available.
179 * %-ENOSPC - No space left on device
181 int nilfs_transaction_begin(struct super_block
*sb
,
182 struct nilfs_transaction_info
*ti
,
185 struct nilfs_sb_info
*sbi
;
186 struct the_nilfs
*nilfs
;
187 int ret
= nilfs_prepare_segment_lock(ti
);
189 if (unlikely(ret
< 0))
194 vfs_check_frozen(sb
, SB_FREEZE_WRITE
);
197 nilfs
= sbi
->s_nilfs
;
198 down_read(&nilfs
->ns_segctor_sem
);
199 if (vacancy_check
&& nilfs_near_disk_full(nilfs
)) {
200 up_read(&nilfs
->ns_segctor_sem
);
207 ti
= current
->journal_info
;
208 current
->journal_info
= ti
->ti_save
;
209 if (ti
->ti_flags
& NILFS_TI_DYNAMIC_ALLOC
)
210 kmem_cache_free(nilfs_transaction_cachep
, ti
);
215 * nilfs_transaction_commit - commit indivisible file operations.
218 * nilfs_transaction_commit() releases the read semaphore which is
219 * acquired by nilfs_transaction_begin(). This is only performed
220 * in outermost call of this function. If a commit flag is set,
221 * nilfs_transaction_commit() sets a timer to start the segment
222 * constructor. If a sync flag is set, it starts construction
225 int nilfs_transaction_commit(struct super_block
*sb
)
227 struct nilfs_transaction_info
*ti
= current
->journal_info
;
228 struct nilfs_sb_info
*sbi
;
229 struct nilfs_sc_info
*sci
;
232 BUG_ON(ti
== NULL
|| ti
->ti_magic
!= NILFS_TI_MAGIC
);
233 ti
->ti_flags
|= NILFS_TI_COMMIT
;
234 if (ti
->ti_count
> 0) {
241 if (ti
->ti_flags
& NILFS_TI_COMMIT
)
242 nilfs_segctor_start_timer(sci
);
243 if (atomic_read(&sbi
->s_nilfs
->ns_ndirtyblks
) >
245 nilfs_segctor_do_flush(sci
, 0);
247 up_read(&sbi
->s_nilfs
->ns_segctor_sem
);
248 current
->journal_info
= ti
->ti_save
;
250 if (ti
->ti_flags
& NILFS_TI_SYNC
)
251 err
= nilfs_construct_segment(sb
);
252 if (ti
->ti_flags
& NILFS_TI_DYNAMIC_ALLOC
)
253 kmem_cache_free(nilfs_transaction_cachep
, ti
);
257 void nilfs_transaction_abort(struct super_block
*sb
)
259 struct nilfs_transaction_info
*ti
= current
->journal_info
;
261 BUG_ON(ti
== NULL
|| ti
->ti_magic
!= NILFS_TI_MAGIC
);
262 if (ti
->ti_count
> 0) {
266 up_read(&NILFS_SB(sb
)->s_nilfs
->ns_segctor_sem
);
268 current
->journal_info
= ti
->ti_save
;
269 if (ti
->ti_flags
& NILFS_TI_DYNAMIC_ALLOC
)
270 kmem_cache_free(nilfs_transaction_cachep
, ti
);
273 void nilfs_relax_pressure_in_lock(struct super_block
*sb
)
275 struct nilfs_sb_info
*sbi
= NILFS_SB(sb
);
276 struct nilfs_sc_info
*sci
= NILFS_SC(sbi
);
277 struct the_nilfs
*nilfs
= sbi
->s_nilfs
;
279 if (!sci
|| !sci
->sc_flush_request
)
282 set_bit(NILFS_SC_PRIOR_FLUSH
, &sci
->sc_flags
);
283 up_read(&nilfs
->ns_segctor_sem
);
285 down_write(&nilfs
->ns_segctor_sem
);
286 if (sci
->sc_flush_request
&&
287 test_bit(NILFS_SC_PRIOR_FLUSH
, &sci
->sc_flags
)) {
288 struct nilfs_transaction_info
*ti
= current
->journal_info
;
290 ti
->ti_flags
|= NILFS_TI_WRITER
;
291 nilfs_segctor_do_immediate_flush(sci
);
292 ti
->ti_flags
&= ~NILFS_TI_WRITER
;
294 downgrade_write(&nilfs
->ns_segctor_sem
);
297 static void nilfs_transaction_lock(struct nilfs_sb_info
*sbi
,
298 struct nilfs_transaction_info
*ti
,
301 struct nilfs_transaction_info
*cur_ti
= current
->journal_info
;
304 ti
->ti_flags
= NILFS_TI_WRITER
;
306 ti
->ti_save
= cur_ti
;
307 ti
->ti_magic
= NILFS_TI_MAGIC
;
308 INIT_LIST_HEAD(&ti
->ti_garbage
);
309 current
->journal_info
= ti
;
312 down_write(&sbi
->s_nilfs
->ns_segctor_sem
);
313 if (!test_bit(NILFS_SC_PRIOR_FLUSH
, &NILFS_SC(sbi
)->sc_flags
))
316 nilfs_segctor_do_immediate_flush(NILFS_SC(sbi
));
318 up_write(&sbi
->s_nilfs
->ns_segctor_sem
);
322 ti
->ti_flags
|= NILFS_TI_GC
;
325 static void nilfs_transaction_unlock(struct nilfs_sb_info
*sbi
)
327 struct nilfs_transaction_info
*ti
= current
->journal_info
;
329 BUG_ON(ti
== NULL
|| ti
->ti_magic
!= NILFS_TI_MAGIC
);
330 BUG_ON(ti
->ti_count
> 0);
332 up_write(&sbi
->s_nilfs
->ns_segctor_sem
);
333 current
->journal_info
= ti
->ti_save
;
334 if (!list_empty(&ti
->ti_garbage
))
335 nilfs_dispose_list(sbi
, &ti
->ti_garbage
, 0);
338 static void *nilfs_segctor_map_segsum_entry(struct nilfs_sc_info
*sci
,
339 struct nilfs_segsum_pointer
*ssp
,
342 struct nilfs_segment_buffer
*segbuf
= sci
->sc_curseg
;
343 unsigned blocksize
= sci
->sc_super
->s_blocksize
;
346 if (unlikely(ssp
->offset
+ bytes
> blocksize
)) {
348 BUG_ON(NILFS_SEGBUF_BH_IS_LAST(ssp
->bh
,
349 &segbuf
->sb_segsum_buffers
));
350 ssp
->bh
= NILFS_SEGBUF_NEXT_BH(ssp
->bh
);
352 p
= ssp
->bh
->b_data
+ ssp
->offset
;
353 ssp
->offset
+= bytes
;
358 * nilfs_segctor_reset_segment_buffer - reset the current segment buffer
359 * @sci: nilfs_sc_info
361 static int nilfs_segctor_reset_segment_buffer(struct nilfs_sc_info
*sci
)
363 struct nilfs_segment_buffer
*segbuf
= sci
->sc_curseg
;
364 struct buffer_head
*sumbh
;
369 if (nilfs_doing_gc())
371 err
= nilfs_segbuf_reset(segbuf
, flags
, sci
->sc_seg_ctime
, sci
->sc_cno
);
375 sumbh
= NILFS_SEGBUF_FIRST_BH(&segbuf
->sb_segsum_buffers
);
376 sumbytes
= segbuf
->sb_sum
.sumbytes
;
377 sci
->sc_finfo_ptr
.bh
= sumbh
; sci
->sc_finfo_ptr
.offset
= sumbytes
;
378 sci
->sc_binfo_ptr
.bh
= sumbh
; sci
->sc_binfo_ptr
.offset
= sumbytes
;
379 sci
->sc_blk_cnt
= sci
->sc_datablk_cnt
= 0;
383 static int nilfs_segctor_feed_segment(struct nilfs_sc_info
*sci
)
385 sci
->sc_nblk_this_inc
+= sci
->sc_curseg
->sb_sum
.nblocks
;
386 if (NILFS_SEGBUF_IS_LAST(sci
->sc_curseg
, &sci
->sc_segbufs
))
387 return -E2BIG
; /* The current segment is filled up
389 sci
->sc_curseg
= NILFS_NEXT_SEGBUF(sci
->sc_curseg
);
390 return nilfs_segctor_reset_segment_buffer(sci
);
393 static int nilfs_segctor_add_super_root(struct nilfs_sc_info
*sci
)
395 struct nilfs_segment_buffer
*segbuf
= sci
->sc_curseg
;
398 if (segbuf
->sb_sum
.nblocks
>= segbuf
->sb_rest_blocks
) {
399 err
= nilfs_segctor_feed_segment(sci
);
402 segbuf
= sci
->sc_curseg
;
404 err
= nilfs_segbuf_extend_payload(segbuf
, &segbuf
->sb_super_root
);
406 segbuf
->sb_sum
.flags
|= NILFS_SS_SR
;
411 * Functions for making segment summary and payloads
413 static int nilfs_segctor_segsum_block_required(
414 struct nilfs_sc_info
*sci
, const struct nilfs_segsum_pointer
*ssp
,
417 unsigned blocksize
= sci
->sc_super
->s_blocksize
;
418 /* Size of finfo and binfo is enough small against blocksize */
420 return ssp
->offset
+ binfo_size
+
421 (!sci
->sc_blk_cnt
? sizeof(struct nilfs_finfo
) : 0) >
425 static void nilfs_segctor_begin_finfo(struct nilfs_sc_info
*sci
,
428 sci
->sc_curseg
->sb_sum
.nfinfo
++;
429 sci
->sc_binfo_ptr
= sci
->sc_finfo_ptr
;
430 nilfs_segctor_map_segsum_entry(
431 sci
, &sci
->sc_binfo_ptr
, sizeof(struct nilfs_finfo
));
433 if (inode
->i_sb
&& !test_bit(NILFS_SC_HAVE_DELTA
, &sci
->sc_flags
))
434 set_bit(NILFS_SC_HAVE_DELTA
, &sci
->sc_flags
);
438 static void nilfs_segctor_end_finfo(struct nilfs_sc_info
*sci
,
441 struct nilfs_finfo
*finfo
;
442 struct nilfs_inode_info
*ii
;
443 struct nilfs_segment_buffer
*segbuf
;
446 if (sci
->sc_blk_cnt
== 0)
451 if (test_bit(NILFS_I_GCINODE
, &ii
->i_state
))
453 else if (NILFS_ROOT_METADATA_FILE(inode
->i_ino
))
458 finfo
= nilfs_segctor_map_segsum_entry(sci
, &sci
->sc_finfo_ptr
,
460 finfo
->fi_ino
= cpu_to_le64(inode
->i_ino
);
461 finfo
->fi_nblocks
= cpu_to_le32(sci
->sc_blk_cnt
);
462 finfo
->fi_ndatablk
= cpu_to_le32(sci
->sc_datablk_cnt
);
463 finfo
->fi_cno
= cpu_to_le64(cno
);
465 segbuf
= sci
->sc_curseg
;
466 segbuf
->sb_sum
.sumbytes
= sci
->sc_binfo_ptr
.offset
+
467 sci
->sc_super
->s_blocksize
* (segbuf
->sb_sum
.nsumblk
- 1);
468 sci
->sc_finfo_ptr
= sci
->sc_binfo_ptr
;
469 sci
->sc_blk_cnt
= sci
->sc_datablk_cnt
= 0;
472 static int nilfs_segctor_add_file_block(struct nilfs_sc_info
*sci
,
473 struct buffer_head
*bh
,
477 struct nilfs_segment_buffer
*segbuf
;
478 int required
, err
= 0;
481 segbuf
= sci
->sc_curseg
;
482 required
= nilfs_segctor_segsum_block_required(
483 sci
, &sci
->sc_binfo_ptr
, binfo_size
);
484 if (segbuf
->sb_sum
.nblocks
+ required
+ 1 > segbuf
->sb_rest_blocks
) {
485 nilfs_segctor_end_finfo(sci
, inode
);
486 err
= nilfs_segctor_feed_segment(sci
);
491 if (unlikely(required
)) {
492 err
= nilfs_segbuf_extend_segsum(segbuf
);
496 if (sci
->sc_blk_cnt
== 0)
497 nilfs_segctor_begin_finfo(sci
, inode
);
499 nilfs_segctor_map_segsum_entry(sci
, &sci
->sc_binfo_ptr
, binfo_size
);
500 /* Substitution to vblocknr is delayed until update_blocknr() */
501 nilfs_segbuf_add_file_buffer(segbuf
, bh
);
507 static int nilfs_handle_bmap_error(int err
, const char *fname
,
508 struct inode
*inode
, struct super_block
*sb
)
510 if (err
== -EINVAL
) {
511 nilfs_error(sb
, fname
, "broken bmap (inode=%lu)\n",
519 * Callback functions that enumerate, mark, and collect dirty blocks
521 static int nilfs_collect_file_data(struct nilfs_sc_info
*sci
,
522 struct buffer_head
*bh
, struct inode
*inode
)
526 err
= nilfs_bmap_propagate(NILFS_I(inode
)->i_bmap
, bh
);
527 if (unlikely(err
< 0))
528 return nilfs_handle_bmap_error(err
, __func__
, inode
,
531 err
= nilfs_segctor_add_file_block(sci
, bh
, inode
,
532 sizeof(struct nilfs_binfo_v
));
534 sci
->sc_datablk_cnt
++;
538 static int nilfs_collect_file_node(struct nilfs_sc_info
*sci
,
539 struct buffer_head
*bh
,
544 err
= nilfs_bmap_propagate(NILFS_I(inode
)->i_bmap
, bh
);
545 if (unlikely(err
< 0))
546 return nilfs_handle_bmap_error(err
, __func__
, inode
,
551 static int nilfs_collect_file_bmap(struct nilfs_sc_info
*sci
,
552 struct buffer_head
*bh
,
555 WARN_ON(!buffer_dirty(bh
));
556 return nilfs_segctor_add_file_block(sci
, bh
, inode
, sizeof(__le64
));
559 static void nilfs_write_file_data_binfo(struct nilfs_sc_info
*sci
,
560 struct nilfs_segsum_pointer
*ssp
,
561 union nilfs_binfo
*binfo
)
563 struct nilfs_binfo_v
*binfo_v
= nilfs_segctor_map_segsum_entry(
564 sci
, ssp
, sizeof(*binfo_v
));
565 *binfo_v
= binfo
->bi_v
;
568 static void nilfs_write_file_node_binfo(struct nilfs_sc_info
*sci
,
569 struct nilfs_segsum_pointer
*ssp
,
570 union nilfs_binfo
*binfo
)
572 __le64
*vblocknr
= nilfs_segctor_map_segsum_entry(
573 sci
, ssp
, sizeof(*vblocknr
));
574 *vblocknr
= binfo
->bi_v
.bi_vblocknr
;
577 static struct nilfs_sc_operations nilfs_sc_file_ops
= {
578 .collect_data
= nilfs_collect_file_data
,
579 .collect_node
= nilfs_collect_file_node
,
580 .collect_bmap
= nilfs_collect_file_bmap
,
581 .write_data_binfo
= nilfs_write_file_data_binfo
,
582 .write_node_binfo
= nilfs_write_file_node_binfo
,
585 static int nilfs_collect_dat_data(struct nilfs_sc_info
*sci
,
586 struct buffer_head
*bh
, struct inode
*inode
)
590 err
= nilfs_bmap_propagate(NILFS_I(inode
)->i_bmap
, bh
);
591 if (unlikely(err
< 0))
592 return nilfs_handle_bmap_error(err
, __func__
, inode
,
595 err
= nilfs_segctor_add_file_block(sci
, bh
, inode
, sizeof(__le64
));
597 sci
->sc_datablk_cnt
++;
601 static int nilfs_collect_dat_bmap(struct nilfs_sc_info
*sci
,
602 struct buffer_head
*bh
, struct inode
*inode
)
604 WARN_ON(!buffer_dirty(bh
));
605 return nilfs_segctor_add_file_block(sci
, bh
, inode
,
606 sizeof(struct nilfs_binfo_dat
));
609 static void nilfs_write_dat_data_binfo(struct nilfs_sc_info
*sci
,
610 struct nilfs_segsum_pointer
*ssp
,
611 union nilfs_binfo
*binfo
)
613 __le64
*blkoff
= nilfs_segctor_map_segsum_entry(sci
, ssp
,
615 *blkoff
= binfo
->bi_dat
.bi_blkoff
;
618 static void nilfs_write_dat_node_binfo(struct nilfs_sc_info
*sci
,
619 struct nilfs_segsum_pointer
*ssp
,
620 union nilfs_binfo
*binfo
)
622 struct nilfs_binfo_dat
*binfo_dat
=
623 nilfs_segctor_map_segsum_entry(sci
, ssp
, sizeof(*binfo_dat
));
624 *binfo_dat
= binfo
->bi_dat
;
627 static struct nilfs_sc_operations nilfs_sc_dat_ops
= {
628 .collect_data
= nilfs_collect_dat_data
,
629 .collect_node
= nilfs_collect_file_node
,
630 .collect_bmap
= nilfs_collect_dat_bmap
,
631 .write_data_binfo
= nilfs_write_dat_data_binfo
,
632 .write_node_binfo
= nilfs_write_dat_node_binfo
,
635 static struct nilfs_sc_operations nilfs_sc_dsync_ops
= {
636 .collect_data
= nilfs_collect_file_data
,
637 .collect_node
= NULL
,
638 .collect_bmap
= NULL
,
639 .write_data_binfo
= nilfs_write_file_data_binfo
,
640 .write_node_binfo
= NULL
,
643 static size_t nilfs_lookup_dirty_data_buffers(struct inode
*inode
,
644 struct list_head
*listp
,
646 loff_t start
, loff_t end
)
648 struct address_space
*mapping
= inode
->i_mapping
;
650 pgoff_t index
= 0, last
= ULONG_MAX
;
654 if (unlikely(start
!= 0 || end
!= LLONG_MAX
)) {
656 * A valid range is given for sync-ing data pages. The
657 * range is rounded to per-page; extra dirty buffers
658 * may be included if blocksize < pagesize.
660 index
= start
>> PAGE_SHIFT
;
661 last
= end
>> PAGE_SHIFT
;
663 pagevec_init(&pvec
, 0);
665 if (unlikely(index
> last
) ||
666 !pagevec_lookup_tag(&pvec
, mapping
, &index
, PAGECACHE_TAG_DIRTY
,
667 min_t(pgoff_t
, last
- index
,
668 PAGEVEC_SIZE
- 1) + 1))
671 for (i
= 0; i
< pagevec_count(&pvec
); i
++) {
672 struct buffer_head
*bh
, *head
;
673 struct page
*page
= pvec
.pages
[i
];
675 if (unlikely(page
->index
> last
))
680 if (!page_has_buffers(page
))
681 create_empty_buffers(page
,
682 1 << inode
->i_blkbits
, 0);
686 bh
= head
= page_buffers(page
);
688 if (!buffer_dirty(bh
))
691 list_add_tail(&bh
->b_assoc_buffers
, listp
);
693 if (unlikely(ndirties
>= nlimit
)) {
694 pagevec_release(&pvec
);
698 } while (bh
= bh
->b_this_page
, bh
!= head
);
700 pagevec_release(&pvec
);
705 static void nilfs_lookup_dirty_node_buffers(struct inode
*inode
,
706 struct list_head
*listp
)
708 struct nilfs_inode_info
*ii
= NILFS_I(inode
);
709 struct address_space
*mapping
= &ii
->i_btnode_cache
;
711 struct buffer_head
*bh
, *head
;
715 pagevec_init(&pvec
, 0);
717 while (pagevec_lookup_tag(&pvec
, mapping
, &index
, PAGECACHE_TAG_DIRTY
,
719 for (i
= 0; i
< pagevec_count(&pvec
); i
++) {
720 bh
= head
= page_buffers(pvec
.pages
[i
]);
722 if (buffer_dirty(bh
)) {
724 list_add_tail(&bh
->b_assoc_buffers
,
727 bh
= bh
->b_this_page
;
728 } while (bh
!= head
);
730 pagevec_release(&pvec
);
735 static void nilfs_dispose_list(struct nilfs_sb_info
*sbi
,
736 struct list_head
*head
, int force
)
738 struct nilfs_inode_info
*ii
, *n
;
739 struct nilfs_inode_info
*ivec
[SC_N_INODEVEC
], **pii
;
742 while (!list_empty(head
)) {
743 spin_lock(&sbi
->s_inode_lock
);
744 list_for_each_entry_safe(ii
, n
, head
, i_dirty
) {
745 list_del_init(&ii
->i_dirty
);
747 if (unlikely(ii
->i_bh
)) {
751 } else if (test_bit(NILFS_I_DIRTY
, &ii
->i_state
)) {
752 set_bit(NILFS_I_QUEUED
, &ii
->i_state
);
753 list_add_tail(&ii
->i_dirty
,
754 &sbi
->s_dirty_files
);
758 if (nv
== SC_N_INODEVEC
)
761 spin_unlock(&sbi
->s_inode_lock
);
763 for (pii
= ivec
; nv
> 0; pii
++, nv
--)
764 iput(&(*pii
)->vfs_inode
);
768 static int nilfs_test_metadata_dirty(struct the_nilfs
*nilfs
,
769 struct nilfs_root
*root
)
773 if (nilfs_mdt_fetch_dirty(root
->ifile
))
775 if (nilfs_mdt_fetch_dirty(nilfs
->ns_cpfile
))
777 if (nilfs_mdt_fetch_dirty(nilfs
->ns_sufile
))
779 if (ret
|| nilfs_doing_gc())
780 if (nilfs_mdt_fetch_dirty(nilfs_dat_inode(nilfs
)))
785 static int nilfs_segctor_clean(struct nilfs_sc_info
*sci
)
787 return list_empty(&sci
->sc_dirty_files
) &&
788 !test_bit(NILFS_SC_DIRTY
, &sci
->sc_flags
) &&
789 sci
->sc_nfreesegs
== 0 &&
790 (!nilfs_doing_gc() || list_empty(&sci
->sc_gc_inodes
));
793 static int nilfs_segctor_confirm(struct nilfs_sc_info
*sci
)
795 struct nilfs_sb_info
*sbi
= sci
->sc_sbi
;
798 if (nilfs_test_metadata_dirty(sbi
->s_nilfs
, sci
->sc_root
))
799 set_bit(NILFS_SC_DIRTY
, &sci
->sc_flags
);
801 spin_lock(&sbi
->s_inode_lock
);
802 if (list_empty(&sbi
->s_dirty_files
) && nilfs_segctor_clean(sci
))
805 spin_unlock(&sbi
->s_inode_lock
);
809 static void nilfs_segctor_clear_metadata_dirty(struct nilfs_sc_info
*sci
)
811 struct nilfs_sb_info
*sbi
= sci
->sc_sbi
;
812 struct the_nilfs
*nilfs
= sbi
->s_nilfs
;
814 nilfs_mdt_clear_dirty(sci
->sc_root
->ifile
);
815 nilfs_mdt_clear_dirty(nilfs
->ns_cpfile
);
816 nilfs_mdt_clear_dirty(nilfs
->ns_sufile
);
817 nilfs_mdt_clear_dirty(nilfs_dat_inode(nilfs
));
820 static int nilfs_segctor_create_checkpoint(struct nilfs_sc_info
*sci
)
822 struct the_nilfs
*nilfs
= sci
->sc_sbi
->s_nilfs
;
823 struct buffer_head
*bh_cp
;
824 struct nilfs_checkpoint
*raw_cp
;
827 /* XXX: this interface will be changed */
828 err
= nilfs_cpfile_get_checkpoint(nilfs
->ns_cpfile
, nilfs
->ns_cno
, 1,
831 /* The following code is duplicated with cpfile. But, it is
832 needed to collect the checkpoint even if it was not newly
834 nilfs_mdt_mark_buffer_dirty(bh_cp
);
835 nilfs_mdt_mark_dirty(nilfs
->ns_cpfile
);
836 nilfs_cpfile_put_checkpoint(
837 nilfs
->ns_cpfile
, nilfs
->ns_cno
, bh_cp
);
839 WARN_ON(err
== -EINVAL
|| err
== -ENOENT
);
844 static int nilfs_segctor_fill_in_checkpoint(struct nilfs_sc_info
*sci
)
846 struct nilfs_sb_info
*sbi
= sci
->sc_sbi
;
847 struct the_nilfs
*nilfs
= sbi
->s_nilfs
;
848 struct buffer_head
*bh_cp
;
849 struct nilfs_checkpoint
*raw_cp
;
852 err
= nilfs_cpfile_get_checkpoint(nilfs
->ns_cpfile
, nilfs
->ns_cno
, 0,
855 WARN_ON(err
== -EINVAL
|| err
== -ENOENT
);
858 raw_cp
->cp_snapshot_list
.ssl_next
= 0;
859 raw_cp
->cp_snapshot_list
.ssl_prev
= 0;
860 raw_cp
->cp_inodes_count
=
861 cpu_to_le64(atomic_read(&sci
->sc_root
->inodes_count
));
862 raw_cp
->cp_blocks_count
=
863 cpu_to_le64(atomic_read(&sci
->sc_root
->blocks_count
));
864 raw_cp
->cp_nblk_inc
=
865 cpu_to_le64(sci
->sc_nblk_inc
+ sci
->sc_nblk_this_inc
);
866 raw_cp
->cp_create
= cpu_to_le64(sci
->sc_seg_ctime
);
867 raw_cp
->cp_cno
= cpu_to_le64(nilfs
->ns_cno
);
869 if (test_bit(NILFS_SC_HAVE_DELTA
, &sci
->sc_flags
))
870 nilfs_checkpoint_clear_minor(raw_cp
);
872 nilfs_checkpoint_set_minor(raw_cp
);
874 nilfs_write_inode_common(sci
->sc_root
->ifile
,
875 &raw_cp
->cp_ifile_inode
, 1);
876 nilfs_cpfile_put_checkpoint(nilfs
->ns_cpfile
, nilfs
->ns_cno
, bh_cp
);
883 static void nilfs_fill_in_file_bmap(struct inode
*ifile
,
884 struct nilfs_inode_info
*ii
)
887 struct buffer_head
*ibh
;
888 struct nilfs_inode
*raw_inode
;
890 if (test_bit(NILFS_I_BMAP
, &ii
->i_state
)) {
893 raw_inode
= nilfs_ifile_map_inode(ifile
, ii
->vfs_inode
.i_ino
,
895 nilfs_bmap_write(ii
->i_bmap
, raw_inode
);
896 nilfs_ifile_unmap_inode(ifile
, ii
->vfs_inode
.i_ino
, ibh
);
900 static void nilfs_segctor_fill_in_file_bmap(struct nilfs_sc_info
*sci
)
902 struct nilfs_inode_info
*ii
;
904 list_for_each_entry(ii
, &sci
->sc_dirty_files
, i_dirty
) {
905 nilfs_fill_in_file_bmap(sci
->sc_root
->ifile
, ii
);
906 set_bit(NILFS_I_COLLECTED
, &ii
->i_state
);
910 static void nilfs_segctor_fill_in_super_root(struct nilfs_sc_info
*sci
,
911 struct the_nilfs
*nilfs
)
913 struct buffer_head
*bh_sr
;
914 struct nilfs_super_root
*raw_sr
;
915 unsigned isz
= nilfs
->ns_inode_size
;
917 bh_sr
= NILFS_LAST_SEGBUF(&sci
->sc_segbufs
)->sb_super_root
;
918 raw_sr
= (struct nilfs_super_root
*)bh_sr
->b_data
;
920 raw_sr
->sr_bytes
= cpu_to_le16(NILFS_SR_BYTES
);
921 raw_sr
->sr_nongc_ctime
922 = cpu_to_le64(nilfs_doing_gc() ?
923 nilfs
->ns_nongc_ctime
: sci
->sc_seg_ctime
);
924 raw_sr
->sr_flags
= 0;
926 nilfs_write_inode_common(nilfs_dat_inode(nilfs
), (void *)raw_sr
+
927 NILFS_SR_DAT_OFFSET(isz
), 1);
928 nilfs_write_inode_common(nilfs
->ns_cpfile
, (void *)raw_sr
+
929 NILFS_SR_CPFILE_OFFSET(isz
), 1);
930 nilfs_write_inode_common(nilfs
->ns_sufile
, (void *)raw_sr
+
931 NILFS_SR_SUFILE_OFFSET(isz
), 1);
934 static void nilfs_redirty_inodes(struct list_head
*head
)
936 struct nilfs_inode_info
*ii
;
938 list_for_each_entry(ii
, head
, i_dirty
) {
939 if (test_bit(NILFS_I_COLLECTED
, &ii
->i_state
))
940 clear_bit(NILFS_I_COLLECTED
, &ii
->i_state
);
944 static void nilfs_drop_collected_inodes(struct list_head
*head
)
946 struct nilfs_inode_info
*ii
;
948 list_for_each_entry(ii
, head
, i_dirty
) {
949 if (!test_and_clear_bit(NILFS_I_COLLECTED
, &ii
->i_state
))
952 clear_bit(NILFS_I_INODE_DIRTY
, &ii
->i_state
);
953 set_bit(NILFS_I_UPDATED
, &ii
->i_state
);
957 static int nilfs_segctor_apply_buffers(struct nilfs_sc_info
*sci
,
959 struct list_head
*listp
,
960 int (*collect
)(struct nilfs_sc_info
*,
961 struct buffer_head
*,
964 struct buffer_head
*bh
, *n
;
968 list_for_each_entry_safe(bh
, n
, listp
, b_assoc_buffers
) {
969 list_del_init(&bh
->b_assoc_buffers
);
970 err
= collect(sci
, bh
, inode
);
973 goto dispose_buffers
;
979 while (!list_empty(listp
)) {
980 bh
= list_entry(listp
->next
, struct buffer_head
,
982 list_del_init(&bh
->b_assoc_buffers
);
988 static size_t nilfs_segctor_buffer_rest(struct nilfs_sc_info
*sci
)
990 /* Remaining number of blocks within segment buffer */
991 return sci
->sc_segbuf_nblocks
-
992 (sci
->sc_nblk_this_inc
+ sci
->sc_curseg
->sb_sum
.nblocks
);
995 static int nilfs_segctor_scan_file(struct nilfs_sc_info
*sci
,
997 struct nilfs_sc_operations
*sc_ops
)
999 LIST_HEAD(data_buffers
);
1000 LIST_HEAD(node_buffers
);
1003 if (!(sci
->sc_stage
.flags
& NILFS_CF_NODE
)) {
1004 size_t n
, rest
= nilfs_segctor_buffer_rest(sci
);
1006 n
= nilfs_lookup_dirty_data_buffers(
1007 inode
, &data_buffers
, rest
+ 1, 0, LLONG_MAX
);
1009 err
= nilfs_segctor_apply_buffers(
1010 sci
, inode
, &data_buffers
,
1011 sc_ops
->collect_data
);
1012 BUG_ON(!err
); /* always receive -E2BIG or true error */
1016 nilfs_lookup_dirty_node_buffers(inode
, &node_buffers
);
1018 if (!(sci
->sc_stage
.flags
& NILFS_CF_NODE
)) {
1019 err
= nilfs_segctor_apply_buffers(
1020 sci
, inode
, &data_buffers
, sc_ops
->collect_data
);
1021 if (unlikely(err
)) {
1022 /* dispose node list */
1023 nilfs_segctor_apply_buffers(
1024 sci
, inode
, &node_buffers
, NULL
);
1027 sci
->sc_stage
.flags
|= NILFS_CF_NODE
;
1030 err
= nilfs_segctor_apply_buffers(
1031 sci
, inode
, &node_buffers
, sc_ops
->collect_node
);
1035 nilfs_bmap_lookup_dirty_buffers(NILFS_I(inode
)->i_bmap
, &node_buffers
);
1036 err
= nilfs_segctor_apply_buffers(
1037 sci
, inode
, &node_buffers
, sc_ops
->collect_bmap
);
1041 nilfs_segctor_end_finfo(sci
, inode
);
1042 sci
->sc_stage
.flags
&= ~NILFS_CF_NODE
;
1048 static int nilfs_segctor_scan_file_dsync(struct nilfs_sc_info
*sci
,
1049 struct inode
*inode
)
1051 LIST_HEAD(data_buffers
);
1052 size_t n
, rest
= nilfs_segctor_buffer_rest(sci
);
1055 n
= nilfs_lookup_dirty_data_buffers(inode
, &data_buffers
, rest
+ 1,
1056 sci
->sc_dsync_start
,
1059 err
= nilfs_segctor_apply_buffers(sci
, inode
, &data_buffers
,
1060 nilfs_collect_file_data
);
1062 nilfs_segctor_end_finfo(sci
, inode
);
1064 /* always receive -E2BIG or true error if n > rest */
1069 static int nilfs_segctor_collect_blocks(struct nilfs_sc_info
*sci
, int mode
)
1071 struct nilfs_sb_info
*sbi
= sci
->sc_sbi
;
1072 struct the_nilfs
*nilfs
= sbi
->s_nilfs
;
1073 struct list_head
*head
;
1074 struct nilfs_inode_info
*ii
;
1078 switch (sci
->sc_stage
.scnt
) {
1081 sci
->sc_stage
.flags
= 0;
1083 if (!test_bit(NILFS_SC_UNCLOSED
, &sci
->sc_flags
)) {
1084 sci
->sc_nblk_inc
= 0;
1085 sci
->sc_curseg
->sb_sum
.flags
= NILFS_SS_LOGBGN
;
1086 if (mode
== SC_LSEG_DSYNC
) {
1087 sci
->sc_stage
.scnt
= NILFS_ST_DSYNC
;
1092 sci
->sc_stage
.dirty_file_ptr
= NULL
;
1093 sci
->sc_stage
.gc_inode_ptr
= NULL
;
1094 if (mode
== SC_FLUSH_DAT
) {
1095 sci
->sc_stage
.scnt
= NILFS_ST_DAT
;
1098 sci
->sc_stage
.scnt
++; /* Fall through */
1100 if (nilfs_doing_gc()) {
1101 head
= &sci
->sc_gc_inodes
;
1102 ii
= list_prepare_entry(sci
->sc_stage
.gc_inode_ptr
,
1104 list_for_each_entry_continue(ii
, head
, i_dirty
) {
1105 err
= nilfs_segctor_scan_file(
1106 sci
, &ii
->vfs_inode
,
1107 &nilfs_sc_file_ops
);
1108 if (unlikely(err
)) {
1109 sci
->sc_stage
.gc_inode_ptr
= list_entry(
1111 struct nilfs_inode_info
,
1115 set_bit(NILFS_I_COLLECTED
, &ii
->i_state
);
1117 sci
->sc_stage
.gc_inode_ptr
= NULL
;
1119 sci
->sc_stage
.scnt
++; /* Fall through */
1121 head
= &sci
->sc_dirty_files
;
1122 ii
= list_prepare_entry(sci
->sc_stage
.dirty_file_ptr
, head
,
1124 list_for_each_entry_continue(ii
, head
, i_dirty
) {
1125 clear_bit(NILFS_I_DIRTY
, &ii
->i_state
);
1127 err
= nilfs_segctor_scan_file(sci
, &ii
->vfs_inode
,
1128 &nilfs_sc_file_ops
);
1129 if (unlikely(err
)) {
1130 sci
->sc_stage
.dirty_file_ptr
=
1131 list_entry(ii
->i_dirty
.prev
,
1132 struct nilfs_inode_info
,
1136 /* sci->sc_stage.dirty_file_ptr = NILFS_I(inode); */
1137 /* XXX: required ? */
1139 sci
->sc_stage
.dirty_file_ptr
= NULL
;
1140 if (mode
== SC_FLUSH_FILE
) {
1141 sci
->sc_stage
.scnt
= NILFS_ST_DONE
;
1144 sci
->sc_stage
.scnt
++;
1145 sci
->sc_stage
.flags
|= NILFS_CF_IFILE_STARTED
;
1147 case NILFS_ST_IFILE
:
1148 err
= nilfs_segctor_scan_file(sci
, sci
->sc_root
->ifile
,
1149 &nilfs_sc_file_ops
);
1152 sci
->sc_stage
.scnt
++;
1153 /* Creating a checkpoint */
1154 err
= nilfs_segctor_create_checkpoint(sci
);
1158 case NILFS_ST_CPFILE
:
1159 err
= nilfs_segctor_scan_file(sci
, nilfs
->ns_cpfile
,
1160 &nilfs_sc_file_ops
);
1163 sci
->sc_stage
.scnt
++; /* Fall through */
1164 case NILFS_ST_SUFILE
:
1165 err
= nilfs_sufile_freev(nilfs
->ns_sufile
, sci
->sc_freesegs
,
1166 sci
->sc_nfreesegs
, &ndone
);
1167 if (unlikely(err
)) {
1168 nilfs_sufile_cancel_freev(nilfs
->ns_sufile
,
1169 sci
->sc_freesegs
, ndone
,
1173 sci
->sc_stage
.flags
|= NILFS_CF_SUFREED
;
1175 err
= nilfs_segctor_scan_file(sci
, nilfs
->ns_sufile
,
1176 &nilfs_sc_file_ops
);
1179 sci
->sc_stage
.scnt
++; /* Fall through */
1182 err
= nilfs_segctor_scan_file(sci
, nilfs_dat_inode(nilfs
),
1186 if (mode
== SC_FLUSH_DAT
) {
1187 sci
->sc_stage
.scnt
= NILFS_ST_DONE
;
1190 sci
->sc_stage
.scnt
++; /* Fall through */
1192 if (mode
== SC_LSEG_SR
) {
1193 /* Appending a super root */
1194 err
= nilfs_segctor_add_super_root(sci
);
1198 /* End of a logical segment */
1199 sci
->sc_curseg
->sb_sum
.flags
|= NILFS_SS_LOGEND
;
1200 sci
->sc_stage
.scnt
= NILFS_ST_DONE
;
1202 case NILFS_ST_DSYNC
:
1204 sci
->sc_curseg
->sb_sum
.flags
|= NILFS_SS_SYNDT
;
1205 ii
= sci
->sc_dsync_inode
;
1206 if (!test_bit(NILFS_I_BUSY
, &ii
->i_state
))
1209 err
= nilfs_segctor_scan_file_dsync(sci
, &ii
->vfs_inode
);
1212 sci
->sc_curseg
->sb_sum
.flags
|= NILFS_SS_LOGEND
;
1213 sci
->sc_stage
.scnt
= NILFS_ST_DONE
;
1226 * nilfs_segctor_begin_construction - setup segment buffer to make a new log
1227 * @sci: nilfs_sc_info
1228 * @nilfs: nilfs object
1230 static int nilfs_segctor_begin_construction(struct nilfs_sc_info
*sci
,
1231 struct the_nilfs
*nilfs
)
1233 struct nilfs_segment_buffer
*segbuf
, *prev
;
1237 segbuf
= nilfs_segbuf_new(sci
->sc_super
);
1238 if (unlikely(!segbuf
))
1241 if (list_empty(&sci
->sc_write_logs
)) {
1242 nilfs_segbuf_map(segbuf
, nilfs
->ns_segnum
,
1243 nilfs
->ns_pseg_offset
, nilfs
);
1244 if (segbuf
->sb_rest_blocks
< NILFS_PSEG_MIN_BLOCKS
) {
1245 nilfs_shift_to_next_segment(nilfs
);
1246 nilfs_segbuf_map(segbuf
, nilfs
->ns_segnum
, 0, nilfs
);
1249 segbuf
->sb_sum
.seg_seq
= nilfs
->ns_seg_seq
;
1250 nextnum
= nilfs
->ns_nextnum
;
1252 if (nilfs
->ns_segnum
== nilfs
->ns_nextnum
)
1253 /* Start from the head of a new full segment */
1257 prev
= NILFS_LAST_SEGBUF(&sci
->sc_write_logs
);
1258 nilfs_segbuf_map_cont(segbuf
, prev
);
1259 segbuf
->sb_sum
.seg_seq
= prev
->sb_sum
.seg_seq
;
1260 nextnum
= prev
->sb_nextnum
;
1262 if (segbuf
->sb_rest_blocks
< NILFS_PSEG_MIN_BLOCKS
) {
1263 nilfs_segbuf_map(segbuf
, prev
->sb_nextnum
, 0, nilfs
);
1264 segbuf
->sb_sum
.seg_seq
++;
1269 err
= nilfs_sufile_mark_dirty(nilfs
->ns_sufile
, segbuf
->sb_segnum
);
1274 err
= nilfs_sufile_alloc(nilfs
->ns_sufile
, &nextnum
);
1278 nilfs_segbuf_set_next_segnum(segbuf
, nextnum
, nilfs
);
1280 BUG_ON(!list_empty(&sci
->sc_segbufs
));
1281 list_add_tail(&segbuf
->sb_list
, &sci
->sc_segbufs
);
1282 sci
->sc_segbuf_nblocks
= segbuf
->sb_rest_blocks
;
1286 nilfs_segbuf_free(segbuf
);
1290 static int nilfs_segctor_extend_segments(struct nilfs_sc_info
*sci
,
1291 struct the_nilfs
*nilfs
, int nadd
)
1293 struct nilfs_segment_buffer
*segbuf
, *prev
;
1294 struct inode
*sufile
= nilfs
->ns_sufile
;
1299 prev
= NILFS_LAST_SEGBUF(&sci
->sc_segbufs
);
1301 * Since the segment specified with nextnum might be allocated during
1302 * the previous construction, the buffer including its segusage may
1303 * not be dirty. The following call ensures that the buffer is dirty
1304 * and will pin the buffer on memory until the sufile is written.
1306 err
= nilfs_sufile_mark_dirty(sufile
, prev
->sb_nextnum
);
1310 for (i
= 0; i
< nadd
; i
++) {
1311 /* extend segment info */
1313 segbuf
= nilfs_segbuf_new(sci
->sc_super
);
1314 if (unlikely(!segbuf
))
1317 /* map this buffer to region of segment on-disk */
1318 nilfs_segbuf_map(segbuf
, prev
->sb_nextnum
, 0, nilfs
);
1319 sci
->sc_segbuf_nblocks
+= segbuf
->sb_rest_blocks
;
1321 /* allocate the next next full segment */
1322 err
= nilfs_sufile_alloc(sufile
, &nextnextnum
);
1326 segbuf
->sb_sum
.seg_seq
= prev
->sb_sum
.seg_seq
+ 1;
1327 nilfs_segbuf_set_next_segnum(segbuf
, nextnextnum
, nilfs
);
1329 list_add_tail(&segbuf
->sb_list
, &list
);
1332 list_splice_tail(&list
, &sci
->sc_segbufs
);
1336 nilfs_segbuf_free(segbuf
);
1338 list_for_each_entry(segbuf
, &list
, sb_list
) {
1339 ret
= nilfs_sufile_free(sufile
, segbuf
->sb_nextnum
);
1340 WARN_ON(ret
); /* never fails */
1342 nilfs_destroy_logs(&list
);
1346 static void nilfs_free_incomplete_logs(struct list_head
*logs
,
1347 struct the_nilfs
*nilfs
)
1349 struct nilfs_segment_buffer
*segbuf
, *prev
;
1350 struct inode
*sufile
= nilfs
->ns_sufile
;
1353 segbuf
= NILFS_FIRST_SEGBUF(logs
);
1354 if (nilfs
->ns_nextnum
!= segbuf
->sb_nextnum
) {
1355 ret
= nilfs_sufile_free(sufile
, segbuf
->sb_nextnum
);
1356 WARN_ON(ret
); /* never fails */
1358 if (atomic_read(&segbuf
->sb_err
)) {
1359 /* Case 1: The first segment failed */
1360 if (segbuf
->sb_pseg_start
!= segbuf
->sb_fseg_start
)
1361 /* Case 1a: Partial segment appended into an existing
1363 nilfs_terminate_segment(nilfs
, segbuf
->sb_fseg_start
,
1364 segbuf
->sb_fseg_end
);
1365 else /* Case 1b: New full segment */
1366 set_nilfs_discontinued(nilfs
);
1370 list_for_each_entry_continue(segbuf
, logs
, sb_list
) {
1371 if (prev
->sb_nextnum
!= segbuf
->sb_nextnum
) {
1372 ret
= nilfs_sufile_free(sufile
, segbuf
->sb_nextnum
);
1373 WARN_ON(ret
); /* never fails */
1375 if (atomic_read(&segbuf
->sb_err
) &&
1376 segbuf
->sb_segnum
!= nilfs
->ns_nextnum
)
1377 /* Case 2: extended segment (!= next) failed */
1378 nilfs_sufile_set_error(sufile
, segbuf
->sb_segnum
);
1383 static void nilfs_segctor_update_segusage(struct nilfs_sc_info
*sci
,
1384 struct inode
*sufile
)
1386 struct nilfs_segment_buffer
*segbuf
;
1387 unsigned long live_blocks
;
1390 list_for_each_entry(segbuf
, &sci
->sc_segbufs
, sb_list
) {
1391 live_blocks
= segbuf
->sb_sum
.nblocks
+
1392 (segbuf
->sb_pseg_start
- segbuf
->sb_fseg_start
);
1393 ret
= nilfs_sufile_set_segment_usage(sufile
, segbuf
->sb_segnum
,
1396 WARN_ON(ret
); /* always succeed because the segusage is dirty */
1400 static void nilfs_cancel_segusage(struct list_head
*logs
, struct inode
*sufile
)
1402 struct nilfs_segment_buffer
*segbuf
;
1405 segbuf
= NILFS_FIRST_SEGBUF(logs
);
1406 ret
= nilfs_sufile_set_segment_usage(sufile
, segbuf
->sb_segnum
,
1407 segbuf
->sb_pseg_start
-
1408 segbuf
->sb_fseg_start
, 0);
1409 WARN_ON(ret
); /* always succeed because the segusage is dirty */
1411 list_for_each_entry_continue(segbuf
, logs
, sb_list
) {
1412 ret
= nilfs_sufile_set_segment_usage(sufile
, segbuf
->sb_segnum
,
1414 WARN_ON(ret
); /* always succeed */
1418 static void nilfs_segctor_truncate_segments(struct nilfs_sc_info
*sci
,
1419 struct nilfs_segment_buffer
*last
,
1420 struct inode
*sufile
)
1422 struct nilfs_segment_buffer
*segbuf
= last
;
1425 list_for_each_entry_continue(segbuf
, &sci
->sc_segbufs
, sb_list
) {
1426 sci
->sc_segbuf_nblocks
-= segbuf
->sb_rest_blocks
;
1427 ret
= nilfs_sufile_free(sufile
, segbuf
->sb_nextnum
);
1430 nilfs_truncate_logs(&sci
->sc_segbufs
, last
);
1434 static int nilfs_segctor_collect(struct nilfs_sc_info
*sci
,
1435 struct the_nilfs
*nilfs
, int mode
)
1437 struct nilfs_cstage prev_stage
= sci
->sc_stage
;
1440 /* Collection retry loop */
1442 sci
->sc_nblk_this_inc
= 0;
1443 sci
->sc_curseg
= NILFS_FIRST_SEGBUF(&sci
->sc_segbufs
);
1445 err
= nilfs_segctor_reset_segment_buffer(sci
);
1449 err
= nilfs_segctor_collect_blocks(sci
, mode
);
1450 sci
->sc_nblk_this_inc
+= sci
->sc_curseg
->sb_sum
.nblocks
;
1454 if (unlikely(err
!= -E2BIG
))
1457 /* The current segment is filled up */
1458 if (mode
!= SC_LSEG_SR
|| sci
->sc_stage
.scnt
< NILFS_ST_CPFILE
)
1461 nilfs_clear_logs(&sci
->sc_segbufs
);
1463 err
= nilfs_segctor_extend_segments(sci
, nilfs
, nadd
);
1467 if (sci
->sc_stage
.flags
& NILFS_CF_SUFREED
) {
1468 err
= nilfs_sufile_cancel_freev(nilfs
->ns_sufile
,
1472 WARN_ON(err
); /* do not happen */
1474 nadd
= min_t(int, nadd
<< 1, SC_MAX_SEGDELTA
);
1475 sci
->sc_stage
= prev_stage
;
1477 nilfs_segctor_truncate_segments(sci
, sci
->sc_curseg
, nilfs
->ns_sufile
);
1484 static void nilfs_list_replace_buffer(struct buffer_head
*old_bh
,
1485 struct buffer_head
*new_bh
)
1487 BUG_ON(!list_empty(&new_bh
->b_assoc_buffers
));
1489 list_replace_init(&old_bh
->b_assoc_buffers
, &new_bh
->b_assoc_buffers
);
1490 /* The caller must release old_bh */
1494 nilfs_segctor_update_payload_blocknr(struct nilfs_sc_info
*sci
,
1495 struct nilfs_segment_buffer
*segbuf
,
1498 struct inode
*inode
= NULL
;
1500 unsigned long nfinfo
= segbuf
->sb_sum
.nfinfo
;
1501 unsigned long nblocks
= 0, ndatablk
= 0;
1502 struct nilfs_sc_operations
*sc_op
= NULL
;
1503 struct nilfs_segsum_pointer ssp
;
1504 struct nilfs_finfo
*finfo
= NULL
;
1505 union nilfs_binfo binfo
;
1506 struct buffer_head
*bh
, *bh_org
;
1513 blocknr
= segbuf
->sb_pseg_start
+ segbuf
->sb_sum
.nsumblk
;
1514 ssp
.bh
= NILFS_SEGBUF_FIRST_BH(&segbuf
->sb_segsum_buffers
);
1515 ssp
.offset
= sizeof(struct nilfs_segment_summary
);
1517 list_for_each_entry(bh
, &segbuf
->sb_payload_buffers
, b_assoc_buffers
) {
1518 if (bh
== segbuf
->sb_super_root
)
1521 finfo
= nilfs_segctor_map_segsum_entry(
1522 sci
, &ssp
, sizeof(*finfo
));
1523 ino
= le64_to_cpu(finfo
->fi_ino
);
1524 nblocks
= le32_to_cpu(finfo
->fi_nblocks
);
1525 ndatablk
= le32_to_cpu(finfo
->fi_ndatablk
);
1527 if (buffer_nilfs_node(bh
))
1528 inode
= NILFS_BTNC_I(bh
->b_page
->mapping
);
1530 inode
= NILFS_AS_I(bh
->b_page
->mapping
);
1532 if (mode
== SC_LSEG_DSYNC
)
1533 sc_op
= &nilfs_sc_dsync_ops
;
1534 else if (ino
== NILFS_DAT_INO
)
1535 sc_op
= &nilfs_sc_dat_ops
;
1536 else /* file blocks */
1537 sc_op
= &nilfs_sc_file_ops
;
1541 err
= nilfs_bmap_assign(NILFS_I(inode
)->i_bmap
, &bh
, blocknr
,
1544 nilfs_list_replace_buffer(bh_org
, bh
);
1550 sc_op
->write_data_binfo(sci
, &ssp
, &binfo
);
1552 sc_op
->write_node_binfo(sci
, &ssp
, &binfo
);
1555 if (--nblocks
== 0) {
1559 } else if (ndatablk
> 0)
1566 err
= nilfs_handle_bmap_error(err
, __func__
, inode
, sci
->sc_super
);
1570 static int nilfs_segctor_assign(struct nilfs_sc_info
*sci
, int mode
)
1572 struct nilfs_segment_buffer
*segbuf
;
1575 list_for_each_entry(segbuf
, &sci
->sc_segbufs
, sb_list
) {
1576 err
= nilfs_segctor_update_payload_blocknr(sci
, segbuf
, mode
);
1579 nilfs_segbuf_fill_in_segsum(segbuf
);
1585 nilfs_copy_replace_page_buffers(struct page
*page
, struct list_head
*out
)
1587 struct page
*clone_page
;
1588 struct buffer_head
*bh
, *head
, *bh2
;
1591 bh
= head
= page_buffers(page
);
1593 clone_page
= nilfs_alloc_private_page(bh
->b_bdev
, bh
->b_size
, 0);
1594 if (unlikely(!clone_page
))
1597 bh2
= page_buffers(clone_page
);
1598 kaddr
= kmap_atomic(page
, KM_USER0
);
1600 if (list_empty(&bh
->b_assoc_buffers
))
1603 page_cache_get(clone_page
); /* for each bh */
1604 memcpy(bh2
->b_data
, kaddr
+ bh_offset(bh
), bh2
->b_size
);
1605 bh2
->b_blocknr
= bh
->b_blocknr
;
1606 list_replace(&bh
->b_assoc_buffers
, &bh2
->b_assoc_buffers
);
1607 list_add_tail(&bh
->b_assoc_buffers
, out
);
1608 } while (bh
= bh
->b_this_page
, bh2
= bh2
->b_this_page
, bh
!= head
);
1609 kunmap_atomic(kaddr
, KM_USER0
);
1611 if (!TestSetPageWriteback(clone_page
))
1612 account_page_writeback(clone_page
);
1613 unlock_page(clone_page
);
1618 static int nilfs_test_page_to_be_frozen(struct page
*page
)
1620 struct address_space
*mapping
= page
->mapping
;
1622 if (!mapping
|| !mapping
->host
|| S_ISDIR(mapping
->host
->i_mode
))
1625 if (page_mapped(page
)) {
1626 ClearPageChecked(page
);
1629 return PageChecked(page
);
1632 static int nilfs_begin_page_io(struct page
*page
, struct list_head
*out
)
1634 if (!page
|| PageWriteback(page
))
1635 /* For split b-tree node pages, this function may be called
1636 twice. We ignore the 2nd or later calls by this check. */
1640 clear_page_dirty_for_io(page
);
1641 set_page_writeback(page
);
1644 if (nilfs_test_page_to_be_frozen(page
)) {
1645 int err
= nilfs_copy_replace_page_buffers(page
, out
);
1652 static int nilfs_segctor_prepare_write(struct nilfs_sc_info
*sci
,
1653 struct page
**failed_page
)
1655 struct nilfs_segment_buffer
*segbuf
;
1656 struct page
*bd_page
= NULL
, *fs_page
= NULL
;
1657 struct list_head
*list
= &sci
->sc_copied_buffers
;
1660 *failed_page
= NULL
;
1661 list_for_each_entry(segbuf
, &sci
->sc_segbufs
, sb_list
) {
1662 struct buffer_head
*bh
;
1664 list_for_each_entry(bh
, &segbuf
->sb_segsum_buffers
,
1666 if (bh
->b_page
!= bd_page
) {
1669 clear_page_dirty_for_io(bd_page
);
1670 set_page_writeback(bd_page
);
1671 unlock_page(bd_page
);
1673 bd_page
= bh
->b_page
;
1677 list_for_each_entry(bh
, &segbuf
->sb_payload_buffers
,
1679 if (bh
== segbuf
->sb_super_root
) {
1680 if (bh
->b_page
!= bd_page
) {
1682 clear_page_dirty_for_io(bd_page
);
1683 set_page_writeback(bd_page
);
1684 unlock_page(bd_page
);
1685 bd_page
= bh
->b_page
;
1689 if (bh
->b_page
!= fs_page
) {
1690 err
= nilfs_begin_page_io(fs_page
, list
);
1691 if (unlikely(err
)) {
1692 *failed_page
= fs_page
;
1695 fs_page
= bh
->b_page
;
1701 clear_page_dirty_for_io(bd_page
);
1702 set_page_writeback(bd_page
);
1703 unlock_page(bd_page
);
1705 err
= nilfs_begin_page_io(fs_page
, list
);
1707 *failed_page
= fs_page
;
1712 static int nilfs_segctor_write(struct nilfs_sc_info
*sci
,
1713 struct the_nilfs
*nilfs
)
1717 ret
= nilfs_write_logs(&sci
->sc_segbufs
, nilfs
);
1718 list_splice_tail_init(&sci
->sc_segbufs
, &sci
->sc_write_logs
);
1722 static void __nilfs_end_page_io(struct page
*page
, int err
)
1725 if (!nilfs_page_buffers_clean(page
))
1726 __set_page_dirty_nobuffers(page
);
1727 ClearPageError(page
);
1729 __set_page_dirty_nobuffers(page
);
1733 if (buffer_nilfs_allocated(page_buffers(page
))) {
1734 if (TestClearPageWriteback(page
))
1735 dec_zone_page_state(page
, NR_WRITEBACK
);
1737 end_page_writeback(page
);
1740 static void nilfs_end_page_io(struct page
*page
, int err
)
1745 if (buffer_nilfs_node(page_buffers(page
)) && !PageWriteback(page
)) {
1747 * For b-tree node pages, this function may be called twice
1748 * or more because they might be split in a segment.
1750 if (PageDirty(page
)) {
1752 * For pages holding split b-tree node buffers, dirty
1753 * flag on the buffers may be cleared discretely.
1754 * In that case, the page is once redirtied for
1755 * remaining buffers, and it must be cancelled if
1756 * all the buffers get cleaned later.
1759 if (nilfs_page_buffers_clean(page
))
1760 __nilfs_clear_page_dirty(page
);
1766 __nilfs_end_page_io(page
, err
);
1769 static void nilfs_clear_copied_buffers(struct list_head
*list
, int err
)
1771 struct buffer_head
*bh
, *head
;
1774 while (!list_empty(list
)) {
1775 bh
= list_entry(list
->next
, struct buffer_head
,
1778 page_cache_get(page
);
1779 head
= bh
= page_buffers(page
);
1781 if (!list_empty(&bh
->b_assoc_buffers
)) {
1782 list_del_init(&bh
->b_assoc_buffers
);
1784 set_buffer_uptodate(bh
);
1785 clear_buffer_dirty(bh
);
1786 clear_buffer_nilfs_volatile(bh
);
1788 brelse(bh
); /* for b_assoc_buffers */
1790 } while ((bh
= bh
->b_this_page
) != head
);
1792 __nilfs_end_page_io(page
, err
);
1793 page_cache_release(page
);
1797 static void nilfs_abort_logs(struct list_head
*logs
, struct page
*failed_page
,
1800 struct nilfs_segment_buffer
*segbuf
;
1801 struct page
*bd_page
= NULL
, *fs_page
= NULL
;
1802 struct buffer_head
*bh
;
1804 if (list_empty(logs
))
1807 list_for_each_entry(segbuf
, logs
, sb_list
) {
1808 list_for_each_entry(bh
, &segbuf
->sb_segsum_buffers
,
1810 if (bh
->b_page
!= bd_page
) {
1812 end_page_writeback(bd_page
);
1813 bd_page
= bh
->b_page
;
1817 list_for_each_entry(bh
, &segbuf
->sb_payload_buffers
,
1819 if (bh
== segbuf
->sb_super_root
) {
1820 if (bh
->b_page
!= bd_page
) {
1821 end_page_writeback(bd_page
);
1822 bd_page
= bh
->b_page
;
1826 if (bh
->b_page
!= fs_page
) {
1827 nilfs_end_page_io(fs_page
, err
);
1828 if (fs_page
&& fs_page
== failed_page
)
1830 fs_page
= bh
->b_page
;
1835 end_page_writeback(bd_page
);
1837 nilfs_end_page_io(fs_page
, err
);
1840 static void nilfs_segctor_abort_construction(struct nilfs_sc_info
*sci
,
1841 struct the_nilfs
*nilfs
, int err
)
1846 list_splice_tail_init(&sci
->sc_write_logs
, &logs
);
1847 ret
= nilfs_wait_on_logs(&logs
);
1848 nilfs_abort_logs(&logs
, NULL
, ret
? : err
);
1850 list_splice_tail_init(&sci
->sc_segbufs
, &logs
);
1851 nilfs_cancel_segusage(&logs
, nilfs
->ns_sufile
);
1852 nilfs_free_incomplete_logs(&logs
, nilfs
);
1853 nilfs_clear_copied_buffers(&sci
->sc_copied_buffers
, err
);
1855 if (sci
->sc_stage
.flags
& NILFS_CF_SUFREED
) {
1856 ret
= nilfs_sufile_cancel_freev(nilfs
->ns_sufile
,
1860 WARN_ON(ret
); /* do not happen */
1863 nilfs_destroy_logs(&logs
);
1866 static void nilfs_set_next_segment(struct the_nilfs
*nilfs
,
1867 struct nilfs_segment_buffer
*segbuf
)
1869 nilfs
->ns_segnum
= segbuf
->sb_segnum
;
1870 nilfs
->ns_nextnum
= segbuf
->sb_nextnum
;
1871 nilfs
->ns_pseg_offset
= segbuf
->sb_pseg_start
- segbuf
->sb_fseg_start
1872 + segbuf
->sb_sum
.nblocks
;
1873 nilfs
->ns_seg_seq
= segbuf
->sb_sum
.seg_seq
;
1874 nilfs
->ns_ctime
= segbuf
->sb_sum
.ctime
;
1877 static void nilfs_segctor_complete_write(struct nilfs_sc_info
*sci
)
1879 struct nilfs_segment_buffer
*segbuf
;
1880 struct page
*bd_page
= NULL
, *fs_page
= NULL
;
1881 struct the_nilfs
*nilfs
= sci
->sc_sbi
->s_nilfs
;
1882 int update_sr
= false;
1884 list_for_each_entry(segbuf
, &sci
->sc_write_logs
, sb_list
) {
1885 struct buffer_head
*bh
;
1887 list_for_each_entry(bh
, &segbuf
->sb_segsum_buffers
,
1889 set_buffer_uptodate(bh
);
1890 clear_buffer_dirty(bh
);
1891 if (bh
->b_page
!= bd_page
) {
1893 end_page_writeback(bd_page
);
1894 bd_page
= bh
->b_page
;
1898 * We assume that the buffers which belong to the same page
1899 * continue over the buffer list.
1900 * Under this assumption, the last BHs of pages is
1901 * identifiable by the discontinuity of bh->b_page
1902 * (page != fs_page).
1904 * For B-tree node blocks, however, this assumption is not
1905 * guaranteed. The cleanup code of B-tree node pages needs
1908 list_for_each_entry(bh
, &segbuf
->sb_payload_buffers
,
1910 set_buffer_uptodate(bh
);
1911 clear_buffer_dirty(bh
);
1912 clear_buffer_nilfs_volatile(bh
);
1913 clear_buffer_nilfs_redirected(bh
);
1914 if (bh
== segbuf
->sb_super_root
) {
1915 if (bh
->b_page
!= bd_page
) {
1916 end_page_writeback(bd_page
);
1917 bd_page
= bh
->b_page
;
1922 if (bh
->b_page
!= fs_page
) {
1923 nilfs_end_page_io(fs_page
, 0);
1924 fs_page
= bh
->b_page
;
1928 if (!nilfs_segbuf_simplex(segbuf
)) {
1929 if (segbuf
->sb_sum
.flags
& NILFS_SS_LOGBGN
) {
1930 set_bit(NILFS_SC_UNCLOSED
, &sci
->sc_flags
);
1931 sci
->sc_lseg_stime
= jiffies
;
1933 if (segbuf
->sb_sum
.flags
& NILFS_SS_LOGEND
)
1934 clear_bit(NILFS_SC_UNCLOSED
, &sci
->sc_flags
);
1938 * Since pages may continue over multiple segment buffers,
1939 * end of the last page must be checked outside of the loop.
1942 end_page_writeback(bd_page
);
1944 nilfs_end_page_io(fs_page
, 0);
1946 nilfs_clear_copied_buffers(&sci
->sc_copied_buffers
, 0);
1948 nilfs_drop_collected_inodes(&sci
->sc_dirty_files
);
1950 if (nilfs_doing_gc())
1951 nilfs_drop_collected_inodes(&sci
->sc_gc_inodes
);
1953 nilfs
->ns_nongc_ctime
= sci
->sc_seg_ctime
;
1955 sci
->sc_nblk_inc
+= sci
->sc_nblk_this_inc
;
1957 segbuf
= NILFS_LAST_SEGBUF(&sci
->sc_write_logs
);
1958 nilfs_set_next_segment(nilfs
, segbuf
);
1961 nilfs_set_last_segment(nilfs
, segbuf
->sb_pseg_start
,
1962 segbuf
->sb_sum
.seg_seq
, nilfs
->ns_cno
++);
1964 clear_bit(NILFS_SC_HAVE_DELTA
, &sci
->sc_flags
);
1965 clear_bit(NILFS_SC_DIRTY
, &sci
->sc_flags
);
1966 set_bit(NILFS_SC_SUPER_ROOT
, &sci
->sc_flags
);
1967 nilfs_segctor_clear_metadata_dirty(sci
);
1969 clear_bit(NILFS_SC_SUPER_ROOT
, &sci
->sc_flags
);
1972 static int nilfs_segctor_wait(struct nilfs_sc_info
*sci
)
1976 ret
= nilfs_wait_on_logs(&sci
->sc_write_logs
);
1978 nilfs_segctor_complete_write(sci
);
1979 nilfs_destroy_logs(&sci
->sc_write_logs
);
1984 static int nilfs_segctor_check_in_files(struct nilfs_sc_info
*sci
,
1985 struct nilfs_sb_info
*sbi
)
1987 struct nilfs_inode_info
*ii
, *n
;
1988 struct inode
*ifile
= sci
->sc_root
->ifile
;
1990 spin_lock(&sbi
->s_inode_lock
);
1992 list_for_each_entry_safe(ii
, n
, &sbi
->s_dirty_files
, i_dirty
) {
1994 struct buffer_head
*ibh
;
1997 spin_unlock(&sbi
->s_inode_lock
);
1998 err
= nilfs_ifile_get_inode_block(
1999 ifile
, ii
->vfs_inode
.i_ino
, &ibh
);
2000 if (unlikely(err
)) {
2001 nilfs_warning(sbi
->s_super
, __func__
,
2002 "failed to get inode block.\n");
2005 nilfs_mdt_mark_buffer_dirty(ibh
);
2006 nilfs_mdt_mark_dirty(ifile
);
2007 spin_lock(&sbi
->s_inode_lock
);
2008 if (likely(!ii
->i_bh
))
2015 clear_bit(NILFS_I_QUEUED
, &ii
->i_state
);
2016 set_bit(NILFS_I_BUSY
, &ii
->i_state
);
2017 list_del(&ii
->i_dirty
);
2018 list_add_tail(&ii
->i_dirty
, &sci
->sc_dirty_files
);
2020 spin_unlock(&sbi
->s_inode_lock
);
2025 static void nilfs_segctor_check_out_files(struct nilfs_sc_info
*sci
,
2026 struct nilfs_sb_info
*sbi
)
2028 struct nilfs_transaction_info
*ti
= current
->journal_info
;
2029 struct nilfs_inode_info
*ii
, *n
;
2031 spin_lock(&sbi
->s_inode_lock
);
2032 list_for_each_entry_safe(ii
, n
, &sci
->sc_dirty_files
, i_dirty
) {
2033 if (!test_and_clear_bit(NILFS_I_UPDATED
, &ii
->i_state
) ||
2034 test_bit(NILFS_I_DIRTY
, &ii
->i_state
))
2037 clear_bit(NILFS_I_BUSY
, &ii
->i_state
);
2040 list_del(&ii
->i_dirty
);
2041 list_add_tail(&ii
->i_dirty
, &ti
->ti_garbage
);
2043 spin_unlock(&sbi
->s_inode_lock
);
2047 * Main procedure of segment constructor
2049 static int nilfs_segctor_do_construct(struct nilfs_sc_info
*sci
, int mode
)
2051 struct nilfs_sb_info
*sbi
= sci
->sc_sbi
;
2052 struct the_nilfs
*nilfs
= sbi
->s_nilfs
;
2053 struct page
*failed_page
;
2056 sci
->sc_stage
.scnt
= NILFS_ST_INIT
;
2057 sci
->sc_cno
= nilfs
->ns_cno
;
2059 err
= nilfs_segctor_check_in_files(sci
, sbi
);
2063 if (nilfs_test_metadata_dirty(nilfs
, sci
->sc_root
))
2064 set_bit(NILFS_SC_DIRTY
, &sci
->sc_flags
);
2066 if (nilfs_segctor_clean(sci
))
2070 sci
->sc_stage
.flags
&= ~NILFS_CF_HISTORY_MASK
;
2072 err
= nilfs_segctor_begin_construction(sci
, nilfs
);
2076 /* Update time stamp */
2077 sci
->sc_seg_ctime
= get_seconds();
2079 err
= nilfs_segctor_collect(sci
, nilfs
, mode
);
2083 /* Avoid empty segment */
2084 if (sci
->sc_stage
.scnt
== NILFS_ST_DONE
&&
2085 nilfs_segbuf_empty(sci
->sc_curseg
)) {
2086 nilfs_segctor_abort_construction(sci
, nilfs
, 1);
2090 err
= nilfs_segctor_assign(sci
, mode
);
2094 if (sci
->sc_stage
.flags
& NILFS_CF_IFILE_STARTED
)
2095 nilfs_segctor_fill_in_file_bmap(sci
);
2097 if (mode
== SC_LSEG_SR
&&
2098 sci
->sc_stage
.scnt
>= NILFS_ST_CPFILE
) {
2099 err
= nilfs_segctor_fill_in_checkpoint(sci
);
2101 goto failed_to_write
;
2103 nilfs_segctor_fill_in_super_root(sci
, nilfs
);
2105 nilfs_segctor_update_segusage(sci
, nilfs
->ns_sufile
);
2107 /* Write partial segments */
2108 err
= nilfs_segctor_prepare_write(sci
, &failed_page
);
2110 nilfs_abort_logs(&sci
->sc_segbufs
, failed_page
, err
);
2111 goto failed_to_write
;
2114 nilfs_add_checksums_on_logs(&sci
->sc_segbufs
,
2115 nilfs
->ns_crc_seed
);
2117 err
= nilfs_segctor_write(sci
, nilfs
);
2119 goto failed_to_write
;
2121 if (sci
->sc_stage
.scnt
== NILFS_ST_DONE
||
2122 nilfs
->ns_blocksize_bits
!= PAGE_CACHE_SHIFT
) {
2124 * At this point, we avoid double buffering
2125 * for blocksize < pagesize because page dirty
2126 * flag is turned off during write and dirty
2127 * buffers are not properly collected for
2128 * pages crossing over segments.
2130 err
= nilfs_segctor_wait(sci
);
2132 goto failed_to_write
;
2134 } while (sci
->sc_stage
.scnt
!= NILFS_ST_DONE
);
2137 nilfs_segctor_check_out_files(sci
, sbi
);
2141 if (sci
->sc_stage
.flags
& NILFS_CF_IFILE_STARTED
)
2142 nilfs_redirty_inodes(&sci
->sc_dirty_files
);
2145 if (nilfs_doing_gc())
2146 nilfs_redirty_inodes(&sci
->sc_gc_inodes
);
2147 nilfs_segctor_abort_construction(sci
, nilfs
, err
);
2152 * nilfs_segctor_start_timer - set timer of background write
2153 * @sci: nilfs_sc_info
2155 * If the timer has already been set, it ignores the new request.
2156 * This function MUST be called within a section locking the segment
2159 static void nilfs_segctor_start_timer(struct nilfs_sc_info
*sci
)
2161 spin_lock(&sci
->sc_state_lock
);
2162 if (!(sci
->sc_state
& NILFS_SEGCTOR_COMMIT
)) {
2163 sci
->sc_timer
.expires
= jiffies
+ sci
->sc_interval
;
2164 add_timer(&sci
->sc_timer
);
2165 sci
->sc_state
|= NILFS_SEGCTOR_COMMIT
;
2167 spin_unlock(&sci
->sc_state_lock
);
2170 static void nilfs_segctor_do_flush(struct nilfs_sc_info
*sci
, int bn
)
2172 spin_lock(&sci
->sc_state_lock
);
2173 if (!(sci
->sc_flush_request
& (1 << bn
))) {
2174 unsigned long prev_req
= sci
->sc_flush_request
;
2176 sci
->sc_flush_request
|= (1 << bn
);
2178 wake_up(&sci
->sc_wait_daemon
);
2180 spin_unlock(&sci
->sc_state_lock
);
2184 * nilfs_flush_segment - trigger a segment construction for resource control
2186 * @ino: inode number of the file to be flushed out.
2188 void nilfs_flush_segment(struct super_block
*sb
, ino_t ino
)
2190 struct nilfs_sb_info
*sbi
= NILFS_SB(sb
);
2191 struct nilfs_sc_info
*sci
= NILFS_SC(sbi
);
2193 if (!sci
|| nilfs_doing_construction())
2195 nilfs_segctor_do_flush(sci
, NILFS_MDT_INODE(sb
, ino
) ? ino
: 0);
2196 /* assign bit 0 to data files */
2199 struct nilfs_segctor_wait_request
{
2206 static int nilfs_segctor_sync(struct nilfs_sc_info
*sci
)
2208 struct nilfs_segctor_wait_request wait_req
;
2211 spin_lock(&sci
->sc_state_lock
);
2212 init_wait(&wait_req
.wq
);
2214 atomic_set(&wait_req
.done
, 0);
2215 wait_req
.seq
= ++sci
->sc_seq_request
;
2216 spin_unlock(&sci
->sc_state_lock
);
2218 init_waitqueue_entry(&wait_req
.wq
, current
);
2219 add_wait_queue(&sci
->sc_wait_request
, &wait_req
.wq
);
2220 set_current_state(TASK_INTERRUPTIBLE
);
2221 wake_up(&sci
->sc_wait_daemon
);
2224 if (atomic_read(&wait_req
.done
)) {
2228 if (!signal_pending(current
)) {
2235 finish_wait(&sci
->sc_wait_request
, &wait_req
.wq
);
2239 static void nilfs_segctor_wakeup(struct nilfs_sc_info
*sci
, int err
)
2241 struct nilfs_segctor_wait_request
*wrq
, *n
;
2242 unsigned long flags
;
2244 spin_lock_irqsave(&sci
->sc_wait_request
.lock
, flags
);
2245 list_for_each_entry_safe(wrq
, n
, &sci
->sc_wait_request
.task_list
,
2247 if (!atomic_read(&wrq
->done
) &&
2248 nilfs_cnt32_ge(sci
->sc_seq_done
, wrq
->seq
)) {
2250 atomic_set(&wrq
->done
, 1);
2252 if (atomic_read(&wrq
->done
)) {
2253 wrq
->wq
.func(&wrq
->wq
,
2254 TASK_UNINTERRUPTIBLE
| TASK_INTERRUPTIBLE
,
2258 spin_unlock_irqrestore(&sci
->sc_wait_request
.lock
, flags
);
2262 * nilfs_construct_segment - construct a logical segment
2265 * Return Value: On success, 0 is retured. On errors, one of the following
2266 * negative error code is returned.
2268 * %-EROFS - Read only filesystem.
2272 * %-ENOSPC - No space left on device (only in a panic state).
2274 * %-ERESTARTSYS - Interrupted.
2276 * %-ENOMEM - Insufficient memory available.
2278 int nilfs_construct_segment(struct super_block
*sb
)
2280 struct nilfs_sb_info
*sbi
= NILFS_SB(sb
);
2281 struct nilfs_sc_info
*sci
= NILFS_SC(sbi
);
2282 struct nilfs_transaction_info
*ti
;
2288 /* A call inside transactions causes a deadlock. */
2289 BUG_ON((ti
= current
->journal_info
) && ti
->ti_magic
== NILFS_TI_MAGIC
);
2291 err
= nilfs_segctor_sync(sci
);
2296 * nilfs_construct_dsync_segment - construct a data-only logical segment
2298 * @inode: inode whose data blocks should be written out
2299 * @start: start byte offset
2300 * @end: end byte offset (inclusive)
2302 * Return Value: On success, 0 is retured. On errors, one of the following
2303 * negative error code is returned.
2305 * %-EROFS - Read only filesystem.
2309 * %-ENOSPC - No space left on device (only in a panic state).
2311 * %-ERESTARTSYS - Interrupted.
2313 * %-ENOMEM - Insufficient memory available.
2315 int nilfs_construct_dsync_segment(struct super_block
*sb
, struct inode
*inode
,
2316 loff_t start
, loff_t end
)
2318 struct nilfs_sb_info
*sbi
= NILFS_SB(sb
);
2319 struct nilfs_sc_info
*sci
= NILFS_SC(sbi
);
2320 struct nilfs_inode_info
*ii
;
2321 struct nilfs_transaction_info ti
;
2327 nilfs_transaction_lock(sbi
, &ti
, 0);
2329 ii
= NILFS_I(inode
);
2330 if (test_bit(NILFS_I_INODE_DIRTY
, &ii
->i_state
) ||
2331 nilfs_test_opt(sbi
, STRICT_ORDER
) ||
2332 test_bit(NILFS_SC_UNCLOSED
, &sci
->sc_flags
) ||
2333 nilfs_discontinued(sbi
->s_nilfs
)) {
2334 nilfs_transaction_unlock(sbi
);
2335 err
= nilfs_segctor_sync(sci
);
2339 spin_lock(&sbi
->s_inode_lock
);
2340 if (!test_bit(NILFS_I_QUEUED
, &ii
->i_state
) &&
2341 !test_bit(NILFS_I_BUSY
, &ii
->i_state
)) {
2342 spin_unlock(&sbi
->s_inode_lock
);
2343 nilfs_transaction_unlock(sbi
);
2346 spin_unlock(&sbi
->s_inode_lock
);
2347 sci
->sc_dsync_inode
= ii
;
2348 sci
->sc_dsync_start
= start
;
2349 sci
->sc_dsync_end
= end
;
2351 err
= nilfs_segctor_do_construct(sci
, SC_LSEG_DSYNC
);
2353 nilfs_transaction_unlock(sbi
);
2357 #define FLUSH_FILE_BIT (0x1) /* data file only */
2358 #define FLUSH_DAT_BIT (1 << NILFS_DAT_INO) /* DAT only */
2361 * nilfs_segctor_accept - record accepted sequence count of log-write requests
2362 * @sci: segment constructor object
2364 static void nilfs_segctor_accept(struct nilfs_sc_info
*sci
)
2366 spin_lock(&sci
->sc_state_lock
);
2367 sci
->sc_seq_accepted
= sci
->sc_seq_request
;
2368 spin_unlock(&sci
->sc_state_lock
);
2369 del_timer_sync(&sci
->sc_timer
);
2373 * nilfs_segctor_notify - notify the result of request to caller threads
2374 * @sci: segment constructor object
2375 * @mode: mode of log forming
2376 * @err: error code to be notified
2378 static void nilfs_segctor_notify(struct nilfs_sc_info
*sci
, int mode
, int err
)
2380 /* Clear requests (even when the construction failed) */
2381 spin_lock(&sci
->sc_state_lock
);
2383 if (mode
== SC_LSEG_SR
) {
2384 sci
->sc_state
&= ~NILFS_SEGCTOR_COMMIT
;
2385 sci
->sc_seq_done
= sci
->sc_seq_accepted
;
2386 nilfs_segctor_wakeup(sci
, err
);
2387 sci
->sc_flush_request
= 0;
2389 if (mode
== SC_FLUSH_FILE
)
2390 sci
->sc_flush_request
&= ~FLUSH_FILE_BIT
;
2391 else if (mode
== SC_FLUSH_DAT
)
2392 sci
->sc_flush_request
&= ~FLUSH_DAT_BIT
;
2394 /* re-enable timer if checkpoint creation was not done */
2395 if ((sci
->sc_state
& NILFS_SEGCTOR_COMMIT
) &&
2396 time_before(jiffies
, sci
->sc_timer
.expires
))
2397 add_timer(&sci
->sc_timer
);
2399 spin_unlock(&sci
->sc_state_lock
);
2403 * nilfs_segctor_construct - form logs and write them to disk
2404 * @sci: segment constructor object
2405 * @mode: mode of log forming
2407 static int nilfs_segctor_construct(struct nilfs_sc_info
*sci
, int mode
)
2409 struct nilfs_sb_info
*sbi
= sci
->sc_sbi
;
2410 struct the_nilfs
*nilfs
= sbi
->s_nilfs
;
2411 struct nilfs_super_block
**sbp
;
2414 nilfs_segctor_accept(sci
);
2416 if (nilfs_discontinued(nilfs
))
2418 if (!nilfs_segctor_confirm(sci
))
2419 err
= nilfs_segctor_do_construct(sci
, mode
);
2422 if (mode
!= SC_FLUSH_DAT
)
2423 atomic_set(&nilfs
->ns_ndirtyblks
, 0);
2424 if (test_bit(NILFS_SC_SUPER_ROOT
, &sci
->sc_flags
) &&
2425 nilfs_discontinued(nilfs
)) {
2426 down_write(&nilfs
->ns_sem
);
2428 sbp
= nilfs_prepare_super(sbi
,
2429 nilfs_sb_will_flip(nilfs
));
2431 nilfs_set_log_cursor(sbp
[0], nilfs
);
2432 err
= nilfs_commit_super(sbi
, NILFS_SB_COMMIT
);
2434 up_write(&nilfs
->ns_sem
);
2438 nilfs_segctor_notify(sci
, mode
, err
);
2442 static void nilfs_construction_timeout(unsigned long data
)
2444 struct task_struct
*p
= (struct task_struct
*)data
;
2449 nilfs_remove_written_gcinodes(struct the_nilfs
*nilfs
, struct list_head
*head
)
2451 struct nilfs_inode_info
*ii
, *n
;
2453 list_for_each_entry_safe(ii
, n
, head
, i_dirty
) {
2454 if (!test_bit(NILFS_I_UPDATED
, &ii
->i_state
))
2456 list_del_init(&ii
->i_dirty
);
2457 iput(&ii
->vfs_inode
);
2461 int nilfs_clean_segments(struct super_block
*sb
, struct nilfs_argv
*argv
,
2464 struct nilfs_sb_info
*sbi
= NILFS_SB(sb
);
2465 struct nilfs_sc_info
*sci
= NILFS_SC(sbi
);
2466 struct the_nilfs
*nilfs
= sbi
->s_nilfs
;
2467 struct nilfs_transaction_info ti
;
2473 nilfs_transaction_lock(sbi
, &ti
, 1);
2475 err
= nilfs_mdt_save_to_shadow_map(nilfs
->ns_dat
);
2479 err
= nilfs_ioctl_prepare_clean_segments(nilfs
, argv
, kbufs
);
2480 if (unlikely(err
)) {
2481 nilfs_mdt_restore_from_shadow_map(nilfs
->ns_dat
);
2485 sci
->sc_freesegs
= kbufs
[4];
2486 sci
->sc_nfreesegs
= argv
[4].v_nmembs
;
2487 list_splice_tail_init(&nilfs
->ns_gc_inodes
, &sci
->sc_gc_inodes
);
2490 err
= nilfs_segctor_construct(sci
, SC_LSEG_SR
);
2491 nilfs_remove_written_gcinodes(nilfs
, &sci
->sc_gc_inodes
);
2496 nilfs_warning(sb
, __func__
,
2497 "segment construction failed. (err=%d)", err
);
2498 set_current_state(TASK_INTERRUPTIBLE
);
2499 schedule_timeout(sci
->sc_interval
);
2501 if (nilfs_test_opt(sbi
, DISCARD
)) {
2502 int ret
= nilfs_discard_segments(nilfs
, sci
->sc_freesegs
,
2506 "NILFS warning: error %d on discard request, "
2507 "turning discards off for the device\n", ret
);
2508 nilfs_clear_opt(sbi
, DISCARD
);
2513 sci
->sc_freesegs
= NULL
;
2514 sci
->sc_nfreesegs
= 0;
2515 nilfs_mdt_clear_shadow_map(nilfs
->ns_dat
);
2516 nilfs_transaction_unlock(sbi
);
2520 static void nilfs_segctor_thread_construct(struct nilfs_sc_info
*sci
, int mode
)
2522 struct nilfs_sb_info
*sbi
= sci
->sc_sbi
;
2523 struct nilfs_transaction_info ti
;
2525 nilfs_transaction_lock(sbi
, &ti
, 0);
2526 nilfs_segctor_construct(sci
, mode
);
2529 * Unclosed segment should be retried. We do this using sc_timer.
2530 * Timeout of sc_timer will invoke complete construction which leads
2531 * to close the current logical segment.
2533 if (test_bit(NILFS_SC_UNCLOSED
, &sci
->sc_flags
))
2534 nilfs_segctor_start_timer(sci
);
2536 nilfs_transaction_unlock(sbi
);
2539 static void nilfs_segctor_do_immediate_flush(struct nilfs_sc_info
*sci
)
2544 spin_lock(&sci
->sc_state_lock
);
2545 mode
= (sci
->sc_flush_request
& FLUSH_DAT_BIT
) ?
2546 SC_FLUSH_DAT
: SC_FLUSH_FILE
;
2547 spin_unlock(&sci
->sc_state_lock
);
2550 err
= nilfs_segctor_do_construct(sci
, mode
);
2552 spin_lock(&sci
->sc_state_lock
);
2553 sci
->sc_flush_request
&= (mode
== SC_FLUSH_FILE
) ?
2554 ~FLUSH_FILE_BIT
: ~FLUSH_DAT_BIT
;
2555 spin_unlock(&sci
->sc_state_lock
);
2557 clear_bit(NILFS_SC_PRIOR_FLUSH
, &sci
->sc_flags
);
2560 static int nilfs_segctor_flush_mode(struct nilfs_sc_info
*sci
)
2562 if (!test_bit(NILFS_SC_UNCLOSED
, &sci
->sc_flags
) ||
2563 time_before(jiffies
, sci
->sc_lseg_stime
+ sci
->sc_mjcp_freq
)) {
2564 if (!(sci
->sc_flush_request
& ~FLUSH_FILE_BIT
))
2565 return SC_FLUSH_FILE
;
2566 else if (!(sci
->sc_flush_request
& ~FLUSH_DAT_BIT
))
2567 return SC_FLUSH_DAT
;
2573 * nilfs_segctor_thread - main loop of the segment constructor thread.
2574 * @arg: pointer to a struct nilfs_sc_info.
2576 * nilfs_segctor_thread() initializes a timer and serves as a daemon
2577 * to execute segment constructions.
2579 static int nilfs_segctor_thread(void *arg
)
2581 struct nilfs_sc_info
*sci
= (struct nilfs_sc_info
*)arg
;
2582 struct the_nilfs
*nilfs
= sci
->sc_sbi
->s_nilfs
;
2585 sci
->sc_timer
.data
= (unsigned long)current
;
2586 sci
->sc_timer
.function
= nilfs_construction_timeout
;
2589 sci
->sc_task
= current
;
2590 wake_up(&sci
->sc_wait_task
); /* for nilfs_segctor_start_thread() */
2592 "segctord starting. Construction interval = %lu seconds, "
2593 "CP frequency < %lu seconds\n",
2594 sci
->sc_interval
/ HZ
, sci
->sc_mjcp_freq
/ HZ
);
2596 spin_lock(&sci
->sc_state_lock
);
2601 if (sci
->sc_state
& NILFS_SEGCTOR_QUIT
)
2604 if (timeout
|| sci
->sc_seq_request
!= sci
->sc_seq_done
)
2606 else if (!sci
->sc_flush_request
)
2609 mode
= nilfs_segctor_flush_mode(sci
);
2611 spin_unlock(&sci
->sc_state_lock
);
2612 nilfs_segctor_thread_construct(sci
, mode
);
2613 spin_lock(&sci
->sc_state_lock
);
2618 if (freezing(current
)) {
2619 spin_unlock(&sci
->sc_state_lock
);
2621 spin_lock(&sci
->sc_state_lock
);
2624 int should_sleep
= 1;
2626 prepare_to_wait(&sci
->sc_wait_daemon
, &wait
,
2627 TASK_INTERRUPTIBLE
);
2629 if (sci
->sc_seq_request
!= sci
->sc_seq_done
)
2631 else if (sci
->sc_flush_request
)
2633 else if (sci
->sc_state
& NILFS_SEGCTOR_COMMIT
)
2634 should_sleep
= time_before(jiffies
,
2635 sci
->sc_timer
.expires
);
2638 spin_unlock(&sci
->sc_state_lock
);
2640 spin_lock(&sci
->sc_state_lock
);
2642 finish_wait(&sci
->sc_wait_daemon
, &wait
);
2643 timeout
= ((sci
->sc_state
& NILFS_SEGCTOR_COMMIT
) &&
2644 time_after_eq(jiffies
, sci
->sc_timer
.expires
));
2646 if (nilfs_sb_dirty(nilfs
) && nilfs_sb_need_update(nilfs
))
2647 set_nilfs_discontinued(nilfs
);
2652 spin_unlock(&sci
->sc_state_lock
);
2655 sci
->sc_task
= NULL
;
2656 wake_up(&sci
->sc_wait_task
); /* for nilfs_segctor_kill_thread() */
2660 static int nilfs_segctor_start_thread(struct nilfs_sc_info
*sci
)
2662 struct task_struct
*t
;
2664 t
= kthread_run(nilfs_segctor_thread
, sci
, "segctord");
2666 int err
= PTR_ERR(t
);
2668 printk(KERN_ERR
"NILFS: error %d creating segctord thread\n",
2672 wait_event(sci
->sc_wait_task
, sci
->sc_task
!= NULL
);
2676 static void nilfs_segctor_kill_thread(struct nilfs_sc_info
*sci
)
2677 __acquires(&sci
->sc_state_lock
)
2678 __releases(&sci
->sc_state_lock
)
2680 sci
->sc_state
|= NILFS_SEGCTOR_QUIT
;
2682 while (sci
->sc_task
) {
2683 wake_up(&sci
->sc_wait_daemon
);
2684 spin_unlock(&sci
->sc_state_lock
);
2685 wait_event(sci
->sc_wait_task
, sci
->sc_task
== NULL
);
2686 spin_lock(&sci
->sc_state_lock
);
2691 * Setup & clean-up functions
2693 static struct nilfs_sc_info
*nilfs_segctor_new(struct nilfs_sb_info
*sbi
,
2694 struct nilfs_root
*root
)
2696 struct nilfs_sc_info
*sci
;
2698 sci
= kzalloc(sizeof(*sci
), GFP_KERNEL
);
2703 sci
->sc_super
= sbi
->s_super
;
2705 nilfs_get_root(root
);
2706 sci
->sc_root
= root
;
2708 init_waitqueue_head(&sci
->sc_wait_request
);
2709 init_waitqueue_head(&sci
->sc_wait_daemon
);
2710 init_waitqueue_head(&sci
->sc_wait_task
);
2711 spin_lock_init(&sci
->sc_state_lock
);
2712 INIT_LIST_HEAD(&sci
->sc_dirty_files
);
2713 INIT_LIST_HEAD(&sci
->sc_segbufs
);
2714 INIT_LIST_HEAD(&sci
->sc_write_logs
);
2715 INIT_LIST_HEAD(&sci
->sc_gc_inodes
);
2716 INIT_LIST_HEAD(&sci
->sc_copied_buffers
);
2717 init_timer(&sci
->sc_timer
);
2719 sci
->sc_interval
= HZ
* NILFS_SC_DEFAULT_TIMEOUT
;
2720 sci
->sc_mjcp_freq
= HZ
* NILFS_SC_DEFAULT_SR_FREQ
;
2721 sci
->sc_watermark
= NILFS_SC_DEFAULT_WATERMARK
;
2723 if (sbi
->s_interval
)
2724 sci
->sc_interval
= sbi
->s_interval
;
2725 if (sbi
->s_watermark
)
2726 sci
->sc_watermark
= sbi
->s_watermark
;
2730 static void nilfs_segctor_write_out(struct nilfs_sc_info
*sci
)
2732 int ret
, retrycount
= NILFS_SC_CLEANUP_RETRY
;
2734 /* The segctord thread was stopped and its timer was removed.
2735 But some tasks remain. */
2737 struct nilfs_sb_info
*sbi
= sci
->sc_sbi
;
2738 struct nilfs_transaction_info ti
;
2740 nilfs_transaction_lock(sbi
, &ti
, 0);
2741 ret
= nilfs_segctor_construct(sci
, SC_LSEG_SR
);
2742 nilfs_transaction_unlock(sbi
);
2744 } while (ret
&& retrycount
-- > 0);
2748 * nilfs_segctor_destroy - destroy the segment constructor.
2749 * @sci: nilfs_sc_info
2751 * nilfs_segctor_destroy() kills the segctord thread and frees
2752 * the nilfs_sc_info struct.
2753 * Caller must hold the segment semaphore.
2755 static void nilfs_segctor_destroy(struct nilfs_sc_info
*sci
)
2757 struct nilfs_sb_info
*sbi
= sci
->sc_sbi
;
2760 up_write(&sbi
->s_nilfs
->ns_segctor_sem
);
2762 spin_lock(&sci
->sc_state_lock
);
2763 nilfs_segctor_kill_thread(sci
);
2764 flag
= ((sci
->sc_state
& NILFS_SEGCTOR_COMMIT
) || sci
->sc_flush_request
2765 || sci
->sc_seq_request
!= sci
->sc_seq_done
);
2766 spin_unlock(&sci
->sc_state_lock
);
2768 if (flag
|| !nilfs_segctor_confirm(sci
))
2769 nilfs_segctor_write_out(sci
);
2771 WARN_ON(!list_empty(&sci
->sc_copied_buffers
));
2773 if (!list_empty(&sci
->sc_dirty_files
)) {
2774 nilfs_warning(sbi
->s_super
, __func__
,
2775 "dirty file(s) after the final construction\n");
2776 nilfs_dispose_list(sbi
, &sci
->sc_dirty_files
, 1);
2779 WARN_ON(!list_empty(&sci
->sc_segbufs
));
2780 WARN_ON(!list_empty(&sci
->sc_write_logs
));
2782 nilfs_put_root(sci
->sc_root
);
2784 down_write(&sbi
->s_nilfs
->ns_segctor_sem
);
2786 del_timer_sync(&sci
->sc_timer
);
2791 * nilfs_attach_segment_constructor - attach a segment constructor
2792 * @sbi: nilfs_sb_info
2793 * @root: root object of the current filesystem tree
2795 * nilfs_attach_segment_constructor() allocates a struct nilfs_sc_info,
2796 * initializes it, and starts the segment constructor.
2798 * Return Value: On success, 0 is returned. On error, one of the following
2799 * negative error code is returned.
2801 * %-ENOMEM - Insufficient memory available.
2803 int nilfs_attach_segment_constructor(struct nilfs_sb_info
*sbi
,
2804 struct nilfs_root
*root
)
2808 if (NILFS_SC(sbi
)) {
2810 * This happens if the filesystem was remounted
2811 * read/write after nilfs_error degenerated it into a
2814 nilfs_detach_segment_constructor(sbi
);
2817 sbi
->s_sc_info
= nilfs_segctor_new(sbi
, root
);
2818 if (!sbi
->s_sc_info
)
2821 err
= nilfs_segctor_start_thread(NILFS_SC(sbi
));
2823 kfree(sbi
->s_sc_info
);
2824 sbi
->s_sc_info
= NULL
;
2830 * nilfs_detach_segment_constructor - destroy the segment constructor
2831 * @sbi: nilfs_sb_info
2833 * nilfs_detach_segment_constructor() kills the segment constructor daemon,
2834 * frees the struct nilfs_sc_info, and destroy the dirty file list.
2836 void nilfs_detach_segment_constructor(struct nilfs_sb_info
*sbi
)
2838 struct the_nilfs
*nilfs
= sbi
->s_nilfs
;
2839 LIST_HEAD(garbage_list
);
2841 down_write(&nilfs
->ns_segctor_sem
);
2842 if (NILFS_SC(sbi
)) {
2843 nilfs_segctor_destroy(NILFS_SC(sbi
));
2844 sbi
->s_sc_info
= NULL
;
2847 /* Force to free the list of dirty files */
2848 spin_lock(&sbi
->s_inode_lock
);
2849 if (!list_empty(&sbi
->s_dirty_files
)) {
2850 list_splice_init(&sbi
->s_dirty_files
, &garbage_list
);
2851 nilfs_warning(sbi
->s_super
, __func__
,
2852 "Non empty dirty list after the last "
2853 "segment construction\n");
2855 spin_unlock(&sbi
->s_inode_lock
);
2856 up_write(&nilfs
->ns_segctor_sem
);
2858 nilfs_dispose_list(sbi
, &garbage_list
, 1);