diff options
Diffstat (limited to 'fs/nilfs2/btnode.c')
| -rw-r--r-- | fs/nilfs2/btnode.c | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/fs/nilfs2/btnode.c b/fs/nilfs2/btnode.c index 0a6834bb278e..f78ab1044d1d 100644 --- a/fs/nilfs2/btnode.c +++ b/fs/nilfs2/btnode.c | |||
| @@ -96,7 +96,8 @@ nilfs_btnode_create_block(struct address_space *btnc, __u64 blocknr) | |||
| 96 | } | 96 | } |
| 97 | 97 | ||
| 98 | int nilfs_btnode_submit_block(struct address_space *btnc, __u64 blocknr, | 98 | int nilfs_btnode_submit_block(struct address_space *btnc, __u64 blocknr, |
| 99 | sector_t pblocknr, struct buffer_head **pbh) | 99 | sector_t pblocknr, int mode, |
| 100 | struct buffer_head **pbh, sector_t *submit_ptr) | ||
| 100 | { | 101 | { |
| 101 | struct buffer_head *bh; | 102 | struct buffer_head *bh; |
| 102 | struct inode *inode = NILFS_BTNC_I(btnc); | 103 | struct inode *inode = NILFS_BTNC_I(btnc); |
| @@ -127,7 +128,16 @@ int nilfs_btnode_submit_block(struct address_space *btnc, __u64 blocknr, | |||
| 127 | } | 128 | } |
| 128 | } | 129 | } |
| 129 | } | 130 | } |
| 130 | lock_buffer(bh); | 131 | |
| 132 | if (mode == READA) { | ||
| 133 | if (pblocknr != *submit_ptr + 1 || !trylock_buffer(bh)) { | ||
| 134 | err = -EBUSY; /* internal code */ | ||
| 135 | brelse(bh); | ||
| 136 | goto out_locked; | ||
| 137 | } | ||
| 138 | } else { /* mode == READ */ | ||
| 139 | lock_buffer(bh); | ||
| 140 | } | ||
| 131 | if (buffer_uptodate(bh)) { | 141 | if (buffer_uptodate(bh)) { |
| 132 | unlock_buffer(bh); | 142 | unlock_buffer(bh); |
| 133 | err = -EEXIST; /* internal code */ | 143 | err = -EEXIST; /* internal code */ |
| @@ -138,8 +148,9 @@ int nilfs_btnode_submit_block(struct address_space *btnc, __u64 blocknr, | |||
| 138 | bh->b_blocknr = pblocknr; /* set block address for read */ | 148 | bh->b_blocknr = pblocknr; /* set block address for read */ |
| 139 | bh->b_end_io = end_buffer_read_sync; | 149 | bh->b_end_io = end_buffer_read_sync; |
| 140 | get_bh(bh); | 150 | get_bh(bh); |
| 141 | submit_bh(READ, bh); | 151 | submit_bh(mode, bh); |
| 142 | bh->b_blocknr = blocknr; /* set back to the given block address */ | 152 | bh->b_blocknr = blocknr; /* set back to the given block address */ |
| 153 | *submit_ptr = pblocknr; | ||
| 143 | err = 0; | 154 | err = 0; |
| 144 | found: | 155 | found: |
| 145 | *pbh = bh; | 156 | *pbh = bh; |
