[XFS] make xfs_ino_t an unsigned long long
authorChristoph Hellwig <hch@infradead.org>
Thu, 8 Jan 2009 18:42:25 +0000 (13:42 -0500)
committerLachlan McIlroy <lachlan@redback.melbourne.sgi.com>
Fri, 9 Jan 2009 05:19:14 +0000 (16:19 +1100)
commit058652a37dd9eac18d6b8c1a311137c679de9dae
tree4b9cba6d274980af4ae4a124af8b084bb8ec5572
parent15440319767942a363f282d6585303d3d75088ba
[XFS] make xfs_ino_t an unsigned long long

Currently xfs_ino_t is defined as a u64 which can either be an unsigned
long long or on some 64 bit platforms and unsigned long.  Just making
it and unsigned long long mean's it's still always 64 bits wide, but we
don't need to resort to cases to print it.

Fixes a warning regression on 64 bit powerpc in current git.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <david@fromorbit.com>
Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
fs/xfs/xfs_types.h