From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932451AbdBQHM2 (ORCPT ); Fri, 17 Feb 2017 02:12:28 -0500 Received: from smtprelay0097.hostedemail.com ([216.40.44.97]:44019 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S932089AbdBQHMX (ORCPT ); Fri, 17 Feb 2017 02:12:23 -0500 X-Session-Marker: 6A6F6540706572636865732E636F6D X-Spam-Summary: 2,0,0,,d41d8cd98f00b204,joe@perches.com,:::::::,RULES_HIT:41:355:379:541:800:960:973:988:989:1260:1345:1359:1437:1534:1541:1711:1714:1730:1747:1777:1792:2393:2559:2562:3138:3139:3140:3141:3142:3351:3865:3866:3867:3868:3870:3871:3872:4250:4321:5007:6261:6630:8603:9389:10004:10848:11026:11658:11914:12043:12295:12296:12438:12555:12895:12986:13069:13311:13357:14181:14384:14394:14721:21080:21451:30054:30070,0,RBL:none,CacheIP:none,Bayesian:0.5,0.5,0.5,Netcheck:none,DomainCache:0,MSF:not bulk,SPF:fn,MSBL:0,DNSBL:none,Custom_rules:0:0:0,LFtime:1,LUA_SUMMARY:none X-HE-Tag: ghost86_4eb96ecb47140 X-Filterd-Recvd-Size: 1861 From: Joe Perches To: linux-kernel@vger.kernel.org Cc: Tony Luck , Fenghua Yu , linux-ia64@vger.kernel.org Subject: [PATCH 05/35] ia64: Convert remaining use of pr_warning to pr_warn Date: Thu, 16 Feb 2017 23:11:18 -0800 Message-Id: X-Mailer: git-send-email 2.10.0.rc2.1.g053435c In-Reply-To: References: Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org To enable eventual removal of pr_warning This makes pr_warn use consistent for arch/ia64 Prior to this patch, there was 1 use of pr_warning and 1 use of pr_warn in arch/ia64 Signed-off-by: Joe Perches --- arch/ia64/kernel/setup.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/arch/ia64/kernel/setup.c b/arch/ia64/kernel/setup.c index d68322966f33..8593d93fbbd7 100644 --- a/arch/ia64/kernel/setup.c +++ b/arch/ia64/kernel/setup.c @@ -294,11 +294,9 @@ static void __init setup_crashkernel(unsigned long total, int *n) } if (!check_crashkernel_memory(base, size)) { - pr_warning("crashkernel: There would be kdump memory " - "at %ld GB but this is unusable because it " - "must\nbe below 4 GB. Change the memory " - "configuration of the machine.\n", + pr_warn("crashkernel: There would be kdump memory at %ld GB but this is unusable because it must be below 4 GB.\n", (unsigned long)(base >> 30)); + pr_warn("crashkernel: Change the memory configuration of the machine.\n"); return; } -- 2.10.0.rc2.1.g053435c From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joe Perches Date: Fri, 17 Feb 2017 07:11:18 +0000 Subject: [PATCH 05/35] ia64: Convert remaining use of pr_warning to pr_warn Message-Id: List-Id: References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-kernel@vger.kernel.org Cc: Tony Luck , Fenghua Yu , linux-ia64@vger.kernel.org To enable eventual removal of pr_warning This makes pr_warn use consistent for arch/ia64 Prior to this patch, there was 1 use of pr_warning and 1 use of pr_warn in arch/ia64 Signed-off-by: Joe Perches --- arch/ia64/kernel/setup.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/arch/ia64/kernel/setup.c b/arch/ia64/kernel/setup.c index d68322966f33..8593d93fbbd7 100644 --- a/arch/ia64/kernel/setup.c +++ b/arch/ia64/kernel/setup.c @@ -294,11 +294,9 @@ static void __init setup_crashkernel(unsigned long total, int *n) } if (!check_crashkernel_memory(base, size)) { - pr_warning("crashkernel: There would be kdump memory " - "at %ld GB but this is unusable because it " - "must\nbe below 4 GB. Change the memory " - "configuration of the machine.\n", + pr_warn("crashkernel: There would be kdump memory at %ld GB but this is unusable because it must be below 4 GB.\n", (unsigned long)(base >> 30)); + pr_warn("crashkernel: Change the memory configuration of the machine.\n"); return; } -- 2.10.0.rc2.1.g053435c