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 X-Spam-Level: X-Spam-Status: No, score=-2.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_MUTT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id DAC25C43613 for ; Mon, 24 Jun 2019 14:49:35 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id BA1AA2063F for ; Mon, 24 Jun 2019 14:49:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728859AbfFXOtb (ORCPT ); Mon, 24 Jun 2019 10:49:31 -0400 Received: from foss.arm.com ([217.140.110.172]:52588 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728127AbfFXOtb (ORCPT ); Mon, 24 Jun 2019 10:49:31 -0400 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 4C1F7344; Mon, 24 Jun 2019 07:49:30 -0700 (PDT) Received: from arrakis.emea.arm.com (arrakis.cambridge.arm.com [10.1.196.78]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 12ADD3F71E; Mon, 24 Jun 2019 07:49:26 -0700 (PDT) Date: Mon, 24 Jun 2019 15:49:24 +0100 From: Catalin Marinas To: Russell King - ARM Linux admin Cc: Thomas Gleixner , Vincenzo Frascino , Andy Lutomirski , Rasmus Villemoes , Will Deacon , linux-mips@vger.kernel.org, linux-kselftest@vger.kernel.org, Shuah Khan , linux-arch@vger.kernel.org, Dmitry Safonov , Daniel Lezcano , Sasha Levin , Arnd Bergmann , Andre Przywara , Dmitry Safonov <0x7f454c46@gmail.com>, Michael Kelley , Peter Collingbourne , LAK , Andrei Vagin , Huw Davies , LKML , Ralf Baechle , Mark Salyzyn , Paul Burton , Shijith Thotton , Linus Torvalds Subject: Re: [PATCH v7 00/25] Unify vDSOs across more architectures Message-ID: <20190624144924.GE29120@arrakis.emea.arm.com> References: <20190621095252.32307-1-vincenzo.frascino@arm.com> <20190624142346.pxljv3m4npatdiyk@shell.armlinux.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190624142346.pxljv3m4npatdiyk@shell.armlinux.org.uk> User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-kselftest-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kselftest@vger.kernel.org On Mon, Jun 24, 2019 at 03:23:46PM +0100, Russell King wrote: > On Mon, Jun 24, 2019 at 04:18:28PM +0200, Thomas Gleixner wrote: > > Vincenzo, > > > > On Mon, 24 Jun 2019, Thomas Gleixner wrote: > > > > > I did not merge the ARM and MIPS parts as they lack any form of > > > acknowlegment from their maintainers. Please talk to those folks. If they > > > ack/review the changes then I can pick them up and they go into 5.3 or they > > > have to go in a later cycle. Nevertheless it was well worth the trouble to > > > have those conversions done to confirm that the new common library fits a > > > bunch of different architectures. > > > > I talked to Russell King and he suggested to file the ARM parts into his > > patch system and he'll pick them up after 5.3-rc1. > > > > https://www.arm.linux.org.uk/developer/patches/ > > > > I paged out how to deal with it, but you'll surely manage :) > > Easy way: ask git to add the "KernelVersion" tag as a header to the > email using --add-header to e.g. git format-patch, and just mail them > to patches@armlinux.org.uk Although I haven't send patches to Russell in a while, I still have a git alias in my .gitconfig (only works with one patch at a time IIRC, sending multiple patches may arrive in a different order): [alias] send-rmk-email = !git send-email --add-header=\"KernelVersion: $(git describe --abbrev=0)\" --no-thread --suppress-cc=all --to="patches@arm.linux.org.uk" -- Catalin