Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754535AbZKIIQc (ORCPT ); Mon, 9 Nov 2009 03:16:32 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754163AbZKIIQb (ORCPT ); Mon, 9 Nov 2009 03:16:31 -0500 Received: from mx.sz.bfs.de ([194.94.69.70]:34414 "EHLO mx.sz.bfs.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754064AbZKIIQa (ORCPT ); Mon, 9 Nov 2009 03:16:30 -0500 Message-ID: <4AF7CFD5.5080801@bfs.de> Date: Mon, 09 Nov 2009 09:16:21 +0100 From: walter harms Reply-To: wharms@bfs.de User-Agent: Thunderbird 2.0.0.23 (X11/20090817) MIME-Version: 1.0 To: askb Cc: linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org Subject: Re: [PATCH] mm/ksm.c - Fix compile warnings (PS ignore my formatting in previous email) References: <1257317010.14838.55.camel@linux-k65f.site> <4AF15022.1020408@bfs.de> <1257334139.14838.264.camel@linux-k65f.site> In-Reply-To: <1257334139.14838.264.camel@linux-k65f.site> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1806 Lines: 61 askb schrieb: > On Wed, 2009-11-04 at 10:57 +0100, walter harms wrote: >> askb schrieb: >>> Found the compiler warning on linux-next: >>> >>> mm/ksm.c: In function ‘ksm_scan_thread’: >>> mm/ksm.c:1083: warning: ‘page2[0u]’ may be used uninitialized in this >>> function >>> mm/ksm.c:1083: note: ‘page2[0u]’ was declared here >>> >>> fix for the above warning: >>> >>> Signed-off-by: Anil SB >>> >>> diff --git a/mm/ksm.c b/mm/ksm.c >>> index bef1af4..2ea0fd3 100644 >>> --- a/mm/ksm.c >>> +++ b/mm/ksm.c >>> @@ -1080,7 +1080,7 @@ static void stable_tree_append(struct rmap_item *rmap_item, >>> */ >>> static void cmp_and_merge_page(struct page *page, struct rmap_item *rmap_item) >>> { >>> - struct page *page2[1]; >>> + struct page *page2[1] = {NULL}; >>> struct rmap_item *tree_rmap_item; >>> unsigned int checksum; >>> int err; >>> >>> >> a 1 element array looks strange, did you look what kind of magic is here used ? >> >>From my understanding, it is used for place holder to check and return > an identical page from stable_tree_search(). Can we do with a double > indirection to struct page instead of the above? > PS point me in the right direction. > 1. sorry for delay. 2. there is no "right" direction. the result should be clear for the code, and this may change between releases, special circumstances may occur and so on. You may try something like that: struct page *dst ; function ( &dst ); IMHO that would clarify the code and fix the naming (page,page2 is not very descriptiv). re, wh -- 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/