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 23D7ECD5BCD for ; Tue, 19 Sep 2023 14:58:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233009AbjISO6J (ORCPT ); Tue, 19 Sep 2023 10:58:09 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47324 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233067AbjISO6D (ORCPT ); Tue, 19 Sep 2023 10:58:03 -0400 Received: from galois.linutronix.de (Galois.linutronix.de [IPv6:2a0a:51c0:0:12e:550::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3441C19A for ; Tue, 19 Sep 2023 07:57:56 -0700 (PDT) From: Thomas Gleixner DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1695135474; 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=biMdXwZKx0XqaJxaBPzPvHh0NwjTmBb+iPJs2kh0mkI=; b=1yCRL568mCyIub6U8JQXjH27jm/Ef906n+qhrdWGSSIXosgzBWDebDIQtu97dXLBpCvQho TPA2UYi1WuRUImn94SFCup5CNKxFbseixK77+IvAi0bZj7Lx7ldisE2kZ4nTeT1+2Kb1/R rtydYBKHSntiy8ZYkfdp6i7oCIRxw5QpYg70Vc9Oc0XKMYDfVuXOEdLQvE6VMKtHMLpbDk Y7tZ3Ff/njhIMYp7Ns5NpCl7OHbkM92L/LJsx++4eZzOOUUbGQIi7EnZ/cmgPtnhlQgoVK dVVEkl/fy1KCLw4brlzccgofAcI7hL/Hv7jCIGO6lh2KP9ZTWr+dDqbCKurxjA== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1695135474; 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=biMdXwZKx0XqaJxaBPzPvHh0NwjTmBb+iPJs2kh0mkI=; b=Lqb4xPW88rRRiL1sai+Dh2digcY/QHbH40L6wdNMZGjNQ5w1UGbgGWq9HfvzPRA8BOVbrV mxz/QnqpCI2b4tDA== To: Borislav Petkov Cc: LKML , x86@kernel.org, "Chang S. Bae" , Arjan van de Ven , Nikolay Borisov Subject: Re: [patch V3 07/30] x86/microcode/intel: Simplify early loading In-Reply-To: <20230919143230.GDZQmw/kLc5nyu9CZV@fat_crate.local> References: <20230912065249.695681286@linutronix.de> <20230912065501.208060138@linutronix.de> <20230919143230.GDZQmw/kLc5nyu9CZV@fat_crate.local> Date: Tue, 19 Sep 2023 16:57:54 +0200 Message-ID: <871qeuw6q5.ffs@tglx> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Sep 19 2023 at 16:32, Borislav Petkov wrote: > On Tue, Sep 12, 2023 at 09:57:54AM +0200, Thomas Gleixner wrote: >> +/* Load microcode on BSP from CPIO */ > > Yeah, no need to say "from CPIO" everywhere. We load it from somewhere, > it can be cpio but it can be builtin too. Makes sense. > But I can fix up too when applying. Thanks a lot!