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 891CCC3DA7D for ; Tue, 3 Jan 2023 15:42:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233372AbjACPmE (ORCPT ); Tue, 3 Jan 2023 10:42:04 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56876 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231134AbjACPmC (ORCPT ); Tue, 3 Jan 2023 10:42:02 -0500 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id DAB1211C02 for ; Tue, 3 Jan 2023 07:42:00 -0800 (PST) From: John Ogness DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1672760519; 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=Yp/G7DXK1fTH2v7v0HnOT9IESWacMUXk7lsz2N7AjCk=; b=hGc9mi3xFY7srKxqzhtWDuojPxwnYPXr0y0uEDMJFZr+r/J0XqkdzN2Vl683J/QIAVWL6r vBcXdsAFA38crsTGiw5o7APSEUDvJaSzX3cehN+xJt0UZ0w8xP53Kz/7prrpqQUJUjakEb jclJdx1w6iSurMaUigmpfLiYxjowlMO4EBgfyf+9z+apXLcU3gppmeR6abV5HQcUXm3Zzu MVkkmBZhGz3rEsyaUpXilaNuuWTOzcALaahR9oHs7AtR8TuYiR2HETU+Ed6rAFdpyU9HOr 2R3vCRGrprGOL9yyEGfyVPIS7tPuiP+jY2Rz2ALP2pBw/bmQ0xAuecFJzqcyKQ== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1672760519; 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=Yp/G7DXK1fTH2v7v0HnOT9IESWacMUXk7lsz2N7AjCk=; b=ZC6ch2Seh1aJK3FGSZdNP1YccPxH10iPXMeYEP3g/kk7ox8JmZ585byQnf/PKG5xOwIH7B 37YNPUf/ek9EBfCw== To: Petr Mladek Cc: Sergey Senozhatsky , Steven Rostedt , Thomas Gleixner , linux-kernel@vger.kernel.org Subject: Re: [PATCH printk v3 5/6] printk: introduce console_get_next_message() and console_message In-Reply-To: References: <20221221202704.857925-1-john.ogness@linutronix.de> <20221221202704.857925-6-john.ogness@linutronix.de> Date: Tue, 03 Jan 2023 16:47:21 +0106 Message-ID: <877cy3d3ry.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 2023-01-02, Petr Mladek wrote: >> if (is_extended) { >> len = info_print_ext_header(outbuf, outbuf_sz, r.info); >> len += msg_print_ext_body(outbuf + len, outbuf_sz - len, >> - &r.text_buf[0], r.info->text_len, &r.info->dev_info); >> + r.text_buf, r.info->text_len, &r.info->dev_info); > > This probably was not intended. Actually it was. But such a style change is not appropriate here. Sorry for trying to slip it in. John