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