public inbox for kernel-janitors@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mm/ksm.c: Fix compile warnings
@ 2009-11-04  2:53 askb
  0 siblings, 0 replies; only message in thread
From: askb @ 2009-11-04  2:53 UTC (permalink / raw)
  To: linux-kernel, kernel-janitors

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 <askb23@gmail.com>

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;

Thanks



^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2009-11-04  2:53 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-04  2:53 [PATCH] mm/ksm.c: Fix compile warnings askb

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox