Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S272603AbTHPEpD (ORCPT ); Sat, 16 Aug 2003 00:45:03 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S272607AbTHPEpD (ORCPT ); Sat, 16 Aug 2003 00:45:03 -0400 Received: from relais.videotron.ca ([24.201.245.36]:60333 "EHLO VL-MO-MR004.ip.videotron.ca") by vger.kernel.org with ESMTP id S272603AbTHPEo7 (ORCPT ); Sat, 16 Aug 2003 00:44:59 -0400 Date: Sat, 16 Aug 2003 00:37:05 -0400 From: Stephane Ouellette Subject: [PATCH][TRIVIAL][RESEND] Remove warning in fs/ext3/super.c To: akpm@zip.com.au Cc: linux-kernel Message-id: <3F3DB4F1.8060706@videotron.ca> MIME-version: 1.0 Content-type: multipart/mixed; boundary="Boundary_(ID_6ZPjzW1SWn5e10Ofr3XwPw)" X-Accept-Language: en-us, en User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.1) Gecko/20021003 Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1953 Lines: 59 This is a multi-part message in MIME format. --Boundary_(ID_6ZPjzW1SWn5e10Ofr3XwPw) Content-type: text/plain; charset=us-ascii; format=flowed Content-transfer-encoding: 7BIT Andrew, those patches fix a compile warning because the variable old_sync_dquot is used only if CONFIG_QUOTA is defined. Included patches are for 2.4.22-rc1-ac1 and 2.6.0-test2. Stephane Ouellette. --Boundary_(ID_6ZPjzW1SWn5e10Ofr3XwPw) Content-type: text/plain; name=super.c-2.6.0-test2.diff; CHARSET=US-ASCII Content-transfer-encoding: 7BIT Content-disposition: inline; filename=super.c-2.6.0-test2.diff --- linux-2.6.0-test2-orig/fs/ext3/super.c 2003-07-27 13:09:04.000000000 -0400 +++ linux-2.6.0-test2-fixed/fs/ext3/super.c 2003-08-08 23:52:42.000000000 -0400 @@ -2000,7 +2000,9 @@ /* Blocks: quota info + (4 pointer blocks + 1 entry block) * (3 indirect + 1 descriptor + 1 bitmap) + superblock */ #define EXT3_V0_QFMT_BLOCKS 27 +#ifdef CONFIG_QUOTA static int (*old_sync_dquot)(struct dquot *dquot); +#endif static int ext3_sync_dquot(struct dquot *dquot) { --Boundary_(ID_6ZPjzW1SWn5e10Ofr3XwPw) Content-type: text/plain; name=super.c-2.4.22-rc1-ac1.diff; CHARSET=US-ASCII Content-transfer-encoding: 7BIT Content-disposition: inline; filename=super.c-2.4.22-rc1-ac1.diff --- linux-2.4.22-rc1-ac1-orig/fs/ext3/super.c Fri Aug 8 22:34:32 2003 +++ linux-2.4.22-rc1-ac1-fixed/fs/ext3/super.c Fri Aug 8 23:48:54 2003 @@ -449,7 +449,10 @@ } static struct dquot_operations ext3_qops; + +#ifdef CONFIG_QUOTA static int (*old_sync_dquot)(struct dquot *dquot); +#endif static struct super_operations ext3_sops = { read_inode: ext3_read_inode, /* BKL held */ --Boundary_(ID_6ZPjzW1SWn5e10Ofr3XwPw)-- - 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/