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 8570EC6FD1C for ; Thu, 23 Mar 2023 07:50:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229796AbjCWHuX (ORCPT ); Thu, 23 Mar 2023 03:50:23 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42790 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229836AbjCWHuV (ORCPT ); Thu, 23 Mar 2023 03:50:21 -0400 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4C8D2B777 for ; Thu, 23 Mar 2023 00:49:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1679557773; 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=wupudpKpSiccJ31lY6LftuSVm9mzcXiVCi/lHnPJZOg=; b=BMwsErTkndBb87XFX4meehADNlYNmKhZNuwDxiPxEQyBtglOAQbAPmSK6Cz/F9b+935xQk +1f9JVk3TAYuaWqnWJqkB77kgqiEyOYY8xIGKB+HBoKk/orv3DqxdxPElH4kwm+Rm2rPm+ yuFs2An1a4vSaC8euLKO9BlQiucbQp8= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-479-EYbPA4HBPtCHXKwu7dXdpw-1; Thu, 23 Mar 2023 03:49:28 -0400 X-MC-Unique: EYbPA4HBPtCHXKwu7dXdpw-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.rdu2.redhat.com [10.11.54.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id AD59B38149BA; Thu, 23 Mar 2023 07:49:26 +0000 (UTC) Received: from localhost (ovpn-12-97.pek2.redhat.com [10.72.12.97]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 8E3AE175AD; Thu, 23 Mar 2023 07:49:24 +0000 (UTC) Date: Thu, 23 Mar 2023 15:49:20 +0800 From: Baoquan He To: Bjorn Helgaas , akpm@linux-foundation.org, x86@kernel.org Cc: Eric Biederman , Dave Hansen , Thomas Gleixner , Ingo Molnar , Borislav Petkov , Dave Hansen , "H . Peter Anvin" , x86@kernel.org, kexec@lists.infradead.org, linux-kernel@vger.kernel.org, Bjorn Helgaas Subject: Re: [PATCH v2 0/2] kexec: Remove unnecessary arch hook Message-ID: References: <20230307224416.907040-1-helgaas@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230307224416.907040-1-helgaas@kernel.org> X-Scanned-By: MIMEDefang 3.1 on 10.11.54.5 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, On 03/07/23 at 04:44pm, Bjorn Helgaas wrote: > From: Bjorn Helgaas > > There are no arch-specific things in arch_kexec_kernel_image_load(), so > remove it and just use the generic version. > > v1 is at: > https://lore.kernel.org/all/20221215182339.129803-1-helgaas@kernel.org/ > > This v2 is trivially rebased to v6.3-rc1 and the commit log expanded > slightly. This is an obvious and good cleanup patchset, who should I ping to ask for accepting? It's touching kexec generic code, while the hook only exists on x86 ARCH. Thanks Baoquan