]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - fs/gfs2/bmap.c
[GFS2] Remove uneeded endian conversion
[karo-tx-linux.git] / fs / gfs2 / bmap.c
index 57caad7bc0d5d45b37645702807fbcd80e13d807..cc57f2ecd21974a7121ccaaf35b184c148711558 100644 (file)
@@ -14,9 +14,9 @@
 #include <linux/buffer_head.h>
 #include <linux/gfs2_ondisk.h>
 #include <linux/crc32.h>
+#include <linux/lm_interface.h>
 
 #include "gfs2.h"
-#include "lm_interface.h"
 #include "incore.h"
 #include "bmap.h"
 #include "glock.h"
@@ -121,6 +121,7 @@ static int gfs2_unstuffer_page(struct gfs2_inode *ip, struct buffer_head *dibh,
 int gfs2_unstuff_dinode(struct gfs2_inode *ip, struct page *page)
 {
        struct buffer_head *bh, *dibh;
+       struct gfs2_dinode *di;
        u64 block = 0;
        int isdir = gfs2_is_dir(ip);
        int error;
@@ -130,7 +131,7 @@ int gfs2_unstuff_dinode(struct gfs2_inode *ip, struct page *page)
        error = gfs2_meta_inode_buffer(ip, &dibh);
        if (error)
                goto out;
-               
+
        if (ip->i_di.di_size) {
                /* Get a free block, fill it with the stuffed data,
                   and write it out to disk */
@@ -141,8 +142,7 @@ int gfs2_unstuff_dinode(struct gfs2_inode *ip, struct page *page)
                        error = gfs2_dir_get_new_buffer(ip, block, &bh);
                        if (error)
                                goto out_brelse;
-                       gfs2_buffer_copy_tail(bh,
-                                             sizeof(struct gfs2_meta_header),
+                       gfs2_buffer_copy_tail(bh, sizeof(struct gfs2_meta_header),
                                              dibh, sizeof(struct gfs2_dinode));
                        brelse(bh);
                } else {
@@ -157,18 +157,17 @@ int gfs2_unstuff_dinode(struct gfs2_inode *ip, struct page *page)
        /*  Set up the pointer to the new block  */
 
        gfs2_trans_add_bh(ip->i_gl, dibh, 1);
-
+       di = (struct gfs2_dinode *)dibh->b_data;
        gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
 
        if (ip->i_di.di_size) {
-               *(u64 *)(dibh->b_data + sizeof(struct gfs2_dinode)) =
-                       cpu_to_be64(block);
+               *(__be64 *)(di + 1) = cpu_to_be64(block);
                ip->i_di.di_blocks++;
+               di->di_blocks = cpu_to_be64(ip->i_di.di_blocks);
        }
 
        ip->i_di.di_height = 1;
-
-       gfs2_dinode_out(&ip->i_di, dibh->b_data);
+       di->di_height = cpu_to_be16(1);
 
 out_brelse:
        brelse(dibh);
@@ -229,6 +228,7 @@ static int build_height(struct inode *inode, unsigned height)
        unsigned new_height = height - ip->i_di.di_height;
        struct buffer_head *dibh;
        struct buffer_head *blocks[GFS2_MAX_META_HEIGHT];
+       struct gfs2_dinode *di;
        int error;
        u64 *bp;
        u64 bn;
@@ -246,7 +246,7 @@ static int build_height(struct inode *inode, unsigned height)
                blocks[n] = gfs2_meta_new(ip->i_gl, bn);
                gfs2_trans_add_bh(ip->i_gl, blocks[n], 1);
        }
-       
+
        n = 0;
        bn = blocks[0]->b_blocknr;
        if (new_height > 1) {
@@ -267,12 +267,13 @@ static int build_height(struct inode *inode, unsigned height)
                              dibh, sizeof(struct gfs2_dinode));
        brelse(blocks[n]);
        gfs2_trans_add_bh(ip->i_gl, dibh, 1);
+       di = (struct gfs2_dinode *)dibh->b_data;
        gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
-       bp = (u64 *)(dibh->b_data + sizeof(struct gfs2_dinode));
-       *bp = cpu_to_be64(bn);
+       *(__be64 *)(di + 1) = cpu_to_be64(bn);
        ip->i_di.di_height += new_height;
        ip->i_di.di_blocks += new_height;
-       gfs2_dinode_out(&ip->i_di, dibh->b_data);
+       di->di_height = cpu_to_be16(ip->i_di.di_height);
+       di->di_blocks = cpu_to_be64(ip->i_di.di_blocks);
        brelse(dibh);
        return error;
 }
@@ -423,8 +424,7 @@ static int lookup_block(struct gfs2_inode *ip, struct buffer_head *bh,
  * gfs2_block_pointers - Map a block from an inode to a disk block
  * @inode: The inode
  * @lblock: The logical block number
- * @new: Value/Result argument (1 = may create/did create new blocks)
- * @boundary: gets set if we've hit a block boundary
+ * @map_bh: The bh to be mapped
  * @mp: metapath to use
  *
  * Find the block number on the current device which corresponds to an
@@ -433,37 +433,37 @@ static int lookup_block(struct gfs2_inode *ip, struct buffer_head *bh,
  * Returns: errno
  */
 
-static struct buffer_head *gfs2_block_pointers(struct inode *inode, u64 lblock,
-                                              int *new, u64 *dblock,
-                                              int *boundary,
-                                              struct metapath *mp)
+static int gfs2_block_pointers(struct inode *inode, u64 lblock, int create,
+                              struct buffer_head *bh_map, struct metapath *mp,
+                              unsigned int maxlen)
 {
        struct gfs2_inode *ip = GFS2_I(inode);
        struct gfs2_sbd *sdp = GFS2_SB(inode);
        struct buffer_head *bh;
-       int create = *new;
        unsigned int bsize;
        unsigned int height;
        unsigned int end_of_metadata;
        unsigned int x;
        int error = 0;
+       int new = 0;
+       u64 dblock = 0;
+       int boundary;
 
-       *new = 0;
-       *dblock = 0;
+       BUG_ON(maxlen == 0);
 
        if (gfs2_assert_warn(sdp, !gfs2_is_stuffed(ip)))
-               goto out;
+               return 0;
 
        bsize = gfs2_is_dir(ip) ? sdp->sd_jbsize : sdp->sd_sb.sb_bsize;
 
        height = calc_tree_height(ip, (lblock + 1) * bsize);
        if (ip->i_di.di_height < height) {
                if (!create)
-                       goto out;
+                       return 0;
 
                error = build_height(inode, height);
                if (error)
-                       goto out;
+                       return error;
        }
 
        find_metapath(ip, lblock, mp);
@@ -471,32 +471,54 @@ static struct buffer_head *gfs2_block_pointers(struct inode *inode, u64 lblock,
 
        error = gfs2_meta_inode_buffer(ip, &bh);
        if (error)
-               goto out;
+               return error;
 
        for (x = 0; x < end_of_metadata; x++) {
-               lookup_block(ip, bh, x, mp, create, new, dblock);
+               lookup_block(ip, bh, x, mp, create, &new, &dblock);
                brelse(bh);
-               if (!*dblock)
-                       goto out;
+               if (!dblock)
+                       return 0;
 
-               error = gfs2_meta_indirect_buffer(ip, x+1, *dblock, *new, &bh);
+               error = gfs2_meta_indirect_buffer(ip, x+1, dblock, new, &bh);
                if (error)
-                       goto out;
+                       return error;
        }
 
-       *boundary = lookup_block(ip, bh, end_of_metadata, mp, create, new, dblock);
-       if (*new) {
-               struct buffer_head *dibh;
-               error = gfs2_meta_inode_buffer(ip, &dibh);
-               if (!error) {
-                       gfs2_trans_add_bh(ip->i_gl, dibh, 1);
-                       gfs2_dinode_out(&ip->i_di, dibh->b_data);
-                       brelse(dibh);
+       boundary = lookup_block(ip, bh, end_of_metadata, mp, create, &new, &dblock);
+       clear_buffer_mapped(bh_map);
+       clear_buffer_new(bh_map);
+       clear_buffer_boundary(bh_map);
+
+       if (dblock) {
+               map_bh(bh_map, inode->i_sb, dblock);
+               if (boundary)
+                       set_buffer_boundary(bh);
+               if (new) {
+                       struct buffer_head *dibh;
+                       error = gfs2_meta_inode_buffer(ip, &dibh);
+                       if (!error) {
+                               gfs2_trans_add_bh(ip->i_gl, dibh, 1);
+                               gfs2_dinode_out(&ip->i_di, dibh->b_data);
+                               brelse(dibh);
+                       }
+                       set_buffer_new(bh_map);
+                       goto out_brelse;
+               }
+               while(--maxlen && !buffer_boundary(bh_map)) {
+                       u64 eblock;
+
+                       mp->mp_list[end_of_metadata]++;
+                       boundary = lookup_block(ip, bh, end_of_metadata, mp, 0, &new, &eblock);
+                       if (eblock != ++dblock)
+                               break;
+                       bh_map->b_size += (1 << inode->i_blkbits);
+                       if (boundary)
+                               set_buffer_boundary(bh_map);
                }
        }
-       return bh;
-out:
-       return ERR_PTR(error);
+out_brelse:
+       brelse(bh);
+       return 0;
 }
 
 
@@ -518,30 +540,23 @@ static inline void bmap_unlock(struct inode *inode, int create)
                up_read(&ip->i_rw_mutex);
 }
 
-int gfs2_block_map(struct inode *inode, u64 lblock, int *new, u64 *dblock, int *boundary)
+int gfs2_block_map(struct inode *inode, u64 lblock, int create,
+                  struct buffer_head *bh, unsigned int maxlen)
 {
        struct metapath mp;
-       struct buffer_head *bh;
-       int create = *new;
+       int ret;
 
        bmap_lock(inode, create);
-       bh = gfs2_block_pointers(inode, lblock, new, dblock, boundary, &mp);
+       ret = gfs2_block_pointers(inode, lblock, create, bh, &mp, maxlen);
        bmap_unlock(inode, create);
-       if (!bh)
-               return 0;
-       if (IS_ERR(bh))
-               return PTR_ERR(bh);
-       brelse(bh);
-       return 0;
+       return ret;
 }
 
 int gfs2_extent_map(struct inode *inode, u64 lblock, int *new, u64 *dblock, unsigned *extlen)
 {
-       struct gfs2_inode *ip = GFS2_I(inode);
-       struct gfs2_sbd *sdp = GFS2_SB(inode);
        struct metapath mp;
-       struct buffer_head *bh;
-       int boundary;
+       struct buffer_head bh = { .b_state = 0, .b_blocknr = 0, .b_size = 0 };
+       int ret;
        int create = *new;
 
        BUG_ON(!extlen);
@@ -549,30 +564,15 @@ int gfs2_extent_map(struct inode *inode, u64 lblock, int *new, u64 *dblock, unsi
        BUG_ON(!new);
 
        bmap_lock(inode, create);
-       bh = gfs2_block_pointers(inode, lblock, new, dblock, &boundary, &mp);
-       *extlen = 1;
-
-       if (bh != NULL && !IS_ERR(bh) && *dblock != 0 && *new == 0) {
-               u64 tmp_dblock;
-               int tmp_new;
-               unsigned int nptrs;
-               unsigned end_of_metadata = ip->i_di.di_height - 1;
-               
-               nptrs = (end_of_metadata) ? sdp->sd_inptrs : sdp->sd_diptrs;
-               while (++mp.mp_list[end_of_metadata] < nptrs) {
-                       lookup_block(ip, bh, end_of_metadata, &mp, 0, &tmp_new, &tmp_dblock);
-                       if (*dblock + *extlen != tmp_dblock)
-                               break;
-                       ++*extlen;
-               }
-       }
+       ret = gfs2_block_pointers(inode, lblock, create, &bh, &mp, 32);
        bmap_unlock(inode, create);
-       if (!bh)
-               return 0;
-       if (IS_ERR(bh))
-               return PTR_ERR(bh);
-       brelse(bh);
-       return 0;
+       *extlen = bh.b_size >> inode->i_blkbits;
+       *dblock = bh.b_blocknr;
+       if (buffer_new(&bh))
+               *new = 1;
+       else
+               *new = 0;
+       return ret;
 }
 
 /**