Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 47621
b: refs/heads/master
c: 3e4fdaf
h: refs/heads/master
i:
  47619: e444084
v: v3
  • Loading branch information
Dmitriy Monakhov authored and Linus Torvalds committed Feb 11, 2007
1 parent 26e10f8 commit 5cbd5b4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 501b9ebf43f9973c3e246c8fbd17144d81a989ef
refs/heads/master: 3e4fdaf8aebe489e8e59826fdf78cb64356d2ad0
4 changes: 2 additions & 2 deletions trunk/fs/ext3/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -947,7 +947,7 @@ int ext3_get_blocks_handle(handle_t *handle, struct inode *inode,
static int ext3_get_block(struct inode *inode, sector_t iblock,
struct buffer_head *bh_result, int create)
{
handle_t *handle = journal_current_handle();
handle_t *handle = ext3_journal_current_handle();
int ret = 0;
unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;

Expand Down Expand Up @@ -1717,7 +1717,7 @@ static ssize_t ext3_direct_IO(int rw, struct kiocb *iocb,
/*
* Reacquire the handle: ext3_get_block() can restart the transaction
*/
handle = journal_current_handle();
handle = ext3_journal_current_handle();

out_stop:
if (handle) {
Expand Down
4 changes: 2 additions & 2 deletions trunk/fs/ext4/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -946,7 +946,7 @@ int ext4_get_blocks_handle(handle_t *handle, struct inode *inode,
static int ext4_get_block(struct inode *inode, sector_t iblock,
struct buffer_head *bh_result, int create)
{
handle_t *handle = journal_current_handle();
handle_t *handle = ext4_journal_current_handle();
int ret = 0;
unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;

Expand Down Expand Up @@ -1716,7 +1716,7 @@ static ssize_t ext4_direct_IO(int rw, struct kiocb *iocb,
/*
* Reacquire the handle: ext4_get_block() can restart the transaction
*/
handle = journal_current_handle();
handle = ext4_journal_current_handle();

out_stop:
if (handle) {
Expand Down

0 comments on commit 5cbd5b4

Please sign in to comment.