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
20 * Written by Ryusuke Konishi <ryusuke@osrg.net>
24 #include <linux/buffer_head.h>
25 #include <linux/mpage.h>
26 #include <linux/writeback.h>
27 #include <linux/uio.h>
37 * nilfs_get_block() - get a file block on the filesystem (callback function)
38 * @inode - inode struct of the target file
39 * @blkoff - file block number
40 * @bh_result - buffer head to be mapped on
41 * @create - indicate whether allocating the block or not when it has not
44 * This function does not issue actual read request of the specified data
45 * block. It is done by VFS.
47 int nilfs_get_block(struct inode
*inode
, sector_t blkoff
,
48 struct buffer_head
*bh_result
, int create
)
50 struct nilfs_inode_info
*ii
= NILFS_I(inode
);
53 struct inode
*dat
= nilfs_dat_inode(NILFS_I_NILFS(inode
));
54 unsigned maxblocks
= bh_result
->b_size
>> inode
->i_blkbits
;
56 down_read(&NILFS_MDT(dat
)->mi_sem
);
57 ret
= nilfs_bmap_lookup_contig(ii
->i_bmap
, blkoff
, &blknum
, maxblocks
);
58 up_read(&NILFS_MDT(dat
)->mi_sem
);
59 if (ret
>= 0) { /* found */
60 map_bh(bh_result
, inode
->i_sb
, blknum
);
62 bh_result
->b_size
= (ret
<< inode
->i_blkbits
);
65 /* data block was not found */
66 if (ret
== -ENOENT
&& create
) {
67 struct nilfs_transaction_info ti
;
69 bh_result
->b_blocknr
= 0;
70 err
= nilfs_transaction_begin(inode
->i_sb
, &ti
, 1);
73 err
= nilfs_bmap_insert(ii
->i_bmap
, (unsigned long)blkoff
,
74 (unsigned long)bh_result
);
75 if (unlikely(err
!= 0)) {
78 * The get_block() function could be called
79 * from multiple callers for an inode.
80 * However, the page having this block must
81 * be locked in this case.
84 "nilfs_get_block: a race condition "
85 "while inserting a data block. "
86 "(inode number=%lu, file block "
89 (unsigned long long)blkoff
);
91 } else if (err
== -EINVAL
) {
92 nilfs_error(inode
->i_sb
, __func__
,
93 "broken bmap (inode=%lu)\n",
97 nilfs_transaction_abort(inode
->i_sb
);
100 nilfs_transaction_commit(inode
->i_sb
); /* never fails */
101 /* Error handling should be detailed */
102 set_buffer_new(bh_result
);
103 map_bh(bh_result
, inode
->i_sb
, 0); /* dbn must be changed
105 } else if (ret
== -ENOENT
) {
106 /* not found is not error (e.g. hole); must return without
107 the mapped state flag. */
118 * nilfs_readpage() - implement readpage() method of nilfs_aops {}
119 * address_space_operations.
120 * @file - file struct of the file to be read
121 * @page - the page to be read
123 static int nilfs_readpage(struct file
*file
, struct page
*page
)
125 return mpage_readpage(page
, nilfs_get_block
);
129 * nilfs_readpages() - implement readpages() method of nilfs_aops {}
130 * address_space_operations.
131 * @file - file struct of the file to be read
132 * @mapping - address_space struct used for reading multiple pages
133 * @pages - the pages to be read
134 * @nr_pages - number of pages to be read
136 static int nilfs_readpages(struct file
*file
, struct address_space
*mapping
,
137 struct list_head
*pages
, unsigned nr_pages
)
139 return mpage_readpages(mapping
, pages
, nr_pages
, nilfs_get_block
);
142 static int nilfs_writepages(struct address_space
*mapping
,
143 struct writeback_control
*wbc
)
145 struct inode
*inode
= mapping
->host
;
148 if (wbc
->sync_mode
== WB_SYNC_ALL
)
149 err
= nilfs_construct_dsync_segment(inode
->i_sb
, inode
,
155 static int nilfs_writepage(struct page
*page
, struct writeback_control
*wbc
)
157 struct inode
*inode
= page
->mapping
->host
;
160 redirty_page_for_writepage(wbc
, page
);
163 if (wbc
->sync_mode
== WB_SYNC_ALL
) {
164 err
= nilfs_construct_segment(inode
->i_sb
);
167 } else if (wbc
->for_reclaim
)
168 nilfs_flush_segment(inode
->i_sb
, inode
->i_ino
);
173 static int nilfs_set_page_dirty(struct page
*page
)
175 int ret
= __set_page_dirty_buffers(page
);
178 struct inode
*inode
= page
->mapping
->host
;
179 struct nilfs_sb_info
*sbi
= NILFS_SB(inode
->i_sb
);
180 unsigned nr_dirty
= 1 << (PAGE_SHIFT
- inode
->i_blkbits
);
182 nilfs_set_file_dirty(sbi
, inode
, nr_dirty
);
187 static int nilfs_write_begin(struct file
*file
, struct address_space
*mapping
,
188 loff_t pos
, unsigned len
, unsigned flags
,
189 struct page
**pagep
, void **fsdata
)
192 struct inode
*inode
= mapping
->host
;
193 int err
= nilfs_transaction_begin(inode
->i_sb
, NULL
, 1);
199 err
= block_write_begin(file
, mapping
, pos
, len
, flags
, pagep
,
200 fsdata
, nilfs_get_block
);
202 nilfs_transaction_abort(inode
->i_sb
);
206 static int nilfs_write_end(struct file
*file
, struct address_space
*mapping
,
207 loff_t pos
, unsigned len
, unsigned copied
,
208 struct page
*page
, void *fsdata
)
210 struct inode
*inode
= mapping
->host
;
211 unsigned start
= pos
& (PAGE_CACHE_SIZE
- 1);
215 nr_dirty
= nilfs_page_count_clean_buffers(page
, start
,
217 copied
= generic_write_end(file
, mapping
, pos
, len
, copied
, page
,
219 nilfs_set_file_dirty(NILFS_SB(inode
->i_sb
), inode
, nr_dirty
);
220 err
= nilfs_transaction_commit(inode
->i_sb
);
221 return err
? : copied
;
225 nilfs_direct_IO(int rw
, struct kiocb
*iocb
, const struct iovec
*iov
,
226 loff_t offset
, unsigned long nr_segs
)
228 struct file
*file
= iocb
->ki_filp
;
229 struct inode
*inode
= file
->f_mapping
->host
;
235 /* Needs synchronization with the cleaner */
236 size
= blockdev_direct_IO(rw
, iocb
, inode
, inode
->i_sb
->s_bdev
, iov
,
237 offset
, nr_segs
, nilfs_get_block
, NULL
);
241 struct address_space_operations nilfs_aops
= {
242 .writepage
= nilfs_writepage
,
243 .readpage
= nilfs_readpage
,
244 .sync_page
= block_sync_page
,
245 .writepages
= nilfs_writepages
,
246 .set_page_dirty
= nilfs_set_page_dirty
,
247 .readpages
= nilfs_readpages
,
248 .write_begin
= nilfs_write_begin
,
249 .write_end
= nilfs_write_end
,
250 /* .releasepage = nilfs_releasepage, */
251 .invalidatepage
= block_invalidatepage
,
252 .direct_IO
= nilfs_direct_IO
,
253 .is_partially_uptodate
= block_is_partially_uptodate
,
256 struct inode
*nilfs_new_inode(struct inode
*dir
, int mode
)
258 struct super_block
*sb
= dir
->i_sb
;
259 struct nilfs_sb_info
*sbi
= NILFS_SB(sb
);
261 struct nilfs_inode_info
*ii
;
265 inode
= new_inode(sb
);
266 if (unlikely(!inode
))
269 mapping_set_gfp_mask(inode
->i_mapping
,
270 mapping_gfp_mask(inode
->i_mapping
) & ~__GFP_FS
);
273 ii
->i_state
= 1 << NILFS_I_NEW
;
275 err
= nilfs_ifile_create_inode(sbi
->s_ifile
, &ino
, &ii
->i_bh
);
277 goto failed_ifile_create_inode
;
278 /* reference count of i_bh inherits from nilfs_mdt_read_block() */
280 atomic_inc(&sbi
->s_inodes_count
);
282 inode
->i_uid
= current_fsuid();
283 if (dir
->i_mode
& S_ISGID
) {
284 inode
->i_gid
= dir
->i_gid
;
288 inode
->i_gid
= current_fsgid();
290 inode
->i_mode
= mode
;
292 inode
->i_mtime
= inode
->i_atime
= inode
->i_ctime
= CURRENT_TIME
;
294 if (S_ISREG(mode
) || S_ISDIR(mode
) || S_ISLNK(mode
)) {
295 err
= nilfs_bmap_read(ii
->i_bmap
, NULL
);
299 set_bit(NILFS_I_BMAP
, &ii
->i_state
);
300 /* No lock is needed; iget() ensures it. */
303 ii
->i_flags
= NILFS_I(dir
)->i_flags
;
305 ii
->i_flags
&= ~(NILFS_IMMUTABLE_FL
| NILFS_APPEND_FL
);
307 ii
->i_flags
&= ~NILFS_DIRSYNC_FL
;
309 /* ii->i_file_acl = 0; */
310 /* ii->i_dir_acl = 0; */
311 ii
->i_dir_start_lookup
= 0;
313 nilfs_set_inode_flags(inode
);
314 spin_lock(&sbi
->s_next_gen_lock
);
315 inode
->i_generation
= sbi
->s_next_generation
++;
316 spin_unlock(&sbi
->s_next_gen_lock
);
317 insert_inode_hash(inode
);
319 err
= nilfs_init_acl(inode
, dir
);
321 goto failed_acl
; /* never occur. When supporting
322 nilfs_init_acl(), proper cancellation of
323 above jobs should be considered */
325 mark_inode_dirty(inode
);
331 iput(inode
); /* raw_inode will be deleted through
332 generic_delete_inode() */
335 failed_ifile_create_inode
:
336 make_bad_inode(inode
);
337 iput(inode
); /* if i_nlink == 1, generic_forget_inode() will be
343 void nilfs_free_inode(struct inode
*inode
)
345 struct super_block
*sb
= inode
->i_sb
;
346 struct nilfs_sb_info
*sbi
= NILFS_SB(sb
);
349 /* XXX: check error code? Is there any thing I can do? */
350 (void) nilfs_ifile_delete_inode(sbi
->s_ifile
, inode
->i_ino
);
351 atomic_dec(&sbi
->s_inodes_count
);
354 void nilfs_set_inode_flags(struct inode
*inode
)
356 unsigned int flags
= NILFS_I(inode
)->i_flags
;
358 inode
->i_flags
&= ~(S_SYNC
| S_APPEND
| S_IMMUTABLE
| S_NOATIME
|
360 if (flags
& NILFS_SYNC_FL
)
361 inode
->i_flags
|= S_SYNC
;
362 if (flags
& NILFS_APPEND_FL
)
363 inode
->i_flags
|= S_APPEND
;
364 if (flags
& NILFS_IMMUTABLE_FL
)
365 inode
->i_flags
|= S_IMMUTABLE
;
366 #ifndef NILFS_ATIME_DISABLE
367 if (flags
& NILFS_NOATIME_FL
)
369 inode
->i_flags
|= S_NOATIME
;
370 if (flags
& NILFS_DIRSYNC_FL
)
371 inode
->i_flags
|= S_DIRSYNC
;
372 mapping_set_gfp_mask(inode
->i_mapping
,
373 mapping_gfp_mask(inode
->i_mapping
) & ~__GFP_FS
);
376 int nilfs_read_inode_common(struct inode
*inode
,
377 struct nilfs_inode
*raw_inode
)
379 struct nilfs_inode_info
*ii
= NILFS_I(inode
);
382 inode
->i_mode
= le16_to_cpu(raw_inode
->i_mode
);
383 inode
->i_uid
= (uid_t
)le32_to_cpu(raw_inode
->i_uid
);
384 inode
->i_gid
= (gid_t
)le32_to_cpu(raw_inode
->i_gid
);
385 inode
->i_nlink
= le16_to_cpu(raw_inode
->i_links_count
);
386 inode
->i_size
= le64_to_cpu(raw_inode
->i_size
);
387 inode
->i_atime
.tv_sec
= le64_to_cpu(raw_inode
->i_mtime
);
388 inode
->i_ctime
.tv_sec
= le64_to_cpu(raw_inode
->i_ctime
);
389 inode
->i_mtime
.tv_sec
= le64_to_cpu(raw_inode
->i_mtime
);
390 inode
->i_atime
.tv_nsec
= le32_to_cpu(raw_inode
->i_mtime_nsec
);
391 inode
->i_ctime
.tv_nsec
= le32_to_cpu(raw_inode
->i_ctime_nsec
);
392 inode
->i_mtime
.tv_nsec
= le32_to_cpu(raw_inode
->i_mtime_nsec
);
393 if (inode
->i_nlink
== 0 && inode
->i_mode
== 0)
394 return -EINVAL
; /* this inode is deleted */
396 inode
->i_blocks
= le64_to_cpu(raw_inode
->i_blocks
);
397 ii
->i_flags
= le32_to_cpu(raw_inode
->i_flags
);
399 ii
->i_file_acl
= le32_to_cpu(raw_inode
->i_file_acl
);
400 ii
->i_dir_acl
= S_ISREG(inode
->i_mode
) ?
401 0 : le32_to_cpu(raw_inode
->i_dir_acl
);
404 inode
->i_generation
= le32_to_cpu(raw_inode
->i_generation
);
406 if (S_ISREG(inode
->i_mode
) || S_ISDIR(inode
->i_mode
) ||
407 S_ISLNK(inode
->i_mode
)) {
408 err
= nilfs_bmap_read(ii
->i_bmap
, raw_inode
);
411 set_bit(NILFS_I_BMAP
, &ii
->i_state
);
412 /* No lock is needed; iget() ensures it. */
417 static int __nilfs_read_inode(struct super_block
*sb
, unsigned long ino
,
420 struct nilfs_sb_info
*sbi
= NILFS_SB(sb
);
421 struct inode
*dat
= nilfs_dat_inode(sbi
->s_nilfs
);
422 struct buffer_head
*bh
;
423 struct nilfs_inode
*raw_inode
;
426 down_read(&NILFS_MDT(dat
)->mi_sem
); /* XXX */
427 err
= nilfs_ifile_get_inode_block(sbi
->s_ifile
, ino
, &bh
);
431 raw_inode
= nilfs_ifile_map_inode(sbi
->s_ifile
, ino
, bh
);
433 if (nilfs_read_inode_common(inode
, raw_inode
))
436 if (S_ISREG(inode
->i_mode
)) {
437 inode
->i_op
= &nilfs_file_inode_operations
;
438 inode
->i_fop
= &nilfs_file_operations
;
439 inode
->i_mapping
->a_ops
= &nilfs_aops
;
440 } else if (S_ISDIR(inode
->i_mode
)) {
441 inode
->i_op
= &nilfs_dir_inode_operations
;
442 inode
->i_fop
= &nilfs_dir_operations
;
443 inode
->i_mapping
->a_ops
= &nilfs_aops
;
444 } else if (S_ISLNK(inode
->i_mode
)) {
445 inode
->i_op
= &nilfs_symlink_inode_operations
;
446 inode
->i_mapping
->a_ops
= &nilfs_aops
;
448 inode
->i_op
= &nilfs_special_inode_operations
;
450 inode
, inode
->i_mode
,
451 new_decode_dev(le64_to_cpu(raw_inode
->i_device_code
)));
453 nilfs_ifile_unmap_inode(sbi
->s_ifile
, ino
, bh
);
455 up_read(&NILFS_MDT(dat
)->mi_sem
); /* XXX */
456 nilfs_set_inode_flags(inode
);
460 nilfs_ifile_unmap_inode(sbi
->s_ifile
, ino
, bh
);
464 up_read(&NILFS_MDT(dat
)->mi_sem
); /* XXX */
468 struct inode
*nilfs_iget(struct super_block
*sb
, unsigned long ino
)
473 inode
= iget_locked(sb
, ino
);
474 if (unlikely(!inode
))
475 return ERR_PTR(-ENOMEM
);
476 if (!(inode
->i_state
& I_NEW
))
479 err
= __nilfs_read_inode(sb
, ino
, inode
);
484 unlock_new_inode(inode
);
488 void nilfs_write_inode_common(struct inode
*inode
,
489 struct nilfs_inode
*raw_inode
, int has_bmap
)
491 struct nilfs_inode_info
*ii
= NILFS_I(inode
);
493 raw_inode
->i_mode
= cpu_to_le16(inode
->i_mode
);
494 raw_inode
->i_uid
= cpu_to_le32(inode
->i_uid
);
495 raw_inode
->i_gid
= cpu_to_le32(inode
->i_gid
);
496 raw_inode
->i_links_count
= cpu_to_le16(inode
->i_nlink
);
497 raw_inode
->i_size
= cpu_to_le64(inode
->i_size
);
498 raw_inode
->i_ctime
= cpu_to_le64(inode
->i_ctime
.tv_sec
);
499 raw_inode
->i_mtime
= cpu_to_le64(inode
->i_mtime
.tv_sec
);
500 raw_inode
->i_ctime_nsec
= cpu_to_le32(inode
->i_ctime
.tv_nsec
);
501 raw_inode
->i_mtime_nsec
= cpu_to_le32(inode
->i_mtime
.tv_nsec
);
502 raw_inode
->i_blocks
= cpu_to_le64(inode
->i_blocks
);
504 raw_inode
->i_flags
= cpu_to_le32(ii
->i_flags
);
505 raw_inode
->i_generation
= cpu_to_le32(inode
->i_generation
);
508 nilfs_bmap_write(ii
->i_bmap
, raw_inode
);
509 else if (S_ISCHR(inode
->i_mode
) || S_ISBLK(inode
->i_mode
))
510 raw_inode
->i_device_code
=
511 cpu_to_le64(new_encode_dev(inode
->i_rdev
));
512 /* When extending inode, nilfs->ns_inode_size should be checked
513 for substitutions of appended fields */
516 void nilfs_update_inode(struct inode
*inode
, struct buffer_head
*ibh
)
518 ino_t ino
= inode
->i_ino
;
519 struct nilfs_inode_info
*ii
= NILFS_I(inode
);
520 struct super_block
*sb
= inode
->i_sb
;
521 struct nilfs_sb_info
*sbi
= NILFS_SB(sb
);
522 struct nilfs_inode
*raw_inode
;
524 raw_inode
= nilfs_ifile_map_inode(sbi
->s_ifile
, ino
, ibh
);
526 /* The buffer is guarded with lock_buffer() by the caller */
527 if (test_and_clear_bit(NILFS_I_NEW
, &ii
->i_state
))
528 memset(raw_inode
, 0, NILFS_MDT(sbi
->s_ifile
)->mi_entry_size
);
529 set_bit(NILFS_I_INODE_DIRTY
, &ii
->i_state
);
531 nilfs_write_inode_common(inode
, raw_inode
, 0);
532 /* XXX: call with has_bmap = 0 is a workaround to avoid
533 deadlock of bmap. This delays update of i_bmap to just
535 nilfs_ifile_unmap_inode(sbi
->s_ifile
, ino
, ibh
);
538 #define NILFS_MAX_TRUNCATE_BLOCKS 16384 /* 64MB for 4KB block */
540 static void nilfs_truncate_bmap(struct nilfs_inode_info
*ii
,
546 if (!test_bit(NILFS_I_BMAP
, &ii
->i_state
))
549 ret
= nilfs_bmap_last_key(ii
->i_bmap
, &b
);
558 b
-= min_t(unsigned long, NILFS_MAX_TRUNCATE_BLOCKS
, b
- from
);
559 ret
= nilfs_bmap_truncate(ii
->i_bmap
, b
);
560 nilfs_relax_pressure_in_lock(ii
->vfs_inode
.i_sb
);
561 if (!ret
|| (ret
== -ENOMEM
&&
562 nilfs_bmap_truncate(ii
->i_bmap
, b
) == 0))
567 nilfs_error(ii
->vfs_inode
.i_sb
, __func__
,
568 "bmap is broken (ino=%lu)", ii
->vfs_inode
.i_ino
);
570 nilfs_warning(ii
->vfs_inode
.i_sb
, __func__
,
571 "failed to truncate bmap (ino=%lu, err=%d)",
572 ii
->vfs_inode
.i_ino
, ret
);
575 void nilfs_truncate(struct inode
*inode
)
577 unsigned long blkoff
;
578 unsigned int blocksize
;
579 struct nilfs_transaction_info ti
;
580 struct super_block
*sb
= inode
->i_sb
;
581 struct nilfs_inode_info
*ii
= NILFS_I(inode
);
583 if (!test_bit(NILFS_I_BMAP
, &ii
->i_state
))
585 if (IS_APPEND(inode
) || IS_IMMUTABLE(inode
))
588 blocksize
= sb
->s_blocksize
;
589 blkoff
= (inode
->i_size
+ blocksize
- 1) >> sb
->s_blocksize_bits
;
590 nilfs_transaction_begin(sb
, &ti
, 0); /* never fails */
592 block_truncate_page(inode
->i_mapping
, inode
->i_size
, nilfs_get_block
);
594 nilfs_truncate_bmap(ii
, blkoff
);
596 inode
->i_mtime
= inode
->i_ctime
= CURRENT_TIME
;
598 nilfs_set_transaction_flag(NILFS_TI_SYNC
);
600 nilfs_set_file_dirty(NILFS_SB(sb
), inode
, 0);
601 nilfs_transaction_commit(sb
);
602 /* May construct a logical segment and may fail in sync mode.
603 But truncate has no return value. */
606 void nilfs_delete_inode(struct inode
*inode
)
608 struct nilfs_transaction_info ti
;
609 struct super_block
*sb
= inode
->i_sb
;
610 struct nilfs_inode_info
*ii
= NILFS_I(inode
);
612 if (unlikely(is_bad_inode(inode
))) {
613 if (inode
->i_data
.nrpages
)
614 truncate_inode_pages(&inode
->i_data
, 0);
618 nilfs_transaction_begin(sb
, &ti
, 0); /* never fails */
620 if (inode
->i_data
.nrpages
)
621 truncate_inode_pages(&inode
->i_data
, 0);
623 nilfs_truncate_bmap(ii
, 0);
624 nilfs_free_inode(inode
);
625 /* nilfs_free_inode() marks inode buffer dirty */
627 nilfs_set_transaction_flag(NILFS_TI_SYNC
);
628 nilfs_transaction_commit(sb
);
629 /* May construct a logical segment and may fail in sync mode.
630 But delete_inode has no return value. */
633 int nilfs_setattr(struct dentry
*dentry
, struct iattr
*iattr
)
635 struct nilfs_transaction_info ti
;
636 struct inode
*inode
= dentry
->d_inode
;
637 struct super_block
*sb
= inode
->i_sb
;
640 err
= inode_change_ok(inode
, iattr
);
644 err
= nilfs_transaction_begin(sb
, &ti
, 0);
647 err
= inode_setattr(inode
, iattr
);
648 if (!err
&& (iattr
->ia_valid
& ATTR_MODE
))
649 err
= nilfs_acl_chmod(inode
);
651 err
= nilfs_transaction_commit(sb
);
653 nilfs_transaction_abort(sb
);
658 int nilfs_load_inode_block(struct nilfs_sb_info
*sbi
, struct inode
*inode
,
659 struct buffer_head
**pbh
)
661 struct nilfs_inode_info
*ii
= NILFS_I(inode
);
664 spin_lock(&sbi
->s_inode_lock
);
665 /* Caller of this function MUST lock s_inode_lock */
666 if (ii
->i_bh
== NULL
) {
667 spin_unlock(&sbi
->s_inode_lock
);
668 err
= nilfs_ifile_get_inode_block(sbi
->s_ifile
, inode
->i_ino
,
672 spin_lock(&sbi
->s_inode_lock
);
673 if (ii
->i_bh
== NULL
)
683 spin_unlock(&sbi
->s_inode_lock
);
687 int nilfs_inode_dirty(struct inode
*inode
)
689 struct nilfs_inode_info
*ii
= NILFS_I(inode
);
690 struct nilfs_sb_info
*sbi
= NILFS_SB(inode
->i_sb
);
693 if (!list_empty(&ii
->i_dirty
)) {
694 spin_lock(&sbi
->s_inode_lock
);
695 ret
= test_bit(NILFS_I_DIRTY
, &ii
->i_state
) ||
696 test_bit(NILFS_I_BUSY
, &ii
->i_state
);
697 spin_unlock(&sbi
->s_inode_lock
);
702 int nilfs_set_file_dirty(struct nilfs_sb_info
*sbi
, struct inode
*inode
,
705 struct nilfs_inode_info
*ii
= NILFS_I(inode
);
707 atomic_add(nr_dirty
, &sbi
->s_nilfs
->ns_ndirtyblks
);
709 if (test_and_set_bit(NILFS_I_DIRTY
, &ii
->i_state
))
712 spin_lock(&sbi
->s_inode_lock
);
713 if (!test_bit(NILFS_I_QUEUED
, &ii
->i_state
) &&
714 !test_bit(NILFS_I_BUSY
, &ii
->i_state
)) {
715 /* Because this routine may race with nilfs_dispose_list(),
716 we have to check NILFS_I_QUEUED here, too. */
717 if (list_empty(&ii
->i_dirty
) && igrab(inode
) == NULL
) {
718 /* This will happen when somebody is freeing
720 nilfs_warning(sbi
->s_super
, __func__
,
721 "cannot get inode (ino=%lu)\n",
723 spin_unlock(&sbi
->s_inode_lock
);
724 return -EINVAL
; /* NILFS_I_DIRTY may remain for
727 list_del(&ii
->i_dirty
);
728 list_add_tail(&ii
->i_dirty
, &sbi
->s_dirty_files
);
729 set_bit(NILFS_I_QUEUED
, &ii
->i_state
);
731 spin_unlock(&sbi
->s_inode_lock
);
735 int nilfs_mark_inode_dirty(struct inode
*inode
)
737 struct nilfs_sb_info
*sbi
= NILFS_SB(inode
->i_sb
);
738 struct buffer_head
*ibh
;
741 err
= nilfs_load_inode_block(sbi
, inode
, &ibh
);
743 nilfs_warning(inode
->i_sb
, __func__
,
744 "failed to reget inode block.\n");
748 nilfs_update_inode(inode
, ibh
);
750 nilfs_mdt_mark_buffer_dirty(ibh
);
751 nilfs_mdt_mark_dirty(sbi
->s_ifile
);
757 * nilfs_dirty_inode - reflect changes on given inode to an inode block.
758 * @inode: inode of the file to be registered.
760 * nilfs_dirty_inode() loads a inode block containing the specified
761 * @inode and copies data from a nilfs_inode to a corresponding inode
762 * entry in the inode block. This operation is excluded from the segment
763 * construction. This function can be called both as a single operation
764 * and as a part of indivisible file operations.
766 void nilfs_dirty_inode(struct inode
*inode
)
768 struct nilfs_transaction_info ti
;
770 if (is_bad_inode(inode
)) {
771 nilfs_warning(inode
->i_sb
, __func__
,
772 "tried to mark bad_inode dirty. ignored.\n");
776 nilfs_transaction_begin(inode
->i_sb
, &ti
, 0);
777 nilfs_mark_inode_dirty(inode
);
778 nilfs_transaction_commit(inode
->i_sb
); /* never fails */