From: Dave Kleikamp <dave.kleikamp@oracle.com>
Date: Mon, 20 Jun 2011 22:53:24 +0000 (-0500)
Subject: jfs: agstart field must be 64 bits
X-Git-Tag: firefly_0821_release~3680^2~5199^2
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ecc90462b428db2ad2ee5081c45496ed10f3a633;p=firefly-linux-kernel-4.4.55.git

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>
---

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 {
 	short	btindex;	/* btpage entry index*/
 	struct inode *ipimap;	/* inode map			*/
 	unsigned long cflag;	/* commit flags		*/
-	long	agstart;	/* agstart of the containing IAG */
+	u64	agstart;	/* agstart of the containing IAG */
 	u16	bxflag;		/* xflag of pseudo buffer?	*/
 	unchar	pad;
 	signed char active_ag;	/* ag currently allocating from	*/