Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9df13039 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds
Browse files

fs/ufs/balloc.c: fix sparc64 printk warning



fs/ufs/balloc.c: In function `ufs_change_blocknr':
fs/ufs/balloc.c:317: warning: long long unsigned int format, long unsigned int arg (arg 2)
fs/ufs/balloc.c:317: warning: long long unsigned int format, long unsigned int arg (arg 3)

sector_t is u64 and we don't know what type the architecture uses to implement
u64.

Cc: Evgeniy Dushistov <dushistov@mail.ru>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 9ea85eba
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -315,8 +315,8 @@ static void ufs_change_blocknr(struct inode *inode, sector_t beg,
			}

			UFSD(" change from %llu to %llu, pos %u\n",
			     (unsigned long long)pos + oldb,
			     (unsigned long long)pos + newb, pos);
			     (unsigned long long)(pos + oldb),
			     (unsigned long long)(pos + newb), pos);

			bh->b_blocknr = newb + pos;
			unmap_underlying_metadata(bh->b_bdev,