Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753617AbZIQNXr (ORCPT ); Thu, 17 Sep 2009 09:23:47 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751636AbZIQNXq (ORCPT ); Thu, 17 Sep 2009 09:23:46 -0400 Received: from cdptpa-omtalb.mail.rr.com ([75.180.132.121]:34135 "EHLO cdptpa-omtalb.mail.rr.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751490AbZIQNXq (ORCPT ); Thu, 17 Sep 2009 09:23:46 -0400 Date: Thu, 17 Sep 2009 09:23:47 -0400 Message-ID: <87iqfhyaak.wl%ysato@users.sourceforge.jp> From: Yoshinori Sato To: lsorense@csclub.uwaterloo.ca (Lennart Sorensen) Cc: linux-kernel@vger.kernel.org, Greg Ungerer , microblaze-uclinux@itee.uq.edu.au Subject: Re: [PATCH] Actually show KiB rather than pages in "Freeing initrd memory:" message on h3800, m68knommu and microblaze. In-Reply-To: <20090915165037.GA23702@csclub.uwaterloo.ca> References: <20090915165037.GA23702@csclub.uwaterloo.ca> User-Agent: Wanderlust/2.15.6 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?ISO-8859-4?Q?Goj=F2?=) APEL/10.7 Emacs/22.3 (x86_64-pc-linux-gnu) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1992 Lines: 58 At Tue, 15 Sep 2009 12:50:37 -0400, Lennart Sorensen wrote: > > Fix "Freeing initrd memory:" message on h3800, m68knommu and microblaze > to show kilobytes as claimed rather than number of pages. > > Signed-off-by: Lennart Sorensen > > diff --git a/arch/h8300/mm/init.c b/arch/h8300/mm/init.c > index 9942f24..3342f49 100644 > --- a/arch/h8300/mm/init.c > +++ b/arch/h8300/mm/init.c > @@ -170,7 +170,7 @@ void free_initrd_mem(unsigned long start, unsigned long end) > totalram_pages++; > pages++; > } > - printk ("Freeing initrd memory: %dk freed\n", pages); > + printk ("Freeing initrd memory: %dk freed\n", pages * (PAGE_SIZE / 1024)); > } > #endif > > diff --git a/arch/m68knommu/mm/init.c b/arch/m68knommu/mm/init.c > index b1703c6..f3236d0 100644 > --- a/arch/m68knommu/mm/init.c > +++ b/arch/m68knommu/mm/init.c > @@ -162,7 +162,7 @@ void free_initrd_mem(unsigned long start, unsigned long end) > totalram_pages++; > pages++; > } > - printk (KERN_NOTICE "Freeing initrd memory: %dk freed\n", pages); > + printk (KERN_NOTICE "Freeing initrd memory: %dk freed\n", pages * (PAGE_SIZE / 1024)); > } > #endif > > diff --git a/arch/microblaze/mm/init.c b/arch/microblaze/mm/init.c > index f207f1a..ed5f96b 100644 > --- a/arch/microblaze/mm/init.c > +++ b/arch/microblaze/mm/init.c > @@ -180,7 +180,7 @@ void free_initrd_mem(unsigned long start, unsigned long end) > totalram_pages++; > pages++; > } > - printk(KERN_NOTICE "Freeing initrd memory: %dk freed\n", pages); > + printk(KERN_NOTICE "Freeing initrd memory: %dk freed\n", pages * (PAGE_SIZE / 1024)); > } > #endif > Acked-by: Yoshinori Sato -- Yoshinori Sato -- 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/