[XFS] Fix compiler warnings from older gcc versions wrt printfalike arguments.

SGI-PV: 907752
SGI-Modid: xfs-linux-melb:xfs-kern:24901a

Signed-off-by: Nathan Scott <nathans@sgi.com>

+22 -12
+22 -12
fs/xfs/xfs_iomap.c
··· 551 551 "extent-state : %x \n", 552 552 (ip->i_mount)->m_fsname, 553 553 (long long)ip->i_ino, 554 - ret_imap->br_startblock, ret_imap->br_startoff, 555 - ret_imap->br_blockcount,ret_imap->br_state); 554 + (unsigned long long)ret_imap->br_startblock, 555 + (unsigned long long)ret_imap->br_startoff, 556 + (unsigned long long)ret_imap->br_blockcount, 557 + ret_imap->br_state); 556 558 } 557 559 return 0; 558 560 ··· 724 722 "extent-state : %x \n", 725 723 (ip->i_mount)->m_fsname, 726 724 (long long)ip->i_ino, 727 - ret_imap->br_startblock, ret_imap->br_startoff, 728 - ret_imap->br_blockcount,ret_imap->br_state); 725 + (unsigned long long)ret_imap->br_startblock, 726 + (unsigned long long)ret_imap->br_startoff, 727 + (unsigned long long)ret_imap->br_blockcount, 728 + ret_imap->br_state); 729 729 } 730 730 731 731 *ret_imap = imap[0]; ··· 858 854 */ 859 855 860 856 for (i = 0; i < nimaps; i++) { 861 - if ( !(io->io_flags & XFS_IOCORE_RT) && 862 - !imap[i].br_startblock) { 857 + if (!(io->io_flags & XFS_IOCORE_RT) && 858 + !imap[i].br_startblock) { 863 859 cmn_err(CE_PANIC,"Access to block zero: " 864 860 "fs <%s> inode: %lld " 865 - "start_block : %llx start_off : %llx " 861 + "start_block : %llx start_off : %llx " 866 862 "blkcnt : %llx extent-state : %x \n", 867 863 (ip->i_mount)->m_fsname, 868 864 (long long)ip->i_ino, 869 - imap[i].br_startblock, 870 - imap[i].br_startoff, 871 - imap[i].br_blockcount,imap[i].br_state); 865 + (unsigned long long) 866 + imap[i].br_startblock, 867 + (unsigned long long) 868 + imap[i].br_startoff, 869 + (unsigned long long) 870 + imap[i].br_blockcount, 871 + imap[i].br_state); 872 872 } 873 873 if ((offset_fsb >= imap[i].br_startoff) && 874 874 (offset_fsb < (imap[i].br_startoff + ··· 978 970 "%llx blkcnt : %llx extent-state : %x \n", 979 971 (ip->i_mount)->m_fsname, 980 972 (long long)ip->i_ino, 981 - imap.br_startblock,imap.br_startoff, 982 - imap.br_blockcount,imap.br_state); 973 + (unsigned long long)imap.br_startblock, 974 + (unsigned long long)imap.br_startoff, 975 + (unsigned long long)imap.br_blockcount, 976 + imap.br_state); 983 977 } 984 978 985 979 if ((numblks_fsb = imap.br_blockcount) == 0) {