[<prev] [next>] [day] [month] [year] [list]
Message-ID: <50B41CF9.3050502@xenotime.net>
Date: Mon, 26 Nov 2012 17:52:57 -0800
From: Randy Dunlap <rdunlap@...otime.net>
To: stable@...r.kernel.org
CC: Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
LKML <linux-kernel@...r.kernel.org>
Subject: [PATCH -stable 3.6.x] pstore: fix ram.c printk format warning
From: Randy Dunlap <rdunlap@...otime.net>
Fix printk format warning (on i386) in pstore:
fs/pstore/ram.c:409:3: warning: format '%lu' expects type 'long unsigned int', but argument 2 has type 'size_t'
Mainline patch commit ID is: 0427193b691edc81c846c7d0ebd2561cae8709d8
Signed-off-by: Randy Dunlap <rdunlap@...otime.net>
Acked-by: Kees Cook <keescook@...omium.org>
Cc: Anton Vorontsov <anton.vorontsov@...aro.org>
---
fs/pstore/ram.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- lnx-36-rc1.orig/fs/pstore/ram.c
+++ lnx-36-rc1/fs/pstore/ram.c
@@ -406,7 +406,7 @@ static int __devinit ramoops_probe(struc
goto fail_init_fprz;
if (!cxt->przs && !cxt->cprz && !cxt->fprz) {
- pr_err("memory size too small, minimum is %lu\n",
+ pr_err("memory size too small, minimum is %zu\n",
cxt->console_size + cxt->record_size +
cxt->ftrace_size);
goto fail_cnt;
--
~Randy
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists