From mboxrd@z Thu Jan 1 00:00:00 1970 From: Randy Dunlap Subject: Re: [PATCH -next] pstore: fix printk format warning in ram.c Date: Thu, 21 Jun 2012 17:04:57 -0700 Message-ID: <4FE3B6A9.60109@xenotime.net> References: <20120615143303.3b88edcbc3efc7b1bf81839b@canb.auug.org.au> <4FDB8AB8.6060703@xenotime.net> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from oproxy5-pub.bluehost.com ([67.222.38.55]:34031 "HELO oproxy5-pub.bluehost.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1760693Ab2FVAFW (ORCPT ); Thu, 21 Jun 2012 20:05:22 -0400 In-Reply-To: <4FDB8AB8.6060703@xenotime.net> Sender: linux-next-owner@vger.kernel.org List-ID: To: Randy Dunlap Cc: Stephen Rothwell , linux-next@vger.kernel.org, LKML , Marco Stornelli , Kees Cook , Andrew Morton Greg, This patch is still needed in linux-next..... also: Acked-by: Kees Cook On 06/15/2012 12:19 PM, Randy Dunlap wrote: > From: Randy Dunlap > > Fix printk format warning (on i386) in pstore: > > fs/pstore/ram.c:378:3: warning: format '%lu' expects type 'long unsigned int', but argument 2 has type 'size_t' > > Signed-off-by: Randy Dunlap > --- > fs/pstore/ram.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > --- linux-next-20120615.orig/fs/pstore/ram.c > +++ linux-next-20120615/fs/pstore/ram.c > @@ -375,7 +375,7 @@ static int __init ramoops_probe(struct p > goto fail_init_cprz; > > if (!cxt->przs && !cxt->cprz) { > - 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); > goto fail_cnt; > } > -- ~Randy