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 AE370C6FD1D for ; Wed, 15 Mar 2023 14:41:30 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231976AbjCOOl3 (ORCPT ); Wed, 15 Mar 2023 10:41:29 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45610 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230205AbjCOOl2 (ORCPT ); Wed, 15 Mar 2023 10:41:28 -0400 Received: from vps0.lunn.ch (vps0.lunn.ch [156.67.10.101]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 298A36A48; Wed, 15 Mar 2023 07:41:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lunn.ch; s=20171124; h=In-Reply-To:Content-Disposition:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:From:Sender:Reply-To:Subject: Date:Message-ID:To:Cc:MIME-Version:Content-Type:Content-Transfer-Encoding: Content-ID:Content-Description:Content-Disposition:In-Reply-To:References; bh=W2BBs960owSPDTyfR6THQhGliS/0eEum7n0/NRvPXVA=; b=VajmKnChbeV7YPUA20i4UIUZuv bOKSBPXgLsNTHrxdnNSNVXrnTr0u15dgZ2kuVhUbc//dYIyG7d4FFG/J9kh/IoqTxER6vMLi9rQgX o4Vp1Uf4VuQ4CXMQNbkJ2WNJdcAC6rbGaVpFvI9wNLZUm/Ms4DB3aAueQPsMw3JEzx14=; Received: from andrew by vps0.lunn.ch with local (Exim 4.94.2) (envelope-from ) id 1pcSJZ-007P84-NX; Wed, 15 Mar 2023 15:41:17 +0100 Date: Wed, 15 Mar 2023 15:41:17 +0100 From: Andrew Lunn To: Klaus Kudielka Cc: Vladimir Oltean , Florian Fainelli , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Richard Cochran , netdev@vger.kernel.org, linux-kernel@vger.kernel.org, Vladimir Oltean Subject: Re: [PATCH] net: dsa: mv88e6xxx: don't dispose of Global2 IRQ mappings from mdiobus code Message-ID: References: <20230314182659.63686-1-klaus.kudielka@gmail.com> <20230314182659.63686-2-klaus.kudielka@gmail.com> <20230314200100.7r2pmj3pb4aew7gp@skbuf> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On Wed, Mar 15, 2023 at 07:07:57AM +0100, Klaus Kudielka wrote: > On Tue, 2023-03-14 at 22:01 +0200, Vladimir Oltean wrote: > > > > I'm a bit puzzled as to how you managed to get just this one patch to > > have a different subject-prefix from the others? > > A long story, don't laugh at me. > > I imported your patch with "git am", but I imported the "mbox" of the > complete message. That was the start of the disaster. What i found useful is b4 am [msgid] It gives you an mbox file containing just patches, which should then cleanly git am. Andrew