diff options
author | Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> | 2009-11-13 16:30:41 +0900 |
---|---|---|
committer | Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> | 2009-11-20 10:05:50 +0900 |
commit | 75f65edfcc4a19d14fc8ab860846fad070c8db49 (patch) | |
tree | e0edfb5767630f95620e5e7b670e0871e1d51e7b /fs/nilfs2/gcinode.c | |
parent | 45f4910bc0bb904bcf53aa04ee1b807abe1387a6 (diff) | |
download | linux-3.10-75f65edfcc4a19d14fc8ab860846fad070c8db49.tar.gz linux-3.10-75f65edfcc4a19d14fc8ab860846fad070c8db49.tar.bz2 linux-3.10-75f65edfcc4a19d14fc8ab860846fad070c8db49.zip |
nilfs2: remove newblk argument from nilfs_btnode_submit_block
This removes the obsolete argument from nilfs_btnode_submit_block().
This will complete separating a create function of btree node.
Signed-off-by: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Diffstat (limited to 'fs/nilfs2/gcinode.c')
-rw-r--r-- | fs/nilfs2/gcinode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nilfs2/gcinode.c b/fs/nilfs2/gcinode.c index 67d2099475b..e16a6664dfa 100644 --- a/fs/nilfs2/gcinode.c +++ b/fs/nilfs2/gcinode.c @@ -149,7 +149,7 @@ int nilfs_gccache_submit_read_node(struct inode *inode, sector_t pbn, __u64 vbn, struct buffer_head **out_bh) { int ret = nilfs_btnode_submit_block(&NILFS_I(inode)->i_btnode_cache, - vbn ? : pbn, pbn, out_bh, 0); + vbn ? : pbn, pbn, out_bh); if (ret == -EEXIST) /* internal code (cache hit) */ ret = 0; return ret; |