diff options
author | Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> | 2011-01-19 12:09:52 -0500 |
---|---|---|
committer | Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> | 2011-03-08 00:58:29 -0500 |
commit | f0c9f242f947a37675a883deca7f722cac935b0e (patch) | |
tree | c0aad002f438b6d34123056d075da23792864327 /fs/nilfs2 | |
parent | 9954e7af14868b8b79e76b7b88daaf0b3866db33 (diff) |
nilfs2: use common file attribute macros
Replaces uses of own inode flags (i.e. NILFS_SECRM_FL, NILFS_UNRM_FL,
NILFS_COMPR_FL, and so forth) with common inode flags, and removes the
own flag declarations.
Signed-off-by: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Diffstat (limited to 'fs/nilfs2')
-rw-r--r-- | fs/nilfs2/dir.c | 3 | ||||
-rw-r--r-- | fs/nilfs2/inode.c | 14 |
2 files changed, 7 insertions, 10 deletions
diff --git a/fs/nilfs2/dir.c b/fs/nilfs2/dir.c index 9d45773b79e6..b72833a2cc1c 100644 --- a/fs/nilfs2/dir.c +++ b/fs/nilfs2/dir.c | |||
@@ -440,7 +440,6 @@ void nilfs_set_link(struct inode *dir, struct nilfs_dir_entry *de, | |||
440 | nilfs_commit_chunk(page, mapping, from, to); | 440 | nilfs_commit_chunk(page, mapping, from, to); |
441 | nilfs_put_page(page); | 441 | nilfs_put_page(page); |
442 | dir->i_mtime = dir->i_ctime = CURRENT_TIME; | 442 | dir->i_mtime = dir->i_ctime = CURRENT_TIME; |
443 | /* NILFS_I(dir)->i_flags &= ~NILFS_BTREE_FL; */ | ||
444 | } | 443 | } |
445 | 444 | ||
446 | /* | 445 | /* |
@@ -531,7 +530,6 @@ got_it: | |||
531 | nilfs_set_de_type(de, inode); | 530 | nilfs_set_de_type(de, inode); |
532 | nilfs_commit_chunk(page, page->mapping, from, to); | 531 | nilfs_commit_chunk(page, page->mapping, from, to); |
533 | dir->i_mtime = dir->i_ctime = CURRENT_TIME; | 532 | dir->i_mtime = dir->i_ctime = CURRENT_TIME; |
534 | /* NILFS_I(dir)->i_flags &= ~NILFS_BTREE_FL; */ | ||
535 | nilfs_mark_inode_dirty(dir); | 533 | nilfs_mark_inode_dirty(dir); |
536 | /* OFFSET_CACHE */ | 534 | /* OFFSET_CACHE */ |
537 | out_put: | 535 | out_put: |
@@ -579,7 +577,6 @@ int nilfs_delete_entry(struct nilfs_dir_entry *dir, struct page *page) | |||
579 | dir->inode = 0; | 577 | dir->inode = 0; |
580 | nilfs_commit_chunk(page, mapping, from, to); | 578 | nilfs_commit_chunk(page, mapping, from, to); |
581 | inode->i_ctime = inode->i_mtime = CURRENT_TIME; | 579 | inode->i_ctime = inode->i_mtime = CURRENT_TIME; |
582 | /* NILFS_I(inode)->i_flags &= ~NILFS_BTREE_FL; */ | ||
583 | out: | 580 | out: |
584 | nilfs_put_page(page); | 581 | nilfs_put_page(page); |
585 | return err; | 582 | return err; |
diff --git a/fs/nilfs2/inode.c b/fs/nilfs2/inode.c index 3a6967d14e1c..f61f80c7f7cc 100644 --- a/fs/nilfs2/inode.c +++ b/fs/nilfs2/inode.c | |||
@@ -317,9 +317,9 @@ struct inode *nilfs_new_inode(struct inode *dir, int mode) | |||
317 | 317 | ||
318 | ii->i_flags = NILFS_I(dir)->i_flags; | 318 | ii->i_flags = NILFS_I(dir)->i_flags; |
319 | if (S_ISLNK(mode)) | 319 | if (S_ISLNK(mode)) |
320 | ii->i_flags &= ~(NILFS_IMMUTABLE_FL | NILFS_APPEND_FL); | 320 | ii->i_flags &= ~(FS_IMMUTABLE_FL | FS_APPEND_FL); |
321 | if (!S_ISDIR(mode)) | 321 | if (!S_ISDIR(mode)) |
322 | ii->i_flags &= ~NILFS_DIRSYNC_FL; | 322 | ii->i_flags &= ~FS_DIRSYNC_FL; |
323 | 323 | ||
324 | /* ii->i_file_acl = 0; */ | 324 | /* ii->i_file_acl = 0; */ |
325 | /* ii->i_dir_acl = 0; */ | 325 | /* ii->i_dir_acl = 0; */ |
@@ -359,17 +359,17 @@ void nilfs_set_inode_flags(struct inode *inode) | |||
359 | 359 | ||
360 | inode->i_flags &= ~(S_SYNC | S_APPEND | S_IMMUTABLE | S_NOATIME | | 360 | inode->i_flags &= ~(S_SYNC | S_APPEND | S_IMMUTABLE | S_NOATIME | |
361 | S_DIRSYNC); | 361 | S_DIRSYNC); |
362 | if (flags & NILFS_SYNC_FL) | 362 | if (flags & FS_SYNC_FL) |
363 | inode->i_flags |= S_SYNC; | 363 | inode->i_flags |= S_SYNC; |
364 | if (flags & NILFS_APPEND_FL) | 364 | if (flags & FS_APPEND_FL) |
365 | inode->i_flags |= S_APPEND; | 365 | inode->i_flags |= S_APPEND; |
366 | if (flags & NILFS_IMMUTABLE_FL) | 366 | if (flags & FS_IMMUTABLE_FL) |
367 | inode->i_flags |= S_IMMUTABLE; | 367 | inode->i_flags |= S_IMMUTABLE; |
368 | #ifndef NILFS_ATIME_DISABLE | 368 | #ifndef NILFS_ATIME_DISABLE |
369 | if (flags & NILFS_NOATIME_FL) | 369 | if (flags & FS_NOATIME_FL) |
370 | #endif | 370 | #endif |
371 | inode->i_flags |= S_NOATIME; | 371 | inode->i_flags |= S_NOATIME; |
372 | if (flags & NILFS_DIRSYNC_FL) | 372 | if (flags & FS_DIRSYNC_FL) |
373 | inode->i_flags |= S_DIRSYNC; | 373 | inode->i_flags |= S_DIRSYNC; |
374 | mapping_set_gfp_mask(inode->i_mapping, | 374 | mapping_set_gfp_mask(inode->i_mapping, |
375 | mapping_gfp_mask(inode->i_mapping) & ~__GFP_FS); | 375 | mapping_gfp_mask(inode->i_mapping) & ~__GFP_FS); |