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))
195 nilfs
= sbi
->s_nilfs
;
196 down_read(&nilfs
->ns_segctor_sem
);
197 if (vacancy_check
&& nilfs_near_disk_full(nilfs
)) {
198 up_read(&nilfs
->ns_segctor_sem
);
205 ti
= current
->journal_info
;
206 current
->journal_info
= ti
->ti_save
;
207 if (ti
->ti_flags
& NILFS_TI_DYNAMIC_ALLOC
)
208 kmem_cache_free(nilfs_transaction_cachep
, ti
);
213 * nilfs_transaction_commit - commit indivisible file operations.
216 * nilfs_transaction_commit() releases the read semaphore which is
217 * acquired by nilfs_transaction_begin(). This is only performed
218 * in outermost call of this function. If a commit flag is set,
219 * nilfs_transaction_commit() sets a timer to start the segment
220 * constructor. If a sync flag is set, it starts construction
223 int nilfs_transaction_commit(struct super_block
*sb
)
225 struct nilfs_transaction_info
*ti
= current
->journal_info
;
226 struct nilfs_sb_info
*sbi
;
227 struct nilfs_sc_info
*sci
;
230 BUG_ON(ti
== NULL
|| ti
->ti_magic
!= NILFS_TI_MAGIC
);
231 ti
->ti_flags
|= NILFS_TI_COMMIT
;
232 if (ti
->ti_count
> 0) {
239 if (ti
->ti_flags
& NILFS_TI_COMMIT
)
240 nilfs_segctor_start_timer(sci
);
241 if (atomic_read(&sbi
->s_nilfs
->ns_ndirtyblks
) >
243 nilfs_segctor_do_flush(sci
, 0);
245 up_read(&sbi
->s_nilfs
->ns_segctor_sem
);
246 current
->journal_info
= ti
->ti_save
;
248 if (ti
->ti_flags
& NILFS_TI_SYNC
)
249 err
= nilfs_construct_segment(sb
);
250 if (ti
->ti_flags
& NILFS_TI_DYNAMIC_ALLOC
)
251 kmem_cache_free(nilfs_transaction_cachep
, ti
);
255 void nilfs_transaction_abort(struct super_block
*sb
)
257 struct nilfs_transaction_info
*ti
= current
->journal_info
;
259 BUG_ON(ti
== NULL
|| ti
->ti_magic
!= NILFS_TI_MAGIC
);
260 if (ti
->ti_count
> 0) {
264 up_read(&NILFS_SB(sb
)->s_nilfs
->ns_segctor_sem
);
266 current
->journal_info
= ti
->ti_save
;
267 if (ti
->ti_flags
& NILFS_TI_DYNAMIC_ALLOC
)
268 kmem_cache_free(nilfs_transaction_cachep
, ti
);
271 void nilfs_relax_pressure_in_lock(struct super_block
*sb
)
273 struct nilfs_sb_info
*sbi
= NILFS_SB(sb
);
274 struct nilfs_sc_info
*sci
= NILFS_SC(sbi
);
275 struct the_nilfs
*nilfs
= sbi
->s_nilfs
;
277 if (!sci
|| !sci
->sc_flush_request
)
280 set_bit(NILFS_SC_PRIOR_FLUSH
, &sci
->sc_flags
);
281 up_read(&nilfs
->ns_segctor_sem
);
283 down_write(&nilfs
->ns_segctor_sem
);
284 if (sci
->sc_flush_request
&&
285 test_bit(NILFS_SC_PRIOR_FLUSH
, &sci
->sc_flags
)) {
286 struct nilfs_transaction_info
*ti
= current
->journal_info
;
288 ti
->ti_flags
|= NILFS_TI_WRITER
;
289 nilfs_segctor_do_immediate_flush(sci
);
290 ti
->ti_flags
&= ~NILFS_TI_WRITER
;
292 downgrade_write(&nilfs
->ns_segctor_sem
);
295 static void nilfs_transaction_lock(struct nilfs_sb_info
*sbi
,
296 struct nilfs_transaction_info
*ti
,
299 struct nilfs_transaction_info
*cur_ti
= current
->journal_info
;
302 ti
->ti_flags
= NILFS_TI_WRITER
;
304 ti
->ti_save
= cur_ti
;
305 ti
->ti_magic
= NILFS_TI_MAGIC
;
306 INIT_LIST_HEAD(&ti
->ti_garbage
);
307 current
->journal_info
= ti
;
310 down_write(&sbi
->s_nilfs
->ns_segctor_sem
);
311 if (!test_bit(NILFS_SC_PRIOR_FLUSH
, &NILFS_SC(sbi
)->sc_flags
))
314 nilfs_segctor_do_immediate_flush(NILFS_SC(sbi
));
316 up_write(&sbi
->s_nilfs
->ns_segctor_sem
);
320 ti
->ti_flags
|= NILFS_TI_GC
;
323 static void nilfs_transaction_unlock(struct nilfs_sb_info
*sbi
)
325 struct nilfs_transaction_info
*ti
= current
->journal_info
;
327 BUG_ON(ti
== NULL
|| ti
->ti_magic
!= NILFS_TI_MAGIC
);
328 BUG_ON(ti
->ti_count
> 0);
330 up_write(&sbi
->s_nilfs
->ns_segctor_sem
);
331 current
->journal_info
= ti
->ti_save
;
332 if (!list_empty(&ti
->ti_garbage
))
333 nilfs_dispose_list(sbi
, &ti
->ti_garbage
, 0);
336 static void *nilfs_segctor_map_segsum_entry(struct nilfs_sc_info
*sci
,
337 struct nilfs_segsum_pointer
*ssp
,
340 struct nilfs_segment_buffer
*segbuf
= sci
->sc_curseg
;
341 unsigned blocksize
= sci
->sc_super
->s_blocksize
;
344 if (unlikely(ssp
->offset
+ bytes
> blocksize
)) {
346 BUG_ON(NILFS_SEGBUF_BH_IS_LAST(ssp
->bh
,
347 &segbuf
->sb_segsum_buffers
));
348 ssp
->bh
= NILFS_SEGBUF_NEXT_BH(ssp
->bh
);
350 p
= ssp
->bh
->b_data
+ ssp
->offset
;
351 ssp
->offset
+= bytes
;
356 * nilfs_segctor_reset_segment_buffer - reset the current segment buffer
357 * @sci: nilfs_sc_info
359 static int nilfs_segctor_reset_segment_buffer(struct nilfs_sc_info
*sci
)
361 struct nilfs_segment_buffer
*segbuf
= sci
->sc_curseg
;
362 struct buffer_head
*sumbh
;
367 if (nilfs_doing_gc())
369 err
= nilfs_segbuf_reset(segbuf
, flags
, sci
->sc_seg_ctime
,
370 sci
->sc_sbi
->s_nilfs
->ns_cno
);
374 sumbh
= NILFS_SEGBUF_FIRST_BH(&segbuf
->sb_segsum_buffers
);
375 sumbytes
= segbuf
->sb_sum
.sumbytes
;
376 sci
->sc_finfo_ptr
.bh
= sumbh
; sci
->sc_finfo_ptr
.offset
= sumbytes
;
377 sci
->sc_binfo_ptr
.bh
= sumbh
; sci
->sc_binfo_ptr
.offset
= sumbytes
;
378 sci
->sc_blk_cnt
= sci
->sc_datablk_cnt
= 0;
382 static int nilfs_segctor_feed_segment(struct nilfs_sc_info
*sci
)
384 sci
->sc_nblk_this_inc
+= sci
->sc_curseg
->sb_sum
.nblocks
;
385 if (NILFS_SEGBUF_IS_LAST(sci
->sc_curseg
, &sci
->sc_segbufs
))
386 return -E2BIG
; /* The current segment is filled up
388 sci
->sc_curseg
= NILFS_NEXT_SEGBUF(sci
->sc_curseg
);
389 return nilfs_segctor_reset_segment_buffer(sci
);
392 static int nilfs_segctor_add_super_root(struct nilfs_sc_info
*sci
)
394 struct nilfs_segment_buffer
*segbuf
= sci
->sc_curseg
;
397 if (segbuf
->sb_sum
.nblocks
>= segbuf
->sb_rest_blocks
) {
398 err
= nilfs_segctor_feed_segment(sci
);
401 segbuf
= sci
->sc_curseg
;
403 err
= nilfs_segbuf_extend_payload(segbuf
, &segbuf
->sb_super_root
);
405 segbuf
->sb_sum
.flags
|= NILFS_SS_SR
;
410 * Functions for making segment summary and payloads
412 static int nilfs_segctor_segsum_block_required(
413 struct nilfs_sc_info
*sci
, const struct nilfs_segsum_pointer
*ssp
,
416 unsigned blocksize
= sci
->sc_super
->s_blocksize
;
417 /* Size of finfo and binfo is enough small against blocksize */
419 return ssp
->offset
+ binfo_size
+
420 (!sci
->sc_blk_cnt
? sizeof(struct nilfs_finfo
) : 0) >
424 static void nilfs_segctor_begin_finfo(struct nilfs_sc_info
*sci
,
427 sci
->sc_curseg
->sb_sum
.nfinfo
++;
428 sci
->sc_binfo_ptr
= sci
->sc_finfo_ptr
;
429 nilfs_segctor_map_segsum_entry(
430 sci
, &sci
->sc_binfo_ptr
, sizeof(struct nilfs_finfo
));
432 if (inode
->i_sb
&& !test_bit(NILFS_SC_HAVE_DELTA
, &sci
->sc_flags
))
433 set_bit(NILFS_SC_HAVE_DELTA
, &sci
->sc_flags
);
437 static void nilfs_segctor_end_finfo(struct nilfs_sc_info
*sci
,
440 struct nilfs_finfo
*finfo
;
441 struct nilfs_inode_info
*ii
;
442 struct nilfs_segment_buffer
*segbuf
;
444 if (sci
->sc_blk_cnt
== 0)
448 finfo
= nilfs_segctor_map_segsum_entry(sci
, &sci
->sc_finfo_ptr
,
450 finfo
->fi_ino
= cpu_to_le64(inode
->i_ino
);
451 finfo
->fi_nblocks
= cpu_to_le32(sci
->sc_blk_cnt
);
452 finfo
->fi_ndatablk
= cpu_to_le32(sci
->sc_datablk_cnt
);
453 finfo
->fi_cno
= cpu_to_le64(ii
->i_cno
);
455 segbuf
= sci
->sc_curseg
;
456 segbuf
->sb_sum
.sumbytes
= sci
->sc_binfo_ptr
.offset
+
457 sci
->sc_super
->s_blocksize
* (segbuf
->sb_sum
.nsumblk
- 1);
458 sci
->sc_finfo_ptr
= sci
->sc_binfo_ptr
;
459 sci
->sc_blk_cnt
= sci
->sc_datablk_cnt
= 0;
462 static int nilfs_segctor_add_file_block(struct nilfs_sc_info
*sci
,
463 struct buffer_head
*bh
,
467 struct nilfs_segment_buffer
*segbuf
;
468 int required
, err
= 0;
471 segbuf
= sci
->sc_curseg
;
472 required
= nilfs_segctor_segsum_block_required(
473 sci
, &sci
->sc_binfo_ptr
, binfo_size
);
474 if (segbuf
->sb_sum
.nblocks
+ required
+ 1 > segbuf
->sb_rest_blocks
) {
475 nilfs_segctor_end_finfo(sci
, inode
);
476 err
= nilfs_segctor_feed_segment(sci
);
481 if (unlikely(required
)) {
482 err
= nilfs_segbuf_extend_segsum(segbuf
);
486 if (sci
->sc_blk_cnt
== 0)
487 nilfs_segctor_begin_finfo(sci
, inode
);
489 nilfs_segctor_map_segsum_entry(sci
, &sci
->sc_binfo_ptr
, binfo_size
);
490 /* Substitution to vblocknr is delayed until update_blocknr() */
491 nilfs_segbuf_add_file_buffer(segbuf
, bh
);
497 static int nilfs_handle_bmap_error(int err
, const char *fname
,
498 struct inode
*inode
, struct super_block
*sb
)
500 if (err
== -EINVAL
) {
501 nilfs_error(sb
, fname
, "broken bmap (inode=%lu)\n",
509 * Callback functions that enumerate, mark, and collect dirty blocks
511 static int nilfs_collect_file_data(struct nilfs_sc_info
*sci
,
512 struct buffer_head
*bh
, struct inode
*inode
)
516 err
= nilfs_bmap_propagate(NILFS_I(inode
)->i_bmap
, bh
);
517 if (unlikely(err
< 0))
518 return nilfs_handle_bmap_error(err
, __func__
, inode
,
521 err
= nilfs_segctor_add_file_block(sci
, bh
, inode
,
522 sizeof(struct nilfs_binfo_v
));
524 sci
->sc_datablk_cnt
++;
528 static int nilfs_collect_file_node(struct nilfs_sc_info
*sci
,
529 struct buffer_head
*bh
,
534 err
= nilfs_bmap_propagate(NILFS_I(inode
)->i_bmap
, bh
);
535 if (unlikely(err
< 0))
536 return nilfs_handle_bmap_error(err
, __func__
, inode
,
541 static int nilfs_collect_file_bmap(struct nilfs_sc_info
*sci
,
542 struct buffer_head
*bh
,
545 WARN_ON(!buffer_dirty(bh
));
546 return nilfs_segctor_add_file_block(sci
, bh
, inode
, sizeof(__le64
));
549 static void nilfs_write_file_data_binfo(struct nilfs_sc_info
*sci
,
550 struct nilfs_segsum_pointer
*ssp
,
551 union nilfs_binfo
*binfo
)
553 struct nilfs_binfo_v
*binfo_v
= nilfs_segctor_map_segsum_entry(
554 sci
, ssp
, sizeof(*binfo_v
));
555 *binfo_v
= binfo
->bi_v
;
558 static void nilfs_write_file_node_binfo(struct nilfs_sc_info
*sci
,
559 struct nilfs_segsum_pointer
*ssp
,
560 union nilfs_binfo
*binfo
)
562 __le64
*vblocknr
= nilfs_segctor_map_segsum_entry(
563 sci
, ssp
, sizeof(*vblocknr
));
564 *vblocknr
= binfo
->bi_v
.bi_vblocknr
;
567 struct nilfs_sc_operations nilfs_sc_file_ops
= {
568 .collect_data
= nilfs_collect_file_data
,
569 .collect_node
= nilfs_collect_file_node
,
570 .collect_bmap
= nilfs_collect_file_bmap
,
571 .write_data_binfo
= nilfs_write_file_data_binfo
,
572 .write_node_binfo
= nilfs_write_file_node_binfo
,
575 static int nilfs_collect_dat_data(struct nilfs_sc_info
*sci
,
576 struct buffer_head
*bh
, struct inode
*inode
)
580 err
= nilfs_bmap_propagate(NILFS_I(inode
)->i_bmap
, bh
);
581 if (unlikely(err
< 0))
582 return nilfs_handle_bmap_error(err
, __func__
, inode
,
585 err
= nilfs_segctor_add_file_block(sci
, bh
, inode
, sizeof(__le64
));
587 sci
->sc_datablk_cnt
++;
591 static int nilfs_collect_dat_bmap(struct nilfs_sc_info
*sci
,
592 struct buffer_head
*bh
, struct inode
*inode
)
594 WARN_ON(!buffer_dirty(bh
));
595 return nilfs_segctor_add_file_block(sci
, bh
, inode
,
596 sizeof(struct nilfs_binfo_dat
));
599 static void nilfs_write_dat_data_binfo(struct nilfs_sc_info
*sci
,
600 struct nilfs_segsum_pointer
*ssp
,
601 union nilfs_binfo
*binfo
)
603 __le64
*blkoff
= nilfs_segctor_map_segsum_entry(sci
, ssp
,
605 *blkoff
= binfo
->bi_dat
.bi_blkoff
;
608 static void nilfs_write_dat_node_binfo(struct nilfs_sc_info
*sci
,
609 struct nilfs_segsum_pointer
*ssp
,
610 union nilfs_binfo
*binfo
)
612 struct nilfs_binfo_dat
*binfo_dat
=
613 nilfs_segctor_map_segsum_entry(sci
, ssp
, sizeof(*binfo_dat
));
614 *binfo_dat
= binfo
->bi_dat
;
617 struct nilfs_sc_operations nilfs_sc_dat_ops
= {
618 .collect_data
= nilfs_collect_dat_data
,
619 .collect_node
= nilfs_collect_file_node
,
620 .collect_bmap
= nilfs_collect_dat_bmap
,
621 .write_data_binfo
= nilfs_write_dat_data_binfo
,
622 .write_node_binfo
= nilfs_write_dat_node_binfo
,
625 struct nilfs_sc_operations nilfs_sc_dsync_ops
= {
626 .collect_data
= nilfs_collect_file_data
,
627 .collect_node
= NULL
,
628 .collect_bmap
= NULL
,
629 .write_data_binfo
= nilfs_write_file_data_binfo
,
630 .write_node_binfo
= NULL
,
633 static size_t nilfs_lookup_dirty_data_buffers(struct inode
*inode
,
634 struct list_head
*listp
,
636 loff_t start
, loff_t end
)
638 struct address_space
*mapping
= inode
->i_mapping
;
640 pgoff_t index
= 0, last
= ULONG_MAX
;
644 if (unlikely(start
!= 0 || end
!= LLONG_MAX
)) {
646 * A valid range is given for sync-ing data pages. The
647 * range is rounded to per-page; extra dirty buffers
648 * may be included if blocksize < pagesize.
650 index
= start
>> PAGE_SHIFT
;
651 last
= end
>> PAGE_SHIFT
;
653 pagevec_init(&pvec
, 0);
655 if (unlikely(index
> last
) ||
656 !pagevec_lookup_tag(&pvec
, mapping
, &index
, PAGECACHE_TAG_DIRTY
,
657 min_t(pgoff_t
, last
- index
,
658 PAGEVEC_SIZE
- 1) + 1))
661 for (i
= 0; i
< pagevec_count(&pvec
); i
++) {
662 struct buffer_head
*bh
, *head
;
663 struct page
*page
= pvec
.pages
[i
];
665 if (unlikely(page
->index
> last
))
670 if (!page_has_buffers(page
))
671 create_empty_buffers(page
,
672 1 << inode
->i_blkbits
, 0);
676 bh
= head
= page_buffers(page
);
678 if (!buffer_dirty(bh
))
681 list_add_tail(&bh
->b_assoc_buffers
, listp
);
683 if (unlikely(ndirties
>= nlimit
)) {
684 pagevec_release(&pvec
);
688 } while (bh
= bh
->b_this_page
, bh
!= head
);
690 pagevec_release(&pvec
);
695 static void nilfs_lookup_dirty_node_buffers(struct inode
*inode
,
696 struct list_head
*listp
)
698 struct nilfs_inode_info
*ii
= NILFS_I(inode
);
699 struct address_space
*mapping
= &ii
->i_btnode_cache
;
701 struct buffer_head
*bh
, *head
;
705 pagevec_init(&pvec
, 0);
707 while (pagevec_lookup_tag(&pvec
, mapping
, &index
, PAGECACHE_TAG_DIRTY
,
709 for (i
= 0; i
< pagevec_count(&pvec
); i
++) {
710 bh
= head
= page_buffers(pvec
.pages
[i
]);
712 if (buffer_dirty(bh
)) {
714 list_add_tail(&bh
->b_assoc_buffers
,
717 bh
= bh
->b_this_page
;
718 } while (bh
!= head
);
720 pagevec_release(&pvec
);
725 static void nilfs_dispose_list(struct nilfs_sb_info
*sbi
,
726 struct list_head
*head
, int force
)
728 struct nilfs_inode_info
*ii
, *n
;
729 struct nilfs_inode_info
*ivec
[SC_N_INODEVEC
], **pii
;
732 while (!list_empty(head
)) {
733 spin_lock(&sbi
->s_inode_lock
);
734 list_for_each_entry_safe(ii
, n
, head
, i_dirty
) {
735 list_del_init(&ii
->i_dirty
);
737 if (unlikely(ii
->i_bh
)) {
741 } else if (test_bit(NILFS_I_DIRTY
, &ii
->i_state
)) {
742 set_bit(NILFS_I_QUEUED
, &ii
->i_state
);
743 list_add_tail(&ii
->i_dirty
,
744 &sbi
->s_dirty_files
);
748 if (nv
== SC_N_INODEVEC
)
751 spin_unlock(&sbi
->s_inode_lock
);
753 for (pii
= ivec
; nv
> 0; pii
++, nv
--)
754 iput(&(*pii
)->vfs_inode
);
758 static int nilfs_test_metadata_dirty(struct nilfs_sb_info
*sbi
)
760 struct the_nilfs
*nilfs
= sbi
->s_nilfs
;
763 if (nilfs_mdt_fetch_dirty(sbi
->s_ifile
))
765 if (nilfs_mdt_fetch_dirty(nilfs
->ns_cpfile
))
767 if (nilfs_mdt_fetch_dirty(nilfs
->ns_sufile
))
769 if (ret
|| nilfs_doing_gc())
770 if (nilfs_mdt_fetch_dirty(nilfs_dat_inode(nilfs
)))
775 static int nilfs_segctor_clean(struct nilfs_sc_info
*sci
)
777 return list_empty(&sci
->sc_dirty_files
) &&
778 !test_bit(NILFS_SC_DIRTY
, &sci
->sc_flags
) &&
779 sci
->sc_nfreesegs
== 0 &&
780 (!nilfs_doing_gc() || list_empty(&sci
->sc_gc_inodes
));
783 static int nilfs_segctor_confirm(struct nilfs_sc_info
*sci
)
785 struct nilfs_sb_info
*sbi
= sci
->sc_sbi
;
788 if (nilfs_test_metadata_dirty(sbi
))
789 set_bit(NILFS_SC_DIRTY
, &sci
->sc_flags
);
791 spin_lock(&sbi
->s_inode_lock
);
792 if (list_empty(&sbi
->s_dirty_files
) && nilfs_segctor_clean(sci
))
795 spin_unlock(&sbi
->s_inode_lock
);
799 static void nilfs_segctor_clear_metadata_dirty(struct nilfs_sc_info
*sci
)
801 struct nilfs_sb_info
*sbi
= sci
->sc_sbi
;
802 struct the_nilfs
*nilfs
= sbi
->s_nilfs
;
804 nilfs_mdt_clear_dirty(sbi
->s_ifile
);
805 nilfs_mdt_clear_dirty(nilfs
->ns_cpfile
);
806 nilfs_mdt_clear_dirty(nilfs
->ns_sufile
);
807 nilfs_mdt_clear_dirty(nilfs_dat_inode(nilfs
));
810 static int nilfs_segctor_create_checkpoint(struct nilfs_sc_info
*sci
)
812 struct the_nilfs
*nilfs
= sci
->sc_sbi
->s_nilfs
;
813 struct buffer_head
*bh_cp
;
814 struct nilfs_checkpoint
*raw_cp
;
817 /* XXX: this interface will be changed */
818 err
= nilfs_cpfile_get_checkpoint(nilfs
->ns_cpfile
, nilfs
->ns_cno
, 1,
821 /* The following code is duplicated with cpfile. But, it is
822 needed to collect the checkpoint even if it was not newly
824 nilfs_mdt_mark_buffer_dirty(bh_cp
);
825 nilfs_mdt_mark_dirty(nilfs
->ns_cpfile
);
826 nilfs_cpfile_put_checkpoint(
827 nilfs
->ns_cpfile
, nilfs
->ns_cno
, bh_cp
);
829 WARN_ON(err
== -EINVAL
|| err
== -ENOENT
);
834 static int nilfs_segctor_fill_in_checkpoint(struct nilfs_sc_info
*sci
)
836 struct nilfs_sb_info
*sbi
= sci
->sc_sbi
;
837 struct the_nilfs
*nilfs
= sbi
->s_nilfs
;
838 struct buffer_head
*bh_cp
;
839 struct nilfs_checkpoint
*raw_cp
;
842 err
= nilfs_cpfile_get_checkpoint(nilfs
->ns_cpfile
, nilfs
->ns_cno
, 0,
845 WARN_ON(err
== -EINVAL
|| err
== -ENOENT
);
848 raw_cp
->cp_snapshot_list
.ssl_next
= 0;
849 raw_cp
->cp_snapshot_list
.ssl_prev
= 0;
850 raw_cp
->cp_inodes_count
=
851 cpu_to_le64(atomic_read(&sbi
->s_inodes_count
));
852 raw_cp
->cp_blocks_count
=
853 cpu_to_le64(atomic_read(&sbi
->s_blocks_count
));
854 raw_cp
->cp_nblk_inc
=
855 cpu_to_le64(sci
->sc_nblk_inc
+ sci
->sc_nblk_this_inc
);
856 raw_cp
->cp_create
= cpu_to_le64(sci
->sc_seg_ctime
);
857 raw_cp
->cp_cno
= cpu_to_le64(nilfs
->ns_cno
);
859 if (test_bit(NILFS_SC_HAVE_DELTA
, &sci
->sc_flags
))
860 nilfs_checkpoint_clear_minor(raw_cp
);
862 nilfs_checkpoint_set_minor(raw_cp
);
864 nilfs_write_inode_common(sbi
->s_ifile
, &raw_cp
->cp_ifile_inode
, 1);
865 nilfs_cpfile_put_checkpoint(nilfs
->ns_cpfile
, nilfs
->ns_cno
, bh_cp
);
872 static void nilfs_fill_in_file_bmap(struct inode
*ifile
,
873 struct nilfs_inode_info
*ii
)
876 struct buffer_head
*ibh
;
877 struct nilfs_inode
*raw_inode
;
879 if (test_bit(NILFS_I_BMAP
, &ii
->i_state
)) {
882 raw_inode
= nilfs_ifile_map_inode(ifile
, ii
->vfs_inode
.i_ino
,
884 nilfs_bmap_write(ii
->i_bmap
, raw_inode
);
885 nilfs_ifile_unmap_inode(ifile
, ii
->vfs_inode
.i_ino
, ibh
);
889 static void nilfs_segctor_fill_in_file_bmap(struct nilfs_sc_info
*sci
,
892 struct nilfs_inode_info
*ii
;
894 list_for_each_entry(ii
, &sci
->sc_dirty_files
, i_dirty
) {
895 nilfs_fill_in_file_bmap(ifile
, ii
);
896 set_bit(NILFS_I_COLLECTED
, &ii
->i_state
);
900 static void nilfs_segctor_fill_in_super_root(struct nilfs_sc_info
*sci
,
901 struct the_nilfs
*nilfs
)
903 struct buffer_head
*bh_sr
;
904 struct nilfs_super_root
*raw_sr
;
905 unsigned isz
= nilfs
->ns_inode_size
;
907 bh_sr
= NILFS_LAST_SEGBUF(&sci
->sc_segbufs
)->sb_super_root
;
908 raw_sr
= (struct nilfs_super_root
*)bh_sr
->b_data
;
910 raw_sr
->sr_bytes
= cpu_to_le16(NILFS_SR_BYTES
);
911 raw_sr
->sr_nongc_ctime
912 = cpu_to_le64(nilfs_doing_gc() ?
913 nilfs
->ns_nongc_ctime
: sci
->sc_seg_ctime
);
914 raw_sr
->sr_flags
= 0;
916 nilfs_write_inode_common(nilfs_dat_inode(nilfs
), (void *)raw_sr
+
917 NILFS_SR_DAT_OFFSET(isz
), 1);
918 nilfs_write_inode_common(nilfs
->ns_cpfile
, (void *)raw_sr
+
919 NILFS_SR_CPFILE_OFFSET(isz
), 1);
920 nilfs_write_inode_common(nilfs
->ns_sufile
, (void *)raw_sr
+
921 NILFS_SR_SUFILE_OFFSET(isz
), 1);
924 static void nilfs_redirty_inodes(struct list_head
*head
)
926 struct nilfs_inode_info
*ii
;
928 list_for_each_entry(ii
, head
, i_dirty
) {
929 if (test_bit(NILFS_I_COLLECTED
, &ii
->i_state
))
930 clear_bit(NILFS_I_COLLECTED
, &ii
->i_state
);
934 static void nilfs_drop_collected_inodes(struct list_head
*head
)
936 struct nilfs_inode_info
*ii
;
938 list_for_each_entry(ii
, head
, i_dirty
) {
939 if (!test_and_clear_bit(NILFS_I_COLLECTED
, &ii
->i_state
))
942 clear_bit(NILFS_I_INODE_DIRTY
, &ii
->i_state
);
943 set_bit(NILFS_I_UPDATED
, &ii
->i_state
);
947 static int nilfs_segctor_apply_buffers(struct nilfs_sc_info
*sci
,
949 struct list_head
*listp
,
950 int (*collect
)(struct nilfs_sc_info
*,
951 struct buffer_head
*,
954 struct buffer_head
*bh
, *n
;
958 list_for_each_entry_safe(bh
, n
, listp
, b_assoc_buffers
) {
959 list_del_init(&bh
->b_assoc_buffers
);
960 err
= collect(sci
, bh
, inode
);
963 goto dispose_buffers
;
969 while (!list_empty(listp
)) {
970 bh
= list_entry(listp
->next
, struct buffer_head
,
972 list_del_init(&bh
->b_assoc_buffers
);
978 static size_t nilfs_segctor_buffer_rest(struct nilfs_sc_info
*sci
)
980 /* Remaining number of blocks within segment buffer */
981 return sci
->sc_segbuf_nblocks
-
982 (sci
->sc_nblk_this_inc
+ sci
->sc_curseg
->sb_sum
.nblocks
);
985 static int nilfs_segctor_scan_file(struct nilfs_sc_info
*sci
,
987 struct nilfs_sc_operations
*sc_ops
)
989 LIST_HEAD(data_buffers
);
990 LIST_HEAD(node_buffers
);
993 if (!(sci
->sc_stage
.flags
& NILFS_CF_NODE
)) {
994 size_t n
, rest
= nilfs_segctor_buffer_rest(sci
);
996 n
= nilfs_lookup_dirty_data_buffers(
997 inode
, &data_buffers
, rest
+ 1, 0, LLONG_MAX
);
999 err
= nilfs_segctor_apply_buffers(
1000 sci
, inode
, &data_buffers
,
1001 sc_ops
->collect_data
);
1002 BUG_ON(!err
); /* always receive -E2BIG or true error */
1006 nilfs_lookup_dirty_node_buffers(inode
, &node_buffers
);
1008 if (!(sci
->sc_stage
.flags
& NILFS_CF_NODE
)) {
1009 err
= nilfs_segctor_apply_buffers(
1010 sci
, inode
, &data_buffers
, sc_ops
->collect_data
);
1011 if (unlikely(err
)) {
1012 /* dispose node list */
1013 nilfs_segctor_apply_buffers(
1014 sci
, inode
, &node_buffers
, NULL
);
1017 sci
->sc_stage
.flags
|= NILFS_CF_NODE
;
1020 err
= nilfs_segctor_apply_buffers(
1021 sci
, inode
, &node_buffers
, sc_ops
->collect_node
);
1025 nilfs_bmap_lookup_dirty_buffers(NILFS_I(inode
)->i_bmap
, &node_buffers
);
1026 err
= nilfs_segctor_apply_buffers(
1027 sci
, inode
, &node_buffers
, sc_ops
->collect_bmap
);
1031 nilfs_segctor_end_finfo(sci
, inode
);
1032 sci
->sc_stage
.flags
&= ~NILFS_CF_NODE
;
1038 static int nilfs_segctor_scan_file_dsync(struct nilfs_sc_info
*sci
,
1039 struct inode
*inode
)
1041 LIST_HEAD(data_buffers
);
1042 size_t n
, rest
= nilfs_segctor_buffer_rest(sci
);
1045 n
= nilfs_lookup_dirty_data_buffers(inode
, &data_buffers
, rest
+ 1,
1046 sci
->sc_dsync_start
,
1049 err
= nilfs_segctor_apply_buffers(sci
, inode
, &data_buffers
,
1050 nilfs_collect_file_data
);
1052 nilfs_segctor_end_finfo(sci
, inode
);
1054 /* always receive -E2BIG or true error if n > rest */
1059 static int nilfs_segctor_collect_blocks(struct nilfs_sc_info
*sci
, int mode
)
1061 struct nilfs_sb_info
*sbi
= sci
->sc_sbi
;
1062 struct the_nilfs
*nilfs
= sbi
->s_nilfs
;
1063 struct list_head
*head
;
1064 struct nilfs_inode_info
*ii
;
1068 switch (sci
->sc_stage
.scnt
) {
1071 sci
->sc_stage
.flags
= 0;
1073 if (!test_bit(NILFS_SC_UNCLOSED
, &sci
->sc_flags
)) {
1074 sci
->sc_nblk_inc
= 0;
1075 sci
->sc_curseg
->sb_sum
.flags
= NILFS_SS_LOGBGN
;
1076 if (mode
== SC_LSEG_DSYNC
) {
1077 sci
->sc_stage
.scnt
= NILFS_ST_DSYNC
;
1082 sci
->sc_stage
.dirty_file_ptr
= NULL
;
1083 sci
->sc_stage
.gc_inode_ptr
= NULL
;
1084 if (mode
== SC_FLUSH_DAT
) {
1085 sci
->sc_stage
.scnt
= NILFS_ST_DAT
;
1088 sci
->sc_stage
.scnt
++; /* Fall through */
1090 if (nilfs_doing_gc()) {
1091 head
= &sci
->sc_gc_inodes
;
1092 ii
= list_prepare_entry(sci
->sc_stage
.gc_inode_ptr
,
1094 list_for_each_entry_continue(ii
, head
, i_dirty
) {
1095 err
= nilfs_segctor_scan_file(
1096 sci
, &ii
->vfs_inode
,
1097 &nilfs_sc_file_ops
);
1098 if (unlikely(err
)) {
1099 sci
->sc_stage
.gc_inode_ptr
= list_entry(
1101 struct nilfs_inode_info
,
1105 set_bit(NILFS_I_COLLECTED
, &ii
->i_state
);
1107 sci
->sc_stage
.gc_inode_ptr
= NULL
;
1109 sci
->sc_stage
.scnt
++; /* Fall through */
1111 head
= &sci
->sc_dirty_files
;
1112 ii
= list_prepare_entry(sci
->sc_stage
.dirty_file_ptr
, head
,
1114 list_for_each_entry_continue(ii
, head
, i_dirty
) {
1115 clear_bit(NILFS_I_DIRTY
, &ii
->i_state
);
1117 err
= nilfs_segctor_scan_file(sci
, &ii
->vfs_inode
,
1118 &nilfs_sc_file_ops
);
1119 if (unlikely(err
)) {
1120 sci
->sc_stage
.dirty_file_ptr
=
1121 list_entry(ii
->i_dirty
.prev
,
1122 struct nilfs_inode_info
,
1126 /* sci->sc_stage.dirty_file_ptr = NILFS_I(inode); */
1127 /* XXX: required ? */
1129 sci
->sc_stage
.dirty_file_ptr
= NULL
;
1130 if (mode
== SC_FLUSH_FILE
) {
1131 sci
->sc_stage
.scnt
= NILFS_ST_DONE
;
1134 sci
->sc_stage
.scnt
++;
1135 sci
->sc_stage
.flags
|= NILFS_CF_IFILE_STARTED
;
1137 case NILFS_ST_IFILE
:
1138 err
= nilfs_segctor_scan_file(sci
, sbi
->s_ifile
,
1139 &nilfs_sc_file_ops
);
1142 sci
->sc_stage
.scnt
++;
1143 /* Creating a checkpoint */
1144 err
= nilfs_segctor_create_checkpoint(sci
);
1148 case NILFS_ST_CPFILE
:
1149 err
= nilfs_segctor_scan_file(sci
, nilfs
->ns_cpfile
,
1150 &nilfs_sc_file_ops
);
1153 sci
->sc_stage
.scnt
++; /* Fall through */
1154 case NILFS_ST_SUFILE
:
1155 err
= nilfs_sufile_freev(nilfs
->ns_sufile
, sci
->sc_freesegs
,
1156 sci
->sc_nfreesegs
, &ndone
);
1157 if (unlikely(err
)) {
1158 nilfs_sufile_cancel_freev(nilfs
->ns_sufile
,
1159 sci
->sc_freesegs
, ndone
,
1163 sci
->sc_stage
.flags
|= NILFS_CF_SUFREED
;
1165 err
= nilfs_segctor_scan_file(sci
, nilfs
->ns_sufile
,
1166 &nilfs_sc_file_ops
);
1169 sci
->sc_stage
.scnt
++; /* Fall through */
1172 err
= nilfs_segctor_scan_file(sci
, nilfs_dat_inode(nilfs
),
1176 if (mode
== SC_FLUSH_DAT
) {
1177 sci
->sc_stage
.scnt
= NILFS_ST_DONE
;
1180 sci
->sc_stage
.scnt
++; /* Fall through */
1182 if (mode
== SC_LSEG_SR
) {
1183 /* Appending a super root */
1184 err
= nilfs_segctor_add_super_root(sci
);
1188 /* End of a logical segment */
1189 sci
->sc_curseg
->sb_sum
.flags
|= NILFS_SS_LOGEND
;
1190 sci
->sc_stage
.scnt
= NILFS_ST_DONE
;
1192 case NILFS_ST_DSYNC
:
1194 sci
->sc_curseg
->sb_sum
.flags
|= NILFS_SS_SYNDT
;
1195 ii
= sci
->sc_dsync_inode
;
1196 if (!test_bit(NILFS_I_BUSY
, &ii
->i_state
))
1199 err
= nilfs_segctor_scan_file_dsync(sci
, &ii
->vfs_inode
);
1202 sci
->sc_curseg
->sb_sum
.flags
|= NILFS_SS_LOGEND
;
1203 sci
->sc_stage
.scnt
= NILFS_ST_DONE
;
1216 * nilfs_segctor_begin_construction - setup segment buffer to make a new log
1217 * @sci: nilfs_sc_info
1218 * @nilfs: nilfs object
1220 static int nilfs_segctor_begin_construction(struct nilfs_sc_info
*sci
,
1221 struct the_nilfs
*nilfs
)
1223 struct nilfs_segment_buffer
*segbuf
, *prev
;
1227 segbuf
= nilfs_segbuf_new(sci
->sc_super
);
1228 if (unlikely(!segbuf
))
1231 if (list_empty(&sci
->sc_write_logs
)) {
1232 nilfs_segbuf_map(segbuf
, nilfs
->ns_segnum
,
1233 nilfs
->ns_pseg_offset
, nilfs
);
1234 if (segbuf
->sb_rest_blocks
< NILFS_PSEG_MIN_BLOCKS
) {
1235 nilfs_shift_to_next_segment(nilfs
);
1236 nilfs_segbuf_map(segbuf
, nilfs
->ns_segnum
, 0, nilfs
);
1239 segbuf
->sb_sum
.seg_seq
= nilfs
->ns_seg_seq
;
1240 nextnum
= nilfs
->ns_nextnum
;
1242 if (nilfs
->ns_segnum
== nilfs
->ns_nextnum
)
1243 /* Start from the head of a new full segment */
1247 prev
= NILFS_LAST_SEGBUF(&sci
->sc_write_logs
);
1248 nilfs_segbuf_map_cont(segbuf
, prev
);
1249 segbuf
->sb_sum
.seg_seq
= prev
->sb_sum
.seg_seq
;
1250 nextnum
= prev
->sb_nextnum
;
1252 if (segbuf
->sb_rest_blocks
< NILFS_PSEG_MIN_BLOCKS
) {
1253 nilfs_segbuf_map(segbuf
, prev
->sb_nextnum
, 0, nilfs
);
1254 segbuf
->sb_sum
.seg_seq
++;
1259 err
= nilfs_sufile_mark_dirty(nilfs
->ns_sufile
, segbuf
->sb_segnum
);
1264 err
= nilfs_sufile_alloc(nilfs
->ns_sufile
, &nextnum
);
1268 nilfs_segbuf_set_next_segnum(segbuf
, nextnum
, nilfs
);
1270 BUG_ON(!list_empty(&sci
->sc_segbufs
));
1271 list_add_tail(&segbuf
->sb_list
, &sci
->sc_segbufs
);
1272 sci
->sc_segbuf_nblocks
= segbuf
->sb_rest_blocks
;
1276 nilfs_segbuf_free(segbuf
);
1280 static int nilfs_segctor_extend_segments(struct nilfs_sc_info
*sci
,
1281 struct the_nilfs
*nilfs
, int nadd
)
1283 struct nilfs_segment_buffer
*segbuf
, *prev
;
1284 struct inode
*sufile
= nilfs
->ns_sufile
;
1289 prev
= NILFS_LAST_SEGBUF(&sci
->sc_segbufs
);
1291 * Since the segment specified with nextnum might be allocated during
1292 * the previous construction, the buffer including its segusage may
1293 * not be dirty. The following call ensures that the buffer is dirty
1294 * and will pin the buffer on memory until the sufile is written.
1296 err
= nilfs_sufile_mark_dirty(sufile
, prev
->sb_nextnum
);
1300 for (i
= 0; i
< nadd
; i
++) {
1301 /* extend segment info */
1303 segbuf
= nilfs_segbuf_new(sci
->sc_super
);
1304 if (unlikely(!segbuf
))
1307 /* map this buffer to region of segment on-disk */
1308 nilfs_segbuf_map(segbuf
, prev
->sb_nextnum
, 0, nilfs
);
1309 sci
->sc_segbuf_nblocks
+= segbuf
->sb_rest_blocks
;
1311 /* allocate the next next full segment */
1312 err
= nilfs_sufile_alloc(sufile
, &nextnextnum
);
1316 segbuf
->sb_sum
.seg_seq
= prev
->sb_sum
.seg_seq
+ 1;
1317 nilfs_segbuf_set_next_segnum(segbuf
, nextnextnum
, nilfs
);
1319 list_add_tail(&segbuf
->sb_list
, &list
);
1322 list_splice_tail(&list
, &sci
->sc_segbufs
);
1326 nilfs_segbuf_free(segbuf
);
1328 list_for_each_entry(segbuf
, &list
, sb_list
) {
1329 ret
= nilfs_sufile_free(sufile
, segbuf
->sb_nextnum
);
1330 WARN_ON(ret
); /* never fails */
1332 nilfs_destroy_logs(&list
);
1336 static void nilfs_free_incomplete_logs(struct list_head
*logs
,
1337 struct the_nilfs
*nilfs
)
1339 struct nilfs_segment_buffer
*segbuf
, *prev
;
1340 struct inode
*sufile
= nilfs
->ns_sufile
;
1343 segbuf
= NILFS_FIRST_SEGBUF(logs
);
1344 if (nilfs
->ns_nextnum
!= segbuf
->sb_nextnum
) {
1345 ret
= nilfs_sufile_free(sufile
, segbuf
->sb_nextnum
);
1346 WARN_ON(ret
); /* never fails */
1348 if (atomic_read(&segbuf
->sb_err
)) {
1349 /* Case 1: The first segment failed */
1350 if (segbuf
->sb_pseg_start
!= segbuf
->sb_fseg_start
)
1351 /* Case 1a: Partial segment appended into an existing
1353 nilfs_terminate_segment(nilfs
, segbuf
->sb_fseg_start
,
1354 segbuf
->sb_fseg_end
);
1355 else /* Case 1b: New full segment */
1356 set_nilfs_discontinued(nilfs
);
1360 list_for_each_entry_continue(segbuf
, logs
, sb_list
) {
1361 if (prev
->sb_nextnum
!= segbuf
->sb_nextnum
) {
1362 ret
= nilfs_sufile_free(sufile
, segbuf
->sb_nextnum
);
1363 WARN_ON(ret
); /* never fails */
1365 if (atomic_read(&segbuf
->sb_err
) &&
1366 segbuf
->sb_segnum
!= nilfs
->ns_nextnum
)
1367 /* Case 2: extended segment (!= next) failed */
1368 nilfs_sufile_set_error(sufile
, segbuf
->sb_segnum
);
1373 static void nilfs_segctor_update_segusage(struct nilfs_sc_info
*sci
,
1374 struct inode
*sufile
)
1376 struct nilfs_segment_buffer
*segbuf
;
1377 unsigned long live_blocks
;
1380 list_for_each_entry(segbuf
, &sci
->sc_segbufs
, sb_list
) {
1381 live_blocks
= segbuf
->sb_sum
.nblocks
+
1382 (segbuf
->sb_pseg_start
- segbuf
->sb_fseg_start
);
1383 ret
= nilfs_sufile_set_segment_usage(sufile
, segbuf
->sb_segnum
,
1386 WARN_ON(ret
); /* always succeed because the segusage is dirty */
1390 static void nilfs_cancel_segusage(struct list_head
*logs
, struct inode
*sufile
)
1392 struct nilfs_segment_buffer
*segbuf
;
1395 segbuf
= NILFS_FIRST_SEGBUF(logs
);
1396 ret
= nilfs_sufile_set_segment_usage(sufile
, segbuf
->sb_segnum
,
1397 segbuf
->sb_pseg_start
-
1398 segbuf
->sb_fseg_start
, 0);
1399 WARN_ON(ret
); /* always succeed because the segusage is dirty */
1401 list_for_each_entry_continue(segbuf
, logs
, sb_list
) {
1402 ret
= nilfs_sufile_set_segment_usage(sufile
, segbuf
->sb_segnum
,
1404 WARN_ON(ret
); /* always succeed */
1408 static void nilfs_segctor_truncate_segments(struct nilfs_sc_info
*sci
,
1409 struct nilfs_segment_buffer
*last
,
1410 struct inode
*sufile
)
1412 struct nilfs_segment_buffer
*segbuf
= last
;
1415 list_for_each_entry_continue(segbuf
, &sci
->sc_segbufs
, sb_list
) {
1416 sci
->sc_segbuf_nblocks
-= segbuf
->sb_rest_blocks
;
1417 ret
= nilfs_sufile_free(sufile
, segbuf
->sb_nextnum
);
1420 nilfs_truncate_logs(&sci
->sc_segbufs
, last
);
1424 static int nilfs_segctor_collect(struct nilfs_sc_info
*sci
,
1425 struct the_nilfs
*nilfs
, int mode
)
1427 struct nilfs_cstage prev_stage
= sci
->sc_stage
;
1430 /* Collection retry loop */
1432 sci
->sc_nblk_this_inc
= 0;
1433 sci
->sc_curseg
= NILFS_FIRST_SEGBUF(&sci
->sc_segbufs
);
1435 err
= nilfs_segctor_reset_segment_buffer(sci
);
1439 err
= nilfs_segctor_collect_blocks(sci
, mode
);
1440 sci
->sc_nblk_this_inc
+= sci
->sc_curseg
->sb_sum
.nblocks
;
1444 if (unlikely(err
!= -E2BIG
))
1447 /* The current segment is filled up */
1448 if (mode
!= SC_LSEG_SR
|| sci
->sc_stage
.scnt
< NILFS_ST_CPFILE
)
1451 nilfs_clear_logs(&sci
->sc_segbufs
);
1453 err
= nilfs_segctor_extend_segments(sci
, nilfs
, nadd
);
1457 if (sci
->sc_stage
.flags
& NILFS_CF_SUFREED
) {
1458 err
= nilfs_sufile_cancel_freev(nilfs
->ns_sufile
,
1462 WARN_ON(err
); /* do not happen */
1464 nadd
= min_t(int, nadd
<< 1, SC_MAX_SEGDELTA
);
1465 sci
->sc_stage
= prev_stage
;
1467 nilfs_segctor_truncate_segments(sci
, sci
->sc_curseg
, nilfs
->ns_sufile
);
1474 static void nilfs_list_replace_buffer(struct buffer_head
*old_bh
,
1475 struct buffer_head
*new_bh
)
1477 BUG_ON(!list_empty(&new_bh
->b_assoc_buffers
));
1479 list_replace_init(&old_bh
->b_assoc_buffers
, &new_bh
->b_assoc_buffers
);
1480 /* The caller must release old_bh */
1484 nilfs_segctor_update_payload_blocknr(struct nilfs_sc_info
*sci
,
1485 struct nilfs_segment_buffer
*segbuf
,
1488 struct inode
*inode
= NULL
;
1490 unsigned long nfinfo
= segbuf
->sb_sum
.nfinfo
;
1491 unsigned long nblocks
= 0, ndatablk
= 0;
1492 struct nilfs_sc_operations
*sc_op
= NULL
;
1493 struct nilfs_segsum_pointer ssp
;
1494 struct nilfs_finfo
*finfo
= NULL
;
1495 union nilfs_binfo binfo
;
1496 struct buffer_head
*bh
, *bh_org
;
1503 blocknr
= segbuf
->sb_pseg_start
+ segbuf
->sb_sum
.nsumblk
;
1504 ssp
.bh
= NILFS_SEGBUF_FIRST_BH(&segbuf
->sb_segsum_buffers
);
1505 ssp
.offset
= sizeof(struct nilfs_segment_summary
);
1507 list_for_each_entry(bh
, &segbuf
->sb_payload_buffers
, b_assoc_buffers
) {
1508 if (bh
== segbuf
->sb_super_root
)
1511 finfo
= nilfs_segctor_map_segsum_entry(
1512 sci
, &ssp
, sizeof(*finfo
));
1513 ino
= le64_to_cpu(finfo
->fi_ino
);
1514 nblocks
= le32_to_cpu(finfo
->fi_nblocks
);
1515 ndatablk
= le32_to_cpu(finfo
->fi_ndatablk
);
1517 if (buffer_nilfs_node(bh
))
1518 inode
= NILFS_BTNC_I(bh
->b_page
->mapping
);
1520 inode
= NILFS_AS_I(bh
->b_page
->mapping
);
1522 if (mode
== SC_LSEG_DSYNC
)
1523 sc_op
= &nilfs_sc_dsync_ops
;
1524 else if (ino
== NILFS_DAT_INO
)
1525 sc_op
= &nilfs_sc_dat_ops
;
1526 else /* file blocks */
1527 sc_op
= &nilfs_sc_file_ops
;
1531 err
= nilfs_bmap_assign(NILFS_I(inode
)->i_bmap
, &bh
, blocknr
,
1534 nilfs_list_replace_buffer(bh_org
, bh
);
1540 sc_op
->write_data_binfo(sci
, &ssp
, &binfo
);
1542 sc_op
->write_node_binfo(sci
, &ssp
, &binfo
);
1545 if (--nblocks
== 0) {
1549 } else if (ndatablk
> 0)
1556 err
= nilfs_handle_bmap_error(err
, __func__
, inode
, sci
->sc_super
);
1560 static int nilfs_segctor_assign(struct nilfs_sc_info
*sci
, int mode
)
1562 struct nilfs_segment_buffer
*segbuf
;
1565 list_for_each_entry(segbuf
, &sci
->sc_segbufs
, sb_list
) {
1566 err
= nilfs_segctor_update_payload_blocknr(sci
, segbuf
, mode
);
1569 nilfs_segbuf_fill_in_segsum(segbuf
);
1575 nilfs_copy_replace_page_buffers(struct page
*page
, struct list_head
*out
)
1577 struct page
*clone_page
;
1578 struct buffer_head
*bh
, *head
, *bh2
;
1581 bh
= head
= page_buffers(page
);
1583 clone_page
= nilfs_alloc_private_page(bh
->b_bdev
, bh
->b_size
, 0);
1584 if (unlikely(!clone_page
))
1587 bh2
= page_buffers(clone_page
);
1588 kaddr
= kmap_atomic(page
, KM_USER0
);
1590 if (list_empty(&bh
->b_assoc_buffers
))
1593 page_cache_get(clone_page
); /* for each bh */
1594 memcpy(bh2
->b_data
, kaddr
+ bh_offset(bh
), bh2
->b_size
);
1595 bh2
->b_blocknr
= bh
->b_blocknr
;
1596 list_replace(&bh
->b_assoc_buffers
, &bh2
->b_assoc_buffers
);
1597 list_add_tail(&bh
->b_assoc_buffers
, out
);
1598 } while (bh
= bh
->b_this_page
, bh2
= bh2
->b_this_page
, bh
!= head
);
1599 kunmap_atomic(kaddr
, KM_USER0
);
1601 if (!TestSetPageWriteback(clone_page
))
1602 inc_zone_page_state(clone_page
, NR_WRITEBACK
);
1603 unlock_page(clone_page
);
1608 static int nilfs_test_page_to_be_frozen(struct page
*page
)
1610 struct address_space
*mapping
= page
->mapping
;
1612 if (!mapping
|| !mapping
->host
|| S_ISDIR(mapping
->host
->i_mode
))
1615 if (page_mapped(page
)) {
1616 ClearPageChecked(page
);
1619 return PageChecked(page
);
1622 static int nilfs_begin_page_io(struct page
*page
, struct list_head
*out
)
1624 if (!page
|| PageWriteback(page
))
1625 /* For split b-tree node pages, this function may be called
1626 twice. We ignore the 2nd or later calls by this check. */
1630 clear_page_dirty_for_io(page
);
1631 set_page_writeback(page
);
1634 if (nilfs_test_page_to_be_frozen(page
)) {
1635 int err
= nilfs_copy_replace_page_buffers(page
, out
);
1642 static int nilfs_segctor_prepare_write(struct nilfs_sc_info
*sci
,
1643 struct page
**failed_page
)
1645 struct nilfs_segment_buffer
*segbuf
;
1646 struct page
*bd_page
= NULL
, *fs_page
= NULL
;
1647 struct list_head
*list
= &sci
->sc_copied_buffers
;
1650 *failed_page
= NULL
;
1651 list_for_each_entry(segbuf
, &sci
->sc_segbufs
, sb_list
) {
1652 struct buffer_head
*bh
;
1654 list_for_each_entry(bh
, &segbuf
->sb_segsum_buffers
,
1656 if (bh
->b_page
!= bd_page
) {
1659 clear_page_dirty_for_io(bd_page
);
1660 set_page_writeback(bd_page
);
1661 unlock_page(bd_page
);
1663 bd_page
= bh
->b_page
;
1667 list_for_each_entry(bh
, &segbuf
->sb_payload_buffers
,
1669 if (bh
== segbuf
->sb_super_root
) {
1670 if (bh
->b_page
!= bd_page
) {
1672 clear_page_dirty_for_io(bd_page
);
1673 set_page_writeback(bd_page
);
1674 unlock_page(bd_page
);
1675 bd_page
= bh
->b_page
;
1679 if (bh
->b_page
!= fs_page
) {
1680 err
= nilfs_begin_page_io(fs_page
, list
);
1681 if (unlikely(err
)) {
1682 *failed_page
= fs_page
;
1685 fs_page
= bh
->b_page
;
1691 clear_page_dirty_for_io(bd_page
);
1692 set_page_writeback(bd_page
);
1693 unlock_page(bd_page
);
1695 err
= nilfs_begin_page_io(fs_page
, list
);
1697 *failed_page
= fs_page
;
1702 static int nilfs_segctor_write(struct nilfs_sc_info
*sci
,
1703 struct the_nilfs
*nilfs
)
1707 ret
= nilfs_write_logs(&sci
->sc_segbufs
, nilfs
);
1708 list_splice_tail_init(&sci
->sc_segbufs
, &sci
->sc_write_logs
);
1712 static void __nilfs_end_page_io(struct page
*page
, int err
)
1715 if (!nilfs_page_buffers_clean(page
))
1716 __set_page_dirty_nobuffers(page
);
1717 ClearPageError(page
);
1719 __set_page_dirty_nobuffers(page
);
1723 if (buffer_nilfs_allocated(page_buffers(page
))) {
1724 if (TestClearPageWriteback(page
))
1725 dec_zone_page_state(page
, NR_WRITEBACK
);
1727 end_page_writeback(page
);
1730 static void nilfs_end_page_io(struct page
*page
, int err
)
1735 if (buffer_nilfs_node(page_buffers(page
)) && !PageWriteback(page
)) {
1737 * For b-tree node pages, this function may be called twice
1738 * or more because they might be split in a segment.
1740 if (PageDirty(page
)) {
1742 * For pages holding split b-tree node buffers, dirty
1743 * flag on the buffers may be cleared discretely.
1744 * In that case, the page is once redirtied for
1745 * remaining buffers, and it must be cancelled if
1746 * all the buffers get cleaned later.
1749 if (nilfs_page_buffers_clean(page
))
1750 __nilfs_clear_page_dirty(page
);
1756 __nilfs_end_page_io(page
, err
);
1759 static void nilfs_clear_copied_buffers(struct list_head
*list
, int err
)
1761 struct buffer_head
*bh
, *head
;
1764 while (!list_empty(list
)) {
1765 bh
= list_entry(list
->next
, struct buffer_head
,
1768 page_cache_get(page
);
1769 head
= bh
= page_buffers(page
);
1771 if (!list_empty(&bh
->b_assoc_buffers
)) {
1772 list_del_init(&bh
->b_assoc_buffers
);
1774 set_buffer_uptodate(bh
);
1775 clear_buffer_dirty(bh
);
1776 clear_buffer_nilfs_volatile(bh
);
1778 brelse(bh
); /* for b_assoc_buffers */
1780 } while ((bh
= bh
->b_this_page
) != head
);
1782 __nilfs_end_page_io(page
, err
);
1783 page_cache_release(page
);
1787 static void nilfs_abort_logs(struct list_head
*logs
, struct page
*failed_page
,
1790 struct nilfs_segment_buffer
*segbuf
;
1791 struct page
*bd_page
= NULL
, *fs_page
= NULL
;
1792 struct buffer_head
*bh
;
1794 if (list_empty(logs
))
1797 list_for_each_entry(segbuf
, logs
, sb_list
) {
1798 list_for_each_entry(bh
, &segbuf
->sb_segsum_buffers
,
1800 if (bh
->b_page
!= bd_page
) {
1802 end_page_writeback(bd_page
);
1803 bd_page
= bh
->b_page
;
1807 list_for_each_entry(bh
, &segbuf
->sb_payload_buffers
,
1809 if (bh
== segbuf
->sb_super_root
) {
1810 if (bh
->b_page
!= bd_page
) {
1811 end_page_writeback(bd_page
);
1812 bd_page
= bh
->b_page
;
1816 if (bh
->b_page
!= fs_page
) {
1817 nilfs_end_page_io(fs_page
, err
);
1818 if (fs_page
&& fs_page
== failed_page
)
1820 fs_page
= bh
->b_page
;
1825 end_page_writeback(bd_page
);
1827 nilfs_end_page_io(fs_page
, err
);
1830 static void nilfs_segctor_abort_construction(struct nilfs_sc_info
*sci
,
1831 struct the_nilfs
*nilfs
, int err
)
1836 list_splice_tail_init(&sci
->sc_write_logs
, &logs
);
1837 ret
= nilfs_wait_on_logs(&logs
);
1838 nilfs_abort_logs(&logs
, NULL
, ret
? : err
);
1840 list_splice_tail_init(&sci
->sc_segbufs
, &logs
);
1841 nilfs_cancel_segusage(&logs
, nilfs
->ns_sufile
);
1842 nilfs_free_incomplete_logs(&logs
, nilfs
);
1843 nilfs_clear_copied_buffers(&sci
->sc_copied_buffers
, err
);
1845 if (sci
->sc_stage
.flags
& NILFS_CF_SUFREED
) {
1846 ret
= nilfs_sufile_cancel_freev(nilfs
->ns_sufile
,
1850 WARN_ON(ret
); /* do not happen */
1853 nilfs_destroy_logs(&logs
);
1856 static void nilfs_set_next_segment(struct the_nilfs
*nilfs
,
1857 struct nilfs_segment_buffer
*segbuf
)
1859 nilfs
->ns_segnum
= segbuf
->sb_segnum
;
1860 nilfs
->ns_nextnum
= segbuf
->sb_nextnum
;
1861 nilfs
->ns_pseg_offset
= segbuf
->sb_pseg_start
- segbuf
->sb_fseg_start
1862 + segbuf
->sb_sum
.nblocks
;
1863 nilfs
->ns_seg_seq
= segbuf
->sb_sum
.seg_seq
;
1864 nilfs
->ns_ctime
= segbuf
->sb_sum
.ctime
;
1867 static void nilfs_segctor_complete_write(struct nilfs_sc_info
*sci
)
1869 struct nilfs_segment_buffer
*segbuf
;
1870 struct page
*bd_page
= NULL
, *fs_page
= NULL
;
1871 struct the_nilfs
*nilfs
= sci
->sc_sbi
->s_nilfs
;
1872 int update_sr
= false;
1874 list_for_each_entry(segbuf
, &sci
->sc_write_logs
, sb_list
) {
1875 struct buffer_head
*bh
;
1877 list_for_each_entry(bh
, &segbuf
->sb_segsum_buffers
,
1879 set_buffer_uptodate(bh
);
1880 clear_buffer_dirty(bh
);
1881 if (bh
->b_page
!= bd_page
) {
1883 end_page_writeback(bd_page
);
1884 bd_page
= bh
->b_page
;
1888 * We assume that the buffers which belong to the same page
1889 * continue over the buffer list.
1890 * Under this assumption, the last BHs of pages is
1891 * identifiable by the discontinuity of bh->b_page
1892 * (page != fs_page).
1894 * For B-tree node blocks, however, this assumption is not
1895 * guaranteed. The cleanup code of B-tree node pages needs
1898 list_for_each_entry(bh
, &segbuf
->sb_payload_buffers
,
1900 set_buffer_uptodate(bh
);
1901 clear_buffer_dirty(bh
);
1902 clear_buffer_nilfs_volatile(bh
);
1903 if (bh
== segbuf
->sb_super_root
) {
1904 if (bh
->b_page
!= bd_page
) {
1905 end_page_writeback(bd_page
);
1906 bd_page
= bh
->b_page
;
1911 if (bh
->b_page
!= fs_page
) {
1912 nilfs_end_page_io(fs_page
, 0);
1913 fs_page
= bh
->b_page
;
1917 if (!NILFS_SEG_SIMPLEX(&segbuf
->sb_sum
)) {
1918 if (NILFS_SEG_LOGBGN(&segbuf
->sb_sum
)) {
1919 set_bit(NILFS_SC_UNCLOSED
, &sci
->sc_flags
);
1920 sci
->sc_lseg_stime
= jiffies
;
1922 if (NILFS_SEG_LOGEND(&segbuf
->sb_sum
))
1923 clear_bit(NILFS_SC_UNCLOSED
, &sci
->sc_flags
);
1927 * Since pages may continue over multiple segment buffers,
1928 * end of the last page must be checked outside of the loop.
1931 end_page_writeback(bd_page
);
1933 nilfs_end_page_io(fs_page
, 0);
1935 nilfs_clear_copied_buffers(&sci
->sc_copied_buffers
, 0);
1937 nilfs_drop_collected_inodes(&sci
->sc_dirty_files
);
1939 if (nilfs_doing_gc()) {
1940 nilfs_drop_collected_inodes(&sci
->sc_gc_inodes
);
1942 nilfs_commit_gcdat_inode(nilfs
);
1944 nilfs
->ns_nongc_ctime
= sci
->sc_seg_ctime
;
1946 sci
->sc_nblk_inc
+= sci
->sc_nblk_this_inc
;
1948 segbuf
= NILFS_LAST_SEGBUF(&sci
->sc_write_logs
);
1949 nilfs_set_next_segment(nilfs
, segbuf
);
1952 nilfs_set_last_segment(nilfs
, segbuf
->sb_pseg_start
,
1953 segbuf
->sb_sum
.seg_seq
, nilfs
->ns_cno
++);
1954 set_nilfs_sb_dirty(nilfs
);
1956 clear_bit(NILFS_SC_HAVE_DELTA
, &sci
->sc_flags
);
1957 clear_bit(NILFS_SC_DIRTY
, &sci
->sc_flags
);
1958 set_bit(NILFS_SC_SUPER_ROOT
, &sci
->sc_flags
);
1959 nilfs_segctor_clear_metadata_dirty(sci
);
1961 clear_bit(NILFS_SC_SUPER_ROOT
, &sci
->sc_flags
);
1964 static int nilfs_segctor_wait(struct nilfs_sc_info
*sci
)
1968 ret
= nilfs_wait_on_logs(&sci
->sc_write_logs
);
1970 nilfs_segctor_complete_write(sci
);
1971 nilfs_destroy_logs(&sci
->sc_write_logs
);
1976 static int nilfs_segctor_check_in_files(struct nilfs_sc_info
*sci
,
1977 struct nilfs_sb_info
*sbi
)
1979 struct nilfs_inode_info
*ii
, *n
;
1980 __u64 cno
= sbi
->s_nilfs
->ns_cno
;
1982 spin_lock(&sbi
->s_inode_lock
);
1984 list_for_each_entry_safe(ii
, n
, &sbi
->s_dirty_files
, i_dirty
) {
1986 struct buffer_head
*ibh
;
1989 spin_unlock(&sbi
->s_inode_lock
);
1990 err
= nilfs_ifile_get_inode_block(
1991 sbi
->s_ifile
, ii
->vfs_inode
.i_ino
, &ibh
);
1992 if (unlikely(err
)) {
1993 nilfs_warning(sbi
->s_super
, __func__
,
1994 "failed to get inode block.\n");
1997 nilfs_mdt_mark_buffer_dirty(ibh
);
1998 nilfs_mdt_mark_dirty(sbi
->s_ifile
);
1999 spin_lock(&sbi
->s_inode_lock
);
2000 if (likely(!ii
->i_bh
))
2008 clear_bit(NILFS_I_QUEUED
, &ii
->i_state
);
2009 set_bit(NILFS_I_BUSY
, &ii
->i_state
);
2010 list_del(&ii
->i_dirty
);
2011 list_add_tail(&ii
->i_dirty
, &sci
->sc_dirty_files
);
2013 spin_unlock(&sbi
->s_inode_lock
);
2015 NILFS_I(sbi
->s_ifile
)->i_cno
= cno
;
2020 static void nilfs_segctor_check_out_files(struct nilfs_sc_info
*sci
,
2021 struct nilfs_sb_info
*sbi
)
2023 struct nilfs_transaction_info
*ti
= current
->journal_info
;
2024 struct nilfs_inode_info
*ii
, *n
;
2025 __u64 cno
= sbi
->s_nilfs
->ns_cno
;
2027 spin_lock(&sbi
->s_inode_lock
);
2028 list_for_each_entry_safe(ii
, n
, &sci
->sc_dirty_files
, i_dirty
) {
2029 if (!test_and_clear_bit(NILFS_I_UPDATED
, &ii
->i_state
) ||
2030 test_bit(NILFS_I_DIRTY
, &ii
->i_state
)) {
2031 /* The current checkpoint number (=nilfs->ns_cno) is
2032 changed between check-in and check-out only if the
2033 super root is written out. So, we can update i_cno
2034 for the inodes that remain in the dirty list. */
2038 clear_bit(NILFS_I_BUSY
, &ii
->i_state
);
2041 list_del(&ii
->i_dirty
);
2042 list_add_tail(&ii
->i_dirty
, &ti
->ti_garbage
);
2044 spin_unlock(&sbi
->s_inode_lock
);
2048 * Main procedure of segment constructor
2050 static int nilfs_segctor_do_construct(struct nilfs_sc_info
*sci
, int mode
)
2052 struct nilfs_sb_info
*sbi
= sci
->sc_sbi
;
2053 struct the_nilfs
*nilfs
= sbi
->s_nilfs
;
2054 struct page
*failed_page
;
2057 sci
->sc_stage
.scnt
= NILFS_ST_INIT
;
2059 err
= nilfs_segctor_check_in_files(sci
, sbi
);
2063 if (nilfs_test_metadata_dirty(sbi
))
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_SEG_EMPTY(&sci
->sc_curseg
->sb_sum
)) {
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
, sbi
->s_ifile
);
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_timer
&& !(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
);
2371 del_timer_sync(sci
->sc_timer
);
2375 * nilfs_segctor_notify - notify the result of request to caller threads
2376 * @sci: segment constructor object
2377 * @mode: mode of log forming
2378 * @err: error code to be notified
2380 static void nilfs_segctor_notify(struct nilfs_sc_info
*sci
, int mode
, int err
)
2382 /* Clear requests (even when the construction failed) */
2383 spin_lock(&sci
->sc_state_lock
);
2385 if (mode
== SC_LSEG_SR
) {
2386 sci
->sc_state
&= ~NILFS_SEGCTOR_COMMIT
;
2387 sci
->sc_seq_done
= sci
->sc_seq_accepted
;
2388 nilfs_segctor_wakeup(sci
, err
);
2389 sci
->sc_flush_request
= 0;
2391 if (mode
== SC_FLUSH_FILE
)
2392 sci
->sc_flush_request
&= ~FLUSH_FILE_BIT
;
2393 else if (mode
== SC_FLUSH_DAT
)
2394 sci
->sc_flush_request
&= ~FLUSH_DAT_BIT
;
2396 /* re-enable timer if checkpoint creation was not done */
2397 if (sci
->sc_timer
&& (sci
->sc_state
& NILFS_SEGCTOR_COMMIT
) &&
2398 time_before(jiffies
, sci
->sc_timer
->expires
))
2399 add_timer(sci
->sc_timer
);
2401 spin_unlock(&sci
->sc_state_lock
);
2405 * nilfs_segctor_construct - form logs and write them to disk
2406 * @sci: segment constructor object
2407 * @mode: mode of log forming
2409 static int nilfs_segctor_construct(struct nilfs_sc_info
*sci
, int mode
)
2411 struct nilfs_sb_info
*sbi
= sci
->sc_sbi
;
2412 struct the_nilfs
*nilfs
= sbi
->s_nilfs
;
2415 nilfs_segctor_accept(sci
);
2417 if (nilfs_discontinued(nilfs
))
2419 if (!nilfs_segctor_confirm(sci
))
2420 err
= nilfs_segctor_do_construct(sci
, mode
);
2423 if (mode
!= SC_FLUSH_DAT
)
2424 atomic_set(&nilfs
->ns_ndirtyblks
, 0);
2425 if (test_bit(NILFS_SC_SUPER_ROOT
, &sci
->sc_flags
) &&
2426 nilfs_discontinued(nilfs
)) {
2427 down_write(&nilfs
->ns_sem
);
2428 err
= nilfs_commit_super(
2429 sbi
, nilfs_altsb_need_update(nilfs
));
2430 up_write(&nilfs
->ns_sem
);
2434 nilfs_segctor_notify(sci
, mode
, err
);
2438 static void nilfs_construction_timeout(unsigned long data
)
2440 struct task_struct
*p
= (struct task_struct
*)data
;
2445 nilfs_remove_written_gcinodes(struct the_nilfs
*nilfs
, struct list_head
*head
)
2447 struct nilfs_inode_info
*ii
, *n
;
2449 list_for_each_entry_safe(ii
, n
, head
, i_dirty
) {
2450 if (!test_bit(NILFS_I_UPDATED
, &ii
->i_state
))
2452 hlist_del_init(&ii
->vfs_inode
.i_hash
);
2453 list_del_init(&ii
->i_dirty
);
2454 nilfs_clear_gcinode(&ii
->vfs_inode
);
2458 int nilfs_clean_segments(struct super_block
*sb
, struct nilfs_argv
*argv
,
2461 struct nilfs_sb_info
*sbi
= NILFS_SB(sb
);
2462 struct nilfs_sc_info
*sci
= NILFS_SC(sbi
);
2463 struct the_nilfs
*nilfs
= sbi
->s_nilfs
;
2464 struct nilfs_transaction_info ti
;
2470 nilfs_transaction_lock(sbi
, &ti
, 1);
2472 err
= nilfs_init_gcdat_inode(nilfs
);
2476 err
= nilfs_ioctl_prepare_clean_segments(nilfs
, argv
, kbufs
);
2480 sci
->sc_freesegs
= kbufs
[4];
2481 sci
->sc_nfreesegs
= argv
[4].v_nmembs
;
2482 list_splice_tail_init(&nilfs
->ns_gc_inodes
, &sci
->sc_gc_inodes
);
2485 err
= nilfs_segctor_construct(sci
, SC_LSEG_SR
);
2486 nilfs_remove_written_gcinodes(nilfs
, &sci
->sc_gc_inodes
);
2491 nilfs_warning(sb
, __func__
,
2492 "segment construction failed. (err=%d)", err
);
2493 set_current_state(TASK_INTERRUPTIBLE
);
2494 schedule_timeout(sci
->sc_interval
);
2496 if (nilfs_test_opt(sbi
, DISCARD
)) {
2497 int ret
= nilfs_discard_segments(nilfs
, sci
->sc_freesegs
,
2501 "NILFS warning: error %d on discard request, "
2502 "turning discards off for the device\n", ret
);
2503 nilfs_clear_opt(sbi
, DISCARD
);
2508 sci
->sc_freesegs
= NULL
;
2509 sci
->sc_nfreesegs
= 0;
2510 nilfs_clear_gcdat_inode(nilfs
);
2511 nilfs_transaction_unlock(sbi
);
2515 static void nilfs_segctor_thread_construct(struct nilfs_sc_info
*sci
, int mode
)
2517 struct nilfs_sb_info
*sbi
= sci
->sc_sbi
;
2518 struct nilfs_transaction_info ti
;
2520 nilfs_transaction_lock(sbi
, &ti
, 0);
2521 nilfs_segctor_construct(sci
, mode
);
2524 * Unclosed segment should be retried. We do this using sc_timer.
2525 * Timeout of sc_timer will invoke complete construction which leads
2526 * to close the current logical segment.
2528 if (test_bit(NILFS_SC_UNCLOSED
, &sci
->sc_flags
))
2529 nilfs_segctor_start_timer(sci
);
2531 nilfs_transaction_unlock(sbi
);
2534 static void nilfs_segctor_do_immediate_flush(struct nilfs_sc_info
*sci
)
2539 spin_lock(&sci
->sc_state_lock
);
2540 mode
= (sci
->sc_flush_request
& FLUSH_DAT_BIT
) ?
2541 SC_FLUSH_DAT
: SC_FLUSH_FILE
;
2542 spin_unlock(&sci
->sc_state_lock
);
2545 err
= nilfs_segctor_do_construct(sci
, mode
);
2547 spin_lock(&sci
->sc_state_lock
);
2548 sci
->sc_flush_request
&= (mode
== SC_FLUSH_FILE
) ?
2549 ~FLUSH_FILE_BIT
: ~FLUSH_DAT_BIT
;
2550 spin_unlock(&sci
->sc_state_lock
);
2552 clear_bit(NILFS_SC_PRIOR_FLUSH
, &sci
->sc_flags
);
2555 static int nilfs_segctor_flush_mode(struct nilfs_sc_info
*sci
)
2557 if (!test_bit(NILFS_SC_UNCLOSED
, &sci
->sc_flags
) ||
2558 time_before(jiffies
, sci
->sc_lseg_stime
+ sci
->sc_mjcp_freq
)) {
2559 if (!(sci
->sc_flush_request
& ~FLUSH_FILE_BIT
))
2560 return SC_FLUSH_FILE
;
2561 else if (!(sci
->sc_flush_request
& ~FLUSH_DAT_BIT
))
2562 return SC_FLUSH_DAT
;
2568 * nilfs_segctor_thread - main loop of the segment constructor thread.
2569 * @arg: pointer to a struct nilfs_sc_info.
2571 * nilfs_segctor_thread() initializes a timer and serves as a daemon
2572 * to execute segment constructions.
2574 static int nilfs_segctor_thread(void *arg
)
2576 struct nilfs_sc_info
*sci
= (struct nilfs_sc_info
*)arg
;
2577 struct the_nilfs
*nilfs
= sci
->sc_sbi
->s_nilfs
;
2578 struct timer_list timer
;
2582 timer
.data
= (unsigned long)current
;
2583 timer
.function
= nilfs_construction_timeout
;
2584 sci
->sc_timer
= &timer
;
2587 sci
->sc_task
= current
;
2588 wake_up(&sci
->sc_wait_task
); /* for nilfs_segctor_start_thread() */
2590 "segctord starting. Construction interval = %lu seconds, "
2591 "CP frequency < %lu seconds\n",
2592 sci
->sc_interval
/ HZ
, sci
->sc_mjcp_freq
/ HZ
);
2594 spin_lock(&sci
->sc_state_lock
);
2599 if (sci
->sc_state
& NILFS_SEGCTOR_QUIT
)
2602 if (timeout
|| sci
->sc_seq_request
!= sci
->sc_seq_done
)
2604 else if (!sci
->sc_flush_request
)
2607 mode
= nilfs_segctor_flush_mode(sci
);
2609 spin_unlock(&sci
->sc_state_lock
);
2610 nilfs_segctor_thread_construct(sci
, mode
);
2611 spin_lock(&sci
->sc_state_lock
);
2616 if (freezing(current
)) {
2617 spin_unlock(&sci
->sc_state_lock
);
2619 spin_lock(&sci
->sc_state_lock
);
2622 int should_sleep
= 1;
2624 prepare_to_wait(&sci
->sc_wait_daemon
, &wait
,
2625 TASK_INTERRUPTIBLE
);
2627 if (sci
->sc_seq_request
!= sci
->sc_seq_done
)
2629 else if (sci
->sc_flush_request
)
2631 else if (sci
->sc_state
& NILFS_SEGCTOR_COMMIT
)
2632 should_sleep
= time_before(jiffies
,
2633 sci
->sc_timer
->expires
);
2636 spin_unlock(&sci
->sc_state_lock
);
2638 spin_lock(&sci
->sc_state_lock
);
2640 finish_wait(&sci
->sc_wait_daemon
, &wait
);
2641 timeout
= ((sci
->sc_state
& NILFS_SEGCTOR_COMMIT
) &&
2642 time_after_eq(jiffies
, sci
->sc_timer
->expires
));
2644 if (nilfs_sb_dirty(nilfs
) && nilfs_sb_need_update(nilfs
))
2645 set_nilfs_discontinued(nilfs
);
2650 spin_unlock(&sci
->sc_state_lock
);
2651 del_timer_sync(sci
->sc_timer
);
2652 sci
->sc_timer
= NULL
;
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
)
2678 sci
->sc_state
|= NILFS_SEGCTOR_QUIT
;
2680 while (sci
->sc_task
) {
2681 wake_up(&sci
->sc_wait_daemon
);
2682 spin_unlock(&sci
->sc_state_lock
);
2683 wait_event(sci
->sc_wait_task
, sci
->sc_task
== NULL
);
2684 spin_lock(&sci
->sc_state_lock
);
2688 static int nilfs_segctor_init(struct nilfs_sc_info
*sci
)
2690 sci
->sc_seq_done
= sci
->sc_seq_request
;
2692 return nilfs_segctor_start_thread(sci
);
2696 * Setup & clean-up functions
2698 static struct nilfs_sc_info
*nilfs_segctor_new(struct nilfs_sb_info
*sbi
)
2700 struct nilfs_sc_info
*sci
;
2702 sci
= kzalloc(sizeof(*sci
), GFP_KERNEL
);
2707 sci
->sc_super
= sbi
->s_super
;
2709 init_waitqueue_head(&sci
->sc_wait_request
);
2710 init_waitqueue_head(&sci
->sc_wait_daemon
);
2711 init_waitqueue_head(&sci
->sc_wait_task
);
2712 spin_lock_init(&sci
->sc_state_lock
);
2713 INIT_LIST_HEAD(&sci
->sc_dirty_files
);
2714 INIT_LIST_HEAD(&sci
->sc_segbufs
);
2715 INIT_LIST_HEAD(&sci
->sc_write_logs
);
2716 INIT_LIST_HEAD(&sci
->sc_gc_inodes
);
2717 INIT_LIST_HEAD(&sci
->sc_copied_buffers
);
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 down_write(&sbi
->s_nilfs
->ns_segctor_sem
);
2788 * nilfs_attach_segment_constructor - attach a segment constructor
2789 * @sbi: nilfs_sb_info
2791 * nilfs_attach_segment_constructor() allocates a struct nilfs_sc_info,
2792 * initializes it, and starts the segment constructor.
2794 * Return Value: On success, 0 is returned. On error, one of the following
2795 * negative error code is returned.
2797 * %-ENOMEM - Insufficient memory available.
2799 int nilfs_attach_segment_constructor(struct nilfs_sb_info
*sbi
)
2801 struct the_nilfs
*nilfs
= sbi
->s_nilfs
;
2804 if (NILFS_SC(sbi
)) {
2806 * This happens if the filesystem was remounted
2807 * read/write after nilfs_error degenerated it into a
2810 nilfs_detach_segment_constructor(sbi
);
2813 sbi
->s_sc_info
= nilfs_segctor_new(sbi
);
2814 if (!sbi
->s_sc_info
)
2817 nilfs_attach_writer(nilfs
, sbi
);
2818 err
= nilfs_segctor_init(NILFS_SC(sbi
));
2820 nilfs_detach_writer(nilfs
, sbi
);
2821 kfree(sbi
->s_sc_info
);
2822 sbi
->s_sc_info
= NULL
;
2828 * nilfs_detach_segment_constructor - destroy the segment constructor
2829 * @sbi: nilfs_sb_info
2831 * nilfs_detach_segment_constructor() kills the segment constructor daemon,
2832 * frees the struct nilfs_sc_info, and destroy the dirty file list.
2834 void nilfs_detach_segment_constructor(struct nilfs_sb_info
*sbi
)
2836 struct the_nilfs
*nilfs
= sbi
->s_nilfs
;
2837 LIST_HEAD(garbage_list
);
2839 down_write(&nilfs
->ns_segctor_sem
);
2840 if (NILFS_SC(sbi
)) {
2841 nilfs_segctor_destroy(NILFS_SC(sbi
));
2842 sbi
->s_sc_info
= NULL
;
2845 /* Force to free the list of dirty files */
2846 spin_lock(&sbi
->s_inode_lock
);
2847 if (!list_empty(&sbi
->s_dirty_files
)) {
2848 list_splice_init(&sbi
->s_dirty_files
, &garbage_list
);
2849 nilfs_warning(sbi
->s_super
, __func__
,
2850 "Non empty dirty list after the last "
2851 "segment construction\n");
2853 spin_unlock(&sbi
->s_inode_lock
);
2854 up_write(&nilfs
->ns_segctor_sem
);
2856 nilfs_dispose_list(sbi
, &garbage_list
, 1);
2857 nilfs_detach_writer(nilfs
, sbi
);