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 BE0D0C433FE for ; Mon, 17 Oct 2022 14:02:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230027AbiJQOCW (ORCPT ); Mon, 17 Oct 2022 10:02:22 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51124 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229779AbiJQOCV (ORCPT ); Mon, 17 Oct 2022 10:02:21 -0400 Received: from fanzine2.igalia.com (fanzine.igalia.com [178.60.130.6]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A4CFA1DF07; Mon, 17 Oct 2022 07:02:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=igalia.com; s=20170329; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:From: References:Cc:To:Subject:MIME-Version:Date:Message-ID:Sender:Reply-To: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=iitAWGgeq0Jp56gEe7Wxdu4oO5N9LkW6N6YMxnpf7m8=; b=DuUATXpale+eQyysDRVfygAERH pP1m1o822phLAUpS4/I/06j0q1EyTkieF8dCBxxfJtPzjg4gexDmZqb+386TpVVLoZsScqgLh7Ioz G6Pz01QLfwFI4XqZeu5nnBDjUynBBgs0IpmZy17AIdztu0TLzk74GkITpER6Kwt2U7amxmTfNl5HS /0MffDt5IRdmV0PmC1VbkPZ/DYgZLduzJRW4iKbDnKG6bMM1pSVc39Bn61ZrF4TTf16mhMCYbXZQ+ d4iptpEiG1qcUWbrUFL6saA88yFxoswYtPo5hdiGpUXBaE1+PQ6gcQ9BVLIb9WV+89yjbEDB6grIu aZPYRycQ==; Received: from [179.113.159.85] (helo=[192.168.1.60]) by fanzine2.igalia.com with esmtpsa (Cipher TLS1.3:ECDHE_X25519__RSA_PSS_RSAE_SHA256__AES_128_GCM:128) (Exim) id 1okQgm-000Nyb-2n; Mon, 17 Oct 2022 16:01:56 +0200 Message-ID: <280ce0ae-5a50-626f-930f-2661a109fa36@igalia.com> Date: Mon, 17 Oct 2022 11:01:29 -0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.3.2 Subject: Re: [PATCH V3 04/11] um: Improve panic notifiers consistency and ordering Content-Language: en-US To: Richard Weinberger , Johannes Berg , linux-um Cc: kexec@lists.infradead.org, bhe@redhat.com, Petr Mladek , Andrew Morton , linux-kernel , linux-hyperv@vger.kernel.org, netdev , x86 , kernel-dev@igalia.com, kernel@gpiccoli.net, halves@canonical.com, fabiomirmar@gmail.com, alejandro j jimenez , Andy Shevchenko , Arnd Bergmann , bp , Jonathan Corbet , d hatayama , dave hansen , dyoung@redhat.com, feng tang , Greg Kroah-Hartman , mikelley@microsoft.com, hidehiro kawai ez , jgross@suse.com, John Ogness , Kees Cook , Andy Lutomirski , mhiramat@kernel.org, mingo , paulmck@kernel.org, Peter Zijlstra , Steven Rostedt , senozhatsky@chromium.org, stern@rowland.harvard.edu, tglx , vgoyal@redhat.com, vkuznets@redhat.com, will@kernel.org, xuqiang36@huawei.com, anton ivanov References: <20220819221731.480795-1-gpiccoli@igalia.com> <20220819221731.480795-5-gpiccoli@igalia.com> <1f464f3d-6668-9e05-bcb7-1b419b5373e1@igalia.com> <2087154222.237106.1663535981252.JavaMail.zimbra@nod.at> From: "Guilherme G. Piccoli" In-Reply-To: <2087154222.237106.1663535981252.JavaMail.zimbra@nod.at> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On 18/09/2022 18:19, Richard Weinberger wrote: > ----- Ursprüngliche Mail ----- >> Von: "Guilherme G. Piccoli" >> On 19/08/2022 19:17, Guilherme G. Piccoli wrote: >>> Currently the panic notifiers from user mode linux don't follow >>> the convention for most of the other notifiers present in the >>> kernel (indentation, priority setting, numeric return). >>> More important, the priorities could be improved, since it's a >>> special case (userspace), hence we could run the notifiers earlier; >>> user mode linux shouldn't care much with other panic notifiers but >>> the ordering among the mconsole and arch notifier is important, >>> given that the arch one effectively triggers a core dump. >>> >>> Fix that by running the mconsole notifier as the first panic >>> notifier, followed by the architecture one (that coredumps). >>> >>> Cc: Anton Ivanov >>> Cc: Johannes Berg >>> Cc: Richard Weinberger >>> Signed-off-by: Guilherme G. Piccoli >>> >>> V3: >>> - No changes. >>> [...] >> >> Hi Johannes, sorry for the ping. Do you think you could pick this one? >> Or if you prefer, I can resend it alone (not in the series) - let me >> know your preference. > > This patch is on my TODO list. > Just had no chance to test it. > > Thanks, > //richard Hi Richard / Johannes, is there any news on this one? Thanks in advance, Guilherme