blob: 2dd75bf619ad0e1167a62e90ef59258d2ee88e26 [file] [log] [blame]
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -07001/*
2 * the_nilfs.c - the_nilfs shared structure.
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 Konishi8a9d2192009-04-06 19:01:35 -070017 *
18 */
19
20#include <linux/buffer_head.h>
21#include <linux/slab.h>
22#include <linux/blkdev.h>
23#include <linux/backing-dev.h>
Ryusuke Konishi9b1fc4e42011-03-09 11:05:08 +090024#include <linux/random.h>
Ryusuke Konishie339ad32009-04-06 19:01:59 -070025#include <linux/crc32.h>
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070026#include "nilfs.h"
27#include "segment.h"
28#include "alloc.h"
29#include "cpfile.h"
30#include "sufile.h"
31#include "dat.h"
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070032#include "segbuf.h"
33
Ryusuke Konishi33c8e572009-06-08 01:39:29 +090034
Ryusuke Konishi6c1251602010-06-28 19:15:26 +090035static int nilfs_valid_sb(struct nilfs_super_block *sbp);
36
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070037void nilfs_set_last_segment(struct the_nilfs *nilfs,
38 sector_t start_blocknr, u64 seq, __u64 cno)
39{
40 spin_lock(&nilfs->ns_last_segment_lock);
41 nilfs->ns_last_pseg = start_blocknr;
42 nilfs->ns_last_seq = seq;
43 nilfs->ns_last_cno = cno;
Ryusuke Konishi32502042010-06-29 14:42:13 +090044
45 if (!nilfs_sb_dirty(nilfs)) {
46 if (nilfs->ns_prev_seq == nilfs->ns_last_seq)
47 goto stay_cursor;
48
49 set_nilfs_sb_dirty(nilfs);
50 }
51 nilfs->ns_prev_seq = nilfs->ns_last_seq;
52
53 stay_cursor:
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070054 spin_unlock(&nilfs->ns_last_segment_lock);
55}
56
57/**
Ryusuke Konishi348fe8d2010-09-09 02:07:56 +090058 * alloc_nilfs - allocate a nilfs object
Ryusuke Konishi66256892016-08-02 14:05:06 -070059 * @sb: super block instance
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070060 *
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070061 * Return Value: On success, pointer to the_nilfs is returned.
62 * On error, NULL is returned.
63 */
Ryusuke Konishi66256892016-08-02 14:05:06 -070064struct the_nilfs *alloc_nilfs(struct super_block *sb)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070065{
66 struct the_nilfs *nilfs;
67
68 nilfs = kzalloc(sizeof(*nilfs), GFP_KERNEL);
69 if (!nilfs)
70 return NULL;
71
Ryusuke Konishi66256892016-08-02 14:05:06 -070072 nilfs->ns_sb = sb;
73 nilfs->ns_bdev = sb->s_bdev;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070074 atomic_set(&nilfs->ns_ndirtyblks, 0);
75 init_rwsem(&nilfs->ns_sem);
Ryusuke Konishi572d8b32012-07-30 14:42:07 -070076 mutex_init(&nilfs->ns_snapshot_mount_mutex);
Ryusuke Konishi693dd322011-03-09 11:05:07 +090077 INIT_LIST_HEAD(&nilfs->ns_dirty_files);
Ryusuke Konishi263d90c2010-08-20 19:06:11 +090078 INIT_LIST_HEAD(&nilfs->ns_gc_inodes);
Ryusuke Konishi693dd322011-03-09 11:05:07 +090079 spin_lock_init(&nilfs->ns_inode_lock);
Ryusuke Konishi9b1fc4e42011-03-09 11:05:08 +090080 spin_lock_init(&nilfs->ns_next_gen_lock);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070081 spin_lock_init(&nilfs->ns_last_segment_lock);
Ryusuke Konishiba65ae42010-08-14 12:59:15 +090082 nilfs->ns_cptree = RB_ROOT;
83 spin_lock_init(&nilfs->ns_cptree_lock);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070084 init_rwsem(&nilfs->ns_segctor_sem);
Vyacheslav Dubeykocaa05d42014-08-08 14:20:42 -070085 nilfs->ns_sb_update_freq = NILFS_SB_FREQ;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070086
87 return nilfs;
88}
89
90/**
Ryusuke Konishi348fe8d2010-09-09 02:07:56 +090091 * destroy_nilfs - destroy nilfs object
92 * @nilfs: nilfs object to be released
Ryusuke Konishi33c8e572009-06-08 01:39:29 +090093 */
Ryusuke Konishi348fe8d2010-09-09 02:07:56 +090094void destroy_nilfs(struct the_nilfs *nilfs)
Ryusuke Konishi33c8e572009-06-08 01:39:29 +090095{
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070096 might_sleep();
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070097 if (nilfs_init(nilfs)) {
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -070098 nilfs_sysfs_delete_device_group(nilfs);
Ryusuke Konishie339ad32009-04-06 19:01:59 -070099 brelse(nilfs->ns_sbh[0]);
100 brelse(nilfs->ns_sbh[1]);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700101 }
102 kfree(nilfs);
103}
104
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900105static int nilfs_load_super_root(struct the_nilfs *nilfs,
106 struct super_block *sb, sector_t sr_block)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700107{
108 struct buffer_head *bh_sr;
109 struct nilfs_super_root *raw_sr;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700110 struct nilfs_super_block **sbp = nilfs->ns_sbp;
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900111 struct nilfs_inode *rawi;
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -0700112 unsigned int dat_entry_size, segment_usage_size, checkpoint_size;
113 unsigned int inode_size;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700114 int err;
115
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900116 err = nilfs_read_super_root_block(nilfs, sr_block, &bh_sr, 1);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700117 if (unlikely(err))
118 return err;
119
120 down_read(&nilfs->ns_sem);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700121 dat_entry_size = le16_to_cpu(sbp[0]->s_dat_entry_size);
122 checkpoint_size = le16_to_cpu(sbp[0]->s_checkpoint_size);
123 segment_usage_size = le16_to_cpu(sbp[0]->s_segment_usage_size);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700124 up_read(&nilfs->ns_sem);
125
126 inode_size = nilfs->ns_inode_size;
127
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900128 rawi = (void *)bh_sr->b_data + NILFS_SR_DAT_OFFSET(inode_size);
129 err = nilfs_dat_read(sb, dat_entry_size, rawi, &nilfs->ns_dat);
130 if (err)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700131 goto failed;
132
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900133 rawi = (void *)bh_sr->b_data + NILFS_SR_CPFILE_OFFSET(inode_size);
134 err = nilfs_cpfile_read(sb, checkpoint_size, rawi, &nilfs->ns_cpfile);
135 if (err)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700136 goto failed_dat;
137
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900138 rawi = (void *)bh_sr->b_data + NILFS_SR_SUFILE_OFFSET(inode_size);
139 err = nilfs_sufile_read(sb, segment_usage_size, rawi,
140 &nilfs->ns_sufile);
141 if (err)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700142 goto failed_cpfile;
143
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700144 raw_sr = (struct nilfs_super_root *)bh_sr->b_data;
145 nilfs->ns_nongc_ctime = le64_to_cpu(raw_sr->sr_nongc_ctime);
146
147 failed:
148 brelse(bh_sr);
149 return err;
150
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700151 failed_cpfile:
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900152 iput(nilfs->ns_cpfile);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700153
154 failed_dat:
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900155 iput(nilfs->ns_dat);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700156 goto failed;
157}
158
159static void nilfs_init_recovery_info(struct nilfs_recovery_info *ri)
160{
161 memset(ri, 0, sizeof(*ri));
162 INIT_LIST_HEAD(&ri->ri_used_segments);
163}
164
165static void nilfs_clear_recovery_info(struct nilfs_recovery_info *ri)
166{
167 nilfs_dispose_segment_list(&ri->ri_used_segments);
168}
169
170/**
Ryusuke Konishi843d63b2010-06-28 19:15:24 +0900171 * nilfs_store_log_cursor - load log cursor from a super block
172 * @nilfs: nilfs object
173 * @sbp: buffer storing super block to be read
174 *
175 * nilfs_store_log_cursor() reads the last position of the log
176 * containing a super root from a given super block, and initializes
177 * relevant information on the nilfs object preparatory for log
178 * scanning and recovery.
179 */
180static int nilfs_store_log_cursor(struct the_nilfs *nilfs,
181 struct nilfs_super_block *sbp)
182{
183 int ret = 0;
184
185 nilfs->ns_last_pseg = le64_to_cpu(sbp->s_last_pseg);
186 nilfs->ns_last_cno = le64_to_cpu(sbp->s_last_cno);
187 nilfs->ns_last_seq = le64_to_cpu(sbp->s_last_seq);
188
Ryusuke Konishi32502042010-06-29 14:42:13 +0900189 nilfs->ns_prev_seq = nilfs->ns_last_seq;
Ryusuke Konishi843d63b2010-06-28 19:15:24 +0900190 nilfs->ns_seg_seq = nilfs->ns_last_seq;
191 nilfs->ns_segnum =
192 nilfs_get_segnum_of_block(nilfs, nilfs->ns_last_pseg);
193 nilfs->ns_cno = nilfs->ns_last_cno + 1;
194 if (nilfs->ns_segnum >= nilfs->ns_nsegments) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700195 nilfs_msg(nilfs->ns_sb, KERN_ERR,
196 "pointed segment number is out of range: segnum=%llu, nsegments=%lu",
197 (unsigned long long)nilfs->ns_segnum,
198 nilfs->ns_nsegments);
Ryusuke Konishi843d63b2010-06-28 19:15:24 +0900199 ret = -EINVAL;
200 }
201 return ret;
202}
203
204/**
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700205 * load_nilfs - load and recover the nilfs
206 * @nilfs: the_nilfs structure to be released
Ryusuke Konishif7545142011-03-09 11:05:08 +0900207 * @sb: super block isntance used to recover past segment
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700208 *
209 * load_nilfs() searches and load the latest super root,
210 * attaches the last segment, and does recovery if needed.
211 * The caller must call this exclusively for simultaneous mounts.
212 */
Ryusuke Konishif7545142011-03-09 11:05:08 +0900213int load_nilfs(struct the_nilfs *nilfs, struct super_block *sb)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700214{
215 struct nilfs_recovery_info ri;
Ryusuke Konishif7545142011-03-09 11:05:08 +0900216 unsigned int s_flags = sb->s_flags;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700217 int really_read_only = bdev_read_only(nilfs->ns_bdev);
Ryusuke Konishia057d2c2009-11-19 19:58:46 +0900218 int valid_fs = nilfs_valid_fs(nilfs);
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900219 int err;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700220
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900221 if (!valid_fs) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700222 nilfs_msg(sb, KERN_WARNING, "mounting unchecked fs");
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900223 if (s_flags & MS_RDONLY) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700224 nilfs_msg(sb, KERN_INFO,
225 "recovery required for readonly filesystem");
226 nilfs_msg(sb, KERN_INFO,
227 "write access will be enabled during recovery");
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700228 }
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700229 }
230
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900231 nilfs_init_recovery_info(&ri);
232
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900233 err = nilfs_search_super_root(nilfs, &ri);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700234 if (unlikely(err)) {
Ryusuke Konishi6c1251602010-06-28 19:15:26 +0900235 struct nilfs_super_block **sbp = nilfs->ns_sbp;
236 int blocksize;
237
238 if (err != -EINVAL)
239 goto scan_error;
240
241 if (!nilfs_valid_sb(sbp[1])) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700242 nilfs_msg(sb, KERN_WARNING,
243 "unable to fall back to spare super block");
Ryusuke Konishi6c1251602010-06-28 19:15:26 +0900244 goto scan_error;
245 }
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700246 nilfs_msg(sb, KERN_INFO,
247 "trying rollback from an earlier position");
Ryusuke Konishi6c1251602010-06-28 19:15:26 +0900248
249 /*
250 * restore super block with its spare and reconfigure
251 * relevant states of the nilfs object.
252 */
253 memcpy(sbp[0], sbp[1], nilfs->ns_sbsize);
254 nilfs->ns_crc_seed = le32_to_cpu(sbp[0]->s_crc_seed);
255 nilfs->ns_sbwtime = le64_to_cpu(sbp[0]->s_wtime);
256
257 /* verify consistency between two super blocks */
258 blocksize = BLOCK_SIZE << le32_to_cpu(sbp[0]->s_log_block_size);
259 if (blocksize != nilfs->ns_blocksize) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700260 nilfs_msg(sb, KERN_WARNING,
261 "blocksize differs between two super blocks (%d != %d)",
262 blocksize, nilfs->ns_blocksize);
Ryusuke Konishi6c1251602010-06-28 19:15:26 +0900263 goto scan_error;
264 }
265
266 err = nilfs_store_log_cursor(nilfs, sbp[0]);
267 if (err)
268 goto scan_error;
269
270 /* drop clean flag to allow roll-forward and recovery */
271 nilfs->ns_mount_state &= ~NILFS_VALID_FS;
272 valid_fs = 0;
273
274 err = nilfs_search_super_root(nilfs, &ri);
275 if (err)
276 goto scan_error;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700277 }
278
Ryusuke Konishif7545142011-03-09 11:05:08 +0900279 err = nilfs_load_super_root(nilfs, sb, ri.ri_super_root);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700280 if (unlikely(err)) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700281 nilfs_msg(sb, KERN_ERR, "error %d while loading super root",
282 err);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700283 goto failed;
284 }
285
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900286 if (valid_fs)
287 goto skip_recovery;
288
289 if (s_flags & MS_RDONLY) {
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +0900290 __u64 features;
291
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900292 if (nilfs_test_opt(nilfs, NORECOVERY)) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700293 nilfs_msg(sb, KERN_INFO,
294 "norecovery option specified, skipping roll-forward recovery");
Ryusuke Konishi02345762009-11-20 03:28:01 +0900295 goto skip_recovery;
296 }
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +0900297 features = le64_to_cpu(nilfs->ns_sbp[0]->s_feature_compat_ro) &
298 ~NILFS_FEATURE_COMPAT_RO_SUPP;
299 if (features) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700300 nilfs_msg(sb, KERN_ERR,
301 "couldn't proceed with recovery because of unsupported optional features (%llx)",
302 (unsigned long long)features);
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +0900303 err = -EROFS;
304 goto failed_unload;
305 }
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900306 if (really_read_only) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700307 nilfs_msg(sb, KERN_ERR,
308 "write access unavailable, cannot proceed");
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900309 err = -EROFS;
310 goto failed_unload;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700311 }
Ryusuke Konishif7545142011-03-09 11:05:08 +0900312 sb->s_flags &= ~MS_RDONLY;
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900313 } else if (nilfs_test_opt(nilfs, NORECOVERY)) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700314 nilfs_msg(sb, KERN_ERR,
315 "recovery cancelled because norecovery option was specified for a read/write mount");
Ryusuke Konishi02345762009-11-20 03:28:01 +0900316 err = -EINVAL;
317 goto failed_unload;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700318 }
319
Ryusuke Konishif7545142011-03-09 11:05:08 +0900320 err = nilfs_salvage_orphan_logs(nilfs, sb, &ri);
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900321 if (err)
322 goto failed_unload;
323
324 down_write(&nilfs->ns_sem);
Ryusuke Konishi7ecaa462010-06-28 17:49:29 +0900325 nilfs->ns_mount_state |= NILFS_VALID_FS; /* set "clean" flag */
Ryusuke Konishif7545142011-03-09 11:05:08 +0900326 err = nilfs_cleanup_super(sb);
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900327 up_write(&nilfs->ns_sem);
328
329 if (err) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700330 nilfs_msg(sb, KERN_ERR,
331 "error %d updating super block. recovery unfinished.",
332 err);
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900333 goto failed_unload;
334 }
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700335 nilfs_msg(sb, KERN_INFO, "recovery complete");
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900336
337 skip_recovery:
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900338 nilfs_clear_recovery_info(&ri);
Ryusuke Konishif7545142011-03-09 11:05:08 +0900339 sb->s_flags = s_flags;
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900340 return 0;
341
Ryusuke Konishi6c1251602010-06-28 19:15:26 +0900342 scan_error:
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700343 nilfs_msg(sb, KERN_ERR, "error %d while searching super root", err);
Ryusuke Konishi6c1251602010-06-28 19:15:26 +0900344 goto failed;
345
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900346 failed_unload:
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900347 iput(nilfs->ns_cpfile);
348 iput(nilfs->ns_sufile);
349 iput(nilfs->ns_dat);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700350
351 failed:
352 nilfs_clear_recovery_info(&ri);
Ryusuke Konishif7545142011-03-09 11:05:08 +0900353 sb->s_flags = s_flags;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700354 return err;
355}
356
357static unsigned long long nilfs_max_size(unsigned int blkbits)
358{
359 unsigned int max_bits;
360 unsigned long long res = MAX_LFS_FILESIZE; /* page cache limit */
361
362 max_bits = blkbits + NILFS_BMAP_KEY_BIT; /* bmap size limit */
363 if (max_bits < 64)
364 res = min_t(unsigned long long, res, (1ULL << max_bits) - 1);
365 return res;
366}
367
Ryusuke Konishi4e33f9e2011-05-05 01:23:58 +0900368/**
369 * nilfs_nrsvsegs - calculate the number of reserved segments
370 * @nilfs: nilfs object
371 * @nsegs: total number of segments
372 */
373unsigned long nilfs_nrsvsegs(struct the_nilfs *nilfs, unsigned long nsegs)
374{
375 return max_t(unsigned long, NILFS_MIN_NRSVSEGS,
376 DIV_ROUND_UP(nsegs * nilfs->ns_r_segments_percentage,
377 100));
378}
379
380void nilfs_set_nsegments(struct the_nilfs *nilfs, unsigned long nsegs)
381{
382 nilfs->ns_nsegments = nsegs;
383 nilfs->ns_nrsvsegs = nilfs_nrsvsegs(nilfs, nsegs);
384}
385
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700386static int nilfs_store_disk_layout(struct the_nilfs *nilfs,
387 struct nilfs_super_block *sbp)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700388{
Ryusuke Konishi9566a7a2010-08-10 00:58:41 +0900389 if (le32_to_cpu(sbp->s_rev_level) < NILFS_MIN_SUPP_REV) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700390 nilfs_msg(nilfs->ns_sb, KERN_ERR,
391 "unsupported revision (superblock rev.=%d.%d, current rev.=%d.%d). Please check the version of mkfs.nilfs(2).",
392 le32_to_cpu(sbp->s_rev_level),
393 le16_to_cpu(sbp->s_minor_rev_level),
394 NILFS_CURRENT_REV, NILFS_MINOR_REV);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700395 return -EINVAL;
396 }
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700397 nilfs->ns_sbsize = le16_to_cpu(sbp->s_bytes);
398 if (nilfs->ns_sbsize > BLOCK_SIZE)
399 return -EINVAL;
400
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700401 nilfs->ns_inode_size = le16_to_cpu(sbp->s_inode_size);
Ryusuke Konishi0ec060d2014-04-03 14:50:31 -0700402 if (nilfs->ns_inode_size > nilfs->ns_blocksize) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700403 nilfs_msg(nilfs->ns_sb, KERN_ERR,
404 "too large inode size: %d bytes",
405 nilfs->ns_inode_size);
Ryusuke Konishi0ec060d2014-04-03 14:50:31 -0700406 return -EINVAL;
407 } else if (nilfs->ns_inode_size < NILFS_MIN_INODE_SIZE) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700408 nilfs_msg(nilfs->ns_sb, KERN_ERR,
409 "too small inode size: %d bytes",
410 nilfs->ns_inode_size);
Ryusuke Konishi0ec060d2014-04-03 14:50:31 -0700411 return -EINVAL;
412 }
413
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700414 nilfs->ns_first_ino = le32_to_cpu(sbp->s_first_ino);
415
416 nilfs->ns_blocks_per_segment = le32_to_cpu(sbp->s_blocks_per_segment);
417 if (nilfs->ns_blocks_per_segment < NILFS_SEG_MIN_BLOCKS) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700418 nilfs_msg(nilfs->ns_sb, KERN_ERR,
419 "too short segment: %lu blocks",
420 nilfs->ns_blocks_per_segment);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700421 return -EINVAL;
422 }
423
424 nilfs->ns_first_data_block = le64_to_cpu(sbp->s_first_data_block);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700425 nilfs->ns_r_segments_percentage =
426 le32_to_cpu(sbp->s_r_segments_percentage);
Haogang Chen3d777a62012-03-16 17:08:38 -0700427 if (nilfs->ns_r_segments_percentage < 1 ||
428 nilfs->ns_r_segments_percentage > 99) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700429 nilfs_msg(nilfs->ns_sb, KERN_ERR,
430 "invalid reserved segments percentage: %lu",
431 nilfs->ns_r_segments_percentage);
Haogang Chen3d777a62012-03-16 17:08:38 -0700432 return -EINVAL;
433 }
434
Ryusuke Konishi4e33f9e2011-05-05 01:23:58 +0900435 nilfs_set_nsegments(nilfs, le64_to_cpu(sbp->s_nsegments));
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700436 nilfs->ns_crc_seed = le32_to_cpu(sbp->s_crc_seed);
437 return 0;
438}
439
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700440static int nilfs_valid_sb(struct nilfs_super_block *sbp)
441{
442 static unsigned char sum[4];
443 const int sumoff = offsetof(struct nilfs_super_block, s_sum);
444 size_t bytes;
445 u32 crc;
446
447 if (!sbp || le16_to_cpu(sbp->s_magic) != NILFS_SUPER_MAGIC)
448 return 0;
449 bytes = le16_to_cpu(sbp->s_bytes);
Torsten Hilbrich63d2f952016-06-24 14:50:18 -0700450 if (bytes < sumoff + 4 || bytes > BLOCK_SIZE)
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700451 return 0;
452 crc = crc32_le(le32_to_cpu(sbp->s_crc_seed), (unsigned char *)sbp,
453 sumoff);
454 crc = crc32_le(crc, sum, 4);
455 crc = crc32_le(crc, (unsigned char *)sbp + sumoff + 4,
456 bytes - sumoff - 4);
457 return crc == le32_to_cpu(sbp->s_sum);
458}
459
460static int nilfs_sb2_bad_offset(struct nilfs_super_block *sbp, u64 offset)
461{
462 return offset < ((le64_to_cpu(sbp->s_nsegments) *
463 le32_to_cpu(sbp->s_blocks_per_segment)) <<
464 (le32_to_cpu(sbp->s_log_block_size) + 10));
465}
466
467static void nilfs_release_super_block(struct the_nilfs *nilfs)
468{
469 int i;
470
471 for (i = 0; i < 2; i++) {
472 if (nilfs->ns_sbp[i]) {
473 brelse(nilfs->ns_sbh[i]);
474 nilfs->ns_sbh[i] = NULL;
475 nilfs->ns_sbp[i] = NULL;
476 }
477 }
478}
479
480void nilfs_fall_back_super_block(struct the_nilfs *nilfs)
481{
482 brelse(nilfs->ns_sbh[0]);
483 nilfs->ns_sbh[0] = nilfs->ns_sbh[1];
484 nilfs->ns_sbp[0] = nilfs->ns_sbp[1];
485 nilfs->ns_sbh[1] = NULL;
486 nilfs->ns_sbp[1] = NULL;
487}
488
489void nilfs_swap_super_block(struct the_nilfs *nilfs)
490{
491 struct buffer_head *tsbh = nilfs->ns_sbh[0];
492 struct nilfs_super_block *tsbp = nilfs->ns_sbp[0];
493
494 nilfs->ns_sbh[0] = nilfs->ns_sbh[1];
495 nilfs->ns_sbp[0] = nilfs->ns_sbp[1];
496 nilfs->ns_sbh[1] = tsbh;
497 nilfs->ns_sbp[1] = tsbp;
498}
499
500static int nilfs_load_super_block(struct the_nilfs *nilfs,
501 struct super_block *sb, int blocksize,
502 struct nilfs_super_block **sbpp)
503{
504 struct nilfs_super_block **sbp = nilfs->ns_sbp;
505 struct buffer_head **sbh = nilfs->ns_sbh;
506 u64 sb2off = NILFS_SB2_OFFSET_BYTES(nilfs->ns_bdev->bd_inode->i_size);
507 int valid[2], swp = 0;
508
509 sbp[0] = nilfs_read_super_block(sb, NILFS_SB_OFFSET_BYTES, blocksize,
510 &sbh[0]);
511 sbp[1] = nilfs_read_super_block(sb, sb2off, blocksize, &sbh[1]);
512
513 if (!sbp[0]) {
514 if (!sbp[1]) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700515 nilfs_msg(sb, KERN_ERR, "unable to read superblock");
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700516 return -EIO;
517 }
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700518 nilfs_msg(sb, KERN_WARNING,
519 "unable to read primary superblock (blocksize = %d)",
520 blocksize);
Ryusuke Konishi4138ec22011-01-24 00:28:22 +0900521 } else if (!sbp[1]) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700522 nilfs_msg(sb, KERN_WARNING,
523 "unable to read secondary superblock (blocksize = %d)",
524 blocksize);
Ryusuke Konishi4138ec22011-01-24 00:28:22 +0900525 }
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700526
Ryusuke Konishi25294d82010-05-01 11:54:21 +0900527 /*
528 * Compare two super blocks and set 1 in swp if the secondary
529 * super block is valid and newer. Otherwise, set 0 in swp.
530 */
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700531 valid[0] = nilfs_valid_sb(sbp[0]);
532 valid[1] = nilfs_valid_sb(sbp[1]);
Ryusuke Konishi25294d82010-05-01 11:54:21 +0900533 swp = valid[1] && (!valid[0] ||
534 le64_to_cpu(sbp[1]->s_last_cno) >
535 le64_to_cpu(sbp[0]->s_last_cno));
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700536
537 if (valid[swp] && nilfs_sb2_bad_offset(sbp[swp], sb2off)) {
538 brelse(sbh[1]);
539 sbh[1] = NULL;
540 sbp[1] = NULL;
Ryusuke Konishid7178c72012-03-16 17:08:39 -0700541 valid[1] = 0;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700542 swp = 0;
543 }
544 if (!valid[swp]) {
545 nilfs_release_super_block(nilfs);
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700546 nilfs_msg(sb, KERN_ERR, "couldn't find nilfs on the device");
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700547 return -EINVAL;
548 }
549
Ryusuke Konishiea1a16f2010-08-15 20:16:11 +0900550 if (!valid[!swp])
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700551 nilfs_msg(sb, KERN_WARNING,
552 "broken superblock, retrying with spare superblock (blocksize = %d)",
553 blocksize);
Ryusuke Konishiea1a16f2010-08-15 20:16:11 +0900554 if (swp)
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700555 nilfs_swap_super_block(nilfs);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700556
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900557 nilfs->ns_sbwcount = 0;
558 nilfs->ns_sbwtime = le64_to_cpu(sbp[0]->s_wtime);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700559 nilfs->ns_prot_seq = le64_to_cpu(sbp[valid[1] & !swp]->s_last_seq);
560 *sbpp = sbp[0];
561 return 0;
562}
563
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700564/**
565 * init_nilfs - initialize a NILFS instance.
566 * @nilfs: the_nilfs structure
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700567 * @sb: super block
568 * @data: mount options
569 *
570 * init_nilfs() performs common initialization per block device (e.g.
571 * reading the super block, getting disk layout information, initializing
Ryusuke Konishif11459a2010-08-16 01:54:52 +0900572 * shared fields in the_nilfs).
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700573 *
574 * Return Value: On success, 0 is returned. On error, a negative error
575 * code is returned.
576 */
Ryusuke Konishif7545142011-03-09 11:05:08 +0900577int init_nilfs(struct the_nilfs *nilfs, struct super_block *sb, char *data)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700578{
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700579 struct nilfs_super_block *sbp;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700580 int blocksize;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700581 int err;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700582
583 down_write(&nilfs->ns_sem);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700584
Ryusuke Konishi89c0fd02010-07-25 22:44:53 +0900585 blocksize = sb_min_blocksize(sb, NILFS_MIN_BLOCK_SIZE);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700586 if (!blocksize) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700587 nilfs_msg(sb, KERN_ERR, "unable to set blocksize");
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700588 err = -EINVAL;
589 goto out;
590 }
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700591 err = nilfs_load_super_block(nilfs, sb, blocksize, &sbp);
592 if (err)
593 goto out;
594
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700595 err = nilfs_store_magic_and_option(sb, sbp, data);
596 if (err)
597 goto failed_sbh;
598
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +0900599 err = nilfs_check_feature_compatibility(sb, sbp);
600 if (err)
601 goto failed_sbh;
602
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700603 blocksize = BLOCK_SIZE << le32_to_cpu(sbp->s_log_block_size);
Ryusuke Konishi89c0fd02010-07-25 22:44:53 +0900604 if (blocksize < NILFS_MIN_BLOCK_SIZE ||
605 blocksize > NILFS_MAX_BLOCK_SIZE) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700606 nilfs_msg(sb, KERN_ERR,
607 "couldn't mount because of unsupported filesystem blocksize %d",
608 blocksize);
Ryusuke Konishi89c0fd02010-07-25 22:44:53 +0900609 err = -EINVAL;
610 goto failed_sbh;
611 }
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700612 if (sb->s_blocksize != blocksize) {
Martin K. Petersene1defc42009-05-22 17:17:49 -0400613 int hw_blocksize = bdev_logical_block_size(sb->s_bdev);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700614
615 if (blocksize < hw_blocksize) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700616 nilfs_msg(sb, KERN_ERR,
617 "blocksize %d too small for device (sector-size = %d)",
618 blocksize, hw_blocksize);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700619 err = -EINVAL;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700620 goto failed_sbh;
621 }
622 nilfs_release_super_block(nilfs);
623 sb_set_blocksize(sb, blocksize);
624
625 err = nilfs_load_super_block(nilfs, sb, blocksize, &sbp);
626 if (err)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700627 goto out;
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700628 /*
629 * Not to failed_sbh; sbh is released automatically
630 * when reloading fails.
631 */
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700632 }
633 nilfs->ns_blocksize_bits = sb->s_blocksize_bits;
Ryusuke Konishi92c60cc2010-05-23 00:17:48 +0900634 nilfs->ns_blocksize = blocksize;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700635
Ryusuke Konishi9b1fc4e42011-03-09 11:05:08 +0900636 get_random_bytes(&nilfs->ns_next_generation,
637 sizeof(nilfs->ns_next_generation));
638
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700639 err = nilfs_store_disk_layout(nilfs, sbp);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700640 if (err)
641 goto failed_sbh;
642
643 sb->s_maxbytes = nilfs_max_size(sb->s_blocksize_bits);
644
645 nilfs->ns_mount_state = le16_to_cpu(sbp->s_state);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700646
Ryusuke Konishi843d63b2010-06-28 19:15:24 +0900647 err = nilfs_store_log_cursor(nilfs, sbp);
648 if (err)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700649 goto failed_sbh;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700650
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -0700651 err = nilfs_sysfs_create_device_group(sb);
652 if (err)
653 goto failed_sbh;
654
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700655 set_nilfs_init(nilfs);
656 err = 0;
657 out:
658 up_write(&nilfs->ns_sem);
659 return err;
660
661 failed_sbh:
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700662 nilfs_release_super_block(nilfs);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700663 goto out;
664}
665
Jiro SEKIBAe902ec92010-01-30 18:06:35 +0900666int nilfs_discard_segments(struct the_nilfs *nilfs, __u64 *segnump,
667 size_t nsegs)
668{
669 sector_t seg_start, seg_end;
670 sector_t start = 0, nblocks = 0;
671 unsigned int sects_per_block;
672 __u64 *sn;
673 int ret = 0;
674
675 sects_per_block = (1 << nilfs->ns_blocksize_bits) /
676 bdev_logical_block_size(nilfs->ns_bdev);
677 for (sn = segnump; sn < segnump + nsegs; sn++) {
678 nilfs_get_segment_range(nilfs, *sn, &seg_start, &seg_end);
679
680 if (!nblocks) {
681 start = seg_start;
682 nblocks = seg_end - seg_start + 1;
683 } else if (start + nblocks == seg_start) {
684 nblocks += seg_end - seg_start + 1;
685 } else {
686 ret = blkdev_issue_discard(nilfs->ns_bdev,
687 start * sects_per_block,
688 nblocks * sects_per_block,
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200689 GFP_NOFS, 0);
Jiro SEKIBAe902ec92010-01-30 18:06:35 +0900690 if (ret < 0)
691 return ret;
692 nblocks = 0;
693 }
694 }
695 if (nblocks)
696 ret = blkdev_issue_discard(nilfs->ns_bdev,
697 start * sects_per_block,
698 nblocks * sects_per_block,
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200699 GFP_NOFS, 0);
Jiro SEKIBAe902ec92010-01-30 18:06:35 +0900700 return ret;
701}
702
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700703int nilfs_count_free_blocks(struct the_nilfs *nilfs, sector_t *nblocks)
704{
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700705 unsigned long ncleansegs;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700706
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900707 down_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishief7d4752009-11-13 08:45:32 +0900708 ncleansegs = nilfs_sufile_get_ncleansegs(nilfs->ns_sufile);
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900709 up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishief7d4752009-11-13 08:45:32 +0900710 *nblocks = (sector_t)ncleansegs * nilfs->ns_blocks_per_segment;
711 return 0;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700712}
713
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700714int nilfs_near_disk_full(struct the_nilfs *nilfs)
715{
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700716 unsigned long ncleansegs, nincsegs;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700717
Ryusuke Konishief7d4752009-11-13 08:45:32 +0900718 ncleansegs = nilfs_sufile_get_ncleansegs(nilfs->ns_sufile);
719 nincsegs = atomic_read(&nilfs->ns_ndirtyblks) /
720 nilfs->ns_blocks_per_segment + 1;
721
722 return ncleansegs <= nilfs->ns_nrsvsegs + nincsegs;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700723}
724
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900725struct nilfs_root *nilfs_lookup_root(struct the_nilfs *nilfs, __u64 cno)
Ryusuke Konishi6dd47402009-06-08 01:39:31 +0900726{
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900727 struct rb_node *n;
728 struct nilfs_root *root;
Ryusuke Konishi6dd47402009-06-08 01:39:31 +0900729
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900730 spin_lock(&nilfs->ns_cptree_lock);
731 n = nilfs->ns_cptree.rb_node;
732 while (n) {
733 root = rb_entry(n, struct nilfs_root, rb_node);
Ryusuke Konishi6dd47402009-06-08 01:39:31 +0900734
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900735 if (cno < root->cno) {
736 n = n->rb_left;
737 } else if (cno > root->cno) {
738 n = n->rb_right;
739 } else {
740 atomic_inc(&root->count);
741 spin_unlock(&nilfs->ns_cptree_lock);
742 return root;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700743 }
744 }
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900745 spin_unlock(&nilfs->ns_cptree_lock);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700746
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900747 return NULL;
748}
749
750struct nilfs_root *
751nilfs_find_or_create_root(struct the_nilfs *nilfs, __u64 cno)
752{
753 struct rb_node **p, *parent;
754 struct nilfs_root *root, *new;
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -0700755 int err;
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900756
757 root = nilfs_lookup_root(nilfs, cno);
758 if (root)
759 return root;
760
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -0700761 new = kzalloc(sizeof(*root), GFP_KERNEL);
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900762 if (!new)
763 return NULL;
764
765 spin_lock(&nilfs->ns_cptree_lock);
766
767 p = &nilfs->ns_cptree.rb_node;
768 parent = NULL;
769
770 while (*p) {
771 parent = *p;
772 root = rb_entry(parent, struct nilfs_root, rb_node);
773
774 if (cno < root->cno) {
775 p = &(*p)->rb_left;
776 } else if (cno > root->cno) {
777 p = &(*p)->rb_right;
778 } else {
779 atomic_inc(&root->count);
780 spin_unlock(&nilfs->ns_cptree_lock);
781 kfree(new);
782 return root;
783 }
784 }
785
786 new->cno = cno;
787 new->ifile = NULL;
788 new->nilfs = nilfs;
789 atomic_set(&new->count, 1);
Vyacheslav Dubeykoe5f7f842013-07-03 15:08:06 -0700790 atomic64_set(&new->inodes_count, 0);
791 atomic64_set(&new->blocks_count, 0);
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900792
793 rb_link_node(&new->rb_node, parent, p);
794 rb_insert_color(&new->rb_node, &nilfs->ns_cptree);
795
796 spin_unlock(&nilfs->ns_cptree_lock);
797
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -0700798 err = nilfs_sysfs_create_snapshot_group(new);
799 if (err) {
800 kfree(new);
801 new = NULL;
802 }
803
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900804 return new;
805}
806
807void nilfs_put_root(struct nilfs_root *root)
808{
809 if (atomic_dec_and_test(&root->count)) {
810 struct the_nilfs *nilfs = root->nilfs;
811
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -0700812 nilfs_sysfs_delete_snapshot_group(root);
813
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900814 spin_lock(&nilfs->ns_cptree_lock);
815 rb_erase(&root->rb_node, &nilfs->ns_cptree);
816 spin_unlock(&nilfs->ns_cptree_lock);
Markus Elfring72b99182014-12-10 15:54:31 -0800817 iput(root->ifile);
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900818
819 kfree(root);
820 }
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700821}