aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorDave Kleikamp <dave.kleikamp@oracle.com>2011-06-20 18:53:24 -0400
committerDave Kleikamp <dave.kleikamp@oracle.com>2011-06-20 18:53:24 -0400
commitecc90462b428db2ad2ee5081c45496ed10f3a633 (patch)
tree58421f6cb08fcd3375f2fa3af13fccc9b0f0ee97 /fs
parentd31b53e3cd069e02290ed8a648aa8c7618d6fe77 (diff)
jfs: agstart field must be 64 bits
The previous patch added the agstart field to jfs_ip, but declared it a long. We need to make sure its 64 bits on every platform. Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/jfs/jfs_incore.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jfs/jfs_incore.h b/fs/jfs/jfs_incore.h
index 5097839b7709..584a4a1a6e81 100644
--- a/fs/jfs/jfs_incore.h
+++ b/fs/jfs/jfs_incore.h
@@ -50,7 +50,7 @@ struct jfs_inode_info {
50 short btindex; /* btpage entry index*/ 50 short btindex; /* btpage entry index*/
51 struct inode *ipimap; /* inode map */ 51 struct inode *ipimap; /* inode map */
52 unsigned long cflag; /* commit flags */ 52 unsigned long cflag; /* commit flags */
53 long agstart; /* agstart of the containing IAG */ 53 u64 agstart; /* agstart of the containing IAG */
54 u16 bxflag; /* xflag of pseudo buffer? */ 54 u16 bxflag; /* xflag of pseudo buffer? */
55 unchar pad; 55 unchar pad;
56 signed char active_ag; /* ag currently allocating from */ 56 signed char active_ag; /* ag currently allocating from */