proc: fix warnings

proc: fix warnings

fs/proc/base.c:2429: warning: format '%llu' expects type 'long long unsigned int', but argument 3 has type 'u64'
fs/proc/base.c:2429: warning: format '%llu' expects type 'long long unsigned int', but argument 4 has type 'u64'
fs/proc/base.c:2429: warning: format '%llu' expects type 'long long unsigned int', but argument 5 has type 'u64'
fs/proc/base.c:2429: warning: format '%llu' expects type 'long long unsigned int', but argument 6 has type 'u64'
fs/proc/base.c:2429: warning: format '%llu' expects type 'long long unsigned int', but argument 7 has type 'u64'
fs/proc/base.c:2429: warning: format '%llu' expects type 'long long unsigned int', but argument 8 has type 'u64'
fs/proc/base.c:2429: warning: format '%llu' expects type 'long long unsigned int', but argument 9 has type 'u64'

Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com>
Acked-by: Andrea Righi <righi.andrea@gmail.com>
Cc: Oleg Nesterov <oleg@tv-sign.ru>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Alexander Beregalov and committed by Linus Torvalds 7c44319d dc39778f

+7 -4
+7 -4
fs/proc/base.c
··· 2423 2423 "read_bytes: %llu\n" 2424 2424 "write_bytes: %llu\n" 2425 2425 "cancelled_write_bytes: %llu\n", 2426 - acct.rchar, acct.wchar, 2427 - acct.syscr, acct.syscw, 2428 - acct.read_bytes, acct.write_bytes, 2429 - acct.cancelled_write_bytes); 2426 + (unsigned long long)acct.rchar, 2427 + (unsigned long long)acct.wchar, 2428 + (unsigned long long)acct.syscr, 2429 + (unsigned long long)acct.syscw, 2430 + (unsigned long long)acct.read_bytes, 2431 + (unsigned long long)acct.write_bytes, 2432 + (unsigned long long)acct.cancelled_write_bytes); 2430 2433 } 2431 2434 2432 2435 static int proc_tid_io_accounting(struct task_struct *task, char *buffer)