From patchwork Tue Nov 1 23:32:25 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Randy.Dunlap" X-Patchwork-Id: 123191 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 66B0FB6F86 for ; Wed, 2 Nov 2011 10:33:18 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756093Ab1KAXc6 (ORCPT ); Tue, 1 Nov 2011 19:32:58 -0400 Received: from oproxy4-pub.bluehost.com ([69.89.21.11]:47830 "HELO oproxy4-pub.bluehost.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1756076Ab1KAXc5 (ORCPT ); Tue, 1 Nov 2011 19:32:57 -0400 Received: (qmail 1924 invoked by uid 0); 1 Nov 2011 23:32:55 -0000 Received: from unknown (HELO box742.bluehost.com) (66.147.244.242) by cpoproxy1.bluehost.com with SMTP; 1 Nov 2011 23:32:55 -0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=xenotime.net; s=default; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:References:Subject:CC:To:MIME-Version:From:Date:Message-ID; bh=gqm/vLkn4j+H6VyPrnIadQfugzu1L4agCOp8IZ7WQsg=; b=tCw+6LgxoVAdxCAwnoYccMRMJ6vUwsvhEjvYusIAydhVnEYggYEPmVG3FeNJla+U+Ihy7e7hK51CBRmiAmUhmM8UlvyIelpcJaDU2SgS2fRixef3Zxxv4r1qopmWVnQE; Received: from static-50-53-38-135.bvtn.or.frontiernet.net ([50.53.38.135] helo=[192.168.1.3]) by box742.bluehost.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1RLNp9-00045e-Hy; Tue, 01 Nov 2011 17:32:55 -0600 Message-ID: <4EB08189.2@xenotime.net> Date: Tue, 01 Nov 2011 16:32:25 -0700 From: Randy Dunlap Organization: YPO4 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: Stephen Rothwell CC: linux-next@vger.kernel.org, LKML , Linus , Theodore Ts'o , Andreas Dilger , linux-ext4@vger.kernel.org, Andrew Morton Subject: [PATCH -next] ext4: fix printk format warning in page-io References: <20111101205323.c12f2f940f23febba8ab8989@canb.auug.org.au> In-Reply-To: <20111101205323.c12f2f940f23febba8ab8989@canb.auug.org.au> X-Identified-User: {1807:box742.bluehost.com:xenotime:xenotime.net} {sentby:smtp auth 50.53.38.135 authed with rdunlap@xenotime.net} Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org From: Randy Dunlap Fix printk format warning: fs/ext4/page-io.c:108:5: warning: format '%d' expects type 'int', but argument 6 has type 'ssize_t' Signed-off-by: Randy Dunlap Cc: "Theodore Ts'o" Cc: Andreas Dilger Cc: linux-ext4@vger.kernel.org --- fs/ext4/page-io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- next-2011-1101.orig/fs/ext4/page-io.c +++ next-2011-1101/fs/ext4/page-io.c @@ -104,7 +104,7 @@ int ext4_end_io_nolock(ext4_io_end_t *io ext4_msg(inode->i_sb, KERN_EMERG, "failed to convert unwritten extents to written " "extents -- potential data loss! " - "(inode %lu, offset %llu, size %d, error %d)", + "(inode %lu, offset %llu, size %zd, error %d)", inode->i_ino, offset, size, ret); }