From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mx2.suse.de ([195.135.220.15]) by merlin.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1kJHo2-0006Fe-Rk for kexec@lists.infradead.org; Fri, 18 Sep 2020 14:56:11 +0000 Date: Fri, 18 Sep 2020 16:56:08 +0200 From: Petr Mladek Subject: Re: [PATCH printk 3/3] printk: remove dict ring Message-ID: <20200918145608.GF14605@alley> References: <20200917131644.25838-1-john.ogness@linutronix.de> <20200917131644.25838-4-john.ogness@linutronix.de> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20200917131644.25838-4-john.ogness@linutronix.de> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "kexec" Errors-To: kexec-bounces+dwmw2=infradead.org@lists.infradead.org To: John Ogness Cc: Sergey Senozhatsky , Greg Kroah-Hartman , kexec@lists.infradead.org, linux-kernel@vger.kernel.org, Steven Rostedt , Sergey Senozhatsky , Thomas Gleixner , Linus Torvalds On Thu 2020-09-17 15:22:44, John Ogness wrote: > Since there is no code that will ever store anything into the dict > ring, remove it. If any future dictionary properties are to be > added, these should be added to the struct printk_info. > > Signed-off-by: John Ogness I like the result. It simplified the code and removed some twists. Reviewed-by: Petr Mladek Best Regards, Petr _______________________________________________ kexec mailing list kexec@lists.infradead.org http://lists.infradead.org/mailman/listinfo/kexec 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 X-Spam-Level: X-Spam-Status: No, score=-8.3 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id E43DCC43464 for ; Fri, 18 Sep 2020 14:56:11 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 8D3B821D42 for ; Fri, 18 Sep 2020 14:56:11 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=suse.com header.i=@suse.com header.b="hlYcVcMc" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726775AbgIRO4K (ORCPT ); Fri, 18 Sep 2020 10:56:10 -0400 Received: from mx2.suse.de ([195.135.220.15]:35030 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726687AbgIRO4K (ORCPT ); Fri, 18 Sep 2020 10:56:10 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.com; s=susede1; t=1600440969; 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=Lj/uQ/yHIcDL9LH0EVkT8P8HY6TYKLx/IRICOXwqyXQ=; b=hlYcVcMc6KIToRxzwAx3i3SabtQLmVI/Qk0jMfRT36iqvMb6ey15vHa/NT7n++WLA/uWB8 z8AGUEUiUCFpzZfl1LE74AbMlD8I1Hp5cGwzTRq++033kKUzAaMtZj3CRC3S+XeWYBkyaD uFoAgzjuEAkr6jDKPSAQfAHqpaFGZrU= Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id 744E1AAC7; Fri, 18 Sep 2020 14:56:43 +0000 (UTC) Date: Fri, 18 Sep 2020 16:56:08 +0200 From: Petr Mladek To: John Ogness Cc: Sergey Senozhatsky , Sergey Senozhatsky , Steven Rostedt , Linus Torvalds , Greg Kroah-Hartman , Thomas Gleixner , kexec@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH printk 3/3] printk: remove dict ring Message-ID: <20200918145608.GF14605@alley> References: <20200917131644.25838-1-john.ogness@linutronix.de> <20200917131644.25838-4-john.ogness@linutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200917131644.25838-4-john.ogness@linutronix.de> User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu 2020-09-17 15:22:44, John Ogness wrote: > Since there is no code that will ever store anything into the dict > ring, remove it. If any future dictionary properties are to be > added, these should be added to the struct printk_info. > > Signed-off-by: John Ogness I like the result. It simplified the code and removed some twists. Reviewed-by: Petr Mladek Best Regards, Petr