blob: 484785cdf96e220525a57222190ac3fe0bca7f71 [file] [log] [blame]
Ryusuke Konishiae980432018-09-04 15:46:30 -07001// SPDX-License-Identifier: GPL-2.0+
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -07002/*
3 * the_nilfs.c - the_nilfs shared structure.
4 *
5 * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation.
6 *
Ryusuke Konishi4b420ab2016-05-23 16:23:09 -07007 * Written by Ryusuke Konishi.
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -07008 *
9 */
10
11#include <linux/buffer_head.h>
12#include <linux/slab.h>
13#include <linux/blkdev.h>
14#include <linux/backing-dev.h>
Ryusuke Konishi9b1fc4e42011-03-09 11:05:08 +090015#include <linux/random.h>
Ryusuke Konishie339ad32009-04-06 19:01:59 -070016#include <linux/crc32.h>
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070017#include "nilfs.h"
18#include "segment.h"
19#include "alloc.h"
20#include "cpfile.h"
21#include "sufile.h"
22#include "dat.h"
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070023#include "segbuf.h"
24
Ryusuke Konishi33c8e572009-06-08 01:39:29 +090025
Ryusuke Konishi6c1251602010-06-28 19:15:26 +090026static int nilfs_valid_sb(struct nilfs_super_block *sbp);
27
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070028void nilfs_set_last_segment(struct the_nilfs *nilfs,
29 sector_t start_blocknr, u64 seq, __u64 cno)
30{
31 spin_lock(&nilfs->ns_last_segment_lock);
32 nilfs->ns_last_pseg = start_blocknr;
33 nilfs->ns_last_seq = seq;
34 nilfs->ns_last_cno = cno;
Ryusuke Konishi32502042010-06-29 14:42:13 +090035
36 if (!nilfs_sb_dirty(nilfs)) {
37 if (nilfs->ns_prev_seq == nilfs->ns_last_seq)
38 goto stay_cursor;
39
40 set_nilfs_sb_dirty(nilfs);
41 }
42 nilfs->ns_prev_seq = nilfs->ns_last_seq;
43
44 stay_cursor:
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070045 spin_unlock(&nilfs->ns_last_segment_lock);
46}
47
48/**
Ryusuke Konishi348fe8d2010-09-09 02:07:56 +090049 * alloc_nilfs - allocate a nilfs object
Ryusuke Konishi66256892016-08-02 14:05:06 -070050 * @sb: super block instance
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070051 *
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070052 * Return Value: On success, pointer to the_nilfs is returned.
53 * On error, NULL is returned.
54 */
Ryusuke Konishi66256892016-08-02 14:05:06 -070055struct the_nilfs *alloc_nilfs(struct super_block *sb)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070056{
57 struct the_nilfs *nilfs;
58
59 nilfs = kzalloc(sizeof(*nilfs), GFP_KERNEL);
60 if (!nilfs)
61 return NULL;
62
Ryusuke Konishi66256892016-08-02 14:05:06 -070063 nilfs->ns_sb = sb;
64 nilfs->ns_bdev = sb->s_bdev;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070065 atomic_set(&nilfs->ns_ndirtyblks, 0);
66 init_rwsem(&nilfs->ns_sem);
Ryusuke Konishi572d8b32012-07-30 14:42:07 -070067 mutex_init(&nilfs->ns_snapshot_mount_mutex);
Ryusuke Konishi693dd322011-03-09 11:05:07 +090068 INIT_LIST_HEAD(&nilfs->ns_dirty_files);
Ryusuke Konishi263d90c2010-08-20 19:06:11 +090069 INIT_LIST_HEAD(&nilfs->ns_gc_inodes);
Ryusuke Konishi693dd322011-03-09 11:05:07 +090070 spin_lock_init(&nilfs->ns_inode_lock);
Ryusuke Konishi9b1fc4e42011-03-09 11:05:08 +090071 spin_lock_init(&nilfs->ns_next_gen_lock);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070072 spin_lock_init(&nilfs->ns_last_segment_lock);
Ryusuke Konishiba65ae42010-08-14 12:59:15 +090073 nilfs->ns_cptree = RB_ROOT;
74 spin_lock_init(&nilfs->ns_cptree_lock);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070075 init_rwsem(&nilfs->ns_segctor_sem);
Vyacheslav Dubeykocaa05d42014-08-08 14:20:42 -070076 nilfs->ns_sb_update_freq = NILFS_SB_FREQ;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070077
78 return nilfs;
79}
80
81/**
Ryusuke Konishi348fe8d2010-09-09 02:07:56 +090082 * destroy_nilfs - destroy nilfs object
83 * @nilfs: nilfs object to be released
Ryusuke Konishi33c8e572009-06-08 01:39:29 +090084 */
Ryusuke Konishi348fe8d2010-09-09 02:07:56 +090085void destroy_nilfs(struct the_nilfs *nilfs)
Ryusuke Konishi33c8e572009-06-08 01:39:29 +090086{
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070087 might_sleep();
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070088 if (nilfs_init(nilfs)) {
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -070089 nilfs_sysfs_delete_device_group(nilfs);
Ryusuke Konishie339ad32009-04-06 19:01:59 -070090 brelse(nilfs->ns_sbh[0]);
91 brelse(nilfs->ns_sbh[1]);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070092 }
93 kfree(nilfs);
94}
95
Ryusuke Konishif1e89c82010-09-05 12:20:59 +090096static int nilfs_load_super_root(struct the_nilfs *nilfs,
97 struct super_block *sb, sector_t sr_block)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070098{
99 struct buffer_head *bh_sr;
100 struct nilfs_super_root *raw_sr;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700101 struct nilfs_super_block **sbp = nilfs->ns_sbp;
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900102 struct nilfs_inode *rawi;
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -0700103 unsigned int dat_entry_size, segment_usage_size, checkpoint_size;
104 unsigned int inode_size;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700105 int err;
106
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900107 err = nilfs_read_super_root_block(nilfs, sr_block, &bh_sr, 1);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700108 if (unlikely(err))
109 return err;
110
111 down_read(&nilfs->ns_sem);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700112 dat_entry_size = le16_to_cpu(sbp[0]->s_dat_entry_size);
113 checkpoint_size = le16_to_cpu(sbp[0]->s_checkpoint_size);
114 segment_usage_size = le16_to_cpu(sbp[0]->s_segment_usage_size);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700115 up_read(&nilfs->ns_sem);
116
117 inode_size = nilfs->ns_inode_size;
118
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900119 rawi = (void *)bh_sr->b_data + NILFS_SR_DAT_OFFSET(inode_size);
120 err = nilfs_dat_read(sb, dat_entry_size, rawi, &nilfs->ns_dat);
121 if (err)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700122 goto failed;
123
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900124 rawi = (void *)bh_sr->b_data + NILFS_SR_CPFILE_OFFSET(inode_size);
125 err = nilfs_cpfile_read(sb, checkpoint_size, rawi, &nilfs->ns_cpfile);
126 if (err)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700127 goto failed_dat;
128
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900129 rawi = (void *)bh_sr->b_data + NILFS_SR_SUFILE_OFFSET(inode_size);
130 err = nilfs_sufile_read(sb, segment_usage_size, rawi,
131 &nilfs->ns_sufile);
132 if (err)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700133 goto failed_cpfile;
134
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700135 raw_sr = (struct nilfs_super_root *)bh_sr->b_data;
136 nilfs->ns_nongc_ctime = le64_to_cpu(raw_sr->sr_nongc_ctime);
137
138 failed:
139 brelse(bh_sr);
140 return err;
141
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700142 failed_cpfile:
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900143 iput(nilfs->ns_cpfile);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700144
145 failed_dat:
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900146 iput(nilfs->ns_dat);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700147 goto failed;
148}
149
150static void nilfs_init_recovery_info(struct nilfs_recovery_info *ri)
151{
152 memset(ri, 0, sizeof(*ri));
153 INIT_LIST_HEAD(&ri->ri_used_segments);
154}
155
156static void nilfs_clear_recovery_info(struct nilfs_recovery_info *ri)
157{
158 nilfs_dispose_segment_list(&ri->ri_used_segments);
159}
160
161/**
Ryusuke Konishi843d63ba2010-06-28 19:15:24 +0900162 * nilfs_store_log_cursor - load log cursor from a super block
163 * @nilfs: nilfs object
164 * @sbp: buffer storing super block to be read
165 *
166 * nilfs_store_log_cursor() reads the last position of the log
167 * containing a super root from a given super block, and initializes
168 * relevant information on the nilfs object preparatory for log
169 * scanning and recovery.
170 */
171static int nilfs_store_log_cursor(struct the_nilfs *nilfs,
172 struct nilfs_super_block *sbp)
173{
174 int ret = 0;
175
176 nilfs->ns_last_pseg = le64_to_cpu(sbp->s_last_pseg);
177 nilfs->ns_last_cno = le64_to_cpu(sbp->s_last_cno);
178 nilfs->ns_last_seq = le64_to_cpu(sbp->s_last_seq);
179
Ryusuke Konishi32502042010-06-29 14:42:13 +0900180 nilfs->ns_prev_seq = nilfs->ns_last_seq;
Ryusuke Konishi843d63ba2010-06-28 19:15:24 +0900181 nilfs->ns_seg_seq = nilfs->ns_last_seq;
182 nilfs->ns_segnum =
183 nilfs_get_segnum_of_block(nilfs, nilfs->ns_last_pseg);
184 nilfs->ns_cno = nilfs->ns_last_cno + 1;
185 if (nilfs->ns_segnum >= nilfs->ns_nsegments) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700186 nilfs_msg(nilfs->ns_sb, KERN_ERR,
187 "pointed segment number is out of range: segnum=%llu, nsegments=%lu",
188 (unsigned long long)nilfs->ns_segnum,
189 nilfs->ns_nsegments);
Ryusuke Konishi843d63ba2010-06-28 19:15:24 +0900190 ret = -EINVAL;
191 }
192 return ret;
193}
194
195/**
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700196 * load_nilfs - load and recover the nilfs
197 * @nilfs: the_nilfs structure to be released
Ryusuke Konishif7545142011-03-09 11:05:08 +0900198 * @sb: super block isntance used to recover past segment
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700199 *
200 * load_nilfs() searches and load the latest super root,
201 * attaches the last segment, and does recovery if needed.
202 * The caller must call this exclusively for simultaneous mounts.
203 */
Ryusuke Konishif7545142011-03-09 11:05:08 +0900204int load_nilfs(struct the_nilfs *nilfs, struct super_block *sb)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700205{
206 struct nilfs_recovery_info ri;
Ryusuke Konishif7545142011-03-09 11:05:08 +0900207 unsigned int s_flags = sb->s_flags;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700208 int really_read_only = bdev_read_only(nilfs->ns_bdev);
Ryusuke Konishia057d2c2009-11-19 19:58:46 +0900209 int valid_fs = nilfs_valid_fs(nilfs);
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900210 int err;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700211
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900212 if (!valid_fs) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700213 nilfs_msg(sb, KERN_WARNING, "mounting unchecked fs");
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800214 if (s_flags & SB_RDONLY) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700215 nilfs_msg(sb, KERN_INFO,
216 "recovery required for readonly filesystem");
217 nilfs_msg(sb, KERN_INFO,
218 "write access will be enabled during recovery");
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700219 }
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700220 }
221
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900222 nilfs_init_recovery_info(&ri);
223
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900224 err = nilfs_search_super_root(nilfs, &ri);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700225 if (unlikely(err)) {
Ryusuke Konishi6c1251602010-06-28 19:15:26 +0900226 struct nilfs_super_block **sbp = nilfs->ns_sbp;
227 int blocksize;
228
229 if (err != -EINVAL)
230 goto scan_error;
231
232 if (!nilfs_valid_sb(sbp[1])) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700233 nilfs_msg(sb, KERN_WARNING,
234 "unable to fall back to spare super block");
Ryusuke Konishi6c1251602010-06-28 19:15:26 +0900235 goto scan_error;
236 }
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700237 nilfs_msg(sb, KERN_INFO,
238 "trying rollback from an earlier position");
Ryusuke Konishi6c1251602010-06-28 19:15:26 +0900239
240 /*
241 * restore super block with its spare and reconfigure
242 * relevant states of the nilfs object.
243 */
244 memcpy(sbp[0], sbp[1], nilfs->ns_sbsize);
245 nilfs->ns_crc_seed = le32_to_cpu(sbp[0]->s_crc_seed);
246 nilfs->ns_sbwtime = le64_to_cpu(sbp[0]->s_wtime);
247
248 /* verify consistency between two super blocks */
249 blocksize = BLOCK_SIZE << le32_to_cpu(sbp[0]->s_log_block_size);
250 if (blocksize != nilfs->ns_blocksize) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700251 nilfs_msg(sb, KERN_WARNING,
252 "blocksize differs between two super blocks (%d != %d)",
253 blocksize, nilfs->ns_blocksize);
Ryusuke Konishi6c1251602010-06-28 19:15:26 +0900254 goto scan_error;
255 }
256
257 err = nilfs_store_log_cursor(nilfs, sbp[0]);
258 if (err)
259 goto scan_error;
260
261 /* drop clean flag to allow roll-forward and recovery */
262 nilfs->ns_mount_state &= ~NILFS_VALID_FS;
263 valid_fs = 0;
264
265 err = nilfs_search_super_root(nilfs, &ri);
266 if (err)
267 goto scan_error;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700268 }
269
Ryusuke Konishif7545142011-03-09 11:05:08 +0900270 err = nilfs_load_super_root(nilfs, sb, ri.ri_super_root);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700271 if (unlikely(err)) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700272 nilfs_msg(sb, KERN_ERR, "error %d while loading super root",
273 err);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700274 goto failed;
275 }
276
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900277 if (valid_fs)
278 goto skip_recovery;
279
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800280 if (s_flags & SB_RDONLY) {
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +0900281 __u64 features;
282
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900283 if (nilfs_test_opt(nilfs, NORECOVERY)) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700284 nilfs_msg(sb, KERN_INFO,
285 "norecovery option specified, skipping roll-forward recovery");
Ryusuke Konishi02345762009-11-20 03:28:01 +0900286 goto skip_recovery;
287 }
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +0900288 features = le64_to_cpu(nilfs->ns_sbp[0]->s_feature_compat_ro) &
289 ~NILFS_FEATURE_COMPAT_RO_SUPP;
290 if (features) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700291 nilfs_msg(sb, KERN_ERR,
292 "couldn't proceed with recovery because of unsupported optional features (%llx)",
293 (unsigned long long)features);
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +0900294 err = -EROFS;
295 goto failed_unload;
296 }
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900297 if (really_read_only) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700298 nilfs_msg(sb, KERN_ERR,
299 "write access unavailable, cannot proceed");
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900300 err = -EROFS;
301 goto failed_unload;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700302 }
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800303 sb->s_flags &= ~SB_RDONLY;
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900304 } else if (nilfs_test_opt(nilfs, NORECOVERY)) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700305 nilfs_msg(sb, KERN_ERR,
306 "recovery cancelled because norecovery option was specified for a read/write mount");
Ryusuke Konishi02345762009-11-20 03:28:01 +0900307 err = -EINVAL;
308 goto failed_unload;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700309 }
310
Ryusuke Konishif7545142011-03-09 11:05:08 +0900311 err = nilfs_salvage_orphan_logs(nilfs, sb, &ri);
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900312 if (err)
313 goto failed_unload;
314
315 down_write(&nilfs->ns_sem);
Ryusuke Konishi7ecaa462010-06-28 17:49:29 +0900316 nilfs->ns_mount_state |= NILFS_VALID_FS; /* set "clean" flag */
Ryusuke Konishif7545142011-03-09 11:05:08 +0900317 err = nilfs_cleanup_super(sb);
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900318 up_write(&nilfs->ns_sem);
319
320 if (err) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700321 nilfs_msg(sb, KERN_ERR,
322 "error %d updating super block. recovery unfinished.",
323 err);
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900324 goto failed_unload;
325 }
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700326 nilfs_msg(sb, KERN_INFO, "recovery complete");
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900327
328 skip_recovery:
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900329 nilfs_clear_recovery_info(&ri);
Ryusuke Konishif7545142011-03-09 11:05:08 +0900330 sb->s_flags = s_flags;
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900331 return 0;
332
Ryusuke Konishi6c1251602010-06-28 19:15:26 +0900333 scan_error:
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700334 nilfs_msg(sb, KERN_ERR, "error %d while searching super root", err);
Ryusuke Konishi6c1251602010-06-28 19:15:26 +0900335 goto failed;
336
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900337 failed_unload:
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900338 iput(nilfs->ns_cpfile);
339 iput(nilfs->ns_sufile);
340 iput(nilfs->ns_dat);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700341
342 failed:
343 nilfs_clear_recovery_info(&ri);
Ryusuke Konishif7545142011-03-09 11:05:08 +0900344 sb->s_flags = s_flags;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700345 return err;
346}
347
348static unsigned long long nilfs_max_size(unsigned int blkbits)
349{
350 unsigned int max_bits;
351 unsigned long long res = MAX_LFS_FILESIZE; /* page cache limit */
352
353 max_bits = blkbits + NILFS_BMAP_KEY_BIT; /* bmap size limit */
354 if (max_bits < 64)
355 res = min_t(unsigned long long, res, (1ULL << max_bits) - 1);
356 return res;
357}
358
Ryusuke Konishi4e33f9e2011-05-05 01:23:58 +0900359/**
360 * nilfs_nrsvsegs - calculate the number of reserved segments
361 * @nilfs: nilfs object
362 * @nsegs: total number of segments
363 */
364unsigned long nilfs_nrsvsegs(struct the_nilfs *nilfs, unsigned long nsegs)
365{
366 return max_t(unsigned long, NILFS_MIN_NRSVSEGS,
367 DIV_ROUND_UP(nsegs * nilfs->ns_r_segments_percentage,
368 100));
369}
370
371void nilfs_set_nsegments(struct the_nilfs *nilfs, unsigned long nsegs)
372{
373 nilfs->ns_nsegments = nsegs;
374 nilfs->ns_nrsvsegs = nilfs_nrsvsegs(nilfs, nsegs);
375}
376
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700377static int nilfs_store_disk_layout(struct the_nilfs *nilfs,
378 struct nilfs_super_block *sbp)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700379{
Ryusuke Konishi9566a7a2010-08-10 00:58:41 +0900380 if (le32_to_cpu(sbp->s_rev_level) < NILFS_MIN_SUPP_REV) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700381 nilfs_msg(nilfs->ns_sb, KERN_ERR,
382 "unsupported revision (superblock rev.=%d.%d, current rev.=%d.%d). Please check the version of mkfs.nilfs(2).",
383 le32_to_cpu(sbp->s_rev_level),
384 le16_to_cpu(sbp->s_minor_rev_level),
385 NILFS_CURRENT_REV, NILFS_MINOR_REV);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700386 return -EINVAL;
387 }
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700388 nilfs->ns_sbsize = le16_to_cpu(sbp->s_bytes);
389 if (nilfs->ns_sbsize > BLOCK_SIZE)
390 return -EINVAL;
391
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700392 nilfs->ns_inode_size = le16_to_cpu(sbp->s_inode_size);
Ryusuke Konishi0ec060d2014-04-03 14:50:31 -0700393 if (nilfs->ns_inode_size > nilfs->ns_blocksize) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700394 nilfs_msg(nilfs->ns_sb, KERN_ERR,
395 "too large inode size: %d bytes",
396 nilfs->ns_inode_size);
Ryusuke Konishi0ec060d2014-04-03 14:50:31 -0700397 return -EINVAL;
398 } else if (nilfs->ns_inode_size < NILFS_MIN_INODE_SIZE) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700399 nilfs_msg(nilfs->ns_sb, KERN_ERR,
400 "too small inode size: %d bytes",
401 nilfs->ns_inode_size);
Ryusuke Konishi0ec060d2014-04-03 14:50:31 -0700402 return -EINVAL;
403 }
404
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700405 nilfs->ns_first_ino = le32_to_cpu(sbp->s_first_ino);
406
407 nilfs->ns_blocks_per_segment = le32_to_cpu(sbp->s_blocks_per_segment);
408 if (nilfs->ns_blocks_per_segment < NILFS_SEG_MIN_BLOCKS) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700409 nilfs_msg(nilfs->ns_sb, KERN_ERR,
410 "too short segment: %lu blocks",
411 nilfs->ns_blocks_per_segment);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700412 return -EINVAL;
413 }
414
415 nilfs->ns_first_data_block = le64_to_cpu(sbp->s_first_data_block);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700416 nilfs->ns_r_segments_percentage =
417 le32_to_cpu(sbp->s_r_segments_percentage);
Haogang Chen3d777a62012-03-16 17:08:38 -0700418 if (nilfs->ns_r_segments_percentage < 1 ||
419 nilfs->ns_r_segments_percentage > 99) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700420 nilfs_msg(nilfs->ns_sb, KERN_ERR,
421 "invalid reserved segments percentage: %lu",
422 nilfs->ns_r_segments_percentage);
Haogang Chen3d777a62012-03-16 17:08:38 -0700423 return -EINVAL;
424 }
425
Ryusuke Konishi4e33f9e2011-05-05 01:23:58 +0900426 nilfs_set_nsegments(nilfs, le64_to_cpu(sbp->s_nsegments));
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700427 nilfs->ns_crc_seed = le32_to_cpu(sbp->s_crc_seed);
428 return 0;
429}
430
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700431static int nilfs_valid_sb(struct nilfs_super_block *sbp)
432{
433 static unsigned char sum[4];
434 const int sumoff = offsetof(struct nilfs_super_block, s_sum);
435 size_t bytes;
436 u32 crc;
437
438 if (!sbp || le16_to_cpu(sbp->s_magic) != NILFS_SUPER_MAGIC)
439 return 0;
440 bytes = le16_to_cpu(sbp->s_bytes);
Torsten Hilbrich63d2f952016-06-24 14:50:18 -0700441 if (bytes < sumoff + 4 || bytes > BLOCK_SIZE)
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700442 return 0;
443 crc = crc32_le(le32_to_cpu(sbp->s_crc_seed), (unsigned char *)sbp,
444 sumoff);
445 crc = crc32_le(crc, sum, 4);
446 crc = crc32_le(crc, (unsigned char *)sbp + sumoff + 4,
447 bytes - sumoff - 4);
448 return crc == le32_to_cpu(sbp->s_sum);
449}
450
451static int nilfs_sb2_bad_offset(struct nilfs_super_block *sbp, u64 offset)
452{
453 return offset < ((le64_to_cpu(sbp->s_nsegments) *
454 le32_to_cpu(sbp->s_blocks_per_segment)) <<
455 (le32_to_cpu(sbp->s_log_block_size) + 10));
456}
457
458static void nilfs_release_super_block(struct the_nilfs *nilfs)
459{
460 int i;
461
462 for (i = 0; i < 2; i++) {
463 if (nilfs->ns_sbp[i]) {
464 brelse(nilfs->ns_sbh[i]);
465 nilfs->ns_sbh[i] = NULL;
466 nilfs->ns_sbp[i] = NULL;
467 }
468 }
469}
470
471void nilfs_fall_back_super_block(struct the_nilfs *nilfs)
472{
473 brelse(nilfs->ns_sbh[0]);
474 nilfs->ns_sbh[0] = nilfs->ns_sbh[1];
475 nilfs->ns_sbp[0] = nilfs->ns_sbp[1];
476 nilfs->ns_sbh[1] = NULL;
477 nilfs->ns_sbp[1] = NULL;
478}
479
480void nilfs_swap_super_block(struct the_nilfs *nilfs)
481{
482 struct buffer_head *tsbh = nilfs->ns_sbh[0];
483 struct nilfs_super_block *tsbp = nilfs->ns_sbp[0];
484
485 nilfs->ns_sbh[0] = nilfs->ns_sbh[1];
486 nilfs->ns_sbp[0] = nilfs->ns_sbp[1];
487 nilfs->ns_sbh[1] = tsbh;
488 nilfs->ns_sbp[1] = tsbp;
489}
490
491static int nilfs_load_super_block(struct the_nilfs *nilfs,
492 struct super_block *sb, int blocksize,
493 struct nilfs_super_block **sbpp)
494{
495 struct nilfs_super_block **sbp = nilfs->ns_sbp;
496 struct buffer_head **sbh = nilfs->ns_sbh;
497 u64 sb2off = NILFS_SB2_OFFSET_BYTES(nilfs->ns_bdev->bd_inode->i_size);
498 int valid[2], swp = 0;
499
500 sbp[0] = nilfs_read_super_block(sb, NILFS_SB_OFFSET_BYTES, blocksize,
501 &sbh[0]);
502 sbp[1] = nilfs_read_super_block(sb, sb2off, blocksize, &sbh[1]);
503
504 if (!sbp[0]) {
505 if (!sbp[1]) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700506 nilfs_msg(sb, KERN_ERR, "unable to read superblock");
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700507 return -EIO;
508 }
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700509 nilfs_msg(sb, KERN_WARNING,
510 "unable to read primary superblock (blocksize = %d)",
511 blocksize);
Ryusuke Konishi4138ec22011-01-24 00:28:22 +0900512 } else if (!sbp[1]) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700513 nilfs_msg(sb, KERN_WARNING,
514 "unable to read secondary superblock (blocksize = %d)",
515 blocksize);
Ryusuke Konishi4138ec22011-01-24 00:28:22 +0900516 }
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700517
Ryusuke Konishi25294d82010-05-01 11:54:21 +0900518 /*
519 * Compare two super blocks and set 1 in swp if the secondary
520 * super block is valid and newer. Otherwise, set 0 in swp.
521 */
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700522 valid[0] = nilfs_valid_sb(sbp[0]);
523 valid[1] = nilfs_valid_sb(sbp[1]);
Ryusuke Konishi25294d82010-05-01 11:54:21 +0900524 swp = valid[1] && (!valid[0] ||
525 le64_to_cpu(sbp[1]->s_last_cno) >
526 le64_to_cpu(sbp[0]->s_last_cno));
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700527
528 if (valid[swp] && nilfs_sb2_bad_offset(sbp[swp], sb2off)) {
529 brelse(sbh[1]);
530 sbh[1] = NULL;
531 sbp[1] = NULL;
Ryusuke Konishid7178c72012-03-16 17:08:39 -0700532 valid[1] = 0;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700533 swp = 0;
534 }
535 if (!valid[swp]) {
536 nilfs_release_super_block(nilfs);
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700537 nilfs_msg(sb, KERN_ERR, "couldn't find nilfs on the device");
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700538 return -EINVAL;
539 }
540
Ryusuke Konishiea1a16f2010-08-15 20:16:11 +0900541 if (!valid[!swp])
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700542 nilfs_msg(sb, KERN_WARNING,
543 "broken superblock, retrying with spare superblock (blocksize = %d)",
544 blocksize);
Ryusuke Konishiea1a16f2010-08-15 20:16:11 +0900545 if (swp)
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700546 nilfs_swap_super_block(nilfs);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700547
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900548 nilfs->ns_sbwcount = 0;
549 nilfs->ns_sbwtime = le64_to_cpu(sbp[0]->s_wtime);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700550 nilfs->ns_prot_seq = le64_to_cpu(sbp[valid[1] & !swp]->s_last_seq);
551 *sbpp = sbp[0];
552 return 0;
553}
554
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700555/**
556 * init_nilfs - initialize a NILFS instance.
557 * @nilfs: the_nilfs structure
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700558 * @sb: super block
559 * @data: mount options
560 *
561 * init_nilfs() performs common initialization per block device (e.g.
562 * reading the super block, getting disk layout information, initializing
Ryusuke Konishif11459a2010-08-16 01:54:52 +0900563 * shared fields in the_nilfs).
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700564 *
565 * Return Value: On success, 0 is returned. On error, a negative error
566 * code is returned.
567 */
Ryusuke Konishif7545142011-03-09 11:05:08 +0900568int init_nilfs(struct the_nilfs *nilfs, struct super_block *sb, char *data)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700569{
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700570 struct nilfs_super_block *sbp;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700571 int blocksize;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700572 int err;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700573
574 down_write(&nilfs->ns_sem);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700575
Ryusuke Konishi89c0fd02010-07-25 22:44:53 +0900576 blocksize = sb_min_blocksize(sb, NILFS_MIN_BLOCK_SIZE);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700577 if (!blocksize) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700578 nilfs_msg(sb, KERN_ERR, "unable to set blocksize");
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700579 err = -EINVAL;
580 goto out;
581 }
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700582 err = nilfs_load_super_block(nilfs, sb, blocksize, &sbp);
583 if (err)
584 goto out;
585
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700586 err = nilfs_store_magic_and_option(sb, sbp, data);
587 if (err)
588 goto failed_sbh;
589
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +0900590 err = nilfs_check_feature_compatibility(sb, sbp);
591 if (err)
592 goto failed_sbh;
593
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700594 blocksize = BLOCK_SIZE << le32_to_cpu(sbp->s_log_block_size);
Ryusuke Konishi89c0fd02010-07-25 22:44:53 +0900595 if (blocksize < NILFS_MIN_BLOCK_SIZE ||
596 blocksize > NILFS_MAX_BLOCK_SIZE) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700597 nilfs_msg(sb, KERN_ERR,
598 "couldn't mount because of unsupported filesystem blocksize %d",
599 blocksize);
Ryusuke Konishi89c0fd02010-07-25 22:44:53 +0900600 err = -EINVAL;
601 goto failed_sbh;
602 }
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700603 if (sb->s_blocksize != blocksize) {
Martin K. Petersene1defc42009-05-22 17:17:49 -0400604 int hw_blocksize = bdev_logical_block_size(sb->s_bdev);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700605
606 if (blocksize < hw_blocksize) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700607 nilfs_msg(sb, KERN_ERR,
608 "blocksize %d too small for device (sector-size = %d)",
609 blocksize, hw_blocksize);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700610 err = -EINVAL;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700611 goto failed_sbh;
612 }
613 nilfs_release_super_block(nilfs);
614 sb_set_blocksize(sb, blocksize);
615
616 err = nilfs_load_super_block(nilfs, sb, blocksize, &sbp);
617 if (err)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700618 goto out;
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700619 /*
620 * Not to failed_sbh; sbh is released automatically
621 * when reloading fails.
622 */
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700623 }
624 nilfs->ns_blocksize_bits = sb->s_blocksize_bits;
Ryusuke Konishi92c60cc2010-05-23 00:17:48 +0900625 nilfs->ns_blocksize = blocksize;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700626
Ryusuke Konishi9b1fc4e42011-03-09 11:05:08 +0900627 get_random_bytes(&nilfs->ns_next_generation,
628 sizeof(nilfs->ns_next_generation));
629
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700630 err = nilfs_store_disk_layout(nilfs, sbp);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700631 if (err)
632 goto failed_sbh;
633
634 sb->s_maxbytes = nilfs_max_size(sb->s_blocksize_bits);
635
636 nilfs->ns_mount_state = le16_to_cpu(sbp->s_state);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700637
Ryusuke Konishi843d63ba2010-06-28 19:15:24 +0900638 err = nilfs_store_log_cursor(nilfs, sbp);
639 if (err)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700640 goto failed_sbh;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700641
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -0700642 err = nilfs_sysfs_create_device_group(sb);
643 if (err)
644 goto failed_sbh;
645
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700646 set_nilfs_init(nilfs);
647 err = 0;
648 out:
649 up_write(&nilfs->ns_sem);
650 return err;
651
652 failed_sbh:
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700653 nilfs_release_super_block(nilfs);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700654 goto out;
655}
656
Jiro SEKIBAe902ec92010-01-30 18:06:35 +0900657int nilfs_discard_segments(struct the_nilfs *nilfs, __u64 *segnump,
658 size_t nsegs)
659{
660 sector_t seg_start, seg_end;
661 sector_t start = 0, nblocks = 0;
662 unsigned int sects_per_block;
663 __u64 *sn;
664 int ret = 0;
665
666 sects_per_block = (1 << nilfs->ns_blocksize_bits) /
667 bdev_logical_block_size(nilfs->ns_bdev);
668 for (sn = segnump; sn < segnump + nsegs; sn++) {
669 nilfs_get_segment_range(nilfs, *sn, &seg_start, &seg_end);
670
671 if (!nblocks) {
672 start = seg_start;
673 nblocks = seg_end - seg_start + 1;
674 } else if (start + nblocks == seg_start) {
675 nblocks += seg_end - seg_start + 1;
676 } else {
677 ret = blkdev_issue_discard(nilfs->ns_bdev,
678 start * sects_per_block,
679 nblocks * sects_per_block,
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200680 GFP_NOFS, 0);
Jiro SEKIBAe902ec92010-01-30 18:06:35 +0900681 if (ret < 0)
682 return ret;
683 nblocks = 0;
684 }
685 }
686 if (nblocks)
687 ret = blkdev_issue_discard(nilfs->ns_bdev,
688 start * sects_per_block,
689 nblocks * sects_per_block,
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200690 GFP_NOFS, 0);
Jiro SEKIBAe902ec92010-01-30 18:06:35 +0900691 return ret;
692}
693
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700694int nilfs_count_free_blocks(struct the_nilfs *nilfs, sector_t *nblocks)
695{
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700696 unsigned long ncleansegs;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700697
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900698 down_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishief7d4752009-11-13 08:45:32 +0900699 ncleansegs = nilfs_sufile_get_ncleansegs(nilfs->ns_sufile);
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900700 up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishief7d4752009-11-13 08:45:32 +0900701 *nblocks = (sector_t)ncleansegs * nilfs->ns_blocks_per_segment;
702 return 0;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700703}
704
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700705int nilfs_near_disk_full(struct the_nilfs *nilfs)
706{
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700707 unsigned long ncleansegs, nincsegs;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700708
Ryusuke Konishief7d4752009-11-13 08:45:32 +0900709 ncleansegs = nilfs_sufile_get_ncleansegs(nilfs->ns_sufile);
710 nincsegs = atomic_read(&nilfs->ns_ndirtyblks) /
711 nilfs->ns_blocks_per_segment + 1;
712
713 return ncleansegs <= nilfs->ns_nrsvsegs + nincsegs;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700714}
715
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900716struct nilfs_root *nilfs_lookup_root(struct the_nilfs *nilfs, __u64 cno)
Ryusuke Konishi6dd47402009-06-08 01:39:31 +0900717{
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900718 struct rb_node *n;
719 struct nilfs_root *root;
Ryusuke Konishi6dd47402009-06-08 01:39:31 +0900720
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900721 spin_lock(&nilfs->ns_cptree_lock);
722 n = nilfs->ns_cptree.rb_node;
723 while (n) {
724 root = rb_entry(n, struct nilfs_root, rb_node);
Ryusuke Konishi6dd47402009-06-08 01:39:31 +0900725
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900726 if (cno < root->cno) {
727 n = n->rb_left;
728 } else if (cno > root->cno) {
729 n = n->rb_right;
730 } else {
Elena Reshetovad4f02842017-11-17 15:29:39 -0800731 refcount_inc(&root->count);
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900732 spin_unlock(&nilfs->ns_cptree_lock);
733 return root;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700734 }
735 }
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900736 spin_unlock(&nilfs->ns_cptree_lock);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700737
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900738 return NULL;
739}
740
741struct nilfs_root *
742nilfs_find_or_create_root(struct the_nilfs *nilfs, __u64 cno)
743{
744 struct rb_node **p, *parent;
745 struct nilfs_root *root, *new;
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -0700746 int err;
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900747
748 root = nilfs_lookup_root(nilfs, cno);
749 if (root)
750 return root;
751
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -0700752 new = kzalloc(sizeof(*root), GFP_KERNEL);
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900753 if (!new)
754 return NULL;
755
756 spin_lock(&nilfs->ns_cptree_lock);
757
758 p = &nilfs->ns_cptree.rb_node;
759 parent = NULL;
760
761 while (*p) {
762 parent = *p;
763 root = rb_entry(parent, struct nilfs_root, rb_node);
764
765 if (cno < root->cno) {
766 p = &(*p)->rb_left;
767 } else if (cno > root->cno) {
768 p = &(*p)->rb_right;
769 } else {
Elena Reshetovad4f02842017-11-17 15:29:39 -0800770 refcount_inc(&root->count);
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900771 spin_unlock(&nilfs->ns_cptree_lock);
772 kfree(new);
773 return root;
774 }
775 }
776
777 new->cno = cno;
778 new->ifile = NULL;
779 new->nilfs = nilfs;
Elena Reshetovad4f02842017-11-17 15:29:39 -0800780 refcount_set(&new->count, 1);
Vyacheslav Dubeykoe5f7f842013-07-03 15:08:06 -0700781 atomic64_set(&new->inodes_count, 0);
782 atomic64_set(&new->blocks_count, 0);
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900783
784 rb_link_node(&new->rb_node, parent, p);
785 rb_insert_color(&new->rb_node, &nilfs->ns_cptree);
786
787 spin_unlock(&nilfs->ns_cptree_lock);
788
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -0700789 err = nilfs_sysfs_create_snapshot_group(new);
790 if (err) {
791 kfree(new);
792 new = NULL;
793 }
794
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900795 return new;
796}
797
798void nilfs_put_root(struct nilfs_root *root)
799{
Elena Reshetovad4f02842017-11-17 15:29:39 -0800800 if (refcount_dec_and_test(&root->count)) {
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900801 struct the_nilfs *nilfs = root->nilfs;
802
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -0700803 nilfs_sysfs_delete_snapshot_group(root);
804
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900805 spin_lock(&nilfs->ns_cptree_lock);
806 rb_erase(&root->rb_node, &nilfs->ns_cptree);
807 spin_unlock(&nilfs->ns_cptree_lock);
Markus Elfring72b99182014-12-10 15:54:31 -0800808 iput(root->ifile);
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900809
810 kfree(root);
811 }
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700812}