From patchwork Thu Oct 15 07:01:39 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Jean-Philippe_Fran=C3=83=C2=A7ois?= X-Patchwork-Id: 53949 Received: from comal.ext.ti.com (comal.ext.ti.com [198.47.26.152]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n9F74bvk026984 for ; Thu, 15 Oct 2009 07:04:38 GMT Received: from dlep34.itg.ti.com ([157.170.170.115]) by comal.ext.ti.com (8.13.7/8.13.7) with ESMTP id n9F71qj7011801 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 15 Oct 2009 02:01:52 -0500 Received: from linux.omap.com (localhost [127.0.0.1]) by dlep34.itg.ti.com (8.13.7/8.13.7) with ESMTP id n9F71pfo023623; Thu, 15 Oct 2009 02:01:52 -0500 (CDT) Received: from linux.omap.com (localhost [127.0.0.1]) by linux.omap.com (Postfix) with ESMTP id BAA8E80627; Thu, 15 Oct 2009 02:01:51 -0500 (CDT) X-Original-To: davinci-linux-open-source@linux.davincidsp.com Delivered-To: davinci-linux-open-source@linux.davincidsp.com Received: from dflp51.itg.ti.com (dflp51.itg.ti.com [128.247.22.94]) by linux.omap.com (Postfix) with ESMTP id AF3DB80626 for ; Thu, 15 Oct 2009 02:01:48 -0500 (CDT) Received: from medina.ext.ti.com (localhost [127.0.0.1]) by dflp51.itg.ti.com (8.13.7/8.13.7) with ESMTP id n9F71m55006863 for ; Thu, 15 Oct 2009 02:01:48 -0500 (CDT) Received: from mail4-tx2-R.bigfish.com (mail-tx2.bigfish.com [65.55.88.111]) by medina.ext.ti.com (8.13.7/8.13.7) with ESMTP id n9F71mbc005690 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL) for ; Thu, 15 Oct 2009 02:01:48 -0500 Received: from mail4-tx2 (localhost.localdomain [127.0.0.1]) by mail4-tx2-R.bigfish.com (Postfix) with ESMTP id 17947172040B for ; Thu, 15 Oct 2009 07:01:48 +0000 (UTC) X-SpamScore: -10 X-BigFish: vps-10(zz1432R936eM9b28mzz1202hzzz2dh6bh62h) X-Spam-TCS-SCL: 1:0 X-FB-SS: 5, X-MS-Exchange-Organization-Antispam-Report: OrigIP: 212.27.42.4; Service: EHS Received: by mail4-tx2 (MessageSwitch) id 125559010645920_29084; Thu, 15 Oct 2009 07:01:46 +0000 (UCT) Received: from TX2EHSMHS020.bigfish.com (unknown [10.9.14.251]) by mail4-tx2.bigfish.com (Postfix) with ESMTP id EFBFE940046 for ; Thu, 15 Oct 2009 07:01:45 +0000 (UTC) Received: from smtp4-g21.free.fr (212.27.42.4) by TX2EHSMHS020.bigfish.com (10.9.99.120) with Microsoft SMTP Server id 14.0.482.32; Thu, 15 Oct 2009 07:01:44 +0000 Received: from smtp4-g21.free.fr (localhost [127.0.0.1]) by smtp4-g21.free.fr (Postfix) with ESMTP id A3C514C816A; Thu, 15 Oct 2009 09:01:40 +0200 (CEST) Received: from [192.168.10.4] (pat35-1-82-229-61-155.fbx.proxad.net [82.229.61.155]) by smtp4-g21.free.fr (Postfix) with ESMTP id 750ED4C8164; Thu, 15 Oct 2009 09:01:37 +0200 (CEST) Message-ID: <4AD6C8D3.4000409@cynove.com> Date: Thu, 15 Oct 2009 09:01:39 +0200 From: =?ISO-8859-1?Q?Jean-Philippe_Fran=E7ois?= User-Agent: Thunderbird 2.0.0.22 (X11/20090608) MIME-Version: 1.0 To: Steve Ressler References: <4AD64C00.6080509@mcqinc.com> In-Reply-To: <4AD64C00.6080509@mcqinc.com> X-Reverse-DNS: smtp4-g21.free.fr Cc: davinci-linux-open-source@linux.davincidsp.com Subject: Re: boot time optimization X-BeenThere: davinci-linux-open-source@linux.davincidsp.com X-Mailman-Version: 2.1.4 Precedence: list List-Id: davinci-linux-open-source.linux.davincidsp.com List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: davinci-linux-open-source-bounces@linux.davincidsp.com Errors-To: davinci-linux-open-source-bounces@linux.davincidsp.com Index: .kernel/kernel/printk.c =================================================================== --- .kernel.orig/kernel/printk.c 2009-02-28 02:52:32.000000000 +0100 +++ .kernel/kernel/printk.c 2009-04-30 14:12:29.000000000 +0200 @@ -41,6 +41,7 @@ { } +extern void printascii(const char *); #define __LOG_BUF_LEN (1 << CONFIG_LOG_BUF_SHIFT) /* printk's without a loglevel use this.. */ @@ -552,7 +553,7 @@ /* Emit the output into the temporary buffer */ printed_len = vscnprintf(printk_buf, sizeof(printk_buf), fmt, args); - + printascii(printk_buf); if (printed_len > 0) { unsigned int loglevel; int mark_len;