Skip to content

Commit

Permalink
jfs: agstart field must be 64 bits
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Dave Kleikamp committed Jun 20, 2011
1 parent d31b53e commit ecc9046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/jfs/jfs_incore.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit ecc9046

Please sign in to comment.