From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail143.messagelabs.com (mail143.messagelabs.com [216.82.254.35]) by kanga.kvack.org (Postfix) with SMTP id 7973060032A for ; Sat, 22 May 2010 14:13:58 -0400 (EDT) Date: Sat, 22 May 2010 20:13:52 +0200 From: Borislav Petkov Subject: Re: [PATCH 1/3] mm/swapfile.c: better messages for swap_info_get Message-ID: <20100522181352.GB26778@liondog.tnic> References: <4BF81D87.6010506@cesarb.net> <1274551731-4534-1-git-send-email-cesarb@cesarb.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <1274551731-4534-1-git-send-email-cesarb@cesarb.net> Sender: owner-linux-mm@kvack.org To: Cesar Eduardo Barros Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org List-ID: From: Cesar Eduardo Barros Date: Sat, May 22, 2010 at 03:08:49PM -0300 > swap_info_get() is used for more than swap_free(). > > Use "swap_info_get:" instead of "swap_free:" in the error messages. > > Signed-off-by: Cesar Eduardo Barros > --- > mm/swapfile.c | 8 ++++---- > 1 files changed, 4 insertions(+), 4 deletions(-) > > diff --git a/mm/swapfile.c b/mm/swapfile.c > index 6cd0a8f..af7d499 100644 > --- a/mm/swapfile.c > +++ b/mm/swapfile.c > @@ -522,16 +522,16 @@ static struct swap_info_struct *swap_info_get(swp_entry_t entry) > return p; > > bad_free: > - printk(KERN_ERR "swap_free: %s%08lx\n", Unused_offset, entry.val); > + printk(KERN_ERR "swap_info_get: %s%08lx\n", Unused_offset, entry.val); Why not let the compiler do it for ya: printk(KERN_ERR "%s: %s%08lx\n", __func__, Unused_offset, entry.val); ?... etc. -- Regards/Gruss, Boris. -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org