Re: [PATCH] btrfs: fix size_t format string

2015-03-09 Thread David Sterba
On Mon, Mar 09, 2015 at 12:39:36PM +0100, Arnd Bergmann wrote: > This warning has been rather annoying because it shows up in every > 'allmodconfig' build. I assume others have reported it before, but > please apply some fix for it, ideally before 4.0. Sorry about that, we're aware of the warning

[PATCH] btrfs: fix size_t format string

2015-03-09 Thread Arnd Bergmann
This resolves a harmless gcc warning in btrfs_check_super_valid that results from a size_t value being printed as %lu: fs/btrfs/disk-io.c:3927:21: warning: format '%lu' expects argument of type 'long unsigned int', but argument 3 has type 'unsigned int' [-Wformat=] On all Linux systems, size_t i