2 * inode.c - NILFS inode operations.
4 * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24 #include <linux/buffer_head.h>
25 #include <linux/gfp.h>
26 #include <linux/mpage.h>
27 #include <linux/writeback.h>
28 #include <linux/uio.h>
38 * nilfs_get_block() - get a file block on the filesystem (callback function)
39 * @inode - inode struct of the target file
40 * @blkoff - file block number
41 * @bh_result - buffer head to be mapped on
42 * @create - indicate whether allocating the block or not when it has not
45 * This function does not issue actual read request of the specified data
46 * block. It is done by VFS.
48 int nilfs_get_block(struct inode *inode, sector_t blkoff,
49 struct buffer_head *bh_result, int create)
51 struct nilfs_inode_info *ii = NILFS_I(inode);
54 struct inode *dat = nilfs_dat_inode(NILFS_I_NILFS(inode));
55 unsigned maxblocks = bh_result->b_size >> inode->i_blkbits;
57 down_read(&NILFS_MDT(dat)->mi_sem);
58 ret = nilfs_bmap_lookup_contig(ii->i_bmap, blkoff, &blknum, maxblocks);
59 up_read(&NILFS_MDT(dat)->mi_sem);
60 if (ret >= 0) { /* found */
61 map_bh(bh_result, inode->i_sb, blknum);
63 bh_result->b_size = (ret << inode->i_blkbits);
66 /* data block was not found */
67 if (ret == -ENOENT && create) {
68 struct nilfs_transaction_info ti;
70 bh_result->b_blocknr = 0;
71 err = nilfs_transaction_begin(inode->i_sb, &ti, 1);
74 err = nilfs_bmap_insert(ii->i_bmap, (unsigned long)blkoff,
75 (unsigned long)bh_result);
76 if (unlikely(err != 0)) {
79 * The get_block() function could be called
80 * from multiple callers for an inode.
81 * However, the page having this block must
82 * be locked in this case.
85 "nilfs_get_block: a race condition "
86 "while inserting a data block. "
87 "(inode number=%lu, file block "
90 (unsigned long long)blkoff);
92 } else if (err == -EINVAL) {
93 nilfs_error(inode->i_sb, __func__,
94 "broken bmap (inode=%lu)\n",
98 nilfs_transaction_abort(inode->i_sb);
101 nilfs_mark_inode_dirty(inode);
102 nilfs_transaction_commit(inode->i_sb); /* never fails */
103 /* Error handling should be detailed */
104 set_buffer_new(bh_result);
105 map_bh(bh_result, inode->i_sb, 0); /* dbn must be changed
107 } else if (ret == -ENOENT) {
108 /* not found is not error (e.g. hole); must return without
109 the mapped state flag. */
120 * nilfs_readpage() - implement readpage() method of nilfs_aops {}
121 * address_space_operations.
122 * @file - file struct of the file to be read
123 * @page - the page to be read
125 static int nilfs_readpage(struct file *file, struct page *page)
127 return mpage_readpage(page, nilfs_get_block);
131 * nilfs_readpages() - implement readpages() method of nilfs_aops {}
132 * address_space_operations.
133 * @file - file struct of the file to be read
134 * @mapping - address_space struct used for reading multiple pages
135 * @pages - the pages to be read
136 * @nr_pages - number of pages to be read
138 static int nilfs_readpages(struct file *file, struct address_space *mapping,
139 struct list_head *pages, unsigned nr_pages)
141 return mpage_readpages(mapping, pages, nr_pages, nilfs_get_block);
144 static int nilfs_writepages(struct address_space *mapping,
145 struct writeback_control *wbc)
147 struct inode *inode = mapping->host;
150 if (wbc->sync_mode == WB_SYNC_ALL)
151 err = nilfs_construct_dsync_segment(inode->i_sb, inode,
157 static int nilfs_writepage(struct page *page, struct writeback_control *wbc)
159 struct inode *inode = page->mapping->host;
162 redirty_page_for_writepage(wbc, page);
165 if (wbc->sync_mode == WB_SYNC_ALL) {
166 err = nilfs_construct_segment(inode->i_sb);
169 } else if (wbc->for_reclaim)
170 nilfs_flush_segment(inode->i_sb, inode->i_ino);
175 static int nilfs_set_page_dirty(struct page *page)
177 int ret = __set_page_dirty_buffers(page);
180 struct inode *inode = page->mapping->host;
181 struct nilfs_sb_info *sbi = NILFS_SB(inode->i_sb);
182 unsigned nr_dirty = 1 << (PAGE_SHIFT - inode->i_blkbits);
184 nilfs_set_file_dirty(sbi, inode, nr_dirty);
189 static int nilfs_write_begin(struct file *file, struct address_space *mapping,
190 loff_t pos, unsigned len, unsigned flags,
191 struct page **pagep, void **fsdata)
194 struct inode *inode = mapping->host;
195 int err = nilfs_transaction_begin(inode->i_sb, NULL, 1);
201 err = block_write_begin(file, mapping, pos, len, flags, pagep,
202 fsdata, nilfs_get_block);
204 nilfs_transaction_abort(inode->i_sb);
208 static int nilfs_write_end(struct file *file, struct address_space *mapping,
209 loff_t pos, unsigned len, unsigned copied,
210 struct page *page, void *fsdata)
212 struct inode *inode = mapping->host;
213 unsigned start = pos & (PAGE_CACHE_SIZE - 1);
217 nr_dirty = nilfs_page_count_clean_buffers(page, start,
219 copied = generic_write_end(file, mapping, pos, len, copied, page,
221 nilfs_set_file_dirty(NILFS_SB(inode->i_sb), inode, nr_dirty);
222 err = nilfs_transaction_commit(inode->i_sb);
223 return err ? : copied;
227 nilfs_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov,
228 loff_t offset, unsigned long nr_segs)
230 struct file *file = iocb->ki_filp;
231 struct inode *inode = file->f_mapping->host;
237 /* Needs synchronization with the cleaner */
238 size = blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
239 offset, nr_segs, nilfs_get_block, NULL);
243 const struct address_space_operations nilfs_aops = {
244 .writepage = nilfs_writepage,
245 .readpage = nilfs_readpage,
246 .sync_page = block_sync_page,
247 .writepages = nilfs_writepages,
248 .set_page_dirty = nilfs_set_page_dirty,
249 .readpages = nilfs_readpages,
250 .write_begin = nilfs_write_begin,
251 .write_end = nilfs_write_end,
252 /* .releasepage = nilfs_releasepage, */
253 .invalidatepage = block_invalidatepage,
254 .direct_IO = nilfs_direct_IO,
255 .is_partially_uptodate = block_is_partially_uptodate,
258 struct inode *nilfs_new_inode(struct inode *dir, int mode)
260 struct super_block *sb = dir->i_sb;
261 struct nilfs_sb_info *sbi = NILFS_SB(sb);
263 struct nilfs_inode_info *ii;
267 inode = new_inode(sb);
268 if (unlikely(!inode))
271 mapping_set_gfp_mask(inode->i_mapping,
272 mapping_gfp_mask(inode->i_mapping) & ~__GFP_FS);
275 ii->i_state = 1 << NILFS_I_NEW;
277 err = nilfs_ifile_create_inode(sbi->s_ifile, &ino, &ii->i_bh);
279 goto failed_ifile_create_inode;
280 /* reference count of i_bh inherits from nilfs_mdt_read_block() */
282 atomic_inc(&sbi->s_inodes_count);
284 inode->i_uid = current_fsuid();
285 if (dir->i_mode & S_ISGID) {
286 inode->i_gid = dir->i_gid;
290 inode->i_gid = current_fsgid();
292 inode->i_mode = mode;
294 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
296 if (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)) {
297 err = nilfs_bmap_read(ii->i_bmap, NULL);
301 set_bit(NILFS_I_BMAP, &ii->i_state);
302 /* No lock is needed; iget() ensures it. */
305 ii->i_flags = NILFS_I(dir)->i_flags;
307 ii->i_flags &= ~(NILFS_IMMUTABLE_FL | NILFS_APPEND_FL);
309 ii->i_flags &= ~NILFS_DIRSYNC_FL;
311 /* ii->i_file_acl = 0; */
312 /* ii->i_dir_acl = 0; */
313 ii->i_dir_start_lookup = 0;
315 nilfs_set_inode_flags(inode);
316 spin_lock(&sbi->s_next_gen_lock);
317 inode->i_generation = sbi->s_next_generation++;
318 spin_unlock(&sbi->s_next_gen_lock);
319 insert_inode_hash(inode);
321 err = nilfs_init_acl(inode, dir);
323 goto failed_acl; /* never occur. When supporting
324 nilfs_init_acl(), proper cancellation of
325 above jobs should be considered */
332 iput(inode); /* raw_inode will be deleted through
333 generic_delete_inode() */
336 failed_ifile_create_inode:
337 make_bad_inode(inode);
338 iput(inode); /* if i_nlink == 1, generic_forget_inode() will be
344 void nilfs_free_inode(struct inode *inode)
346 struct super_block *sb = inode->i_sb;
347 struct nilfs_sb_info *sbi = NILFS_SB(sb);
350 /* XXX: check error code? Is there any thing I can do? */
351 (void) nilfs_ifile_delete_inode(sbi->s_ifile, inode->i_ino);
352 atomic_dec(&sbi->s_inodes_count);
355 void nilfs_set_inode_flags(struct inode *inode)
357 unsigned int flags = NILFS_I(inode)->i_flags;
359 inode->i_flags &= ~(S_SYNC | S_APPEND | S_IMMUTABLE | S_NOATIME |
361 if (flags & NILFS_SYNC_FL)
362 inode->i_flags |= S_SYNC;
363 if (flags & NILFS_APPEND_FL)
364 inode->i_flags |= S_APPEND;
365 if (flags & NILFS_IMMUTABLE_FL)
366 inode->i_flags |= S_IMMUTABLE;
367 #ifndef NILFS_ATIME_DISABLE
368 if (flags & NILFS_NOATIME_FL)
370 inode->i_flags |= S_NOATIME;
371 if (flags & NILFS_DIRSYNC_FL)
372 inode->i_flags |= S_DIRSYNC;
373 mapping_set_gfp_mask(inode->i_mapping,
374 mapping_gfp_mask(inode->i_mapping) & ~__GFP_FS);
377 int nilfs_read_inode_common(struct inode *inode,
378 struct nilfs_inode *raw_inode)
380 struct nilfs_inode_info *ii = NILFS_I(inode);
383 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
384 inode->i_uid = (uid_t)le32_to_cpu(raw_inode->i_uid);
385 inode->i_gid = (gid_t)le32_to_cpu(raw_inode->i_gid);
386 inode->i_nlink = le16_to_cpu(raw_inode->i_links_count);
387 inode->i_size = le64_to_cpu(raw_inode->i_size);
388 inode->i_atime.tv_sec = le64_to_cpu(raw_inode->i_mtime);
389 inode->i_ctime.tv_sec = le64_to_cpu(raw_inode->i_ctime);
390 inode->i_mtime.tv_sec = le64_to_cpu(raw_inode->i_mtime);
391 inode->i_atime.tv_nsec = le32_to_cpu(raw_inode->i_mtime_nsec);
392 inode->i_ctime.tv_nsec = le32_to_cpu(raw_inode->i_ctime_nsec);
393 inode->i_mtime.tv_nsec = le32_to_cpu(raw_inode->i_mtime_nsec);
394 if (inode->i_nlink == 0 && inode->i_mode == 0)
395 return -EINVAL; /* this inode is deleted */
397 inode->i_blocks = le64_to_cpu(raw_inode->i_blocks);
398 ii->i_flags = le32_to_cpu(raw_inode->i_flags);
400 ii->i_file_acl = le32_to_cpu(raw_inode->i_file_acl);
401 ii->i_dir_acl = S_ISREG(inode->i_mode) ?
402 0 : le32_to_cpu(raw_inode->i_dir_acl);
404 ii->i_dir_start_lookup = 0;
406 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
408 if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
409 S_ISLNK(inode->i_mode)) {
410 err = nilfs_bmap_read(ii->i_bmap, raw_inode);
413 set_bit(NILFS_I_BMAP, &ii->i_state);
414 /* No lock is needed; iget() ensures it. */
419 static int __nilfs_read_inode(struct super_block *sb, unsigned long ino,
422 struct nilfs_sb_info *sbi = NILFS_SB(sb);
423 struct inode *dat = nilfs_dat_inode(sbi->s_nilfs);
424 struct buffer_head *bh;
425 struct nilfs_inode *raw_inode;
428 down_read(&NILFS_MDT(dat)->mi_sem); /* XXX */
429 err = nilfs_ifile_get_inode_block(sbi->s_ifile, ino, &bh);
433 raw_inode = nilfs_ifile_map_inode(sbi->s_ifile, ino, bh);
435 err = nilfs_read_inode_common(inode, raw_inode);
439 if (S_ISREG(inode->i_mode)) {
440 inode->i_op = &nilfs_file_inode_operations;
441 inode->i_fop = &nilfs_file_operations;
442 inode->i_mapping->a_ops = &nilfs_aops;
443 } else if (S_ISDIR(inode->i_mode)) {
444 inode->i_op = &nilfs_dir_inode_operations;
445 inode->i_fop = &nilfs_dir_operations;
446 inode->i_mapping->a_ops = &nilfs_aops;
447 } else if (S_ISLNK(inode->i_mode)) {
448 inode->i_op = &nilfs_symlink_inode_operations;
449 inode->i_mapping->a_ops = &nilfs_aops;
451 inode->i_op = &nilfs_special_inode_operations;
453 inode, inode->i_mode,
454 new_decode_dev(le64_to_cpu(raw_inode->i_device_code)));
456 nilfs_ifile_unmap_inode(sbi->s_ifile, ino, bh);
458 up_read(&NILFS_MDT(dat)->mi_sem); /* XXX */
459 nilfs_set_inode_flags(inode);
463 nilfs_ifile_unmap_inode(sbi->s_ifile, ino, bh);
467 up_read(&NILFS_MDT(dat)->mi_sem); /* XXX */
471 struct inode *nilfs_iget(struct super_block *sb, unsigned long ino)
476 inode = iget_locked(sb, ino);
477 if (unlikely(!inode))
478 return ERR_PTR(-ENOMEM);
479 if (!(inode->i_state & I_NEW))
482 err = __nilfs_read_inode(sb, ino, inode);
487 unlock_new_inode(inode);
491 void nilfs_write_inode_common(struct inode *inode,
492 struct nilfs_inode *raw_inode, int has_bmap)
494 struct nilfs_inode_info *ii = NILFS_I(inode);
496 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
497 raw_inode->i_uid = cpu_to_le32(inode->i_uid);
498 raw_inode->i_gid = cpu_to_le32(inode->i_gid);
499 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
500 raw_inode->i_size = cpu_to_le64(inode->i_size);
501 raw_inode->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
502 raw_inode->i_mtime = cpu_to_le64(inode->i_mtime.tv_sec);
503 raw_inode->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
504 raw_inode->i_mtime_nsec = cpu_to_le32(inode->i_mtime.tv_nsec);
505 raw_inode->i_blocks = cpu_to_le64(inode->i_blocks);
507 raw_inode->i_flags = cpu_to_le32(ii->i_flags);
508 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
511 nilfs_bmap_write(ii->i_bmap, raw_inode);
512 else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode))
513 raw_inode->i_device_code =
514 cpu_to_le64(new_encode_dev(inode->i_rdev));
515 /* When extending inode, nilfs->ns_inode_size should be checked
516 for substitutions of appended fields */
519 void nilfs_update_inode(struct inode *inode, struct buffer_head *ibh)
521 ino_t ino = inode->i_ino;
522 struct nilfs_inode_info *ii = NILFS_I(inode);
523 struct super_block *sb = inode->i_sb;
524 struct nilfs_sb_info *sbi = NILFS_SB(sb);
525 struct nilfs_inode *raw_inode;
527 raw_inode = nilfs_ifile_map_inode(sbi->s_ifile, ino, ibh);
529 if (test_and_clear_bit(NILFS_I_NEW, &ii->i_state))
530 memset(raw_inode, 0, NILFS_MDT(sbi->s_ifile)->mi_entry_size);
531 set_bit(NILFS_I_INODE_DIRTY, &ii->i_state);
533 nilfs_write_inode_common(inode, raw_inode, 0);
534 /* XXX: call with has_bmap = 0 is a workaround to avoid
535 deadlock of bmap. This delays update of i_bmap to just
537 nilfs_ifile_unmap_inode(sbi->s_ifile, ino, ibh);
540 #define NILFS_MAX_TRUNCATE_BLOCKS 16384 /* 64MB for 4KB block */
542 static void nilfs_truncate_bmap(struct nilfs_inode_info *ii,
548 if (!test_bit(NILFS_I_BMAP, &ii->i_state))
551 ret = nilfs_bmap_last_key(ii->i_bmap, &b);
560 b -= min_t(unsigned long, NILFS_MAX_TRUNCATE_BLOCKS, b - from);
561 ret = nilfs_bmap_truncate(ii->i_bmap, b);
562 nilfs_relax_pressure_in_lock(ii->vfs_inode.i_sb);
563 if (!ret || (ret == -ENOMEM &&
564 nilfs_bmap_truncate(ii->i_bmap, b) == 0))
569 nilfs_error(ii->vfs_inode.i_sb, __func__,
570 "bmap is broken (ino=%lu)", ii->vfs_inode.i_ino);
572 nilfs_warning(ii->vfs_inode.i_sb, __func__,
573 "failed to truncate bmap (ino=%lu, err=%d)",
574 ii->vfs_inode.i_ino, ret);
577 void nilfs_truncate(struct inode *inode)
579 unsigned long blkoff;
580 unsigned int blocksize;
581 struct nilfs_transaction_info ti;
582 struct super_block *sb = inode->i_sb;
583 struct nilfs_inode_info *ii = NILFS_I(inode);
585 if (!test_bit(NILFS_I_BMAP, &ii->i_state))
587 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
590 blocksize = sb->s_blocksize;
591 blkoff = (inode->i_size + blocksize - 1) >> sb->s_blocksize_bits;
592 nilfs_transaction_begin(sb, &ti, 0); /* never fails */
594 block_truncate_page(inode->i_mapping, inode->i_size, nilfs_get_block);
596 nilfs_truncate_bmap(ii, blkoff);
598 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
600 nilfs_set_transaction_flag(NILFS_TI_SYNC);
602 nilfs_mark_inode_dirty(inode);
603 nilfs_set_file_dirty(NILFS_SB(sb), inode, 0);
604 nilfs_transaction_commit(sb);
605 /* May construct a logical segment and may fail in sync mode.
606 But truncate has no return value. */
609 void nilfs_delete_inode(struct inode *inode)
611 struct nilfs_transaction_info ti;
612 struct super_block *sb = inode->i_sb;
613 struct nilfs_inode_info *ii = NILFS_I(inode);
615 if (unlikely(is_bad_inode(inode))) {
616 if (inode->i_data.nrpages)
617 truncate_inode_pages(&inode->i_data, 0);
621 nilfs_transaction_begin(sb, &ti, 0); /* never fails */
623 if (inode->i_data.nrpages)
624 truncate_inode_pages(&inode->i_data, 0);
626 nilfs_truncate_bmap(ii, 0);
627 nilfs_mark_inode_dirty(inode);
628 nilfs_free_inode(inode);
629 /* nilfs_free_inode() marks inode buffer dirty */
631 nilfs_set_transaction_flag(NILFS_TI_SYNC);
632 nilfs_transaction_commit(sb);
633 /* May construct a logical segment and may fail in sync mode.
634 But delete_inode has no return value. */
637 int nilfs_setattr(struct dentry *dentry, struct iattr *iattr)
639 struct nilfs_transaction_info ti;
640 struct inode *inode = dentry->d_inode;
641 struct super_block *sb = inode->i_sb;
644 err = inode_change_ok(inode, iattr);
648 err = nilfs_transaction_begin(sb, &ti, 0);
651 err = inode_setattr(inode, iattr);
652 if (!err && (iattr->ia_valid & ATTR_MODE))
653 err = nilfs_acl_chmod(inode);
655 err = nilfs_transaction_commit(sb);
657 nilfs_transaction_abort(sb);
662 int nilfs_load_inode_block(struct nilfs_sb_info *sbi, struct inode *inode,
663 struct buffer_head **pbh)
665 struct nilfs_inode_info *ii = NILFS_I(inode);
668 spin_lock(&sbi->s_inode_lock);
669 if (ii->i_bh == NULL) {
670 spin_unlock(&sbi->s_inode_lock);
671 err = nilfs_ifile_get_inode_block(sbi->s_ifile, inode->i_ino,
675 spin_lock(&sbi->s_inode_lock);
676 if (ii->i_bh == NULL)
686 spin_unlock(&sbi->s_inode_lock);
690 int nilfs_inode_dirty(struct inode *inode)
692 struct nilfs_inode_info *ii = NILFS_I(inode);
693 struct nilfs_sb_info *sbi = NILFS_SB(inode->i_sb);
696 if (!list_empty(&ii->i_dirty)) {
697 spin_lock(&sbi->s_inode_lock);
698 ret = test_bit(NILFS_I_DIRTY, &ii->i_state) ||
699 test_bit(NILFS_I_BUSY, &ii->i_state);
700 spin_unlock(&sbi->s_inode_lock);
705 int nilfs_set_file_dirty(struct nilfs_sb_info *sbi, struct inode *inode,
708 struct nilfs_inode_info *ii = NILFS_I(inode);
710 atomic_add(nr_dirty, &sbi->s_nilfs->ns_ndirtyblks);
712 if (test_and_set_bit(NILFS_I_DIRTY, &ii->i_state))
715 spin_lock(&sbi->s_inode_lock);
716 if (!test_bit(NILFS_I_QUEUED, &ii->i_state) &&
717 !test_bit(NILFS_I_BUSY, &ii->i_state)) {
718 /* Because this routine may race with nilfs_dispose_list(),
719 we have to check NILFS_I_QUEUED here, too. */
720 if (list_empty(&ii->i_dirty) && igrab(inode) == NULL) {
721 /* This will happen when somebody is freeing
723 nilfs_warning(sbi->s_super, __func__,
724 "cannot get inode (ino=%lu)\n",
726 spin_unlock(&sbi->s_inode_lock);
727 return -EINVAL; /* NILFS_I_DIRTY may remain for
730 list_del(&ii->i_dirty);
731 list_add_tail(&ii->i_dirty, &sbi->s_dirty_files);
732 set_bit(NILFS_I_QUEUED, &ii->i_state);
734 spin_unlock(&sbi->s_inode_lock);
738 int nilfs_mark_inode_dirty(struct inode *inode)
740 struct nilfs_sb_info *sbi = NILFS_SB(inode->i_sb);
741 struct buffer_head *ibh;
744 err = nilfs_load_inode_block(sbi, inode, &ibh);
746 nilfs_warning(inode->i_sb, __func__,
747 "failed to reget inode block.\n");
750 nilfs_update_inode(inode, ibh);
751 nilfs_mdt_mark_buffer_dirty(ibh);
752 nilfs_mdt_mark_dirty(sbi->s_ifile);
758 * nilfs_dirty_inode - reflect changes on given inode to an inode block.
759 * @inode: inode of the file to be registered.
761 * nilfs_dirty_inode() loads a inode block containing the specified
762 * @inode and copies data from a nilfs_inode to a corresponding inode
763 * entry in the inode block. This operation is excluded from the segment
764 * construction. This function can be called both as a single operation
765 * and as a part of indivisible file operations.
767 void nilfs_dirty_inode(struct inode *inode)
769 struct nilfs_transaction_info ti;
771 if (is_bad_inode(inode)) {
772 nilfs_warning(inode->i_sb, __func__,
773 "tried to mark bad_inode dirty. ignored.\n");
777 nilfs_transaction_begin(inode->i_sb, &ti, 0);
778 nilfs_mark_inode_dirty(inode);
779 nilfs_transaction_commit(inode->i_sb); /* never fails */