mirror of
https://github.com/S3NEO/android_kernel_samsung_msm8226.git
synced 2024-11-07 03:47:13 +00:00
[PATCH] jbd layer function called instead of fs specific one
jbd function called instead of fs specific one. Signed-off-by: Dmitriy Monakhov <dmonakhov@openvz.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
501b9ebf43
commit
3e4fdaf8ae
2 changed files with 4 additions and 4 deletions
|
@ -947,7 +947,7 @@ out:
|
|||
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;
|
||||
|
||||
|
@ -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) {
|
||||
|
|
|
@ -946,7 +946,7 @@ out:
|
|||
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;
|
||||
|
||||
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue