Received: by 2002:a25:4158:0:0:0:0:0 with SMTP id o85csp219359yba; Fri, 3 May 2019 00:01:41 -0700 (PDT) X-Google-Smtp-Source: APXvYqwNI/Yc+EHXX9nftXIf5b2NUahnC+2QTMAS1HOPPRWPYojUKLSSheQtRBnvQFgMserhKooW X-Received: by 2002:a63:1e5b:: with SMTP id p27mr8149591pgm.213.1556866901138; Fri, 03 May 2019 00:01:41 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1556866901; cv=none; d=google.com; s=arc-20160816; b=EYbvE0DWJ7ulQzhlcdEzEdO5go0k8dkH23DDSHyo6xRLNFYU77bqQfBRKNSOVTsfIH 2lM3IJe/xUwvA1AH/XpZQZFqvBGN6JtcdpG/kwAGSTLQsYYG94JgqbQuiXjPDpLfCK30 IFZ9hk2789pYUpQsxbjv2cXipmgc4C2Mbd4disIMoBGSMFyhTA4CbQDnaCtldHqxXJx7 5LOHqkrfWyQIiFhzkmrXWuWyLdN14nZZwvH6jCfXfVqyPA0RHl9rlGbQ2Qj2tzvbsLFP ZUZBOwClWgPzA5RHkgdfnVwZpxMA6EoXrgRP9ckWEIAA5G/uL23P0LAtsDHCMVcOc4wB 3AWQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:date:message-id:subject:cc:from:to :in-reply-to; bh=qvw+eKn9j1+miXn9JkDDDG+9HT45X/nZ9cgkEun7kg4=; b=sjOmEqfDm8q0cuw0HW6r+oL7ojP7Ri8MxJBh7A7FLijr5cS1HAJ6qCda3rbtrOPmLT bJfaecybJJ1/Z85nCOwB2V+Dmn1HiaKoxIFI9aWCgkT+WbwQ4Mihz9XmHsmcXAT6zt4u 8vwOKsUekF2WqS2jRAjbc2x/MbcKTvc31Db/0PxlLBt5RBU1nB0qNBIXZYGIqlxov2H2 rQedV/vgiQHtvzjHd4diRHfnM3nPdmGge2QVC6vAy/OjO11lPU3ISfZUalfctapYjZCf h7FXytZaoQs3OdfYdz5DHs4jdFiFKgfjT6ToE+Cf+pnqkb55eJ4eAamaxrmgFagdLiVP rZqw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id a85si1308529pfj.12.2019.05.03.00.01.24; Fri, 03 May 2019 00:01:41 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727294AbfECG7d (ORCPT + 99 others); Fri, 3 May 2019 02:59:33 -0400 Received: from ozlabs.org ([203.11.71.1]:53895 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727256AbfECG7a (ORCPT ); Fri, 3 May 2019 02:59:30 -0400 Received: by ozlabs.org (Postfix, from userid 1034) id 44wNKX3tkmz9sPV; Fri, 3 May 2019 16:59:27 +1000 (AEST) X-powerpc-patch-notification: thanks X-powerpc-patch-commit: 8a23fdec3dbdc8bfde6f806d36e773236dab6663 X-Patchwork-Hint: ignore In-Reply-To: <1103b2c9715bab90d680dcf78303619ff49debd0.1556627571.git.christophe.leroy@c-s.fr> To: Christophe Leroy , Benjamin Herrenschmidt , Paul Mackerras , Nicholas Piggin From: Michael Ellerman Cc: linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v3 01/16] powerpc/32: Refactor EXCEPTION entry macros for head_8xx.S and head_32.S Message-Id: <44wNKX3tkmz9sPV@ozlabs.org> Date: Fri, 3 May 2019 16:59:27 +1000 (AEST) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 2019-04-30 at 12:38:50 UTC, Christophe Leroy wrote: > EXCEPTION_PROLOG is similar in head_8xx.S and head_32.S > > This patch creates head_32.h and moves EXCEPTION_PROLOG macro > into it. It also converts it from a GCC macro to a GAS macro > in order to ease refactorisation with 40x later, since > GAS macros allows the use of #ifdef/#else/#endif inside it. > And it also has the advantage of not requiring the uggly "; \" > at the end of each line. > > This patch also moves EXCEPTION() and EXC_XFER_XXXX() macros which > are also similar while adding START_EXCEPTION() out of EXCEPTION(). > > Signed-off-by: Christophe Leroy Series applied to powerpc next, thanks. https://git.kernel.org/powerpc/c/8a23fdec3dbdc8bfde6f806d36e77323 cheers