From patchwork Wed Dec 22 13:22:08 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tejun Heo X-Patchwork-Id: 427171 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id oBMDMEOU021082 for ; Wed, 22 Dec 2010 13:22:14 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751826Ab0LVNWN (ORCPT ); Wed, 22 Dec 2010 08:22:13 -0500 Received: from mail-bw0-f45.google.com ([209.85.214.45]:57555 "EHLO mail-bw0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751863Ab0LVNWM (ORCPT ); Wed, 22 Dec 2010 08:22:12 -0500 Received: by bwz16 with SMTP id 16so5694687bwz.4 for ; Wed, 22 Dec 2010 05:22:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:date:from:to:cc :subject:message-id:references:mime-version:content-type :content-disposition:in-reply-to:user-agent; bh=X8/hD3VytrJ+XkPM7EM+mSO8i8eksQpip8I6saaz9Ac=; b=dcxVxMfUgkinjRIQnqmBThQlI5olKAh3AHd5AEbE0hCCiaXdl+Y3U0AChb2E86/aiY nEjbqYiCWTEW8TCSyVqF2tL7dRH3Jib64fTH7IoRkaGsi/+1gSMDn4cQdOed3d01ooX8 +zsrc90z5+FKarkWByQ4hsOTxWP29NdqusrkE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=QSHEW14mmvcwAdHjJgLTuUudxElqGv5vA4k+4/yeFSuKDIzXyLAbnfgDWPmOoLzbrP 2iXN+BBPJGqUX2RbgETrz9aQXe6u0vOyKffBttuGUE2BHFsEXfYgBKsUBAtv/q5heAgi RLgeGZKCt/mCTbDi8cM4x+LpoEeFDvIfB+l54= Received: by 10.204.23.6 with SMTP id p6mr5899008bkb.123.1293024131344; Wed, 22 Dec 2010 05:22:11 -0800 (PST) Received: from htj.dyndns.org ([130.75.117.88]) by mx.google.com with ESMTPS id p22sm5019101bkp.21.2010.12.22.05.22.10 (version=SSLv3 cipher=RC4-MD5); Wed, 22 Dec 2010 05:22:10 -0800 (PST) Date: Wed, 22 Dec 2010 14:22:08 +0100 From: Tejun Heo To: Ingo Molnar Cc: Mike Travis , "H. Peter Anvin" , Andrew Morton , David Rientjes , Len Brown , Jack Steiner , Lori Gilbertson , "linux-acpi@vger.kernel.org" , LKML Subject: [PATCH] percpu: print out alloc information with KERN_DEBUG instead of KERN_INFO Message-ID: <20101222132208.GB8061@htj.dyndns.org> References: <4D06B317.2090608@sgi.com> <20101222130946.GC13412@elte.hu> <20101222131719.GA8061@htj.dyndns.org> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20101222131719.GA8061@htj.dyndns.org> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Wed, 22 Dec 2010 13:22:15 +0000 (UTC) diff --git a/mm/percpu.c b/mm/percpu.c index efe8168..02ba912 100644 --- a/mm/percpu.c +++ b/mm/percpu.c @@ -1268,7 +1268,7 @@ int __init pcpu_setup_first_chunk(const struct pcpu_alloc_info *ai, /* we're done parsing the input, undefine BUG macro and dump config */ #undef PCPU_SETUP_BUG_ON - pcpu_dump_alloc_info(KERN_INFO, ai); + pcpu_dump_alloc_info(KERN_DEBUG, ai); pcpu_nr_groups = ai->nr_groups; pcpu_group_offsets = group_offsets;