From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9AE2FC43219 for ; Thu, 24 Nov 2022 20:22:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229676AbiKXUWx (ORCPT ); Thu, 24 Nov 2022 15:22:53 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48314 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229448AbiKXUWv (ORCPT ); Thu, 24 Nov 2022 15:22:51 -0500 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 38D6E56D75 for ; Thu, 24 Nov 2022 12:22:50 -0800 (PST) From: John Ogness DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1669321368; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=XYSE3QZ53xOkshww4uTh7Z7V0CETVHVJ4n8Xg7C0/xk=; b=qp+n9mmkG3sBiDQ+MGoHL7rxQb+ImVm3bYdNIbWuG4MQGIcl73oRt6E3ecYdq6VwSsPEO7 mk6l/xgbz1b+RpAlWpoiwa0tBwHi7ZGIfba9Io1Ro90FxZrNIn1/uBSVzYTCajerNciGcM ogn3Jr0x7AIPrJbDWHb0XHkTYqo6l+VPcZBFD8eVvzry+L1JXbf/XK6nj9SZMGTMJ9C1Xk qzdH016ySa+8t9iwLPXCYb0Klb/+4QfxwlDo/hZtzJU8/KeVJ0Ojp+Zll7cBHC33P7R21b 9Ys/j534kRBQV5UqyeEEjfpeiqoahx51oLjtjXv9wbTwqwoBMKtUVE9haxu1Aw== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1669321368; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=XYSE3QZ53xOkshww4uTh7Z7V0CETVHVJ4n8Xg7C0/xk=; b=4KGV6t6tIWHpkvylnN+tlVTjkXHMxMdE/RCWc467z/yRtO/M8SpWjPGj+L2BgoSuJRJZwt +zi4MfEyIbyJTTCg== To: Petr Mladek Cc: Sergey Senozhatsky , Steven Rostedt , Thomas Gleixner , linux-kernel@vger.kernel.org, Greg Kroah-Hartman Subject: Re: [PATCH printk v2 4/7] printk: Add struct console_buffers In-Reply-To: References: <20221123231400.614679-1-john.ogness@linutronix.de> <20221123231400.614679-5-john.ogness@linutronix.de> Date: Thu, 24 Nov 2022 21:28:38 +0106 Message-ID: <87tu2oksq9.fsf@jogness.linutronix.de> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2022-11-24, Petr Mladek wrote: > If we agree to use the static buffers in struct console, feel free to use: > > Reviewed-by: Petr Mladek I will move the struct definition and size defines into printk.c for v3. John