Received: by 2002:a05:6a10:22f:0:0:0:0 with SMTP id 15csp4576008pxk; Wed, 30 Sep 2020 06:38:23 -0700 (PDT) X-Google-Smtp-Source: ABdhPJx+ZnisQsJNgIKrUqnnFWy0qJ1YYgAowWPM3NwRdoVk05kLJCdtdCCc6HvkyRdW6GvzpMjU X-Received: by 2002:a05:6402:6d6:: with SMTP id n22mr2715496edy.79.1601473103138; Wed, 30 Sep 2020 06:38:23 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1601473103; cv=none; d=google.com; s=arc-20160816; b=zLrG/kTg9nkk3Agg6pzl0mvM7rEay2FPVbadah4Axlr6mjRH592LqHfZKfi8FgHWxp 20iwdq2lNfBrgTnSsdyaBhLOJEnr2ZL477ufYfCHV0WQohpFrZBS7CzScJAE9J+RYFgi wYBeAnvBZFEBU3mxeRl06Y7u79C8LQ9h6SBYcHo28NkrEBAiLmW6ypeA41SBR1Vw7cyH gT8HKGGikPGiZTuZKcHmQoOQV1oTjQek5eg2X/r5YokKaNzQhiB3oZFcC/XvMH2Ng6UU n7hCfLLIuKRk2VEHw4tlKUXbPkhT0cLqZz+LS6BWYCKBGG52xhNZggJMDqiplpiP6N1X jF/g== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:subject:cc:to:from:date; bh=Q7I+1+8QomBThA9Bnf9+Zfn3RQbkELcrCmOJc+EzXmE=; b=a9ZfL/EpvmlWMVbYVNBRLoeiEH5JJrXOBlaXrX0yWJ5XWh6s8M+wfHZM8P3ol0RxWk majrEgNxWIwhm7BeAgbuOBwpOrOnzQh5ORuJNGycnhRwQmDv5qa9J2o/eTgniNX+DI5n p5L/5dRBV3nf1BXCtv/8pllGif7PQ+KGYB95wFkE+rtyITlM20qjShwhWwryffcmDR1h 3bWPuDVu1h4gXyk/cMEDpBXXaDxLcIcN075JFSI4mnmZtgpYfQt0OHUiqxIEfwCjlvn6 hlqQJu48GpNdTWgPor6ErVVbPbktY+zfyQx7NAtw63b5gz/SN6srfbARgD5ewOk3TTo2 Ywog== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id dn14si1192338ejc.236.2020.09.30.06.37.55; Wed, 30 Sep 2020 06:38:23 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729813AbgI3Nfz (ORCPT + 99 others); Wed, 30 Sep 2020 09:35:55 -0400 Received: from mail.kernel.org ([198.145.29.99]:33646 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727997AbgI3Nfz (ORCPT ); Wed, 30 Sep 2020 09:35:55 -0400 Received: from gandalf.local.home (cpe-66-24-58-225.stny.res.rr.com [66.24.58.225]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 6B28A206B7; Wed, 30 Sep 2020 13:35:54 +0000 (UTC) Date: Wed, 30 Sep 2020 09:35:52 -0400 From: Steven Rostedt To: Rasmus Villemoes Cc: Petr Mladek , John Ogness , Sergey Senozhatsky , Sergey Senozhatsky , Linus Torvalds , Greg Kroah-Hartman , Thomas Gleixner , linux-kernel@vger.kernel.org Subject: Re: [PATCH printk 3/5] printk: use buffer pool for sprint buffers Message-ID: <20200930093552.3684aee1@gandalf.local.home> In-Reply-To: <4e36f308-a435-f9c1-2d4f-362e797c764e@prevas.dk> References: <20200922153816.5883-1-john.ogness@linutronix.de> <20200922153816.5883-4-john.ogness@linutronix.de> <20200923151129.GC6442@alley> <2c95c16b-03e7-eadd-d3af-bedc6b0b471e@prevas.dk> <20200925082822.GL29288@alley> <4e36f308-a435-f9c1-2d4f-362e797c764e@prevas.dk> X-Mailer: Claws Mail 3.17.3 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 30 Sep 2020 10:06:24 +0200 Rasmus Villemoes wrote: > True. But remember that printk is called from _everywhere_, with all > sorts of locks held and/or preemption disabled or whatnot, and every > cycle spent in printk makes those windows wider. Doubling the cost of > every single printk by unconditionally doing vsnprintf() twice is a bad > idea. But the console output is usually magnitudes more expensive than the vsnprintf(), would doing it twice really make a difference? -- Steve