Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760725Ab2FVAFY (ORCPT ); Thu, 21 Jun 2012 20:05:24 -0400 Received: from oproxy5-pub.bluehost.com ([67.222.38.55]:42487 "HELO oproxy5-pub.bluehost.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1760706Ab2FVAFW (ORCPT ); Thu, 21 Jun 2012 20:05:22 -0400 Message-ID: <4FE3B6A9.60109@xenotime.net> Date: Thu, 21 Jun 2012 17:04:57 -0700 From: Randy Dunlap User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.15) Gecko/20110323 Thunderbird/3.1.9 MIME-Version: 1.0 To: Randy Dunlap CC: Stephen Rothwell , linux-next@vger.kernel.org, LKML , Marco Stornelli , Kees Cook , Andrew Morton Subject: Re: [PATCH -next] pstore: fix printk format warning in ram.c References: <20120615143303.3b88edcbc3efc7b1bf81839b@canb.auug.org.au> <4FDB8AB8.6060703@xenotime.net> In-Reply-To: <4FDB8AB8.6060703@xenotime.net> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Identified-User: {1807:box742.bluehost.com:xenotime:xenotime.net} {sentby:smtp auth 50.53.38.135 authed with rdunlap@xenotime.net} Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1169 Lines: 44 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 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/