Commit 53723704 authored by Dave Kleikamp's avatar Dave Kleikamp

JFS: jfs_dmap build fix

fs/jfs/jfs_dmap.c: In function `dbAllocNear':
fs/jfs/jfs_dmap.c:1343: parse error before `*'
fs/jfs/jfs_dmap.c:1357: `leaf' undeclared (first use in this function)
fs/jfs/jfs_dmap.c:1357: (Each undeclared identifier is reported only once
fs/jfs/jfs_dmap.c:1357: for each function it appears in.)
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarDave Kleikamp <shaggy@austin.ibm.com>
parent 57680367
...@@ -1333,6 +1333,7 @@ dbAllocNear(struct bmap * bmp, ...@@ -1333,6 +1333,7 @@ dbAllocNear(struct bmap * bmp,
struct dmap * dp, s64 blkno, int nblocks, int l2nb, s64 * results) struct dmap * dp, s64 blkno, int nblocks, int l2nb, s64 * results)
{ {
int word, lword, rc; int word, lword, rc;
s8 *leaf;
if (dp->tree.leafidx != cpu_to_le32(LEAFIND)) { if (dp->tree.leafidx != cpu_to_le32(LEAFIND)) {
jfs_error(bmp->db_ipbmap->i_sb, jfs_error(bmp->db_ipbmap->i_sb,
...@@ -1340,7 +1341,7 @@ dbAllocNear(struct bmap * bmp, ...@@ -1340,7 +1341,7 @@ dbAllocNear(struct bmap * bmp,
return -EIO; return -EIO;
} }
s8 *leaf = dp->tree.stree + le32_to_cpu(dp->tree.leafidx); leaf = dp->tree.stree + le32_to_cpu(dp->tree.leafidx);
/* determine the word within the dmap that holds the hint /* determine the word within the dmap that holds the hint
* (i.e. blkno). also, determine the last word in the dmap * (i.e. blkno). also, determine the last word in the dmap
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment