diff options
| -rw-r--r-- | fs/nilfs2/cpfile.h | 2 | ||||
| -rw-r--r-- | fs/nilfs2/dat.h | 1 | ||||
| -rw-r--r-- | fs/nilfs2/ifile.h | 1 | ||||
| -rw-r--r-- | fs/nilfs2/mdt.c | 5 | ||||
| -rw-r--r-- | fs/nilfs2/mdt.h | 3 | ||||
| -rw-r--r-- | fs/nilfs2/sufile.h | 1 | ||||
| -rw-r--r-- | fs/nilfs2/super.c | 3 | ||||
| -rw-r--r-- | fs/nilfs2/the_nilfs.c | 12 |
8 files changed, 9 insertions, 19 deletions
diff --git a/fs/nilfs2/cpfile.h b/fs/nilfs2/cpfile.h index 788a45950197..debea896e701 100644 --- a/fs/nilfs2/cpfile.h +++ b/fs/nilfs2/cpfile.h | |||
| @@ -27,8 +27,6 @@ | |||
| 27 | #include <linux/buffer_head.h> | 27 | #include <linux/buffer_head.h> |
| 28 | #include <linux/nilfs2_fs.h> | 28 | #include <linux/nilfs2_fs.h> |
| 29 | 29 | ||
| 30 | #define NILFS_CPFILE_GFP NILFS_MDT_GFP | ||
| 31 | |||
| 32 | 30 | ||
| 33 | int nilfs_cpfile_get_checkpoint(struct inode *, __u64, int, | 31 | int nilfs_cpfile_get_checkpoint(struct inode *, __u64, int, |
| 34 | struct nilfs_checkpoint **, | 32 | struct nilfs_checkpoint **, |
diff --git a/fs/nilfs2/dat.h b/fs/nilfs2/dat.h index 4b0b47ea85ed..91dc3372a39a 100644 --- a/fs/nilfs2/dat.h +++ b/fs/nilfs2/dat.h | |||
| @@ -27,7 +27,6 @@ | |||
| 27 | #include <linux/buffer_head.h> | 27 | #include <linux/buffer_head.h> |
| 28 | #include <linux/fs.h> | 28 | #include <linux/fs.h> |
| 29 | 29 | ||
| 30 | #define NILFS_DAT_GFP NILFS_MDT_GFP | ||
| 31 | 30 | ||
| 32 | struct nilfs_palloc_req; | 31 | struct nilfs_palloc_req; |
| 33 | 32 | ||
diff --git a/fs/nilfs2/ifile.h b/fs/nilfs2/ifile.h index 5d30a35679b5..ecc3ba76db47 100644 --- a/fs/nilfs2/ifile.h +++ b/fs/nilfs2/ifile.h | |||
| @@ -31,7 +31,6 @@ | |||
| 31 | #include "mdt.h" | 31 | #include "mdt.h" |
| 32 | #include "alloc.h" | 32 | #include "alloc.h" |
| 33 | 33 | ||
| 34 | #define NILFS_IFILE_GFP NILFS_MDT_GFP | ||
| 35 | 34 | ||
| 36 | static inline struct nilfs_inode * | 35 | static inline struct nilfs_inode * |
| 37 | nilfs_ifile_map_inode(struct inode *ifile, ino_t ino, struct buffer_head *ibh) | 36 | nilfs_ifile_map_inode(struct inode *ifile, ino_t ino, struct buffer_head *ibh) |
diff --git a/fs/nilfs2/mdt.c b/fs/nilfs2/mdt.c index 1ae8d56052c3..9cb831899119 100644 --- a/fs/nilfs2/mdt.c +++ b/fs/nilfs2/mdt.c | |||
| @@ -513,9 +513,10 @@ nilfs_mdt_new_common(struct the_nilfs *nilfs, struct super_block *sb, | |||
| 513 | } | 513 | } |
| 514 | 514 | ||
| 515 | struct inode *nilfs_mdt_new(struct the_nilfs *nilfs, struct super_block *sb, | 515 | struct inode *nilfs_mdt_new(struct the_nilfs *nilfs, struct super_block *sb, |
| 516 | ino_t ino, gfp_t gfp_mask) | 516 | ino_t ino) |
| 517 | { | 517 | { |
| 518 | struct inode *inode = nilfs_mdt_new_common(nilfs, sb, ino, gfp_mask); | 518 | struct inode *inode = nilfs_mdt_new_common(nilfs, sb, ino, |
| 519 | NILFS_MDT_GFP); | ||
| 519 | 520 | ||
| 520 | if (!inode) | 521 | if (!inode) |
| 521 | return NULL; | 522 | return NULL; |
diff --git a/fs/nilfs2/mdt.h b/fs/nilfs2/mdt.h index df683e0bca6a..431599733c9b 100644 --- a/fs/nilfs2/mdt.h +++ b/fs/nilfs2/mdt.h | |||
| @@ -74,8 +74,7 @@ int nilfs_mdt_forget_block(struct inode *, unsigned long); | |||
| 74 | int nilfs_mdt_mark_block_dirty(struct inode *, unsigned long); | 74 | int nilfs_mdt_mark_block_dirty(struct inode *, unsigned long); |
| 75 | int nilfs_mdt_fetch_dirty(struct inode *); | 75 | int nilfs_mdt_fetch_dirty(struct inode *); |
| 76 | 76 | ||
| 77 | struct inode *nilfs_mdt_new(struct the_nilfs *, struct super_block *, ino_t, | 77 | struct inode *nilfs_mdt_new(struct the_nilfs *, struct super_block *, ino_t); |
| 78 | gfp_t); | ||
| 79 | struct inode *nilfs_mdt_new_common(struct the_nilfs *, struct super_block *, | 78 | struct inode *nilfs_mdt_new_common(struct the_nilfs *, struct super_block *, |
| 80 | ino_t, gfp_t); | 79 | ino_t, gfp_t); |
| 81 | void nilfs_mdt_destroy(struct inode *); | 80 | void nilfs_mdt_destroy(struct inode *); |
diff --git a/fs/nilfs2/sufile.h b/fs/nilfs2/sufile.h index a2c4d76c3366..0e99e5c0bd0f 100644 --- a/fs/nilfs2/sufile.h +++ b/fs/nilfs2/sufile.h | |||
| @@ -28,7 +28,6 @@ | |||
| 28 | #include <linux/nilfs2_fs.h> | 28 | #include <linux/nilfs2_fs.h> |
| 29 | #include "mdt.h" | 29 | #include "mdt.h" |
| 30 | 30 | ||
| 31 | #define NILFS_SUFILE_GFP NILFS_MDT_GFP | ||
| 32 | 31 | ||
| 33 | static inline unsigned long nilfs_sufile_get_nsegments(struct inode *sufile) | 32 | static inline unsigned long nilfs_sufile_get_nsegments(struct inode *sufile) |
| 34 | { | 33 | { |
diff --git a/fs/nilfs2/super.c b/fs/nilfs2/super.c index 50284add7880..55f3d6b60732 100644 --- a/fs/nilfs2/super.c +++ b/fs/nilfs2/super.c | |||
| @@ -363,8 +363,7 @@ int nilfs_attach_checkpoint(struct nilfs_sb_info *sbi, __u64 cno) | |||
| 363 | list_add(&sbi->s_list, &nilfs->ns_supers); | 363 | list_add(&sbi->s_list, &nilfs->ns_supers); |
| 364 | up_write(&nilfs->ns_super_sem); | 364 | up_write(&nilfs->ns_super_sem); |
| 365 | 365 | ||
| 366 | sbi->s_ifile = nilfs_mdt_new( | 366 | sbi->s_ifile = nilfs_mdt_new(nilfs, sbi->s_super, NILFS_IFILE_INO); |
| 367 | nilfs, sbi->s_super, NILFS_IFILE_INO, NILFS_IFILE_GFP); | ||
| 368 | if (!sbi->s_ifile) | 367 | if (!sbi->s_ifile) |
| 369 | return -ENOMEM; | 368 | return -ENOMEM; |
| 370 | 369 | ||
diff --git a/fs/nilfs2/the_nilfs.c b/fs/nilfs2/the_nilfs.c index 0c4573653b87..d4168e269c5d 100644 --- a/fs/nilfs2/the_nilfs.c +++ b/fs/nilfs2/the_nilfs.c | |||
| @@ -187,23 +187,19 @@ static int nilfs_load_super_root(struct the_nilfs *nilfs, | |||
| 187 | inode_size = nilfs->ns_inode_size; | 187 | inode_size = nilfs->ns_inode_size; |
| 188 | 188 | ||
| 189 | err = -ENOMEM; | 189 | err = -ENOMEM; |
| 190 | nilfs->ns_dat = nilfs_mdt_new( | 190 | nilfs->ns_dat = nilfs_mdt_new(nilfs, NULL, NILFS_DAT_INO); |
| 191 | nilfs, NULL, NILFS_DAT_INO, NILFS_DAT_GFP); | ||
| 192 | if (unlikely(!nilfs->ns_dat)) | 191 | if (unlikely(!nilfs->ns_dat)) |
| 193 | goto failed; | 192 | goto failed; |
| 194 | 193 | ||
| 195 | nilfs->ns_gc_dat = nilfs_mdt_new( | 194 | nilfs->ns_gc_dat = nilfs_mdt_new(nilfs, NULL, NILFS_DAT_INO); |
| 196 | nilfs, NULL, NILFS_DAT_INO, NILFS_DAT_GFP); | ||
| 197 | if (unlikely(!nilfs->ns_gc_dat)) | 195 | if (unlikely(!nilfs->ns_gc_dat)) |
| 198 | goto failed_dat; | 196 | goto failed_dat; |
| 199 | 197 | ||
| 200 | nilfs->ns_cpfile = nilfs_mdt_new( | 198 | nilfs->ns_cpfile = nilfs_mdt_new(nilfs, NULL, NILFS_CPFILE_INO); |
| 201 | nilfs, NULL, NILFS_CPFILE_INO, NILFS_CPFILE_GFP); | ||
| 202 | if (unlikely(!nilfs->ns_cpfile)) | 199 | if (unlikely(!nilfs->ns_cpfile)) |
| 203 | goto failed_gc_dat; | 200 | goto failed_gc_dat; |
| 204 | 201 | ||
| 205 | nilfs->ns_sufile = nilfs_mdt_new( | 202 | nilfs->ns_sufile = nilfs_mdt_new(nilfs, NULL, NILFS_SUFILE_INO); |
| 206 | nilfs, NULL, NILFS_SUFILE_INO, NILFS_SUFILE_GFP); | ||
| 207 | if (unlikely(!nilfs->ns_sufile)) | 203 | if (unlikely(!nilfs->ns_sufile)) |
| 208 | goto failed_cpfile; | 204 | goto failed_cpfile; |
| 209 | 205 | ||
