Signed-off-by: Mark Fasheh <mfas...@suse.de>
---
 fs/qnx4/dir.c   | 2 +-
 fs/qnx4/inode.c | 4 ++--
 fs/qnx4/namei.c | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/fs/qnx4/dir.c b/fs/qnx4/dir.c
index a6ee23aadd28..c0e764ce79dd 100644
--- a/fs/qnx4/dir.c
+++ b/fs/qnx4/dir.c
@@ -31,7 +31,7 @@ static int qnx4_readdir(struct file *file, struct dir_context 
*ctx)
 
        while (ctx->pos < inode->i_size) {
                blknum = qnx4_block_map(inode, ctx->pos >> 
QNX4_BLOCK_SIZE_BITS);
-               bh = sb_bread(inode->i_sb, blknum);
+               bh = sb_bread(inode_sb(inode), blknum);
                if (bh == NULL) {
                        printk(KERN_ERR "qnx4_readdir: bread failed (%ld)\n", 
blknum);
                        return 0;
diff --git a/fs/qnx4/inode.c b/fs/qnx4/inode.c
index 3d46fe302fcb..2b5e5b18e084 100644
--- a/fs/qnx4/inode.c
+++ b/fs/qnx4/inode.c
@@ -60,7 +60,7 @@ static int qnx4_get_block( struct inode *inode, sector_t 
iblock, struct buffer_h
        phys = qnx4_block_map( inode, iblock );
        if ( phys ) {
                // logical block is before EOF
-               map_bh(bh, inode->i_sb, phys);
+               map_bh(bh, inode_sb(inode), phys);
        }
        return 0;
 }
@@ -94,7 +94,7 @@ unsigned long qnx4_block_map( struct inode *inode, long 
iblock )
                while ( --nxtnt > 0 ) {
                        if ( ix == 0 ) {
                                // read next xtnt block.
-                               bh = sb_bread(inode->i_sb, i_xblk - 1);
+                               bh = sb_bread(inode_sb(inode), i_xblk - 1);
                                if ( !bh ) {
                                        QNX4DEBUG((KERN_ERR "qnx4: I/O error 
reading xtnt block [%ld])\n", i_xblk - 1));
                                        return -EIO;
diff --git a/fs/qnx4/namei.c b/fs/qnx4/namei.c
index eca27878079d..3a84a8f6c6a7 100644
--- a/fs/qnx4/namei.c
+++ b/fs/qnx4/namei.c
@@ -67,7 +67,7 @@ static struct buffer_head *qnx4_find_entry(int len, struct 
inode *dir,
                if (!bh) {
                        block = qnx4_block_map(dir, blkofs);
                        if (block)
-                               bh = sb_bread(dir->i_sb, block);
+                               bh = sb_bread(inode_sb(dir), block);
                        if (!bh) {
                                blkofs++;
                                continue;
@@ -113,7 +113,7 @@ struct dentry * qnx4_lookup(struct inode *dir, struct 
dentry *dentry, unsigned i
        }
        brelse(bh);
 
-       foundinode = qnx4_iget(dir->i_sb, ino);
+       foundinode = qnx4_iget(inode_sb(dir), ino);
        if (IS_ERR(foundinode)) {
                QNX4DEBUG((KERN_ERR "qnx4: lookup->iget -> error %ld\n",
                           PTR_ERR(foundinode)));
-- 
2.15.1

--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to