diff options
author | Christoph Hellwig <hch@infradead.org> | 2011-04-24 19:02:58 +0000 |
---|---|---|
committer | Alex Elder <aelder@sgi.com> | 2011-04-28 13:27:06 -0500 |
commit | 1a18a29478a38e5df382cd299f636187fde773ab (patch) | |
tree | 8637c41c27c9b992026a91859394d3e3e86ff777 /fs/xfs | |
parent | 45c51b99943c4c74165b19dc2f96e8ba93bdecb9 (diff) | |
download | linux-3.10-1a18a29478a38e5df382cd299f636187fde773ab.tar.gz linux-3.10-1a18a29478a38e5df382cd299f636187fde773ab.tar.bz2 linux-3.10-1a18a29478a38e5df382cd299f636187fde773ab.zip |
xfs: fix compiler warning in xfs_trace.h
xfs_fsblock_t may be a 32-bit type on if XFS_BIG_BLKNOS is not set,
make sure to cast a value of this type to an unsigned long long
before using the ll printk qualifier.
Reported-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Alex Elder <aelder@sgi.com>
Diffstat (limited to 'fs/xfs')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_trace.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/linux-2.6/xfs_trace.h b/fs/xfs/linux-2.6/xfs_trace.h index 37df9ad7fd1..d48b7a579ae 100644 --- a/fs/xfs/linux-2.6/xfs_trace.h +++ b/fs/xfs/linux-2.6/xfs_trace.h @@ -1391,7 +1391,7 @@ DECLARE_EVENT_CLASS(xfs_alloc_class, __entry->wasfromfl, __entry->isfl, __entry->userdata, - __entry->firstblock) + (unsigned long long)__entry->firstblock) ) #define DEFINE_ALLOC_EVENT(name) \ |