blob: 70ded52dc1dd02a963eae386b34c7fc849b3fa1c [file] [log] [blame]
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001/*
2 * segment.c - NILFS segment constructor.
3 *
4 * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
Ryusuke Konishi4b420ab2016-05-23 16:23:09 -070016 * Written by Ryusuke Konishi.
Ryusuke Konishi9ff051232009-04-06 19:01:37 -070017 *
18 */
19
20#include <linux/pagemap.h>
21#include <linux/buffer_head.h>
22#include <linux/writeback.h>
Ryusuke Konishiead8ecf2015-04-16 12:46:28 -070023#include <linux/bitops.h>
Ryusuke Konishi9ff051232009-04-06 19:01:37 -070024#include <linux/bio.h>
25#include <linux/completion.h>
26#include <linux/blkdev.h>
27#include <linux/backing-dev.h>
28#include <linux/freezer.h>
29#include <linux/kthread.h>
30#include <linux/crc32.h>
31#include <linux/pagevec.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010033#include <linux/sched/signal.h>
34
Ryusuke Konishi9ff051232009-04-06 19:01:37 -070035#include "nilfs.h"
36#include "btnode.h"
37#include "page.h"
38#include "segment.h"
39#include "sufile.h"
40#include "cpfile.h"
41#include "ifile.h"
Ryusuke Konishi9ff051232009-04-06 19:01:37 -070042#include "segbuf.h"
43
44
45/*
46 * Segment constructor
47 */
48#define SC_N_INODEVEC 16 /* Size of locally allocated inode vector */
49
Ryusuke Konishi076a3782016-05-23 16:23:48 -070050#define SC_MAX_SEGDELTA 64 /*
51 * Upper limit of the number of segments
52 * appended in collection retry loop
53 */
Ryusuke Konishi9ff051232009-04-06 19:01:37 -070054
55/* Construction mode */
56enum {
57 SC_LSEG_SR = 1, /* Make a logical segment having a super root */
Ryusuke Konishi076a3782016-05-23 16:23:48 -070058 SC_LSEG_DSYNC, /*
59 * Flush data blocks of a given file and make
60 * a logical segment without a super root.
61 */
62 SC_FLUSH_FILE, /*
63 * Flush data files, leads to segment writes without
64 * creating a checkpoint.
65 */
66 SC_FLUSH_DAT, /*
67 * Flush DAT file. This also creates segments
68 * without a checkpoint.
69 */
Ryusuke Konishi9ff051232009-04-06 19:01:37 -070070};
71
72/* Stage numbers of dirty block collection */
73enum {
74 NILFS_ST_INIT = 0,
75 NILFS_ST_GC, /* Collecting dirty blocks for GC */
76 NILFS_ST_FILE,
Ryusuke Konishi9ff051232009-04-06 19:01:37 -070077 NILFS_ST_IFILE,
78 NILFS_ST_CPFILE,
79 NILFS_ST_SUFILE,
80 NILFS_ST_DAT,
81 NILFS_ST_SR, /* Super root */
82 NILFS_ST_DSYNC, /* Data sync blocks */
83 NILFS_ST_DONE,
84};
85
Hitoshi Mitake58497702015-11-06 16:31:59 -080086#define CREATE_TRACE_POINTS
87#include <trace/events/nilfs2.h>
88
89/*
90 * nilfs_sc_cstage_inc(), nilfs_sc_cstage_set(), nilfs_sc_cstage_get() are
91 * wrapper functions of stage count (nilfs_sc_info->sc_stage.scnt). Users of
92 * the variable must use them because transition of stage count must involve
93 * trace events (trace_nilfs2_collection_stage_transition).
94 *
95 * nilfs_sc_cstage_get() isn't required for the above purpose because it doesn't
96 * produce tracepoint events. It is provided just for making the intention
97 * clear.
98 */
99static inline void nilfs_sc_cstage_inc(struct nilfs_sc_info *sci)
100{
101 sci->sc_stage.scnt++;
102 trace_nilfs2_collection_stage_transition(sci);
103}
104
105static inline void nilfs_sc_cstage_set(struct nilfs_sc_info *sci, int next_scnt)
106{
107 sci->sc_stage.scnt = next_scnt;
108 trace_nilfs2_collection_stage_transition(sci);
109}
110
111static inline int nilfs_sc_cstage_get(struct nilfs_sc_info *sci)
112{
113 return sci->sc_stage.scnt;
114}
115
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700116/* State flags of collection */
117#define NILFS_CF_NODE 0x0001 /* Collecting node blocks */
118#define NILFS_CF_IFILE_STARTED 0x0002 /* IFILE stage has started */
Ryusuke Konishi071cb4b2009-05-16 23:44:55 +0900119#define NILFS_CF_SUFREED 0x0004 /* segment usages has been freed */
120#define NILFS_CF_HISTORY_MASK (NILFS_CF_IFILE_STARTED | NILFS_CF_SUFREED)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700121
122/* Operations depending on the construction mode and file type */
123struct nilfs_sc_operations {
124 int (*collect_data)(struct nilfs_sc_info *, struct buffer_head *,
125 struct inode *);
126 int (*collect_node)(struct nilfs_sc_info *, struct buffer_head *,
127 struct inode *);
128 int (*collect_bmap)(struct nilfs_sc_info *, struct buffer_head *,
129 struct inode *);
130 void (*write_data_binfo)(struct nilfs_sc_info *,
131 struct nilfs_segsum_pointer *,
132 union nilfs_binfo *);
133 void (*write_node_binfo)(struct nilfs_sc_info *,
134 struct nilfs_segsum_pointer *,
135 union nilfs_binfo *);
136};
137
138/*
139 * Other definitions
140 */
141static void nilfs_segctor_start_timer(struct nilfs_sc_info *);
142static void nilfs_segctor_do_flush(struct nilfs_sc_info *, int);
143static void nilfs_segctor_do_immediate_flush(struct nilfs_sc_info *);
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900144static void nilfs_dispose_list(struct the_nilfs *, struct list_head *, int);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700145
146#define nilfs_cnt32_gt(a, b) \
147 (typecheck(__u32, a) && typecheck(__u32, b) && \
148 ((__s32)(b) - (__s32)(a) < 0))
149#define nilfs_cnt32_ge(a, b) \
150 (typecheck(__u32, a) && typecheck(__u32, b) && \
151 ((__s32)(a) - (__s32)(b) >= 0))
152#define nilfs_cnt32_lt(a, b) nilfs_cnt32_gt(b, a)
153#define nilfs_cnt32_le(a, b) nilfs_cnt32_ge(b, a)
154
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700155static int nilfs_prepare_segment_lock(struct super_block *sb,
156 struct nilfs_transaction_info *ti)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700157{
158 struct nilfs_transaction_info *cur_ti = current->journal_info;
159 void *save = NULL;
160
161 if (cur_ti) {
162 if (cur_ti->ti_magic == NILFS_TI_MAGIC)
163 return ++cur_ti->ti_count;
Ryusuke Konishi7f001842016-05-23 16:23:42 -0700164
165 /*
166 * If journal_info field is occupied by other FS,
167 * it is saved and will be restored on
168 * nilfs_transaction_commit().
169 */
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700170 nilfs_msg(sb, KERN_WARNING, "journal info from a different FS");
Ryusuke Konishi7f001842016-05-23 16:23:42 -0700171 save = current->journal_info;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700172 }
173 if (!ti) {
174 ti = kmem_cache_alloc(nilfs_transaction_cachep, GFP_NOFS);
175 if (!ti)
176 return -ENOMEM;
177 ti->ti_flags = NILFS_TI_DYNAMIC_ALLOC;
178 } else {
179 ti->ti_flags = 0;
180 }
181 ti->ti_count = 0;
182 ti->ti_save = save;
183 ti->ti_magic = NILFS_TI_MAGIC;
184 current->journal_info = ti;
185 return 0;
186}
187
188/**
189 * nilfs_transaction_begin - start indivisible file operations.
190 * @sb: super block
191 * @ti: nilfs_transaction_info
192 * @vacancy_check: flags for vacancy rate checks
193 *
194 * nilfs_transaction_begin() acquires a reader/writer semaphore, called
195 * the segment semaphore, to make a segment construction and write tasks
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700196 * exclusive. The function is used with nilfs_transaction_commit() in pairs.
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700197 * The region enclosed by these two functions can be nested. To avoid a
198 * deadlock, the semaphore is only acquired or released in the outermost call.
199 *
200 * This function allocates a nilfs_transaction_info struct to keep context
201 * information on it. It is initialized and hooked onto the current task in
202 * the outermost call. If a pre-allocated struct is given to @ti, it is used
Ryusuke Konishi7a650042010-03-14 03:32:40 +0900203 * instead; otherwise a new struct is assigned from a slab.
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700204 *
205 * When @vacancy_check flag is set, this function will check the amount of
206 * free space, and will wait for the GC to reclaim disk space if low capacity.
207 *
208 * Return Value: On success, 0 is returned. On error, one of the following
209 * negative error code is returned.
210 *
211 * %-ENOMEM - Insufficient memory available.
212 *
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700213 * %-ENOSPC - No space left on device
214 */
215int nilfs_transaction_begin(struct super_block *sb,
216 struct nilfs_transaction_info *ti,
217 int vacancy_check)
218{
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700219 struct the_nilfs *nilfs;
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700220 int ret = nilfs_prepare_segment_lock(sb, ti);
Hitoshi Mitake44fda112015-11-06 16:32:02 -0800221 struct nilfs_transaction_info *trace_ti;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700222
223 if (unlikely(ret < 0))
224 return ret;
Hitoshi Mitake44fda112015-11-06 16:32:02 -0800225 if (ret > 0) {
226 trace_ti = current->journal_info;
227
228 trace_nilfs2_transaction_transition(sb, trace_ti,
229 trace_ti->ti_count, trace_ti->ti_flags,
230 TRACE_NILFS2_TRANSACTION_BEGIN);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700231 return 0;
Hitoshi Mitake44fda112015-11-06 16:32:02 -0800232 }
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700233
Jan Kara2c22b332012-06-12 16:20:44 +0200234 sb_start_intwrite(sb);
Ryusuke Konishi5beb6e02010-09-20 18:19:06 +0900235
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900236 nilfs = sb->s_fs_info;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700237 down_read(&nilfs->ns_segctor_sem);
238 if (vacancy_check && nilfs_near_disk_full(nilfs)) {
239 up_read(&nilfs->ns_segctor_sem);
240 ret = -ENOSPC;
241 goto failed;
242 }
Hitoshi Mitake44fda112015-11-06 16:32:02 -0800243
244 trace_ti = current->journal_info;
245 trace_nilfs2_transaction_transition(sb, trace_ti, trace_ti->ti_count,
246 trace_ti->ti_flags,
247 TRACE_NILFS2_TRANSACTION_BEGIN);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700248 return 0;
249
250 failed:
251 ti = current->journal_info;
252 current->journal_info = ti->ti_save;
253 if (ti->ti_flags & NILFS_TI_DYNAMIC_ALLOC)
254 kmem_cache_free(nilfs_transaction_cachep, ti);
Jan Kara2c22b332012-06-12 16:20:44 +0200255 sb_end_intwrite(sb);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700256 return ret;
257}
258
259/**
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700260 * nilfs_transaction_commit - commit indivisible file operations.
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700261 * @sb: super block
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700262 *
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700263 * nilfs_transaction_commit() releases the read semaphore which is
264 * acquired by nilfs_transaction_begin(). This is only performed
265 * in outermost call of this function. If a commit flag is set,
266 * nilfs_transaction_commit() sets a timer to start the segment
267 * constructor. If a sync flag is set, it starts construction
268 * directly.
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700269 */
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700270int nilfs_transaction_commit(struct super_block *sb)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700271{
272 struct nilfs_transaction_info *ti = current->journal_info;
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900273 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700274 int err = 0;
275
276 BUG_ON(ti == NULL || ti->ti_magic != NILFS_TI_MAGIC);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700277 ti->ti_flags |= NILFS_TI_COMMIT;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700278 if (ti->ti_count > 0) {
279 ti->ti_count--;
Hitoshi Mitake44fda112015-11-06 16:32:02 -0800280 trace_nilfs2_transaction_transition(sb, ti, ti->ti_count,
281 ti->ti_flags, TRACE_NILFS2_TRANSACTION_COMMIT);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700282 return 0;
283 }
Ryusuke Konishi3fd3fe52011-03-09 11:05:08 +0900284 if (nilfs->ns_writer) {
285 struct nilfs_sc_info *sci = nilfs->ns_writer;
286
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700287 if (ti->ti_flags & NILFS_TI_COMMIT)
288 nilfs_segctor_start_timer(sci);
Ryusuke Konishi3fd3fe52011-03-09 11:05:08 +0900289 if (atomic_read(&nilfs->ns_ndirtyblks) > sci->sc_watermark)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700290 nilfs_segctor_do_flush(sci, 0);
291 }
Ryusuke Konishi3fd3fe52011-03-09 11:05:08 +0900292 up_read(&nilfs->ns_segctor_sem);
Hitoshi Mitake44fda112015-11-06 16:32:02 -0800293 trace_nilfs2_transaction_transition(sb, ti, ti->ti_count,
294 ti->ti_flags, TRACE_NILFS2_TRANSACTION_COMMIT);
295
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700296 current->journal_info = ti->ti_save;
297
298 if (ti->ti_flags & NILFS_TI_SYNC)
299 err = nilfs_construct_segment(sb);
300 if (ti->ti_flags & NILFS_TI_DYNAMIC_ALLOC)
301 kmem_cache_free(nilfs_transaction_cachep, ti);
Jan Kara2c22b332012-06-12 16:20:44 +0200302 sb_end_intwrite(sb);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700303 return err;
304}
305
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700306void nilfs_transaction_abort(struct super_block *sb)
307{
308 struct nilfs_transaction_info *ti = current->journal_info;
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900309 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700310
311 BUG_ON(ti == NULL || ti->ti_magic != NILFS_TI_MAGIC);
312 if (ti->ti_count > 0) {
313 ti->ti_count--;
Hitoshi Mitake44fda112015-11-06 16:32:02 -0800314 trace_nilfs2_transaction_transition(sb, ti, ti->ti_count,
315 ti->ti_flags, TRACE_NILFS2_TRANSACTION_ABORT);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700316 return;
317 }
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900318 up_read(&nilfs->ns_segctor_sem);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700319
Hitoshi Mitake44fda112015-11-06 16:32:02 -0800320 trace_nilfs2_transaction_transition(sb, ti, ti->ti_count,
321 ti->ti_flags, TRACE_NILFS2_TRANSACTION_ABORT);
322
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700323 current->journal_info = ti->ti_save;
324 if (ti->ti_flags & NILFS_TI_DYNAMIC_ALLOC)
325 kmem_cache_free(nilfs_transaction_cachep, ti);
Jan Kara2c22b332012-06-12 16:20:44 +0200326 sb_end_intwrite(sb);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700327}
328
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700329void nilfs_relax_pressure_in_lock(struct super_block *sb)
330{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900331 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi3fd3fe52011-03-09 11:05:08 +0900332 struct nilfs_sc_info *sci = nilfs->ns_writer;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700333
334 if (!sci || !sci->sc_flush_request)
335 return;
336
337 set_bit(NILFS_SC_PRIOR_FLUSH, &sci->sc_flags);
338 up_read(&nilfs->ns_segctor_sem);
339
340 down_write(&nilfs->ns_segctor_sem);
341 if (sci->sc_flush_request &&
342 test_bit(NILFS_SC_PRIOR_FLUSH, &sci->sc_flags)) {
343 struct nilfs_transaction_info *ti = current->journal_info;
344
345 ti->ti_flags |= NILFS_TI_WRITER;
346 nilfs_segctor_do_immediate_flush(sci);
347 ti->ti_flags &= ~NILFS_TI_WRITER;
348 }
349 downgrade_write(&nilfs->ns_segctor_sem);
350}
351
Ryusuke Konishif7545142011-03-09 11:05:08 +0900352static void nilfs_transaction_lock(struct super_block *sb,
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700353 struct nilfs_transaction_info *ti,
354 int gcflag)
355{
356 struct nilfs_transaction_info *cur_ti = current->journal_info;
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900357 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi3fd3fe52011-03-09 11:05:08 +0900358 struct nilfs_sc_info *sci = nilfs->ns_writer;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700359
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700360 WARN_ON(cur_ti);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700361 ti->ti_flags = NILFS_TI_WRITER;
362 ti->ti_count = 0;
363 ti->ti_save = cur_ti;
364 ti->ti_magic = NILFS_TI_MAGIC;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700365 current->journal_info = ti;
366
367 for (;;) {
Hitoshi Mitake44fda112015-11-06 16:32:02 -0800368 trace_nilfs2_transaction_transition(sb, ti, ti->ti_count,
369 ti->ti_flags, TRACE_NILFS2_TRANSACTION_TRYLOCK);
370
Ryusuke Konishi3fd3fe52011-03-09 11:05:08 +0900371 down_write(&nilfs->ns_segctor_sem);
372 if (!test_bit(NILFS_SC_PRIOR_FLUSH, &sci->sc_flags))
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700373 break;
374
Ryusuke Konishi3fd3fe52011-03-09 11:05:08 +0900375 nilfs_segctor_do_immediate_flush(sci);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700376
Ryusuke Konishif7545142011-03-09 11:05:08 +0900377 up_write(&nilfs->ns_segctor_sem);
Ryusuke Konishiaceb4172016-08-02 14:05:19 -0700378 cond_resched();
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700379 }
380 if (gcflag)
381 ti->ti_flags |= NILFS_TI_GC;
Hitoshi Mitake44fda112015-11-06 16:32:02 -0800382
383 trace_nilfs2_transaction_transition(sb, ti, ti->ti_count,
384 ti->ti_flags, TRACE_NILFS2_TRANSACTION_LOCK);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700385}
386
Ryusuke Konishif7545142011-03-09 11:05:08 +0900387static void nilfs_transaction_unlock(struct super_block *sb)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700388{
389 struct nilfs_transaction_info *ti = current->journal_info;
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900390 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700391
392 BUG_ON(ti == NULL || ti->ti_magic != NILFS_TI_MAGIC);
393 BUG_ON(ti->ti_count > 0);
394
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900395 up_write(&nilfs->ns_segctor_sem);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700396 current->journal_info = ti->ti_save;
Hitoshi Mitake44fda112015-11-06 16:32:02 -0800397
398 trace_nilfs2_transaction_transition(sb, ti, ti->ti_count,
399 ti->ti_flags, TRACE_NILFS2_TRANSACTION_UNLOCK);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700400}
401
402static void *nilfs_segctor_map_segsum_entry(struct nilfs_sc_info *sci,
403 struct nilfs_segsum_pointer *ssp,
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -0700404 unsigned int bytes)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700405{
406 struct nilfs_segment_buffer *segbuf = sci->sc_curseg;
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -0700407 unsigned int blocksize = sci->sc_super->s_blocksize;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700408 void *p;
409
410 if (unlikely(ssp->offset + bytes > blocksize)) {
411 ssp->offset = 0;
412 BUG_ON(NILFS_SEGBUF_BH_IS_LAST(ssp->bh,
413 &segbuf->sb_segsum_buffers));
414 ssp->bh = NILFS_SEGBUF_NEXT_BH(ssp->bh);
415 }
416 p = ssp->bh->b_data + ssp->offset;
417 ssp->offset += bytes;
418 return p;
419}
420
421/**
422 * nilfs_segctor_reset_segment_buffer - reset the current segment buffer
423 * @sci: nilfs_sc_info
424 */
425static int nilfs_segctor_reset_segment_buffer(struct nilfs_sc_info *sci)
426{
427 struct nilfs_segment_buffer *segbuf = sci->sc_curseg;
428 struct buffer_head *sumbh;
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -0700429 unsigned int sumbytes;
430 unsigned int flags = 0;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700431 int err;
432
433 if (nilfs_doing_gc())
434 flags = NILFS_SS_GC;
Ryusuke Konishi6c43f412010-08-20 20:10:38 +0900435 err = nilfs_segbuf_reset(segbuf, flags, sci->sc_seg_ctime, sci->sc_cno);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700436 if (unlikely(err))
437 return err;
438
439 sumbh = NILFS_SEGBUF_FIRST_BH(&segbuf->sb_segsum_buffers);
440 sumbytes = segbuf->sb_sum.sumbytes;
441 sci->sc_finfo_ptr.bh = sumbh; sci->sc_finfo_ptr.offset = sumbytes;
442 sci->sc_binfo_ptr.bh = sumbh; sci->sc_binfo_ptr.offset = sumbytes;
443 sci->sc_blk_cnt = sci->sc_datablk_cnt = 0;
444 return 0;
445}
446
447static int nilfs_segctor_feed_segment(struct nilfs_sc_info *sci)
448{
449 sci->sc_nblk_this_inc += sci->sc_curseg->sb_sum.nblocks;
450 if (NILFS_SEGBUF_IS_LAST(sci->sc_curseg, &sci->sc_segbufs))
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700451 return -E2BIG; /*
452 * The current segment is filled up
453 * (internal code)
454 */
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700455 sci->sc_curseg = NILFS_NEXT_SEGBUF(sci->sc_curseg);
456 return nilfs_segctor_reset_segment_buffer(sci);
457}
458
459static int nilfs_segctor_add_super_root(struct nilfs_sc_info *sci)
460{
461 struct nilfs_segment_buffer *segbuf = sci->sc_curseg;
462 int err;
463
464 if (segbuf->sb_sum.nblocks >= segbuf->sb_rest_blocks) {
465 err = nilfs_segctor_feed_segment(sci);
466 if (err)
467 return err;
468 segbuf = sci->sc_curseg;
469 }
Ryusuke Konishi1e2b68b2010-03-23 01:15:31 +0900470 err = nilfs_segbuf_extend_payload(segbuf, &segbuf->sb_super_root);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700471 if (likely(!err))
472 segbuf->sb_sum.flags |= NILFS_SS_SR;
473 return err;
474}
475
476/*
477 * Functions for making segment summary and payloads
478 */
479static int nilfs_segctor_segsum_block_required(
480 struct nilfs_sc_info *sci, const struct nilfs_segsum_pointer *ssp,
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -0700481 unsigned int binfo_size)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700482{
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -0700483 unsigned int blocksize = sci->sc_super->s_blocksize;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700484 /* Size of finfo and binfo is enough small against blocksize */
485
486 return ssp->offset + binfo_size +
487 (!sci->sc_blk_cnt ? sizeof(struct nilfs_finfo) : 0) >
488 blocksize;
489}
490
491static void nilfs_segctor_begin_finfo(struct nilfs_sc_info *sci,
492 struct inode *inode)
493{
494 sci->sc_curseg->sb_sum.nfinfo++;
495 sci->sc_binfo_ptr = sci->sc_finfo_ptr;
496 nilfs_segctor_map_segsum_entry(
497 sci, &sci->sc_binfo_ptr, sizeof(struct nilfs_finfo));
Ryusuke Konishic96fa462009-04-06 19:01:57 -0700498
Ryusuke Konishi72746ac2011-02-28 13:41:11 +0900499 if (NILFS_I(inode)->i_root &&
500 !test_bit(NILFS_SC_HAVE_DELTA, &sci->sc_flags))
Ryusuke Konishic96fa462009-04-06 19:01:57 -0700501 set_bit(NILFS_SC_HAVE_DELTA, &sci->sc_flags);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700502 /* skip finfo */
503}
504
505static void nilfs_segctor_end_finfo(struct nilfs_sc_info *sci,
506 struct inode *inode)
507{
508 struct nilfs_finfo *finfo;
509 struct nilfs_inode_info *ii;
510 struct nilfs_segment_buffer *segbuf;
Ryusuke Konishi6c43f412010-08-20 20:10:38 +0900511 __u64 cno;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700512
513 if (sci->sc_blk_cnt == 0)
514 return;
515
516 ii = NILFS_I(inode);
Ryusuke Konishi6c43f412010-08-20 20:10:38 +0900517
518 if (test_bit(NILFS_I_GCINODE, &ii->i_state))
519 cno = ii->i_cno;
520 else if (NILFS_ROOT_METADATA_FILE(inode->i_ino))
521 cno = 0;
522 else
523 cno = sci->sc_cno;
524
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700525 finfo = nilfs_segctor_map_segsum_entry(sci, &sci->sc_finfo_ptr,
526 sizeof(*finfo));
527 finfo->fi_ino = cpu_to_le64(inode->i_ino);
528 finfo->fi_nblocks = cpu_to_le32(sci->sc_blk_cnt);
529 finfo->fi_ndatablk = cpu_to_le32(sci->sc_datablk_cnt);
Ryusuke Konishi6c43f412010-08-20 20:10:38 +0900530 finfo->fi_cno = cpu_to_le64(cno);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700531
532 segbuf = sci->sc_curseg;
533 segbuf->sb_sum.sumbytes = sci->sc_binfo_ptr.offset +
534 sci->sc_super->s_blocksize * (segbuf->sb_sum.nsumblk - 1);
535 sci->sc_finfo_ptr = sci->sc_binfo_ptr;
536 sci->sc_blk_cnt = sci->sc_datablk_cnt = 0;
537}
538
539static int nilfs_segctor_add_file_block(struct nilfs_sc_info *sci,
540 struct buffer_head *bh,
541 struct inode *inode,
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -0700542 unsigned int binfo_size)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700543{
544 struct nilfs_segment_buffer *segbuf;
545 int required, err = 0;
546
547 retry:
548 segbuf = sci->sc_curseg;
549 required = nilfs_segctor_segsum_block_required(
550 sci, &sci->sc_binfo_ptr, binfo_size);
551 if (segbuf->sb_sum.nblocks + required + 1 > segbuf->sb_rest_blocks) {
552 nilfs_segctor_end_finfo(sci, inode);
553 err = nilfs_segctor_feed_segment(sci);
554 if (err)
555 return err;
556 goto retry;
557 }
558 if (unlikely(required)) {
559 err = nilfs_segbuf_extend_segsum(segbuf);
560 if (unlikely(err))
561 goto failed;
562 }
563 if (sci->sc_blk_cnt == 0)
564 nilfs_segctor_begin_finfo(sci, inode);
565
566 nilfs_segctor_map_segsum_entry(sci, &sci->sc_binfo_ptr, binfo_size);
567 /* Substitution to vblocknr is delayed until update_blocknr() */
568 nilfs_segbuf_add_file_buffer(segbuf, bh);
569 sci->sc_blk_cnt++;
570 failed:
571 return err;
572}
573
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700574/*
575 * Callback functions that enumerate, mark, and collect dirty blocks
576 */
577static int nilfs_collect_file_data(struct nilfs_sc_info *sci,
578 struct buffer_head *bh, struct inode *inode)
579{
580 int err;
581
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700582 err = nilfs_bmap_propagate(NILFS_I(inode)->i_bmap, bh);
Ryusuke Konishie8289492010-11-19 15:26:20 +0900583 if (err < 0)
584 return err;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700585
586 err = nilfs_segctor_add_file_block(sci, bh, inode,
587 sizeof(struct nilfs_binfo_v));
588 if (!err)
589 sci->sc_datablk_cnt++;
590 return err;
591}
592
593static int nilfs_collect_file_node(struct nilfs_sc_info *sci,
594 struct buffer_head *bh,
595 struct inode *inode)
596{
Ryusuke Konishie8289492010-11-19 15:26:20 +0900597 return nilfs_bmap_propagate(NILFS_I(inode)->i_bmap, bh);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700598}
599
600static int nilfs_collect_file_bmap(struct nilfs_sc_info *sci,
601 struct buffer_head *bh,
602 struct inode *inode)
603{
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700604 WARN_ON(!buffer_dirty(bh));
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700605 return nilfs_segctor_add_file_block(sci, bh, inode, sizeof(__le64));
606}
607
608static void nilfs_write_file_data_binfo(struct nilfs_sc_info *sci,
609 struct nilfs_segsum_pointer *ssp,
610 union nilfs_binfo *binfo)
611{
612 struct nilfs_binfo_v *binfo_v = nilfs_segctor_map_segsum_entry(
613 sci, ssp, sizeof(*binfo_v));
614 *binfo_v = binfo->bi_v;
615}
616
617static void nilfs_write_file_node_binfo(struct nilfs_sc_info *sci,
618 struct nilfs_segsum_pointer *ssp,
619 union nilfs_binfo *binfo)
620{
621 __le64 *vblocknr = nilfs_segctor_map_segsum_entry(
622 sci, ssp, sizeof(*vblocknr));
623 *vblocknr = binfo->bi_v.bi_vblocknr;
624}
625
Julia Lawall1c613cb2016-05-23 16:22:57 -0700626static const struct nilfs_sc_operations nilfs_sc_file_ops = {
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700627 .collect_data = nilfs_collect_file_data,
628 .collect_node = nilfs_collect_file_node,
629 .collect_bmap = nilfs_collect_file_bmap,
630 .write_data_binfo = nilfs_write_file_data_binfo,
631 .write_node_binfo = nilfs_write_file_node_binfo,
632};
633
634static int nilfs_collect_dat_data(struct nilfs_sc_info *sci,
635 struct buffer_head *bh, struct inode *inode)
636{
637 int err;
638
639 err = nilfs_bmap_propagate(NILFS_I(inode)->i_bmap, bh);
Ryusuke Konishie8289492010-11-19 15:26:20 +0900640 if (err < 0)
641 return err;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700642
643 err = nilfs_segctor_add_file_block(sci, bh, inode, sizeof(__le64));
644 if (!err)
645 sci->sc_datablk_cnt++;
646 return err;
647}
648
649static int nilfs_collect_dat_bmap(struct nilfs_sc_info *sci,
650 struct buffer_head *bh, struct inode *inode)
651{
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700652 WARN_ON(!buffer_dirty(bh));
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700653 return nilfs_segctor_add_file_block(sci, bh, inode,
654 sizeof(struct nilfs_binfo_dat));
655}
656
657static void nilfs_write_dat_data_binfo(struct nilfs_sc_info *sci,
658 struct nilfs_segsum_pointer *ssp,
659 union nilfs_binfo *binfo)
660{
661 __le64 *blkoff = nilfs_segctor_map_segsum_entry(sci, ssp,
662 sizeof(*blkoff));
663 *blkoff = binfo->bi_dat.bi_blkoff;
664}
665
666static void nilfs_write_dat_node_binfo(struct nilfs_sc_info *sci,
667 struct nilfs_segsum_pointer *ssp,
668 union nilfs_binfo *binfo)
669{
670 struct nilfs_binfo_dat *binfo_dat =
671 nilfs_segctor_map_segsum_entry(sci, ssp, sizeof(*binfo_dat));
672 *binfo_dat = binfo->bi_dat;
673}
674
Julia Lawall1c613cb2016-05-23 16:22:57 -0700675static const struct nilfs_sc_operations nilfs_sc_dat_ops = {
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700676 .collect_data = nilfs_collect_dat_data,
677 .collect_node = nilfs_collect_file_node,
678 .collect_bmap = nilfs_collect_dat_bmap,
679 .write_data_binfo = nilfs_write_dat_data_binfo,
680 .write_node_binfo = nilfs_write_dat_node_binfo,
681};
682
Julia Lawall1c613cb2016-05-23 16:22:57 -0700683static const struct nilfs_sc_operations nilfs_sc_dsync_ops = {
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700684 .collect_data = nilfs_collect_file_data,
685 .collect_node = NULL,
686 .collect_bmap = NULL,
687 .write_data_binfo = nilfs_write_file_data_binfo,
688 .write_node_binfo = NULL,
689};
690
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -0700691static size_t nilfs_lookup_dirty_data_buffers(struct inode *inode,
692 struct list_head *listp,
693 size_t nlimit,
694 loff_t start, loff_t end)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700695{
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700696 struct address_space *mapping = inode->i_mapping;
697 struct pagevec pvec;
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -0700698 pgoff_t index = 0, last = ULONG_MAX;
699 size_t ndirties = 0;
700 int i;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700701
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -0700702 if (unlikely(start != 0 || end != LLONG_MAX)) {
703 /*
704 * A valid range is given for sync-ing data pages. The
705 * range is rounded to per-page; extra dirty buffers
706 * may be included if blocksize < pagesize.
707 */
708 index = start >> PAGE_SHIFT;
709 last = end >> PAGE_SHIFT;
710 }
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700711 pagevec_init(&pvec, 0);
712 repeat:
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -0700713 if (unlikely(index > last) ||
714 !pagevec_lookup_tag(&pvec, mapping, &index, PAGECACHE_TAG_DIRTY,
715 min_t(pgoff_t, last - index,
716 PAGEVEC_SIZE - 1) + 1))
717 return ndirties;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700718
719 for (i = 0; i < pagevec_count(&pvec); i++) {
720 struct buffer_head *bh, *head;
721 struct page *page = pvec.pages[i];
722
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -0700723 if (unlikely(page->index > last))
724 break;
725
Ryusuke Konishiaa405b12011-05-05 12:56:51 +0900726 lock_page(page);
727 if (!page_has_buffers(page))
Fabian Frederick93407472017-02-27 14:28:32 -0800728 create_empty_buffers(page, i_blocksize(inode), 0);
Ryusuke Konishiaa405b12011-05-05 12:56:51 +0900729 unlock_page(page);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700730
731 bh = head = page_buffers(page);
732 do {
Vyacheslav Dubeyko7f42ec32013-09-30 13:45:12 -0700733 if (!buffer_dirty(bh) || buffer_async_write(bh))
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -0700734 continue;
735 get_bh(bh);
736 list_add_tail(&bh->b_assoc_buffers, listp);
737 ndirties++;
738 if (unlikely(ndirties >= nlimit)) {
739 pagevec_release(&pvec);
740 cond_resched();
741 return ndirties;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700742 }
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -0700743 } while (bh = bh->b_this_page, bh != head);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700744 }
745 pagevec_release(&pvec);
746 cond_resched();
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -0700747 goto repeat;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700748}
749
750static void nilfs_lookup_dirty_node_buffers(struct inode *inode,
751 struct list_head *listp)
752{
753 struct nilfs_inode_info *ii = NILFS_I(inode);
754 struct address_space *mapping = &ii->i_btnode_cache;
755 struct pagevec pvec;
756 struct buffer_head *bh, *head;
757 unsigned int i;
758 pgoff_t index = 0;
759
760 pagevec_init(&pvec, 0);
761
762 while (pagevec_lookup_tag(&pvec, mapping, &index, PAGECACHE_TAG_DIRTY,
763 PAGEVEC_SIZE)) {
764 for (i = 0; i < pagevec_count(&pvec); i++) {
765 bh = head = page_buffers(pvec.pages[i]);
766 do {
Vyacheslav Dubeyko7f42ec32013-09-30 13:45:12 -0700767 if (buffer_dirty(bh) &&
768 !buffer_async_write(bh)) {
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700769 get_bh(bh);
770 list_add_tail(&bh->b_assoc_buffers,
771 listp);
772 }
773 bh = bh->b_this_page;
774 } while (bh != head);
775 }
776 pagevec_release(&pvec);
777 cond_resched();
778 }
779}
780
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900781static void nilfs_dispose_list(struct the_nilfs *nilfs,
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700782 struct list_head *head, int force)
783{
784 struct nilfs_inode_info *ii, *n;
785 struct nilfs_inode_info *ivec[SC_N_INODEVEC], **pii;
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -0700786 unsigned int nv = 0;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700787
788 while (!list_empty(head)) {
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900789 spin_lock(&nilfs->ns_inode_lock);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700790 list_for_each_entry_safe(ii, n, head, i_dirty) {
791 list_del_init(&ii->i_dirty);
792 if (force) {
793 if (unlikely(ii->i_bh)) {
794 brelse(ii->i_bh);
795 ii->i_bh = NULL;
796 }
797 } else if (test_bit(NILFS_I_DIRTY, &ii->i_state)) {
798 set_bit(NILFS_I_QUEUED, &ii->i_state);
799 list_add_tail(&ii->i_dirty,
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900800 &nilfs->ns_dirty_files);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700801 continue;
802 }
803 ivec[nv++] = ii;
804 if (nv == SC_N_INODEVEC)
805 break;
806 }
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900807 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700808
809 for (pii = ivec; nv > 0; pii++, nv--)
810 iput(&(*pii)->vfs_inode);
811 }
812}
813
Ryusuke Konishi7ef3ff22015-02-05 12:25:20 -0800814static void nilfs_iput_work_func(struct work_struct *work)
815{
816 struct nilfs_sc_info *sci = container_of(work, struct nilfs_sc_info,
817 sc_iput_work);
818 struct the_nilfs *nilfs = sci->sc_super->s_fs_info;
819
820 nilfs_dispose_list(nilfs, &sci->sc_iput_queue, 0);
821}
822
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900823static int nilfs_test_metadata_dirty(struct the_nilfs *nilfs,
824 struct nilfs_root *root)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700825{
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700826 int ret = 0;
827
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900828 if (nilfs_mdt_fetch_dirty(root->ifile))
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700829 ret++;
830 if (nilfs_mdt_fetch_dirty(nilfs->ns_cpfile))
831 ret++;
832 if (nilfs_mdt_fetch_dirty(nilfs->ns_sufile))
833 ret++;
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900834 if ((ret || nilfs_doing_gc()) && nilfs_mdt_fetch_dirty(nilfs->ns_dat))
835 ret++;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700836 return ret;
837}
838
839static int nilfs_segctor_clean(struct nilfs_sc_info *sci)
840{
841 return list_empty(&sci->sc_dirty_files) &&
842 !test_bit(NILFS_SC_DIRTY, &sci->sc_flags) &&
Ryusuke Konishi071cb4b2009-05-16 23:44:55 +0900843 sci->sc_nfreesegs == 0 &&
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700844 (!nilfs_doing_gc() || list_empty(&sci->sc_gc_inodes));
845}
846
847static int nilfs_segctor_confirm(struct nilfs_sc_info *sci)
848{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900849 struct the_nilfs *nilfs = sci->sc_super->s_fs_info;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700850 int ret = 0;
851
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900852 if (nilfs_test_metadata_dirty(nilfs, sci->sc_root))
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700853 set_bit(NILFS_SC_DIRTY, &sci->sc_flags);
854
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900855 spin_lock(&nilfs->ns_inode_lock);
856 if (list_empty(&nilfs->ns_dirty_files) && nilfs_segctor_clean(sci))
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700857 ret++;
858
Ryusuke Konishi693dd322011-03-09 11:05:07 +0900859 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700860 return ret;
861}
862
863static void nilfs_segctor_clear_metadata_dirty(struct nilfs_sc_info *sci)
864{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900865 struct the_nilfs *nilfs = sci->sc_super->s_fs_info;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700866
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900867 nilfs_mdt_clear_dirty(sci->sc_root->ifile);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700868 nilfs_mdt_clear_dirty(nilfs->ns_cpfile);
869 nilfs_mdt_clear_dirty(nilfs->ns_sufile);
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900870 nilfs_mdt_clear_dirty(nilfs->ns_dat);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700871}
872
873static int nilfs_segctor_create_checkpoint(struct nilfs_sc_info *sci)
874{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900875 struct the_nilfs *nilfs = sci->sc_super->s_fs_info;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700876 struct buffer_head *bh_cp;
877 struct nilfs_checkpoint *raw_cp;
878 int err;
879
880 /* XXX: this interface will be changed */
881 err = nilfs_cpfile_get_checkpoint(nilfs->ns_cpfile, nilfs->ns_cno, 1,
882 &raw_cp, &bh_cp);
883 if (likely(!err)) {
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700884 /*
885 * The following code is duplicated with cpfile. But, it is
886 * needed to collect the checkpoint even if it was not newly
887 * created.
888 */
Ryusuke Konishi5fc7b142011-05-05 12:56:51 +0900889 mark_buffer_dirty(bh_cp);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700890 nilfs_mdt_mark_dirty(nilfs->ns_cpfile);
891 nilfs_cpfile_put_checkpoint(
892 nilfs->ns_cpfile, nilfs->ns_cno, bh_cp);
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700893 } else
894 WARN_ON(err == -EINVAL || err == -ENOENT);
895
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700896 return err;
897}
898
899static int nilfs_segctor_fill_in_checkpoint(struct nilfs_sc_info *sci)
900{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900901 struct the_nilfs *nilfs = sci->sc_super->s_fs_info;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700902 struct buffer_head *bh_cp;
903 struct nilfs_checkpoint *raw_cp;
904 int err;
905
906 err = nilfs_cpfile_get_checkpoint(nilfs->ns_cpfile, nilfs->ns_cno, 0,
907 &raw_cp, &bh_cp);
908 if (unlikely(err)) {
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700909 WARN_ON(err == -EINVAL || err == -ENOENT);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700910 goto failed_ibh;
911 }
912 raw_cp->cp_snapshot_list.ssl_next = 0;
913 raw_cp->cp_snapshot_list.ssl_prev = 0;
914 raw_cp->cp_inodes_count =
Vyacheslav Dubeykoe5f7f842013-07-03 15:08:06 -0700915 cpu_to_le64(atomic64_read(&sci->sc_root->inodes_count));
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700916 raw_cp->cp_blocks_count =
Vyacheslav Dubeykoe5f7f842013-07-03 15:08:06 -0700917 cpu_to_le64(atomic64_read(&sci->sc_root->blocks_count));
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700918 raw_cp->cp_nblk_inc =
919 cpu_to_le64(sci->sc_nblk_inc + sci->sc_nblk_this_inc);
920 raw_cp->cp_create = cpu_to_le64(sci->sc_seg_ctime);
921 raw_cp->cp_cno = cpu_to_le64(nilfs->ns_cno);
Ryusuke Konishi458c5b02009-04-06 19:01:56 -0700922
Ryusuke Konishic96fa462009-04-06 19:01:57 -0700923 if (test_bit(NILFS_SC_HAVE_DELTA, &sci->sc_flags))
924 nilfs_checkpoint_clear_minor(raw_cp);
925 else
926 nilfs_checkpoint_set_minor(raw_cp);
927
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900928 nilfs_write_inode_common(sci->sc_root->ifile,
929 &raw_cp->cp_ifile_inode, 1);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700930 nilfs_cpfile_put_checkpoint(nilfs->ns_cpfile, nilfs->ns_cno, bh_cp);
931 return 0;
932
933 failed_ibh:
934 return err;
935}
936
937static void nilfs_fill_in_file_bmap(struct inode *ifile,
938 struct nilfs_inode_info *ii)
939
940{
941 struct buffer_head *ibh;
942 struct nilfs_inode *raw_inode;
943
944 if (test_bit(NILFS_I_BMAP, &ii->i_state)) {
945 ibh = ii->i_bh;
946 BUG_ON(!ibh);
947 raw_inode = nilfs_ifile_map_inode(ifile, ii->vfs_inode.i_ino,
948 ibh);
949 nilfs_bmap_write(ii->i_bmap, raw_inode);
950 nilfs_ifile_unmap_inode(ifile, ii->vfs_inode.i_ino, ibh);
951 }
952}
953
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900954static void nilfs_segctor_fill_in_file_bmap(struct nilfs_sc_info *sci)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700955{
956 struct nilfs_inode_info *ii;
957
958 list_for_each_entry(ii, &sci->sc_dirty_files, i_dirty) {
Ryusuke Konishie912a5b2010-08-14 13:07:15 +0900959 nilfs_fill_in_file_bmap(sci->sc_root->ifile, ii);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700960 set_bit(NILFS_I_COLLECTED, &ii->i_state);
961 }
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700962}
963
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700964static void nilfs_segctor_fill_in_super_root(struct nilfs_sc_info *sci,
965 struct the_nilfs *nilfs)
966{
Ryusuke Konishi1e2b68b2010-03-23 01:15:31 +0900967 struct buffer_head *bh_sr;
968 struct nilfs_super_root *raw_sr;
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -0700969 unsigned int isz, srsz;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700970
Ryusuke Konishi1e2b68b2010-03-23 01:15:31 +0900971 bh_sr = NILFS_LAST_SEGBUF(&sci->sc_segbufs)->sb_super_root;
972 raw_sr = (struct nilfs_super_root *)bh_sr->b_data;
Ryusuke Konishi56eb5532011-04-30 18:56:12 +0900973 isz = nilfs->ns_inode_size;
974 srsz = NILFS_SR_BYTES(isz);
Ryusuke Konishi1e2b68b2010-03-23 01:15:31 +0900975
Ryusuke Konishi56eb5532011-04-30 18:56:12 +0900976 raw_sr->sr_bytes = cpu_to_le16(srsz);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700977 raw_sr->sr_nongc_ctime
978 = cpu_to_le64(nilfs_doing_gc() ?
979 nilfs->ns_nongc_ctime : sci->sc_seg_ctime);
980 raw_sr->sr_flags = 0;
981
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900982 nilfs_write_inode_common(nilfs->ns_dat, (void *)raw_sr +
Ryusuke Konishi3961f0e2009-11-13 01:55:02 +0900983 NILFS_SR_DAT_OFFSET(isz), 1);
984 nilfs_write_inode_common(nilfs->ns_cpfile, (void *)raw_sr +
985 NILFS_SR_CPFILE_OFFSET(isz), 1);
986 nilfs_write_inode_common(nilfs->ns_sufile, (void *)raw_sr +
987 NILFS_SR_SUFILE_OFFSET(isz), 1);
Ryusuke Konishi56eb5532011-04-30 18:56:12 +0900988 memset((void *)raw_sr + srsz, 0, nilfs->ns_blocksize - srsz);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -0700989}
990
991static void nilfs_redirty_inodes(struct list_head *head)
992{
993 struct nilfs_inode_info *ii;
994
995 list_for_each_entry(ii, head, i_dirty) {
996 if (test_bit(NILFS_I_COLLECTED, &ii->i_state))
997 clear_bit(NILFS_I_COLLECTED, &ii->i_state);
998 }
999}
1000
1001static void nilfs_drop_collected_inodes(struct list_head *head)
1002{
1003 struct nilfs_inode_info *ii;
1004
1005 list_for_each_entry(ii, head, i_dirty) {
1006 if (!test_and_clear_bit(NILFS_I_COLLECTED, &ii->i_state))
1007 continue;
1008
Andreas Rohnerb9f66142014-10-13 15:53:22 -07001009 clear_bit(NILFS_I_INODE_SYNC, &ii->i_state);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001010 set_bit(NILFS_I_UPDATED, &ii->i_state);
1011 }
1012}
1013
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001014static int nilfs_segctor_apply_buffers(struct nilfs_sc_info *sci,
1015 struct inode *inode,
1016 struct list_head *listp,
1017 int (*collect)(struct nilfs_sc_info *,
1018 struct buffer_head *,
1019 struct inode *))
1020{
1021 struct buffer_head *bh, *n;
1022 int err = 0;
1023
1024 if (collect) {
1025 list_for_each_entry_safe(bh, n, listp, b_assoc_buffers) {
1026 list_del_init(&bh->b_assoc_buffers);
1027 err = collect(sci, bh, inode);
1028 brelse(bh);
1029 if (unlikely(err))
1030 goto dispose_buffers;
1031 }
1032 return 0;
1033 }
1034
1035 dispose_buffers:
1036 while (!list_empty(listp)) {
Ryusuke Konishi0cc1283882011-05-05 12:56:51 +09001037 bh = list_first_entry(listp, struct buffer_head,
1038 b_assoc_buffers);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001039 list_del_init(&bh->b_assoc_buffers);
1040 brelse(bh);
1041 }
1042 return err;
1043}
1044
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -07001045static size_t nilfs_segctor_buffer_rest(struct nilfs_sc_info *sci)
1046{
1047 /* Remaining number of blocks within segment buffer */
1048 return sci->sc_segbuf_nblocks -
1049 (sci->sc_nblk_this_inc + sci->sc_curseg->sb_sum.nblocks);
1050}
1051
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001052static int nilfs_segctor_scan_file(struct nilfs_sc_info *sci,
1053 struct inode *inode,
Julia Lawall1c613cb2016-05-23 16:22:57 -07001054 const struct nilfs_sc_operations *sc_ops)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001055{
1056 LIST_HEAD(data_buffers);
1057 LIST_HEAD(node_buffers);
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -07001058 int err;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001059
1060 if (!(sci->sc_stage.flags & NILFS_CF_NODE)) {
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -07001061 size_t n, rest = nilfs_segctor_buffer_rest(sci);
1062
1063 n = nilfs_lookup_dirty_data_buffers(
1064 inode, &data_buffers, rest + 1, 0, LLONG_MAX);
1065 if (n > rest) {
1066 err = nilfs_segctor_apply_buffers(
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001067 sci, inode, &data_buffers,
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -07001068 sc_ops->collect_data);
1069 BUG_ON(!err); /* always receive -E2BIG or true error */
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001070 goto break_or_fail;
1071 }
1072 }
1073 nilfs_lookup_dirty_node_buffers(inode, &node_buffers);
1074
1075 if (!(sci->sc_stage.flags & NILFS_CF_NODE)) {
1076 err = nilfs_segctor_apply_buffers(
1077 sci, inode, &data_buffers, sc_ops->collect_data);
1078 if (unlikely(err)) {
1079 /* dispose node list */
1080 nilfs_segctor_apply_buffers(
1081 sci, inode, &node_buffers, NULL);
1082 goto break_or_fail;
1083 }
1084 sci->sc_stage.flags |= NILFS_CF_NODE;
1085 }
1086 /* Collect node */
1087 err = nilfs_segctor_apply_buffers(
1088 sci, inode, &node_buffers, sc_ops->collect_node);
1089 if (unlikely(err))
1090 goto break_or_fail;
1091
1092 nilfs_bmap_lookup_dirty_buffers(NILFS_I(inode)->i_bmap, &node_buffers);
1093 err = nilfs_segctor_apply_buffers(
1094 sci, inode, &node_buffers, sc_ops->collect_bmap);
1095 if (unlikely(err))
1096 goto break_or_fail;
1097
1098 nilfs_segctor_end_finfo(sci, inode);
1099 sci->sc_stage.flags &= ~NILFS_CF_NODE;
1100
1101 break_or_fail:
1102 return err;
1103}
1104
1105static int nilfs_segctor_scan_file_dsync(struct nilfs_sc_info *sci,
1106 struct inode *inode)
1107{
1108 LIST_HEAD(data_buffers);
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -07001109 size_t n, rest = nilfs_segctor_buffer_rest(sci);
1110 int err;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001111
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -07001112 n = nilfs_lookup_dirty_data_buffers(inode, &data_buffers, rest + 1,
1113 sci->sc_dsync_start,
1114 sci->sc_dsync_end);
1115
1116 err = nilfs_segctor_apply_buffers(sci, inode, &data_buffers,
1117 nilfs_collect_file_data);
1118 if (!err) {
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001119 nilfs_segctor_end_finfo(sci, inode);
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -07001120 BUG_ON(n > rest);
1121 /* always receive -E2BIG or true error if n > rest */
1122 }
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001123 return err;
1124}
1125
1126static int nilfs_segctor_collect_blocks(struct nilfs_sc_info *sci, int mode)
1127{
Ryusuke Konishie3154e92011-03-09 11:05:08 +09001128 struct the_nilfs *nilfs = sci->sc_super->s_fs_info;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001129 struct list_head *head;
1130 struct nilfs_inode_info *ii;
Ryusuke Konishi071cb4b2009-05-16 23:44:55 +09001131 size_t ndone;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001132 int err = 0;
1133
Hitoshi Mitake58497702015-11-06 16:31:59 -08001134 switch (nilfs_sc_cstage_get(sci)) {
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001135 case NILFS_ST_INIT:
1136 /* Pre-processes */
1137 sci->sc_stage.flags = 0;
1138
1139 if (!test_bit(NILFS_SC_UNCLOSED, &sci->sc_flags)) {
1140 sci->sc_nblk_inc = 0;
1141 sci->sc_curseg->sb_sum.flags = NILFS_SS_LOGBGN;
1142 if (mode == SC_LSEG_DSYNC) {
Hitoshi Mitake58497702015-11-06 16:31:59 -08001143 nilfs_sc_cstage_set(sci, NILFS_ST_DSYNC);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001144 goto dsync_mode;
1145 }
1146 }
1147
1148 sci->sc_stage.dirty_file_ptr = NULL;
1149 sci->sc_stage.gc_inode_ptr = NULL;
1150 if (mode == SC_FLUSH_DAT) {
Hitoshi Mitake58497702015-11-06 16:31:59 -08001151 nilfs_sc_cstage_set(sci, NILFS_ST_DAT);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001152 goto dat_stage;
1153 }
Hitoshi Mitake58497702015-11-06 16:31:59 -08001154 nilfs_sc_cstage_inc(sci); /* Fall through */
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001155 case NILFS_ST_GC:
1156 if (nilfs_doing_gc()) {
1157 head = &sci->sc_gc_inodes;
1158 ii = list_prepare_entry(sci->sc_stage.gc_inode_ptr,
1159 head, i_dirty);
1160 list_for_each_entry_continue(ii, head, i_dirty) {
1161 err = nilfs_segctor_scan_file(
1162 sci, &ii->vfs_inode,
1163 &nilfs_sc_file_ops);
1164 if (unlikely(err)) {
1165 sci->sc_stage.gc_inode_ptr = list_entry(
1166 ii->i_dirty.prev,
1167 struct nilfs_inode_info,
1168 i_dirty);
1169 goto break_or_fail;
1170 }
1171 set_bit(NILFS_I_COLLECTED, &ii->i_state);
1172 }
1173 sci->sc_stage.gc_inode_ptr = NULL;
1174 }
Hitoshi Mitake58497702015-11-06 16:31:59 -08001175 nilfs_sc_cstage_inc(sci); /* Fall through */
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001176 case NILFS_ST_FILE:
1177 head = &sci->sc_dirty_files;
1178 ii = list_prepare_entry(sci->sc_stage.dirty_file_ptr, head,
1179 i_dirty);
1180 list_for_each_entry_continue(ii, head, i_dirty) {
1181 clear_bit(NILFS_I_DIRTY, &ii->i_state);
1182
1183 err = nilfs_segctor_scan_file(sci, &ii->vfs_inode,
1184 &nilfs_sc_file_ops);
1185 if (unlikely(err)) {
1186 sci->sc_stage.dirty_file_ptr =
1187 list_entry(ii->i_dirty.prev,
1188 struct nilfs_inode_info,
1189 i_dirty);
1190 goto break_or_fail;
1191 }
1192 /* sci->sc_stage.dirty_file_ptr = NILFS_I(inode); */
1193 /* XXX: required ? */
1194 }
1195 sci->sc_stage.dirty_file_ptr = NULL;
1196 if (mode == SC_FLUSH_FILE) {
Hitoshi Mitake58497702015-11-06 16:31:59 -08001197 nilfs_sc_cstage_set(sci, NILFS_ST_DONE);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001198 return 0;
1199 }
Hitoshi Mitake58497702015-11-06 16:31:59 -08001200 nilfs_sc_cstage_inc(sci);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001201 sci->sc_stage.flags |= NILFS_CF_IFILE_STARTED;
1202 /* Fall through */
1203 case NILFS_ST_IFILE:
Ryusuke Konishie912a5b2010-08-14 13:07:15 +09001204 err = nilfs_segctor_scan_file(sci, sci->sc_root->ifile,
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001205 &nilfs_sc_file_ops);
1206 if (unlikely(err))
1207 break;
Hitoshi Mitake58497702015-11-06 16:31:59 -08001208 nilfs_sc_cstage_inc(sci);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001209 /* Creating a checkpoint */
1210 err = nilfs_segctor_create_checkpoint(sci);
1211 if (unlikely(err))
1212 break;
1213 /* Fall through */
1214 case NILFS_ST_CPFILE:
1215 err = nilfs_segctor_scan_file(sci, nilfs->ns_cpfile,
1216 &nilfs_sc_file_ops);
1217 if (unlikely(err))
1218 break;
Hitoshi Mitake58497702015-11-06 16:31:59 -08001219 nilfs_sc_cstage_inc(sci); /* Fall through */
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001220 case NILFS_ST_SUFILE:
Ryusuke Konishi071cb4b2009-05-16 23:44:55 +09001221 err = nilfs_sufile_freev(nilfs->ns_sufile, sci->sc_freesegs,
1222 sci->sc_nfreesegs, &ndone);
1223 if (unlikely(err)) {
1224 nilfs_sufile_cancel_freev(nilfs->ns_sufile,
1225 sci->sc_freesegs, ndone,
1226 NULL);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001227 break;
Ryusuke Konishi071cb4b2009-05-16 23:44:55 +09001228 }
1229 sci->sc_stage.flags |= NILFS_CF_SUFREED;
1230
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001231 err = nilfs_segctor_scan_file(sci, nilfs->ns_sufile,
1232 &nilfs_sc_file_ops);
1233 if (unlikely(err))
1234 break;
Hitoshi Mitake58497702015-11-06 16:31:59 -08001235 nilfs_sc_cstage_inc(sci); /* Fall through */
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001236 case NILFS_ST_DAT:
1237 dat_stage:
Ryusuke Konishi365e2152010-12-27 00:07:30 +09001238 err = nilfs_segctor_scan_file(sci, nilfs->ns_dat,
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001239 &nilfs_sc_dat_ops);
1240 if (unlikely(err))
1241 break;
1242 if (mode == SC_FLUSH_DAT) {
Hitoshi Mitake58497702015-11-06 16:31:59 -08001243 nilfs_sc_cstage_set(sci, NILFS_ST_DONE);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001244 return 0;
1245 }
Hitoshi Mitake58497702015-11-06 16:31:59 -08001246 nilfs_sc_cstage_inc(sci); /* Fall through */
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001247 case NILFS_ST_SR:
1248 if (mode == SC_LSEG_SR) {
1249 /* Appending a super root */
1250 err = nilfs_segctor_add_super_root(sci);
1251 if (unlikely(err))
1252 break;
1253 }
1254 /* End of a logical segment */
1255 sci->sc_curseg->sb_sum.flags |= NILFS_SS_LOGEND;
Hitoshi Mitake58497702015-11-06 16:31:59 -08001256 nilfs_sc_cstage_set(sci, NILFS_ST_DONE);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001257 return 0;
1258 case NILFS_ST_DSYNC:
1259 dsync_mode:
1260 sci->sc_curseg->sb_sum.flags |= NILFS_SS_SYNDT;
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -07001261 ii = sci->sc_dsync_inode;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001262 if (!test_bit(NILFS_I_BUSY, &ii->i_state))
1263 break;
1264
1265 err = nilfs_segctor_scan_file_dsync(sci, &ii->vfs_inode);
1266 if (unlikely(err))
1267 break;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001268 sci->sc_curseg->sb_sum.flags |= NILFS_SS_LOGEND;
Hitoshi Mitake58497702015-11-06 16:31:59 -08001269 nilfs_sc_cstage_set(sci, NILFS_ST_DONE);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001270 return 0;
1271 case NILFS_ST_DONE:
1272 return 0;
1273 default:
1274 BUG();
1275 }
1276
1277 break_or_fail:
1278 return err;
1279}
1280
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001281/**
1282 * nilfs_segctor_begin_construction - setup segment buffer to make a new log
1283 * @sci: nilfs_sc_info
1284 * @nilfs: nilfs object
1285 */
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001286static int nilfs_segctor_begin_construction(struct nilfs_sc_info *sci,
1287 struct the_nilfs *nilfs)
1288{
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001289 struct nilfs_segment_buffer *segbuf, *prev;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001290 __u64 nextnum;
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001291 int err, alloc = 0;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001292
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001293 segbuf = nilfs_segbuf_new(sci->sc_super);
1294 if (unlikely(!segbuf))
1295 return -ENOMEM;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001296
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001297 if (list_empty(&sci->sc_write_logs)) {
1298 nilfs_segbuf_map(segbuf, nilfs->ns_segnum,
1299 nilfs->ns_pseg_offset, nilfs);
1300 if (segbuf->sb_rest_blocks < NILFS_PSEG_MIN_BLOCKS) {
1301 nilfs_shift_to_next_segment(nilfs);
1302 nilfs_segbuf_map(segbuf, nilfs->ns_segnum, 0, nilfs);
1303 }
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001304
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001305 segbuf->sb_sum.seg_seq = nilfs->ns_seg_seq;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001306 nextnum = nilfs->ns_nextnum;
1307
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001308 if (nilfs->ns_segnum == nilfs->ns_nextnum)
1309 /* Start from the head of a new full segment */
1310 alloc++;
1311 } else {
1312 /* Continue logs */
1313 prev = NILFS_LAST_SEGBUF(&sci->sc_write_logs);
1314 nilfs_segbuf_map_cont(segbuf, prev);
1315 segbuf->sb_sum.seg_seq = prev->sb_sum.seg_seq;
1316 nextnum = prev->sb_nextnum;
1317
1318 if (segbuf->sb_rest_blocks < NILFS_PSEG_MIN_BLOCKS) {
1319 nilfs_segbuf_map(segbuf, prev->sb_nextnum, 0, nilfs);
1320 segbuf->sb_sum.seg_seq++;
1321 alloc++;
1322 }
1323 }
1324
1325 err = nilfs_sufile_mark_dirty(nilfs->ns_sufile, segbuf->sb_segnum);
1326 if (err)
1327 goto failed;
1328
1329 if (alloc) {
1330 err = nilfs_sufile_alloc(nilfs->ns_sufile, &nextnum);
1331 if (err)
1332 goto failed;
1333 }
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001334 nilfs_segbuf_set_next_segnum(segbuf, nextnum, nilfs);
1335
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001336 BUG_ON(!list_empty(&sci->sc_segbufs));
1337 list_add_tail(&segbuf->sb_list, &sci->sc_segbufs);
1338 sci->sc_segbuf_nblocks = segbuf->sb_rest_blocks;
Ryusuke Konishicece5522009-04-06 19:01:58 -07001339 return 0;
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001340
1341 failed:
1342 nilfs_segbuf_free(segbuf);
1343 return err;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001344}
1345
1346static int nilfs_segctor_extend_segments(struct nilfs_sc_info *sci,
1347 struct the_nilfs *nilfs, int nadd)
1348{
Ryusuke Konishie29df392009-11-29 16:51:16 +09001349 struct nilfs_segment_buffer *segbuf, *prev;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001350 struct inode *sufile = nilfs->ns_sufile;
1351 __u64 nextnextnum;
1352 LIST_HEAD(list);
1353 int err, ret, i;
1354
1355 prev = NILFS_LAST_SEGBUF(&sci->sc_segbufs);
1356 /*
1357 * Since the segment specified with nextnum might be allocated during
1358 * the previous construction, the buffer including its segusage may
1359 * not be dirty. The following call ensures that the buffer is dirty
1360 * and will pin the buffer on memory until the sufile is written.
1361 */
Ryusuke Konishi61a189e2009-11-18 17:25:12 +09001362 err = nilfs_sufile_mark_dirty(sufile, prev->sb_nextnum);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001363 if (unlikely(err))
1364 return err;
1365
1366 for (i = 0; i < nadd; i++) {
1367 /* extend segment info */
1368 err = -ENOMEM;
1369 segbuf = nilfs_segbuf_new(sci->sc_super);
1370 if (unlikely(!segbuf))
1371 goto failed;
1372
1373 /* map this buffer to region of segment on-disk */
Ryusuke Konishicece5522009-04-06 19:01:58 -07001374 nilfs_segbuf_map(segbuf, prev->sb_nextnum, 0, nilfs);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001375 sci->sc_segbuf_nblocks += segbuf->sb_rest_blocks;
1376
1377 /* allocate the next next full segment */
1378 err = nilfs_sufile_alloc(sufile, &nextnextnum);
1379 if (unlikely(err))
1380 goto failed_segbuf;
1381
1382 segbuf->sb_sum.seg_seq = prev->sb_sum.seg_seq + 1;
1383 nilfs_segbuf_set_next_segnum(segbuf, nextnextnum, nilfs);
1384
1385 list_add_tail(&segbuf->sb_list, &list);
1386 prev = segbuf;
1387 }
Ryusuke Konishi0935db72009-11-29 02:39:11 +09001388 list_splice_tail(&list, &sci->sc_segbufs);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001389 return 0;
1390
1391 failed_segbuf:
1392 nilfs_segbuf_free(segbuf);
1393 failed:
Ryusuke Konishie29df392009-11-29 16:51:16 +09001394 list_for_each_entry(segbuf, &list, sb_list) {
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001395 ret = nilfs_sufile_free(sufile, segbuf->sb_nextnum);
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -07001396 WARN_ON(ret); /* never fails */
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001397 }
Ryusuke Konishie29df392009-11-29 16:51:16 +09001398 nilfs_destroy_logs(&list);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001399 return err;
1400}
1401
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001402static void nilfs_free_incomplete_logs(struct list_head *logs,
1403 struct the_nilfs *nilfs)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001404{
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001405 struct nilfs_segment_buffer *segbuf, *prev;
1406 struct inode *sufile = nilfs->ns_sufile;
Ryusuke Konishi9284ad22009-11-25 01:04:21 +09001407 int ret;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001408
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001409 segbuf = NILFS_FIRST_SEGBUF(logs);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001410 if (nilfs->ns_nextnum != segbuf->sb_nextnum) {
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001411 ret = nilfs_sufile_free(sufile, segbuf->sb_nextnum);
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -07001412 WARN_ON(ret); /* never fails */
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001413 }
Ryusuke Konishi9284ad22009-11-25 01:04:21 +09001414 if (atomic_read(&segbuf->sb_err)) {
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001415 /* Case 1: The first segment failed */
1416 if (segbuf->sb_pseg_start != segbuf->sb_fseg_start)
Ryusuke Konishi076a3782016-05-23 16:23:48 -07001417 /*
1418 * Case 1a: Partial segment appended into an existing
1419 * segment
1420 */
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001421 nilfs_terminate_segment(nilfs, segbuf->sb_fseg_start,
1422 segbuf->sb_fseg_end);
1423 else /* Case 1b: New full segment */
1424 set_nilfs_discontinued(nilfs);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001425 }
1426
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001427 prev = segbuf;
1428 list_for_each_entry_continue(segbuf, logs, sb_list) {
1429 if (prev->sb_nextnum != segbuf->sb_nextnum) {
1430 ret = nilfs_sufile_free(sufile, segbuf->sb_nextnum);
1431 WARN_ON(ret); /* never fails */
1432 }
Ryusuke Konishi9284ad22009-11-25 01:04:21 +09001433 if (atomic_read(&segbuf->sb_err) &&
1434 segbuf->sb_segnum != nilfs->ns_nextnum)
1435 /* Case 2: extended segment (!= next) failed */
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001436 nilfs_sufile_set_error(sufile, segbuf->sb_segnum);
1437 prev = segbuf;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001438 }
1439}
1440
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001441static void nilfs_segctor_update_segusage(struct nilfs_sc_info *sci,
1442 struct inode *sufile)
1443{
1444 struct nilfs_segment_buffer *segbuf;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001445 unsigned long live_blocks;
1446 int ret;
1447
1448 list_for_each_entry(segbuf, &sci->sc_segbufs, sb_list) {
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001449 live_blocks = segbuf->sb_sum.nblocks +
1450 (segbuf->sb_pseg_start - segbuf->sb_fseg_start);
Ryusuke Konishi071ec542009-11-18 18:23:34 +09001451 ret = nilfs_sufile_set_segment_usage(sufile, segbuf->sb_segnum,
1452 live_blocks,
1453 sci->sc_seg_ctime);
1454 WARN_ON(ret); /* always succeed because the segusage is dirty */
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001455 }
1456}
1457
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001458static void nilfs_cancel_segusage(struct list_head *logs, struct inode *sufile)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001459{
1460 struct nilfs_segment_buffer *segbuf;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001461 int ret;
1462
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001463 segbuf = NILFS_FIRST_SEGBUF(logs);
Ryusuke Konishi071ec542009-11-18 18:23:34 +09001464 ret = nilfs_sufile_set_segment_usage(sufile, segbuf->sb_segnum,
1465 segbuf->sb_pseg_start -
1466 segbuf->sb_fseg_start, 0);
1467 WARN_ON(ret); /* always succeed because the segusage is dirty */
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001468
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001469 list_for_each_entry_continue(segbuf, logs, sb_list) {
Ryusuke Konishi071ec542009-11-18 18:23:34 +09001470 ret = nilfs_sufile_set_segment_usage(sufile, segbuf->sb_segnum,
1471 0, 0);
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -07001472 WARN_ON(ret); /* always succeed */
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001473 }
1474}
1475
1476static void nilfs_segctor_truncate_segments(struct nilfs_sc_info *sci,
1477 struct nilfs_segment_buffer *last,
1478 struct inode *sufile)
1479{
Ryusuke Konishie29df392009-11-29 16:51:16 +09001480 struct nilfs_segment_buffer *segbuf = last;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001481 int ret;
1482
Ryusuke Konishie29df392009-11-29 16:51:16 +09001483 list_for_each_entry_continue(segbuf, &sci->sc_segbufs, sb_list) {
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001484 sci->sc_segbuf_nblocks -= segbuf->sb_rest_blocks;
1485 ret = nilfs_sufile_free(sufile, segbuf->sb_nextnum);
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -07001486 WARN_ON(ret);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001487 }
Ryusuke Konishie29df392009-11-29 16:51:16 +09001488 nilfs_truncate_logs(&sci->sc_segbufs, last);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001489}
1490
1491
1492static int nilfs_segctor_collect(struct nilfs_sc_info *sci,
1493 struct the_nilfs *nilfs, int mode)
1494{
1495 struct nilfs_cstage prev_stage = sci->sc_stage;
1496 int err, nadd = 1;
1497
1498 /* Collection retry loop */
1499 for (;;) {
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001500 sci->sc_nblk_this_inc = 0;
1501 sci->sc_curseg = NILFS_FIRST_SEGBUF(&sci->sc_segbufs);
1502
1503 err = nilfs_segctor_reset_segment_buffer(sci);
1504 if (unlikely(err))
1505 goto failed;
1506
1507 err = nilfs_segctor_collect_blocks(sci, mode);
1508 sci->sc_nblk_this_inc += sci->sc_curseg->sb_sum.nblocks;
1509 if (!err)
1510 break;
1511
1512 if (unlikely(err != -E2BIG))
1513 goto failed;
1514
1515 /* The current segment is filled up */
Hitoshi Mitake58497702015-11-06 16:31:59 -08001516 if (mode != SC_LSEG_SR ||
1517 nilfs_sc_cstage_get(sci) < NILFS_ST_CPFILE)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001518 break;
1519
Ryusuke Konishi2d8428a2010-03-22 14:01:24 +09001520 nilfs_clear_logs(&sci->sc_segbufs);
1521
Ryusuke Konishi071cb4b2009-05-16 23:44:55 +09001522 if (sci->sc_stage.flags & NILFS_CF_SUFREED) {
1523 err = nilfs_sufile_cancel_freev(nilfs->ns_sufile,
1524 sci->sc_freesegs,
1525 sci->sc_nfreesegs,
1526 NULL);
1527 WARN_ON(err); /* do not happen */
Andreas Rohner70f2fe32014-01-14 17:56:36 -08001528 sci->sc_stage.flags &= ~NILFS_CF_SUFREED;
Ryusuke Konishi071cb4b2009-05-16 23:44:55 +09001529 }
Andreas Rohner70f2fe32014-01-14 17:56:36 -08001530
1531 err = nilfs_segctor_extend_segments(sci, nilfs, nadd);
1532 if (unlikely(err))
1533 return err;
1534
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001535 nadd = min_t(int, nadd << 1, SC_MAX_SEGDELTA);
1536 sci->sc_stage = prev_stage;
1537 }
1538 nilfs_segctor_truncate_segments(sci, sci->sc_curseg, nilfs->ns_sufile);
1539 return 0;
1540
1541 failed:
1542 return err;
1543}
1544
1545static void nilfs_list_replace_buffer(struct buffer_head *old_bh,
1546 struct buffer_head *new_bh)
1547{
1548 BUG_ON(!list_empty(&new_bh->b_assoc_buffers));
1549
1550 list_replace_init(&old_bh->b_assoc_buffers, &new_bh->b_assoc_buffers);
1551 /* The caller must release old_bh */
1552}
1553
1554static int
1555nilfs_segctor_update_payload_blocknr(struct nilfs_sc_info *sci,
1556 struct nilfs_segment_buffer *segbuf,
1557 int mode)
1558{
1559 struct inode *inode = NULL;
1560 sector_t blocknr;
1561 unsigned long nfinfo = segbuf->sb_sum.nfinfo;
1562 unsigned long nblocks = 0, ndatablk = 0;
Julia Lawall1c613cb2016-05-23 16:22:57 -07001563 const struct nilfs_sc_operations *sc_op = NULL;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001564 struct nilfs_segsum_pointer ssp;
1565 struct nilfs_finfo *finfo = NULL;
1566 union nilfs_binfo binfo;
1567 struct buffer_head *bh, *bh_org;
1568 ino_t ino = 0;
1569 int err = 0;
1570
1571 if (!nfinfo)
1572 goto out;
1573
1574 blocknr = segbuf->sb_pseg_start + segbuf->sb_sum.nsumblk;
1575 ssp.bh = NILFS_SEGBUF_FIRST_BH(&segbuf->sb_segsum_buffers);
1576 ssp.offset = sizeof(struct nilfs_segment_summary);
1577
1578 list_for_each_entry(bh, &segbuf->sb_payload_buffers, b_assoc_buffers) {
Ryusuke Konishi1e2b68b2010-03-23 01:15:31 +09001579 if (bh == segbuf->sb_super_root)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001580 break;
1581 if (!finfo) {
1582 finfo = nilfs_segctor_map_segsum_entry(
1583 sci, &ssp, sizeof(*finfo));
1584 ino = le64_to_cpu(finfo->fi_ino);
1585 nblocks = le32_to_cpu(finfo->fi_nblocks);
1586 ndatablk = le32_to_cpu(finfo->fi_ndatablk);
1587
Ryusuke Konishiaa405b12011-05-05 12:56:51 +09001588 inode = bh->b_page->mapping->host;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001589
1590 if (mode == SC_LSEG_DSYNC)
1591 sc_op = &nilfs_sc_dsync_ops;
1592 else if (ino == NILFS_DAT_INO)
1593 sc_op = &nilfs_sc_dat_ops;
1594 else /* file blocks */
1595 sc_op = &nilfs_sc_file_ops;
1596 }
1597 bh_org = bh;
1598 get_bh(bh_org);
1599 err = nilfs_bmap_assign(NILFS_I(inode)->i_bmap, &bh, blocknr,
1600 &binfo);
1601 if (bh != bh_org)
1602 nilfs_list_replace_buffer(bh_org, bh);
1603 brelse(bh_org);
1604 if (unlikely(err))
1605 goto failed_bmap;
1606
1607 if (ndatablk > 0)
1608 sc_op->write_data_binfo(sci, &ssp, &binfo);
1609 else
1610 sc_op->write_node_binfo(sci, &ssp, &binfo);
1611
1612 blocknr++;
1613 if (--nblocks == 0) {
1614 finfo = NULL;
1615 if (--nfinfo == 0)
1616 break;
1617 } else if (ndatablk > 0)
1618 ndatablk--;
1619 }
1620 out:
1621 return 0;
1622
1623 failed_bmap:
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001624 return err;
1625}
1626
1627static int nilfs_segctor_assign(struct nilfs_sc_info *sci, int mode)
1628{
1629 struct nilfs_segment_buffer *segbuf;
1630 int err;
1631
1632 list_for_each_entry(segbuf, &sci->sc_segbufs, sb_list) {
1633 err = nilfs_segctor_update_payload_blocknr(sci, segbuf, mode);
1634 if (unlikely(err))
1635 return err;
1636 nilfs_segbuf_fill_in_segsum(segbuf);
1637 }
1638 return 0;
1639}
1640
Ryusuke Konishi1cb2d382011-04-04 12:53:28 +09001641static void nilfs_begin_page_io(struct page *page)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001642{
1643 if (!page || PageWriteback(page))
Ryusuke Konishi076a3782016-05-23 16:23:48 -07001644 /*
1645 * For split b-tree node pages, this function may be called
1646 * twice. We ignore the 2nd or later calls by this check.
1647 */
Ryusuke Konishi1cb2d382011-04-04 12:53:28 +09001648 return;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001649
1650 lock_page(page);
1651 clear_page_dirty_for_io(page);
1652 set_page_writeback(page);
1653 unlock_page(page);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001654}
1655
Ryusuke Konishi1cb2d382011-04-04 12:53:28 +09001656static void nilfs_segctor_prepare_write(struct nilfs_sc_info *sci)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001657{
1658 struct nilfs_segment_buffer *segbuf;
1659 struct page *bd_page = NULL, *fs_page = NULL;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001660
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001661 list_for_each_entry(segbuf, &sci->sc_segbufs, sb_list) {
1662 struct buffer_head *bh;
1663
1664 list_for_each_entry(bh, &segbuf->sb_segsum_buffers,
1665 b_assoc_buffers) {
1666 if (bh->b_page != bd_page) {
1667 if (bd_page) {
1668 lock_page(bd_page);
1669 clear_page_dirty_for_io(bd_page);
1670 set_page_writeback(bd_page);
1671 unlock_page(bd_page);
1672 }
1673 bd_page = bh->b_page;
1674 }
1675 }
1676
1677 list_for_each_entry(bh, &segbuf->sb_payload_buffers,
1678 b_assoc_buffers) {
Vyacheslav Dubeyko7f42ec32013-09-30 13:45:12 -07001679 set_buffer_async_write(bh);
Ryusuke Konishi1e2b68b2010-03-23 01:15:31 +09001680 if (bh == segbuf->sb_super_root) {
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001681 if (bh->b_page != bd_page) {
1682 lock_page(bd_page);
1683 clear_page_dirty_for_io(bd_page);
1684 set_page_writeback(bd_page);
1685 unlock_page(bd_page);
1686 bd_page = bh->b_page;
1687 }
1688 break;
1689 }
1690 if (bh->b_page != fs_page) {
Ryusuke Konishi1cb2d382011-04-04 12:53:28 +09001691 nilfs_begin_page_io(fs_page);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001692 fs_page = bh->b_page;
1693 }
1694 }
1695 }
1696 if (bd_page) {
1697 lock_page(bd_page);
1698 clear_page_dirty_for_io(bd_page);
1699 set_page_writeback(bd_page);
1700 unlock_page(bd_page);
1701 }
Ryusuke Konishi1cb2d382011-04-04 12:53:28 +09001702 nilfs_begin_page_io(fs_page);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001703}
1704
1705static int nilfs_segctor_write(struct nilfs_sc_info *sci,
Ryusuke Konishi9c965ba2009-11-29 01:17:31 +09001706 struct the_nilfs *nilfs)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001707{
Ryusuke Konishid1c6b722009-12-17 00:55:40 +09001708 int ret;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001709
Ryusuke Konishid1c6b722009-12-17 00:55:40 +09001710 ret = nilfs_write_logs(&sci->sc_segbufs, nilfs);
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001711 list_splice_tail_init(&sci->sc_segbufs, &sci->sc_write_logs);
1712 return ret;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001713}
1714
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001715static void nilfs_end_page_io(struct page *page, int err)
1716{
1717 if (!page)
1718 return;
1719
Ryusuke Konishia9777842009-07-28 17:55:29 +09001720 if (buffer_nilfs_node(page_buffers(page)) && !PageWriteback(page)) {
Ryusuke Konishi8227b292009-06-18 23:52:23 +09001721 /*
1722 * For b-tree node pages, this function may be called twice
1723 * or more because they might be split in a segment.
1724 */
Ryusuke Konishia9777842009-07-28 17:55:29 +09001725 if (PageDirty(page)) {
1726 /*
1727 * For pages holding split b-tree node buffers, dirty
1728 * flag on the buffers may be cleared discretely.
1729 * In that case, the page is once redirtied for
1730 * remaining buffers, and it must be cancelled if
1731 * all the buffers get cleaned later.
1732 */
1733 lock_page(page);
1734 if (nilfs_page_buffers_clean(page))
1735 __nilfs_clear_page_dirty(page);
1736 unlock_page(page);
1737 }
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001738 return;
Ryusuke Konishia9777842009-07-28 17:55:29 +09001739 }
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001740
Ryusuke Konishi1cb2d382011-04-04 12:53:28 +09001741 if (!err) {
1742 if (!nilfs_page_buffers_clean(page))
1743 __set_page_dirty_nobuffers(page);
1744 ClearPageError(page);
1745 } else {
1746 __set_page_dirty_nobuffers(page);
1747 SetPageError(page);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001748 }
Ryusuke Konishi1cb2d382011-04-04 12:53:28 +09001749
1750 end_page_writeback(page);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001751}
1752
Ryusuke Konishi1cb2d382011-04-04 12:53:28 +09001753static void nilfs_abort_logs(struct list_head *logs, int err)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001754{
1755 struct nilfs_segment_buffer *segbuf;
1756 struct page *bd_page = NULL, *fs_page = NULL;
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001757 struct buffer_head *bh;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001758
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001759 if (list_empty(logs))
1760 return;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001761
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001762 list_for_each_entry(segbuf, logs, sb_list) {
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001763 list_for_each_entry(bh, &segbuf->sb_segsum_buffers,
1764 b_assoc_buffers) {
1765 if (bh->b_page != bd_page) {
1766 if (bd_page)
1767 end_page_writeback(bd_page);
1768 bd_page = bh->b_page;
1769 }
1770 }
1771
1772 list_for_each_entry(bh, &segbuf->sb_payload_buffers,
1773 b_assoc_buffers) {
Vyacheslav Dubeyko7f42ec32013-09-30 13:45:12 -07001774 clear_buffer_async_write(bh);
Ryusuke Konishi1e2b68b2010-03-23 01:15:31 +09001775 if (bh == segbuf->sb_super_root) {
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001776 if (bh->b_page != bd_page) {
1777 end_page_writeback(bd_page);
1778 bd_page = bh->b_page;
1779 }
1780 break;
1781 }
1782 if (bh->b_page != fs_page) {
1783 nilfs_end_page_io(fs_page, err);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001784 fs_page = bh->b_page;
1785 }
1786 }
1787 }
1788 if (bd_page)
1789 end_page_writeback(bd_page);
1790
1791 nilfs_end_page_io(fs_page, err);
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001792}
1793
1794static void nilfs_segctor_abort_construction(struct nilfs_sc_info *sci,
1795 struct the_nilfs *nilfs, int err)
1796{
1797 LIST_HEAD(logs);
1798 int ret;
1799
1800 list_splice_tail_init(&sci->sc_write_logs, &logs);
1801 ret = nilfs_wait_on_logs(&logs);
Ryusuke Konishi1cb2d382011-04-04 12:53:28 +09001802 nilfs_abort_logs(&logs, ret ? : err);
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001803
1804 list_splice_tail_init(&sci->sc_segbufs, &logs);
1805 nilfs_cancel_segusage(&logs, nilfs->ns_sufile);
1806 nilfs_free_incomplete_logs(&logs, nilfs);
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001807
1808 if (sci->sc_stage.flags & NILFS_CF_SUFREED) {
1809 ret = nilfs_sufile_cancel_freev(nilfs->ns_sufile,
1810 sci->sc_freesegs,
1811 sci->sc_nfreesegs,
1812 NULL);
1813 WARN_ON(ret); /* do not happen */
1814 }
1815
1816 nilfs_destroy_logs(&logs);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001817}
1818
1819static void nilfs_set_next_segment(struct the_nilfs *nilfs,
1820 struct nilfs_segment_buffer *segbuf)
1821{
1822 nilfs->ns_segnum = segbuf->sb_segnum;
1823 nilfs->ns_nextnum = segbuf->sb_nextnum;
1824 nilfs->ns_pseg_offset = segbuf->sb_pseg_start - segbuf->sb_fseg_start
1825 + segbuf->sb_sum.nblocks;
1826 nilfs->ns_seg_seq = segbuf->sb_sum.seg_seq;
1827 nilfs->ns_ctime = segbuf->sb_sum.ctime;
1828}
1829
1830static void nilfs_segctor_complete_write(struct nilfs_sc_info *sci)
1831{
1832 struct nilfs_segment_buffer *segbuf;
1833 struct page *bd_page = NULL, *fs_page = NULL;
Ryusuke Konishie3154e92011-03-09 11:05:08 +09001834 struct the_nilfs *nilfs = sci->sc_super->s_fs_info;
Ryusuke Konishi1e2b68b2010-03-23 01:15:31 +09001835 int update_sr = false;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001836
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001837 list_for_each_entry(segbuf, &sci->sc_write_logs, sb_list) {
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001838 struct buffer_head *bh;
1839
1840 list_for_each_entry(bh, &segbuf->sb_segsum_buffers,
1841 b_assoc_buffers) {
1842 set_buffer_uptodate(bh);
1843 clear_buffer_dirty(bh);
1844 if (bh->b_page != bd_page) {
1845 if (bd_page)
1846 end_page_writeback(bd_page);
1847 bd_page = bh->b_page;
1848 }
1849 }
1850 /*
1851 * We assume that the buffers which belong to the same page
1852 * continue over the buffer list.
1853 * Under this assumption, the last BHs of pages is
1854 * identifiable by the discontinuity of bh->b_page
1855 * (page != fs_page).
1856 *
1857 * For B-tree node blocks, however, this assumption is not
1858 * guaranteed. The cleanup code of B-tree node pages needs
1859 * special care.
1860 */
1861 list_for_each_entry(bh, &segbuf->sb_payload_buffers,
1862 b_assoc_buffers) {
Ryusuke Konishi4ce5c342016-08-02 14:05:28 -07001863 const unsigned long set_bits = BIT(BH_Uptodate);
Ryusuke Konishiead8ecf2015-04-16 12:46:28 -07001864 const unsigned long clear_bits =
Ryusuke Konishi4ce5c342016-08-02 14:05:28 -07001865 (BIT(BH_Dirty) | BIT(BH_Async_Write) |
1866 BIT(BH_Delay) | BIT(BH_NILFS_Volatile) |
1867 BIT(BH_NILFS_Redirected));
Ryusuke Konishiead8ecf2015-04-16 12:46:28 -07001868
1869 set_mask_bits(&bh->b_state, clear_bits, set_bits);
Ryusuke Konishi1e2b68b2010-03-23 01:15:31 +09001870 if (bh == segbuf->sb_super_root) {
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001871 if (bh->b_page != bd_page) {
1872 end_page_writeback(bd_page);
1873 bd_page = bh->b_page;
1874 }
Ryusuke Konishi1e2b68b2010-03-23 01:15:31 +09001875 update_sr = true;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001876 break;
1877 }
1878 if (bh->b_page != fs_page) {
1879 nilfs_end_page_io(fs_page, 0);
1880 fs_page = bh->b_page;
1881 }
1882 }
1883
Ryusuke Konishi47620772010-05-23 21:48:36 +09001884 if (!nilfs_segbuf_simplex(segbuf)) {
1885 if (segbuf->sb_sum.flags & NILFS_SS_LOGBGN) {
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001886 set_bit(NILFS_SC_UNCLOSED, &sci->sc_flags);
1887 sci->sc_lseg_stime = jiffies;
1888 }
Ryusuke Konishi47620772010-05-23 21:48:36 +09001889 if (segbuf->sb_sum.flags & NILFS_SS_LOGEND)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001890 clear_bit(NILFS_SC_UNCLOSED, &sci->sc_flags);
1891 }
1892 }
1893 /*
1894 * Since pages may continue over multiple segment buffers,
1895 * end of the last page must be checked outside of the loop.
1896 */
1897 if (bd_page)
1898 end_page_writeback(bd_page);
1899
1900 nilfs_end_page_io(fs_page, 0);
1901
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001902 nilfs_drop_collected_inodes(&sci->sc_dirty_files);
1903
Ryusuke Konishic1c1d70922010-08-29 12:44:56 +09001904 if (nilfs_doing_gc())
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001905 nilfs_drop_collected_inodes(&sci->sc_gc_inodes);
Ryusuke Konishic1c1d70922010-08-29 12:44:56 +09001906 else
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001907 nilfs->ns_nongc_ctime = sci->sc_seg_ctime;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001908
1909 sci->sc_nblk_inc += sci->sc_nblk_this_inc;
1910
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001911 segbuf = NILFS_LAST_SEGBUF(&sci->sc_write_logs);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001912 nilfs_set_next_segment(nilfs, segbuf);
1913
1914 if (update_sr) {
Andreas Rohnere2c76172014-10-13 15:53:20 -07001915 nilfs->ns_flushed_device = 0;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001916 nilfs_set_last_segment(nilfs, segbuf->sb_pseg_start,
Ryusuke Konishie339ad32009-04-06 19:01:59 -07001917 segbuf->sb_sum.seg_seq, nilfs->ns_cno++);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001918
Ryusuke Konishic96fa462009-04-06 19:01:57 -07001919 clear_bit(NILFS_SC_HAVE_DELTA, &sci->sc_flags);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001920 clear_bit(NILFS_SC_DIRTY, &sci->sc_flags);
1921 set_bit(NILFS_SC_SUPER_ROOT, &sci->sc_flags);
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001922 nilfs_segctor_clear_metadata_dirty(sci);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001923 } else
1924 clear_bit(NILFS_SC_SUPER_ROOT, &sci->sc_flags);
1925}
1926
Ryusuke Konishia694291a2009-11-29 23:03:04 +09001927static int nilfs_segctor_wait(struct nilfs_sc_info *sci)
1928{
1929 int ret;
1930
1931 ret = nilfs_wait_on_logs(&sci->sc_write_logs);
1932 if (!ret) {
1933 nilfs_segctor_complete_write(sci);
1934 nilfs_destroy_logs(&sci->sc_write_logs);
1935 }
1936 return ret;
1937}
1938
Ryusuke Konishi693dd322011-03-09 11:05:07 +09001939static int nilfs_segctor_collect_dirty_files(struct nilfs_sc_info *sci,
1940 struct the_nilfs *nilfs)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001941{
1942 struct nilfs_inode_info *ii, *n;
Ryusuke Konishie912a5b2010-08-14 13:07:15 +09001943 struct inode *ifile = sci->sc_root->ifile;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001944
Ryusuke Konishi693dd322011-03-09 11:05:07 +09001945 spin_lock(&nilfs->ns_inode_lock);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001946 retry:
Ryusuke Konishi693dd322011-03-09 11:05:07 +09001947 list_for_each_entry_safe(ii, n, &nilfs->ns_dirty_files, i_dirty) {
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001948 if (!ii->i_bh) {
1949 struct buffer_head *ibh;
1950 int err;
1951
Ryusuke Konishi693dd322011-03-09 11:05:07 +09001952 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001953 err = nilfs_ifile_get_inode_block(
Ryusuke Konishie912a5b2010-08-14 13:07:15 +09001954 ifile, ii->vfs_inode.i_ino, &ibh);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001955 if (unlikely(err)) {
Ryusuke Konishid6517de2016-08-02 14:05:14 -07001956 nilfs_msg(sci->sc_super, KERN_WARNING,
1957 "log writer: error %d getting inode block (ino=%lu)",
1958 err, ii->vfs_inode.i_ino);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001959 return err;
1960 }
Ryusuke Konishi5fc7b142011-05-05 12:56:51 +09001961 mark_buffer_dirty(ibh);
Ryusuke Konishie912a5b2010-08-14 13:07:15 +09001962 nilfs_mdt_mark_dirty(ifile);
Ryusuke Konishi693dd322011-03-09 11:05:07 +09001963 spin_lock(&nilfs->ns_inode_lock);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001964 if (likely(!ii->i_bh))
1965 ii->i_bh = ibh;
1966 else
1967 brelse(ibh);
1968 goto retry;
1969 }
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001970
1971 clear_bit(NILFS_I_QUEUED, &ii->i_state);
1972 set_bit(NILFS_I_BUSY, &ii->i_state);
Nicolas Kaisereaae0f32011-03-19 16:45:30 +01001973 list_move_tail(&ii->i_dirty, &sci->sc_dirty_files);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001974 }
Ryusuke Konishi693dd322011-03-09 11:05:07 +09001975 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001976
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001977 return 0;
1978}
1979
Ryusuke Konishi693dd322011-03-09 11:05:07 +09001980static void nilfs_segctor_drop_written_files(struct nilfs_sc_info *sci,
1981 struct the_nilfs *nilfs)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001982{
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001983 struct nilfs_inode_info *ii, *n;
Ryusuke Konishi283ee1482015-03-12 16:26:00 -07001984 int during_mount = !(sci->sc_super->s_flags & MS_ACTIVE);
Ryusuke Konishi7ef3ff22015-02-05 12:25:20 -08001985 int defer_iput = false;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001986
Ryusuke Konishi693dd322011-03-09 11:05:07 +09001987 spin_lock(&nilfs->ns_inode_lock);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001988 list_for_each_entry_safe(ii, n, &sci->sc_dirty_files, i_dirty) {
1989 if (!test_and_clear_bit(NILFS_I_UPDATED, &ii->i_state) ||
Ryusuke Konishi6c43f412010-08-20 20:10:38 +09001990 test_bit(NILFS_I_DIRTY, &ii->i_state))
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001991 continue;
Ryusuke Konishi6c43f412010-08-20 20:10:38 +09001992
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07001993 clear_bit(NILFS_I_BUSY, &ii->i_state);
1994 brelse(ii->i_bh);
1995 ii->i_bh = NULL;
Ryusuke Konishi7ef3ff22015-02-05 12:25:20 -08001996 list_del_init(&ii->i_dirty);
Ryusuke Konishi283ee1482015-03-12 16:26:00 -07001997 if (!ii->vfs_inode.i_nlink || during_mount) {
Ryusuke Konishi7ef3ff22015-02-05 12:25:20 -08001998 /*
Ryusuke Konishi283ee1482015-03-12 16:26:00 -07001999 * Defer calling iput() to avoid deadlocks if
2000 * i_nlink == 0 or mount is not yet finished.
Ryusuke Konishi7ef3ff22015-02-05 12:25:20 -08002001 */
2002 list_add_tail(&ii->i_dirty, &sci->sc_iput_queue);
2003 defer_iput = true;
2004 } else {
2005 spin_unlock(&nilfs->ns_inode_lock);
2006 iput(&ii->vfs_inode);
2007 spin_lock(&nilfs->ns_inode_lock);
2008 }
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002009 }
Ryusuke Konishi693dd322011-03-09 11:05:07 +09002010 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishi7ef3ff22015-02-05 12:25:20 -08002011
2012 if (defer_iput)
2013 schedule_work(&sci->sc_iput_work);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002014}
2015
2016/*
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002017 * Main procedure of segment constructor
2018 */
2019static int nilfs_segctor_do_construct(struct nilfs_sc_info *sci, int mode)
2020{
Ryusuke Konishie3154e92011-03-09 11:05:08 +09002021 struct the_nilfs *nilfs = sci->sc_super->s_fs_info;
Ryusuke Konishi1e2b68b2010-03-23 01:15:31 +09002022 int err;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002023
Hitoshi Mitake58497702015-11-06 16:31:59 -08002024 nilfs_sc_cstage_set(sci, NILFS_ST_INIT);
Ryusuke Konishi6c43f412010-08-20 20:10:38 +09002025 sci->sc_cno = nilfs->ns_cno;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002026
Ryusuke Konishi693dd322011-03-09 11:05:07 +09002027 err = nilfs_segctor_collect_dirty_files(sci, nilfs);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002028 if (unlikely(err))
2029 goto out;
2030
Ryusuke Konishie912a5b2010-08-14 13:07:15 +09002031 if (nilfs_test_metadata_dirty(nilfs, sci->sc_root))
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002032 set_bit(NILFS_SC_DIRTY, &sci->sc_flags);
2033
2034 if (nilfs_segctor_clean(sci))
2035 goto out;
2036
2037 do {
2038 sci->sc_stage.flags &= ~NILFS_CF_HISTORY_MASK;
2039
2040 err = nilfs_segctor_begin_construction(sci, nilfs);
2041 if (unlikely(err))
2042 goto out;
2043
2044 /* Update time stamp */
2045 sci->sc_seg_ctime = get_seconds();
2046
2047 err = nilfs_segctor_collect(sci, nilfs, mode);
2048 if (unlikely(err))
2049 goto failed;
2050
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002051 /* Avoid empty segment */
Hitoshi Mitake58497702015-11-06 16:31:59 -08002052 if (nilfs_sc_cstage_get(sci) == NILFS_ST_DONE &&
Ryusuke Konishi47620772010-05-23 21:48:36 +09002053 nilfs_segbuf_empty(sci->sc_curseg)) {
Ryusuke Konishia694291a2009-11-29 23:03:04 +09002054 nilfs_segctor_abort_construction(sci, nilfs, 1);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002055 goto out;
2056 }
2057
2058 err = nilfs_segctor_assign(sci, mode);
2059 if (unlikely(err))
2060 goto failed;
2061
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002062 if (sci->sc_stage.flags & NILFS_CF_IFILE_STARTED)
Ryusuke Konishie912a5b2010-08-14 13:07:15 +09002063 nilfs_segctor_fill_in_file_bmap(sci);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002064
Ryusuke Konishi1e2b68b2010-03-23 01:15:31 +09002065 if (mode == SC_LSEG_SR &&
Hitoshi Mitake58497702015-11-06 16:31:59 -08002066 nilfs_sc_cstage_get(sci) >= NILFS_ST_CPFILE) {
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002067 err = nilfs_segctor_fill_in_checkpoint(sci);
2068 if (unlikely(err))
Ryusuke Konishia694291a2009-11-29 23:03:04 +09002069 goto failed_to_write;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002070
2071 nilfs_segctor_fill_in_super_root(sci, nilfs);
2072 }
2073 nilfs_segctor_update_segusage(sci, nilfs->ns_sufile);
2074
2075 /* Write partial segments */
Ryusuke Konishi1cb2d382011-04-04 12:53:28 +09002076 nilfs_segctor_prepare_write(sci);
Ryusuke Konishiaaed1d52010-03-23 01:50:38 +09002077
2078 nilfs_add_checksums_on_logs(&sci->sc_segbufs,
2079 nilfs->ns_crc_seed);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002080
Ryusuke Konishi9c965ba2009-11-29 01:17:31 +09002081 err = nilfs_segctor_write(sci, nilfs);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002082 if (unlikely(err))
2083 goto failed_to_write;
2084
Hitoshi Mitake58497702015-11-06 16:31:59 -08002085 if (nilfs_sc_cstage_get(sci) == NILFS_ST_DONE ||
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002086 nilfs->ns_blocksize_bits != PAGE_SHIFT) {
Ryusuke Konishia694291a2009-11-29 23:03:04 +09002087 /*
2088 * At this point, we avoid double buffering
2089 * for blocksize < pagesize because page dirty
2090 * flag is turned off during write and dirty
2091 * buffers are not properly collected for
2092 * pages crossing over segments.
2093 */
2094 err = nilfs_segctor_wait(sci);
2095 if (err)
2096 goto failed_to_write;
2097 }
Hitoshi Mitake58497702015-11-06 16:31:59 -08002098 } while (nilfs_sc_cstage_get(sci) != NILFS_ST_DONE);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002099
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002100 out:
Ryusuke Konishi693dd322011-03-09 11:05:07 +09002101 nilfs_segctor_drop_written_files(sci, nilfs);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002102 return err;
2103
2104 failed_to_write:
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002105 if (sci->sc_stage.flags & NILFS_CF_IFILE_STARTED)
2106 nilfs_redirty_inodes(&sci->sc_dirty_files);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002107
2108 failed:
2109 if (nilfs_doing_gc())
2110 nilfs_redirty_inodes(&sci->sc_gc_inodes);
Ryusuke Konishia694291a2009-11-29 23:03:04 +09002111 nilfs_segctor_abort_construction(sci, nilfs, err);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002112 goto out;
2113}
2114
2115/**
Ryusuke Konishi9ccf56c2010-03-14 03:01:03 +09002116 * nilfs_segctor_start_timer - set timer of background write
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002117 * @sci: nilfs_sc_info
2118 *
2119 * If the timer has already been set, it ignores the new request.
2120 * This function MUST be called within a section locking the segment
2121 * semaphore.
2122 */
2123static void nilfs_segctor_start_timer(struct nilfs_sc_info *sci)
2124{
2125 spin_lock(&sci->sc_state_lock);
Li Hongfdce8952010-04-10 23:25:39 +08002126 if (!(sci->sc_state & NILFS_SEGCTOR_COMMIT)) {
2127 sci->sc_timer.expires = jiffies + sci->sc_interval;
2128 add_timer(&sci->sc_timer);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002129 sci->sc_state |= NILFS_SEGCTOR_COMMIT;
2130 }
2131 spin_unlock(&sci->sc_state_lock);
2132}
2133
2134static void nilfs_segctor_do_flush(struct nilfs_sc_info *sci, int bn)
2135{
2136 spin_lock(&sci->sc_state_lock);
Ryusuke Konishi4ce5c342016-08-02 14:05:28 -07002137 if (!(sci->sc_flush_request & BIT(bn))) {
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002138 unsigned long prev_req = sci->sc_flush_request;
2139
Ryusuke Konishi4ce5c342016-08-02 14:05:28 -07002140 sci->sc_flush_request |= BIT(bn);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002141 if (!prev_req)
2142 wake_up(&sci->sc_wait_daemon);
2143 }
2144 spin_unlock(&sci->sc_state_lock);
2145}
2146
2147/**
2148 * nilfs_flush_segment - trigger a segment construction for resource control
2149 * @sb: super block
2150 * @ino: inode number of the file to be flushed out.
2151 */
2152void nilfs_flush_segment(struct super_block *sb, ino_t ino)
2153{
Ryusuke Konishie3154e92011-03-09 11:05:08 +09002154 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi3fd3fe52011-03-09 11:05:08 +09002155 struct nilfs_sc_info *sci = nilfs->ns_writer;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002156
2157 if (!sci || nilfs_doing_construction())
2158 return;
2159 nilfs_segctor_do_flush(sci, NILFS_MDT_INODE(sb, ino) ? ino : 0);
2160 /* assign bit 0 to data files */
2161}
2162
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002163struct nilfs_segctor_wait_request {
Ingo Molnarac6424b2017-06-20 12:06:13 +02002164 wait_queue_entry_t wq;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002165 __u32 seq;
2166 int err;
2167 atomic_t done;
2168};
2169
2170static int nilfs_segctor_sync(struct nilfs_sc_info *sci)
2171{
2172 struct nilfs_segctor_wait_request wait_req;
2173 int err = 0;
2174
2175 spin_lock(&sci->sc_state_lock);
2176 init_wait(&wait_req.wq);
2177 wait_req.err = 0;
2178 atomic_set(&wait_req.done, 0);
2179 wait_req.seq = ++sci->sc_seq_request;
2180 spin_unlock(&sci->sc_state_lock);
2181
2182 init_waitqueue_entry(&wait_req.wq, current);
2183 add_wait_queue(&sci->sc_wait_request, &wait_req.wq);
2184 set_current_state(TASK_INTERRUPTIBLE);
2185 wake_up(&sci->sc_wait_daemon);
2186
2187 for (;;) {
2188 if (atomic_read(&wait_req.done)) {
2189 err = wait_req.err;
2190 break;
2191 }
2192 if (!signal_pending(current)) {
2193 schedule();
2194 continue;
2195 }
2196 err = -ERESTARTSYS;
2197 break;
2198 }
2199 finish_wait(&sci->sc_wait_request, &wait_req.wq);
2200 return err;
2201}
2202
2203static void nilfs_segctor_wakeup(struct nilfs_sc_info *sci, int err)
2204{
2205 struct nilfs_segctor_wait_request *wrq, *n;
2206 unsigned long flags;
2207
2208 spin_lock_irqsave(&sci->sc_wait_request.lock, flags);
Ingo Molnar2055da92017-06-20 12:06:46 +02002209 list_for_each_entry_safe(wrq, n, &sci->sc_wait_request.head, wq.entry) {
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002210 if (!atomic_read(&wrq->done) &&
2211 nilfs_cnt32_ge(sci->sc_seq_done, wrq->seq)) {
2212 wrq->err = err;
2213 atomic_set(&wrq->done, 1);
2214 }
2215 if (atomic_read(&wrq->done)) {
2216 wrq->wq.func(&wrq->wq,
2217 TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE,
2218 0, NULL);
2219 }
2220 }
2221 spin_unlock_irqrestore(&sci->sc_wait_request.lock, flags);
2222}
2223
2224/**
2225 * nilfs_construct_segment - construct a logical segment
2226 * @sb: super block
2227 *
2228 * Return Value: On success, 0 is retured. On errors, one of the following
2229 * negative error code is returned.
2230 *
2231 * %-EROFS - Read only filesystem.
2232 *
2233 * %-EIO - I/O error
2234 *
2235 * %-ENOSPC - No space left on device (only in a panic state).
2236 *
2237 * %-ERESTARTSYS - Interrupted.
2238 *
2239 * %-ENOMEM - Insufficient memory available.
2240 */
2241int nilfs_construct_segment(struct super_block *sb)
2242{
Ryusuke Konishie3154e92011-03-09 11:05:08 +09002243 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi3fd3fe52011-03-09 11:05:08 +09002244 struct nilfs_sc_info *sci = nilfs->ns_writer;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002245 struct nilfs_transaction_info *ti;
2246 int err;
2247
2248 if (!sci)
2249 return -EROFS;
2250
2251 /* A call inside transactions causes a deadlock. */
2252 BUG_ON((ti = current->journal_info) && ti->ti_magic == NILFS_TI_MAGIC);
2253
2254 err = nilfs_segctor_sync(sci);
2255 return err;
2256}
2257
2258/**
2259 * nilfs_construct_dsync_segment - construct a data-only logical segment
2260 * @sb: super block
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -07002261 * @inode: inode whose data blocks should be written out
2262 * @start: start byte offset
2263 * @end: end byte offset (inclusive)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002264 *
2265 * Return Value: On success, 0 is retured. On errors, one of the following
2266 * negative error code is returned.
2267 *
2268 * %-EROFS - Read only filesystem.
2269 *
2270 * %-EIO - I/O error
2271 *
2272 * %-ENOSPC - No space left on device (only in a panic state).
2273 *
2274 * %-ERESTARTSYS - Interrupted.
2275 *
2276 * %-ENOMEM - Insufficient memory available.
2277 */
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -07002278int nilfs_construct_dsync_segment(struct super_block *sb, struct inode *inode,
2279 loff_t start, loff_t end)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002280{
Ryusuke Konishie3154e92011-03-09 11:05:08 +09002281 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi3fd3fe52011-03-09 11:05:08 +09002282 struct nilfs_sc_info *sci = nilfs->ns_writer;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002283 struct nilfs_inode_info *ii;
2284 struct nilfs_transaction_info ti;
2285 int err = 0;
2286
2287 if (!sci)
2288 return -EROFS;
2289
Ryusuke Konishif7545142011-03-09 11:05:08 +09002290 nilfs_transaction_lock(sb, &ti, 0);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002291
2292 ii = NILFS_I(inode);
Andreas Rohnerb9f66142014-10-13 15:53:22 -07002293 if (test_bit(NILFS_I_INODE_SYNC, &ii->i_state) ||
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +09002294 nilfs_test_opt(nilfs, STRICT_ORDER) ||
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002295 test_bit(NILFS_SC_UNCLOSED, &sci->sc_flags) ||
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +09002296 nilfs_discontinued(nilfs)) {
Ryusuke Konishif7545142011-03-09 11:05:08 +09002297 nilfs_transaction_unlock(sb);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002298 err = nilfs_segctor_sync(sci);
2299 return err;
2300 }
2301
Ryusuke Konishi693dd322011-03-09 11:05:07 +09002302 spin_lock(&nilfs->ns_inode_lock);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002303 if (!test_bit(NILFS_I_QUEUED, &ii->i_state) &&
2304 !test_bit(NILFS_I_BUSY, &ii->i_state)) {
Ryusuke Konishi693dd322011-03-09 11:05:07 +09002305 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishif7545142011-03-09 11:05:08 +09002306 nilfs_transaction_unlock(sb);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002307 return 0;
2308 }
Ryusuke Konishi693dd322011-03-09 11:05:07 +09002309 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishif30bf3e2009-04-06 19:01:38 -07002310 sci->sc_dsync_inode = ii;
2311 sci->sc_dsync_start = start;
2312 sci->sc_dsync_end = end;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002313
2314 err = nilfs_segctor_do_construct(sci, SC_LSEG_DSYNC);
Andreas Rohnere2c76172014-10-13 15:53:20 -07002315 if (!err)
2316 nilfs->ns_flushed_device = 0;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002317
Ryusuke Konishif7545142011-03-09 11:05:08 +09002318 nilfs_transaction_unlock(sb);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002319 return err;
2320}
2321
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002322#define FLUSH_FILE_BIT (0x1) /* data file only */
Ryusuke Konishi4ce5c342016-08-02 14:05:28 -07002323#define FLUSH_DAT_BIT BIT(NILFS_DAT_INO) /* DAT only */
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002324
Ryusuke Konishidcd76182010-01-26 15:20:15 +09002325/**
2326 * nilfs_segctor_accept - record accepted sequence count of log-write requests
2327 * @sci: segment constructor object
2328 */
2329static void nilfs_segctor_accept(struct nilfs_sc_info *sci)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002330{
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002331 spin_lock(&sci->sc_state_lock);
Ryusuke Konishidcd76182010-01-26 15:20:15 +09002332 sci->sc_seq_accepted = sci->sc_seq_request;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002333 spin_unlock(&sci->sc_state_lock);
Li Hongfdce8952010-04-10 23:25:39 +08002334 del_timer_sync(&sci->sc_timer);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002335}
2336
Ryusuke Konishidcd76182010-01-26 15:20:15 +09002337/**
2338 * nilfs_segctor_notify - notify the result of request to caller threads
2339 * @sci: segment constructor object
2340 * @mode: mode of log forming
2341 * @err: error code to be notified
2342 */
2343static void nilfs_segctor_notify(struct nilfs_sc_info *sci, int mode, int err)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002344{
2345 /* Clear requests (even when the construction failed) */
2346 spin_lock(&sci->sc_state_lock);
2347
Ryusuke Konishidcd76182010-01-26 15:20:15 +09002348 if (mode == SC_LSEG_SR) {
Ryusuke Konishiaeda7f62009-11-02 15:08:13 +09002349 sci->sc_state &= ~NILFS_SEGCTOR_COMMIT;
Ryusuke Konishidcd76182010-01-26 15:20:15 +09002350 sci->sc_seq_done = sci->sc_seq_accepted;
2351 nilfs_segctor_wakeup(sci, err);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002352 sci->sc_flush_request = 0;
Ryusuke Konishiaeda7f62009-11-02 15:08:13 +09002353 } else {
Ryusuke Konishidcd76182010-01-26 15:20:15 +09002354 if (mode == SC_FLUSH_FILE)
Ryusuke Konishiaeda7f62009-11-02 15:08:13 +09002355 sci->sc_flush_request &= ~FLUSH_FILE_BIT;
Ryusuke Konishidcd76182010-01-26 15:20:15 +09002356 else if (mode == SC_FLUSH_DAT)
Ryusuke Konishiaeda7f62009-11-02 15:08:13 +09002357 sci->sc_flush_request &= ~FLUSH_DAT_BIT;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002358
Ryusuke Konishiaeda7f62009-11-02 15:08:13 +09002359 /* re-enable timer if checkpoint creation was not done */
Li Hongfdce8952010-04-10 23:25:39 +08002360 if ((sci->sc_state & NILFS_SEGCTOR_COMMIT) &&
2361 time_before(jiffies, sci->sc_timer.expires))
2362 add_timer(&sci->sc_timer);
Ryusuke Konishiaeda7f62009-11-02 15:08:13 +09002363 }
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002364 spin_unlock(&sci->sc_state_lock);
2365}
2366
Ryusuke Konishidcd76182010-01-26 15:20:15 +09002367/**
2368 * nilfs_segctor_construct - form logs and write them to disk
2369 * @sci: segment constructor object
2370 * @mode: mode of log forming
2371 */
2372static int nilfs_segctor_construct(struct nilfs_sc_info *sci, int mode)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002373{
Ryusuke Konishie3154e92011-03-09 11:05:08 +09002374 struct the_nilfs *nilfs = sci->sc_super->s_fs_info;
Jiro SEKIBAd26493b2010-06-28 17:49:32 +09002375 struct nilfs_super_block **sbp;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002376 int err = 0;
2377
Ryusuke Konishidcd76182010-01-26 15:20:15 +09002378 nilfs_segctor_accept(sci);
2379
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002380 if (nilfs_discontinued(nilfs))
Ryusuke Konishidcd76182010-01-26 15:20:15 +09002381 mode = SC_LSEG_SR;
2382 if (!nilfs_segctor_confirm(sci))
2383 err = nilfs_segctor_do_construct(sci, mode);
2384
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002385 if (likely(!err)) {
Ryusuke Konishidcd76182010-01-26 15:20:15 +09002386 if (mode != SC_FLUSH_DAT)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002387 atomic_set(&nilfs->ns_ndirtyblks, 0);
2388 if (test_bit(NILFS_SC_SUPER_ROOT, &sci->sc_flags) &&
2389 nilfs_discontinued(nilfs)) {
2390 down_write(&nilfs->ns_sem);
Jiro SEKIBAd26493b2010-06-28 17:49:32 +09002391 err = -EIO;
Ryusuke Konishif7545142011-03-09 11:05:08 +09002392 sbp = nilfs_prepare_super(sci->sc_super,
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +09002393 nilfs_sb_will_flip(nilfs));
2394 if (likely(sbp)) {
2395 nilfs_set_log_cursor(sbp[0], nilfs);
Ryusuke Konishif7545142011-03-09 11:05:08 +09002396 err = nilfs_commit_super(sci->sc_super,
2397 NILFS_SB_COMMIT);
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +09002398 }
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002399 up_write(&nilfs->ns_sem);
2400 }
2401 }
Ryusuke Konishidcd76182010-01-26 15:20:15 +09002402
2403 nilfs_segctor_notify(sci, mode, err);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002404 return err;
2405}
2406
2407static void nilfs_construction_timeout(unsigned long data)
2408{
2409 struct task_struct *p = (struct task_struct *)data;
Ryusuke Konishi4ad364c2016-05-23 16:23:25 -07002410
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002411 wake_up_process(p);
2412}
2413
2414static void
2415nilfs_remove_written_gcinodes(struct the_nilfs *nilfs, struct list_head *head)
2416{
2417 struct nilfs_inode_info *ii, *n;
2418
2419 list_for_each_entry_safe(ii, n, head, i_dirty) {
2420 if (!test_bit(NILFS_I_UPDATED, &ii->i_state))
2421 continue;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002422 list_del_init(&ii->i_dirty);
Ryusuke Konishifbb24a32012-06-20 12:52:57 -07002423 truncate_inode_pages(&ii->vfs_inode.i_data, 0);
2424 nilfs_btnode_cache_clear(&ii->i_btnode_cache);
Ryusuke Konishi263d90c2010-08-20 19:06:11 +09002425 iput(&ii->vfs_inode);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002426 }
2427}
2428
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +09002429int nilfs_clean_segments(struct super_block *sb, struct nilfs_argv *argv,
2430 void **kbufs)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002431{
Ryusuke Konishie3154e92011-03-09 11:05:08 +09002432 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi3fd3fe52011-03-09 11:05:08 +09002433 struct nilfs_sc_info *sci = nilfs->ns_writer;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002434 struct nilfs_transaction_info ti;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002435 int err;
2436
2437 if (unlikely(!sci))
2438 return -EROFS;
2439
Ryusuke Konishif7545142011-03-09 11:05:08 +09002440 nilfs_transaction_lock(sb, &ti, 1);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002441
Ryusuke Konishic1c1d70922010-08-29 12:44:56 +09002442 err = nilfs_mdt_save_to_shadow_map(nilfs->ns_dat);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002443 if (unlikely(err))
2444 goto out_unlock;
Ryusuke Konishi071cb4b2009-05-16 23:44:55 +09002445
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +09002446 err = nilfs_ioctl_prepare_clean_segments(nilfs, argv, kbufs);
Ryusuke Konishic1c1d70922010-08-29 12:44:56 +09002447 if (unlikely(err)) {
2448 nilfs_mdt_restore_from_shadow_map(nilfs->ns_dat);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002449 goto out_unlock;
Ryusuke Konishic1c1d70922010-08-29 12:44:56 +09002450 }
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002451
Ryusuke Konishi071cb4b2009-05-16 23:44:55 +09002452 sci->sc_freesegs = kbufs[4];
2453 sci->sc_nfreesegs = argv[4].v_nmembs;
Ryusuke Konishi0935db72009-11-29 02:39:11 +09002454 list_splice_tail_init(&nilfs->ns_gc_inodes, &sci->sc_gc_inodes);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002455
2456 for (;;) {
Ryusuke Konishidcd76182010-01-26 15:20:15 +09002457 err = nilfs_segctor_construct(sci, SC_LSEG_SR);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002458 nilfs_remove_written_gcinodes(nilfs, &sci->sc_gc_inodes);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002459
2460 if (likely(!err))
2461 break;
2462
Ryusuke Konishid6517de2016-08-02 14:05:14 -07002463 nilfs_msg(sb, KERN_WARNING, "error %d cleaning segments", err);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002464 set_current_state(TASK_INTERRUPTIBLE);
2465 schedule_timeout(sci->sc_interval);
2466 }
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +09002467 if (nilfs_test_opt(nilfs, DISCARD)) {
Jiro SEKIBAe902ec92010-01-30 18:06:35 +09002468 int ret = nilfs_discard_segments(nilfs, sci->sc_freesegs,
2469 sci->sc_nfreesegs);
2470 if (ret) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -07002471 nilfs_msg(sb, KERN_WARNING,
2472 "error %d on discard request, turning discards off for the device",
2473 ret);
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +09002474 nilfs_clear_opt(nilfs, DISCARD);
Jiro SEKIBAe902ec92010-01-30 18:06:35 +09002475 }
2476 }
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002477
2478 out_unlock:
Ryusuke Konishi071cb4b2009-05-16 23:44:55 +09002479 sci->sc_freesegs = NULL;
2480 sci->sc_nfreesegs = 0;
Ryusuke Konishic1c1d70922010-08-29 12:44:56 +09002481 nilfs_mdt_clear_shadow_map(nilfs->ns_dat);
Ryusuke Konishif7545142011-03-09 11:05:08 +09002482 nilfs_transaction_unlock(sb);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002483 return err;
2484}
2485
2486static void nilfs_segctor_thread_construct(struct nilfs_sc_info *sci, int mode)
2487{
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002488 struct nilfs_transaction_info ti;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002489
Ryusuke Konishif7545142011-03-09 11:05:08 +09002490 nilfs_transaction_lock(sci->sc_super, &ti, 0);
Ryusuke Konishidcd76182010-01-26 15:20:15 +09002491 nilfs_segctor_construct(sci, mode);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002492
2493 /*
2494 * Unclosed segment should be retried. We do this using sc_timer.
2495 * Timeout of sc_timer will invoke complete construction which leads
2496 * to close the current logical segment.
2497 */
2498 if (test_bit(NILFS_SC_UNCLOSED, &sci->sc_flags))
2499 nilfs_segctor_start_timer(sci);
2500
Ryusuke Konishif7545142011-03-09 11:05:08 +09002501 nilfs_transaction_unlock(sci->sc_super);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002502}
2503
2504static void nilfs_segctor_do_immediate_flush(struct nilfs_sc_info *sci)
2505{
2506 int mode = 0;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002507
2508 spin_lock(&sci->sc_state_lock);
2509 mode = (sci->sc_flush_request & FLUSH_DAT_BIT) ?
2510 SC_FLUSH_DAT : SC_FLUSH_FILE;
2511 spin_unlock(&sci->sc_state_lock);
2512
2513 if (mode) {
Ryusuke Konishi09ef29e2015-11-06 16:32:14 -08002514 nilfs_segctor_do_construct(sci, mode);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002515
2516 spin_lock(&sci->sc_state_lock);
2517 sci->sc_flush_request &= (mode == SC_FLUSH_FILE) ?
2518 ~FLUSH_FILE_BIT : ~FLUSH_DAT_BIT;
2519 spin_unlock(&sci->sc_state_lock);
2520 }
2521 clear_bit(NILFS_SC_PRIOR_FLUSH, &sci->sc_flags);
2522}
2523
2524static int nilfs_segctor_flush_mode(struct nilfs_sc_info *sci)
2525{
2526 if (!test_bit(NILFS_SC_UNCLOSED, &sci->sc_flags) ||
2527 time_before(jiffies, sci->sc_lseg_stime + sci->sc_mjcp_freq)) {
2528 if (!(sci->sc_flush_request & ~FLUSH_FILE_BIT))
2529 return SC_FLUSH_FILE;
2530 else if (!(sci->sc_flush_request & ~FLUSH_DAT_BIT))
2531 return SC_FLUSH_DAT;
2532 }
2533 return SC_LSEG_SR;
2534}
2535
2536/**
2537 * nilfs_segctor_thread - main loop of the segment constructor thread.
2538 * @arg: pointer to a struct nilfs_sc_info.
2539 *
2540 * nilfs_segctor_thread() initializes a timer and serves as a daemon
2541 * to execute segment constructions.
2542 */
2543static int nilfs_segctor_thread(void *arg)
2544{
2545 struct nilfs_sc_info *sci = (struct nilfs_sc_info *)arg;
Ryusuke Konishie3154e92011-03-09 11:05:08 +09002546 struct the_nilfs *nilfs = sci->sc_super->s_fs_info;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002547 int timeout = 0;
2548
Li Hongfdce8952010-04-10 23:25:39 +08002549 sci->sc_timer.data = (unsigned long)current;
2550 sci->sc_timer.function = nilfs_construction_timeout;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002551
2552 /* start sync. */
2553 sci->sc_task = current;
2554 wake_up(&sci->sc_wait_task); /* for nilfs_segctor_start_thread() */
Ryusuke Konishifeee8802016-08-02 14:05:10 -07002555 nilfs_msg(sci->sc_super, KERN_INFO,
2556 "segctord starting. Construction interval = %lu seconds, CP frequency < %lu seconds",
2557 sci->sc_interval / HZ, sci->sc_mjcp_freq / HZ);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002558
2559 spin_lock(&sci->sc_state_lock);
2560 loop:
2561 for (;;) {
2562 int mode;
2563
2564 if (sci->sc_state & NILFS_SEGCTOR_QUIT)
2565 goto end_thread;
2566
2567 if (timeout || sci->sc_seq_request != sci->sc_seq_done)
2568 mode = SC_LSEG_SR;
Ryusuke Konishi7f001842016-05-23 16:23:42 -07002569 else if (sci->sc_flush_request)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002570 mode = nilfs_segctor_flush_mode(sci);
Ryusuke Konishi7f001842016-05-23 16:23:42 -07002571 else
2572 break;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002573
2574 spin_unlock(&sci->sc_state_lock);
2575 nilfs_segctor_thread_construct(sci, mode);
2576 spin_lock(&sci->sc_state_lock);
2577 timeout = 0;
2578 }
2579
2580
2581 if (freezing(current)) {
2582 spin_unlock(&sci->sc_state_lock);
Tejun Heoa0acae02011-11-21 12:32:22 -08002583 try_to_freeze();
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002584 spin_lock(&sci->sc_state_lock);
2585 } else {
2586 DEFINE_WAIT(wait);
2587 int should_sleep = 1;
2588
2589 prepare_to_wait(&sci->sc_wait_daemon, &wait,
2590 TASK_INTERRUPTIBLE);
2591
2592 if (sci->sc_seq_request != sci->sc_seq_done)
2593 should_sleep = 0;
2594 else if (sci->sc_flush_request)
2595 should_sleep = 0;
2596 else if (sci->sc_state & NILFS_SEGCTOR_COMMIT)
2597 should_sleep = time_before(jiffies,
Li Hongfdce8952010-04-10 23:25:39 +08002598 sci->sc_timer.expires);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002599
2600 if (should_sleep) {
2601 spin_unlock(&sci->sc_state_lock);
2602 schedule();
2603 spin_lock(&sci->sc_state_lock);
2604 }
2605 finish_wait(&sci->sc_wait_daemon, &wait);
2606 timeout = ((sci->sc_state & NILFS_SEGCTOR_COMMIT) &&
Li Hongfdce8952010-04-10 23:25:39 +08002607 time_after_eq(jiffies, sci->sc_timer.expires));
Ryusuke Konishie605f0a2009-12-09 00:57:52 +09002608
2609 if (nilfs_sb_dirty(nilfs) && nilfs_sb_need_update(nilfs))
Jiro SEKIBA1dfa2712009-07-23 01:33:49 +09002610 set_nilfs_discontinued(nilfs);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002611 }
2612 goto loop;
2613
2614 end_thread:
2615 spin_unlock(&sci->sc_state_lock);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002616
2617 /* end sync. */
2618 sci->sc_task = NULL;
2619 wake_up(&sci->sc_wait_task); /* for nilfs_segctor_kill_thread() */
2620 return 0;
2621}
2622
2623static int nilfs_segctor_start_thread(struct nilfs_sc_info *sci)
2624{
2625 struct task_struct *t;
2626
2627 t = kthread_run(nilfs_segctor_thread, sci, "segctord");
2628 if (IS_ERR(t)) {
2629 int err = PTR_ERR(t);
2630
Ryusuke Konishifeee8802016-08-02 14:05:10 -07002631 nilfs_msg(sci->sc_super, KERN_ERR,
2632 "error %d creating segctord thread", err);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002633 return err;
2634 }
2635 wait_event(sci->sc_wait_task, sci->sc_task != NULL);
2636 return 0;
2637}
2638
2639static void nilfs_segctor_kill_thread(struct nilfs_sc_info *sci)
Jiro SEKIBA6b81e142010-10-14 13:52:00 +09002640 __acquires(&sci->sc_state_lock)
2641 __releases(&sci->sc_state_lock)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002642{
2643 sci->sc_state |= NILFS_SEGCTOR_QUIT;
2644
2645 while (sci->sc_task) {
2646 wake_up(&sci->sc_wait_daemon);
2647 spin_unlock(&sci->sc_state_lock);
2648 wait_event(sci->sc_wait_task, sci->sc_task == NULL);
2649 spin_lock(&sci->sc_state_lock);
2650 }
2651}
2652
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002653/*
2654 * Setup & clean-up functions
2655 */
Ryusuke Konishif7545142011-03-09 11:05:08 +09002656static struct nilfs_sc_info *nilfs_segctor_new(struct super_block *sb,
Ryusuke Konishie912a5b2010-08-14 13:07:15 +09002657 struct nilfs_root *root)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002658{
Ryusuke Konishie3154e92011-03-09 11:05:08 +09002659 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002660 struct nilfs_sc_info *sci;
2661
2662 sci = kzalloc(sizeof(*sci), GFP_KERNEL);
2663 if (!sci)
2664 return NULL;
2665
Ryusuke Konishif7545142011-03-09 11:05:08 +09002666 sci->sc_super = sb;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002667
Ryusuke Konishie912a5b2010-08-14 13:07:15 +09002668 nilfs_get_root(root);
2669 sci->sc_root = root;
2670
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002671 init_waitqueue_head(&sci->sc_wait_request);
2672 init_waitqueue_head(&sci->sc_wait_daemon);
2673 init_waitqueue_head(&sci->sc_wait_task);
2674 spin_lock_init(&sci->sc_state_lock);
2675 INIT_LIST_HEAD(&sci->sc_dirty_files);
2676 INIT_LIST_HEAD(&sci->sc_segbufs);
Ryusuke Konishia694291a2009-11-29 23:03:04 +09002677 INIT_LIST_HEAD(&sci->sc_write_logs);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002678 INIT_LIST_HEAD(&sci->sc_gc_inodes);
Ryusuke Konishi7ef3ff22015-02-05 12:25:20 -08002679 INIT_LIST_HEAD(&sci->sc_iput_queue);
2680 INIT_WORK(&sci->sc_iput_work, nilfs_iput_work_func);
Li Hongfdce8952010-04-10 23:25:39 +08002681 init_timer(&sci->sc_timer);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002682
2683 sci->sc_interval = HZ * NILFS_SC_DEFAULT_TIMEOUT;
2684 sci->sc_mjcp_freq = HZ * NILFS_SC_DEFAULT_SR_FREQ;
2685 sci->sc_watermark = NILFS_SC_DEFAULT_WATERMARK;
2686
Ryusuke Konishi574e6c32011-03-09 11:05:07 +09002687 if (nilfs->ns_interval)
Ryusuke Konishi071d73c2011-06-10 00:33:06 +09002688 sci->sc_interval = HZ * nilfs->ns_interval;
Ryusuke Konishi574e6c32011-03-09 11:05:07 +09002689 if (nilfs->ns_watermark)
2690 sci->sc_watermark = nilfs->ns_watermark;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002691 return sci;
2692}
2693
2694static void nilfs_segctor_write_out(struct nilfs_sc_info *sci)
2695{
2696 int ret, retrycount = NILFS_SC_CLEANUP_RETRY;
2697
Ryusuke Konishi076a3782016-05-23 16:23:48 -07002698 /*
2699 * The segctord thread was stopped and its timer was removed.
2700 * But some tasks remain.
2701 */
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002702 do {
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002703 struct nilfs_transaction_info ti;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002704
Ryusuke Konishif7545142011-03-09 11:05:08 +09002705 nilfs_transaction_lock(sci->sc_super, &ti, 0);
Ryusuke Konishidcd76182010-01-26 15:20:15 +09002706 ret = nilfs_segctor_construct(sci, SC_LSEG_SR);
Ryusuke Konishif7545142011-03-09 11:05:08 +09002707 nilfs_transaction_unlock(sci->sc_super);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002708
Ryusuke Konishi7ef3ff22015-02-05 12:25:20 -08002709 flush_work(&sci->sc_iput_work);
2710
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002711 } while (ret && retrycount-- > 0);
2712}
2713
2714/**
2715 * nilfs_segctor_destroy - destroy the segment constructor.
2716 * @sci: nilfs_sc_info
2717 *
2718 * nilfs_segctor_destroy() kills the segctord thread and frees
2719 * the nilfs_sc_info struct.
2720 * Caller must hold the segment semaphore.
2721 */
2722static void nilfs_segctor_destroy(struct nilfs_sc_info *sci)
2723{
Ryusuke Konishie3154e92011-03-09 11:05:08 +09002724 struct the_nilfs *nilfs = sci->sc_super->s_fs_info;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002725 int flag;
2726
Ryusuke Konishi693dd322011-03-09 11:05:07 +09002727 up_write(&nilfs->ns_segctor_sem);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002728
2729 spin_lock(&sci->sc_state_lock);
2730 nilfs_segctor_kill_thread(sci);
2731 flag = ((sci->sc_state & NILFS_SEGCTOR_COMMIT) || sci->sc_flush_request
2732 || sci->sc_seq_request != sci->sc_seq_done);
2733 spin_unlock(&sci->sc_state_lock);
2734
Ryusuke Konishi7ef3ff22015-02-05 12:25:20 -08002735 if (flush_work(&sci->sc_iput_work))
2736 flag = true;
2737
Ryusuke Konishi3256a052010-01-31 12:39:50 +09002738 if (flag || !nilfs_segctor_confirm(sci))
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002739 nilfs_segctor_write_out(sci);
2740
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002741 if (!list_empty(&sci->sc_dirty_files)) {
Ryusuke Konishid6517de2016-08-02 14:05:14 -07002742 nilfs_msg(sci->sc_super, KERN_WARNING,
2743 "disposed unprocessed dirty file(s) when stopping log writer");
Ryusuke Konishi693dd322011-03-09 11:05:07 +09002744 nilfs_dispose_list(nilfs, &sci->sc_dirty_files, 1);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002745 }
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002746
Ryusuke Konishi7ef3ff22015-02-05 12:25:20 -08002747 if (!list_empty(&sci->sc_iput_queue)) {
Ryusuke Konishid6517de2016-08-02 14:05:14 -07002748 nilfs_msg(sci->sc_super, KERN_WARNING,
2749 "disposed unprocessed inode(s) in iput queue when stopping log writer");
Ryusuke Konishi7ef3ff22015-02-05 12:25:20 -08002750 nilfs_dispose_list(nilfs, &sci->sc_iput_queue, 1);
2751 }
2752
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -07002753 WARN_ON(!list_empty(&sci->sc_segbufs));
Ryusuke Konishia694291a2009-11-29 23:03:04 +09002754 WARN_ON(!list_empty(&sci->sc_write_logs));
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002755
Ryusuke Konishie912a5b2010-08-14 13:07:15 +09002756 nilfs_put_root(sci->sc_root);
2757
Ryusuke Konishi693dd322011-03-09 11:05:07 +09002758 down_write(&nilfs->ns_segctor_sem);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002759
Li Hongfdce8952010-04-10 23:25:39 +08002760 del_timer_sync(&sci->sc_timer);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002761 kfree(sci);
2762}
2763
2764/**
Ryusuke Konishif7545142011-03-09 11:05:08 +09002765 * nilfs_attach_log_writer - attach log writer
2766 * @sb: super block instance
Ryusuke Konishie912a5b2010-08-14 13:07:15 +09002767 * @root: root object of the current filesystem tree
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002768 *
Ryusuke Konishif7545142011-03-09 11:05:08 +09002769 * This allocates a log writer object, initializes it, and starts the
2770 * log writer.
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002771 *
2772 * Return Value: On success, 0 is returned. On error, one of the following
2773 * negative error code is returned.
2774 *
2775 * %-ENOMEM - Insufficient memory available.
2776 */
Ryusuke Konishif7545142011-03-09 11:05:08 +09002777int nilfs_attach_log_writer(struct super_block *sb, struct nilfs_root *root)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002778{
Ryusuke Konishie3154e92011-03-09 11:05:08 +09002779 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002780 int err;
2781
Ryusuke Konishi3fd3fe52011-03-09 11:05:08 +09002782 if (nilfs->ns_writer) {
Ryusuke Konishife5f1712010-01-31 19:46:40 +09002783 /*
2784 * This happens if the filesystem was remounted
2785 * read/write after nilfs_error degenerated it into a
2786 * read-only mount.
2787 */
Ryusuke Konishif7545142011-03-09 11:05:08 +09002788 nilfs_detach_log_writer(sb);
Ryusuke Konishife5f1712010-01-31 19:46:40 +09002789 }
2790
Ryusuke Konishif7545142011-03-09 11:05:08 +09002791 nilfs->ns_writer = nilfs_segctor_new(sb, root);
Ryusuke Konishi3fd3fe52011-03-09 11:05:08 +09002792 if (!nilfs->ns_writer)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002793 return -ENOMEM;
2794
Ryusuke Konishi3fd3fe52011-03-09 11:05:08 +09002795 err = nilfs_segctor_start_thread(nilfs->ns_writer);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002796 if (err) {
Ryusuke Konishi3fd3fe52011-03-09 11:05:08 +09002797 kfree(nilfs->ns_writer);
2798 nilfs->ns_writer = NULL;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002799 }
2800 return err;
2801}
2802
2803/**
Ryusuke Konishif7545142011-03-09 11:05:08 +09002804 * nilfs_detach_log_writer - destroy log writer
2805 * @sb: super block instance
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002806 *
Ryusuke Konishif7545142011-03-09 11:05:08 +09002807 * This kills log writer daemon, frees the log writer object, and
2808 * destroys list of dirty files.
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002809 */
Ryusuke Konishif7545142011-03-09 11:05:08 +09002810void nilfs_detach_log_writer(struct super_block *sb)
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002811{
Ryusuke Konishie3154e92011-03-09 11:05:08 +09002812 struct the_nilfs *nilfs = sb->s_fs_info;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002813 LIST_HEAD(garbage_list);
2814
2815 down_write(&nilfs->ns_segctor_sem);
Ryusuke Konishi3fd3fe52011-03-09 11:05:08 +09002816 if (nilfs->ns_writer) {
2817 nilfs_segctor_destroy(nilfs->ns_writer);
2818 nilfs->ns_writer = NULL;
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002819 }
2820
2821 /* Force to free the list of dirty files */
Ryusuke Konishi693dd322011-03-09 11:05:07 +09002822 spin_lock(&nilfs->ns_inode_lock);
2823 if (!list_empty(&nilfs->ns_dirty_files)) {
2824 list_splice_init(&nilfs->ns_dirty_files, &garbage_list);
Ryusuke Konishid6517de2016-08-02 14:05:14 -07002825 nilfs_msg(sb, KERN_WARNING,
2826 "disposed unprocessed dirty file(s) when detaching log writer");
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002827 }
Ryusuke Konishi693dd322011-03-09 11:05:07 +09002828 spin_unlock(&nilfs->ns_inode_lock);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002829 up_write(&nilfs->ns_segctor_sem);
2830
Ryusuke Konishi693dd322011-03-09 11:05:07 +09002831 nilfs_dispose_list(nilfs, &garbage_list, 1);
Ryusuke Konishi9ff051232009-04-06 19:01:37 -07002832}