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 09E03C636D4 for ; Wed, 1 Feb 2023 20:47:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231664AbjBAUry (ORCPT ); Wed, 1 Feb 2023 15:47:54 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54052 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231575AbjBAUre (ORCPT ); Wed, 1 Feb 2023 15:47:34 -0500 Received: from mail-ed1-x52e.google.com (mail-ed1-x52e.google.com [IPv6:2a00:1450:4864:20::52e]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0D0E97E07B for ; Wed, 1 Feb 2023 12:46:01 -0800 (PST) Received: by mail-ed1-x52e.google.com with SMTP id v10so38113edi.8 for ; Wed, 01 Feb 2023 12:46:01 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:from:to:cc:subject:date:message-id:reply-to; bh=qi/CEnKwOsWvZyQG3j5nugYoM+i4R+Edn8Y4YOIOMEc=; b=a7ehvPKTQB+cAS+tXX2WGokeoGiUy7y9+q8Npe+czuVuXF3Hs44SC/Q2Zl51p5h3HU gDBBXaTKcH61VPvJHvgcEYjNEpmSFRlHXT2f+XfsL/zA69xTHQzHr0s7Cp/PltLScbIn v8PeiJDsqeRFalVM4rTq5FSN0x0RziSpjl5nbNp7cOJMkupr+nJHWq8NGhQR4IJG6f2h rVgaA+TJBHM3Myg1iAlihcvOvgT1/D/95G86wChVh9bIqo37MKMh/GKHU6paSOZqx5ts JK7fEEAOjyZWNU1KDAz65vqefm7eB/TiLReDhsYnPyjqHTXpsxGnjJG2Id7jO1u0cd2z 6zpw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=qi/CEnKwOsWvZyQG3j5nugYoM+i4R+Edn8Y4YOIOMEc=; b=3aRx9+vjQXun9GngMuAZPbDqBBjYTNWnHRG5AmYqEDzdGLEvAx6DWd9/E++xBvRv4U jKEBlkiQvQpTMCPb1UGTKO72XEEnxKtc2jA2YT5oMEQbudf7sHWpOCT/vPF2wImRntpL PM9daUAqrQjkv0yM/NBbxTz+qKqmYcMMtldT98HEUYH0DqJjQHVVFXn4wYdI4Am1PkJd 7P9PlVvesvePg+4aaVjHMTUHZY0RkMFQIOZWPET+U9cu/Wk2K4YahDoAxsbnyu5ag3Ue bvLqklcshy66gciXRT7B+jieXjgFBYnf+wTMgwqXj9DXfKD29a6MrohqChfNmEOVb64+ 9s5A== X-Gm-Message-State: AO0yUKX6QbWTG2NXg3FTSiW7Uemlo1ahHSh5kSdvmXErZeGQecFBu9kv 9wX+vBcgIZqlPWt/fJrvVzOfGE7lcNwP+6YbSehHkw== X-Google-Smtp-Source: AK7set/ZkUlZqpiWXnrr5+yAKOVVZjKeEoN06C9cQhxoC/aYjNJVzGbgRYXRJz+ugljzyrzu8Il9l9RxF9DxwX+aYR8= X-Received: by 2002:a50:f60f:0:b0:4a2:27c2:aa9a with SMTP id c15-20020a50f60f000000b004a227c2aa9amr1111124edn.61.1675284355605; Wed, 01 Feb 2023 12:45:55 -0800 (PST) MIME-Version: 1.0 References: <20221221222418.3307832-1-bgardon@google.com> In-Reply-To: From: Ben Gardon Date: Wed, 1 Feb 2023 12:45:44 -0800 Message-ID: Subject: Re: [RFC 00/14] KVM: x86/MMU: Formalize the Shadow MMU To: Sean Christopherson Cc: linux-kernel@vger.kernel.org, kvm@vger.kernel.org, Paolo Bonzini , Peter Xu , David Matlack , Vipin Sharma , Nagareddy Reddy Content-Type: text/plain; charset="UTF-8" Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Feb 1, 2023 at 12:02 PM Sean Christopherson wrote: > > On Wed, Dec 21, 2022, Ben Gardon wrote: > > This series builds on 9352e7470a1b4edd2fa9d235420ecc7bc3971bdc. > > Before you send the next version, can you tweak your workflow to generate the > base commit via `git format-patch --base`? That makes it much easier for humans > and scripts to find the base commit, and saves you from having to remember to > manually specify the base. Because of the code movement, applying this series > without the precise base is an exercise in frustration. > > E.g. my workflow does > > git format-patch --base=HEAD~$nr > > where $nr is the number of patches to generate. There's also an "auto" option, > but IIRC that only works if you have the upstream pointing at the base, e.g. it > falls apart if upstream points at your own remote "backup" repo. Sure thing, thanks for the tip!