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=-1.1 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS autolearn=no 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 6C991C433DF for ; Mon, 22 Jun 2020 04:21:05 +0000 (UTC) Received: from lists.ozlabs.org (lists.ozlabs.org [203.11.71.2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 9677920679 for ; Mon, 22 Jun 2020 04:21:04 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=ellerman.id.au header.i=@ellerman.id.au header.b="aHW3Amow" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 9677920679 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=ellerman.id.au Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=linuxppc-dev-bounces+linuxppc-dev=archiver.kernel.org@lists.ozlabs.org Received: from bilbo.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 49qx6j1JsJzDqYq for ; Mon, 22 Jun 2020 14:21:01 +1000 (AEST) Received: from ozlabs.org (bilbo.ozlabs.org [IPv6:2401:3900:2:1::2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 49qx4b3mfszDqXM for ; Mon, 22 Jun 2020 14:19:11 +1000 (AEST) Authentication-Results: lists.ozlabs.org; dmarc=none (p=none dis=none) header.from=ellerman.id.au Authentication-Results: lists.ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=ellerman.id.au header.i=@ellerman.id.au header.a=rsa-sha256 header.s=201909 header.b=aHW3Amow; dkim-atps=neutral Received: from authenticated.ozlabs.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail.ozlabs.org (Postfix) with ESMTPSA id 49qx4Z5bmsz9sRN; Mon, 22 Jun 2020 14:19:10 +1000 (AEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ellerman.id.au; s=201909; t=1592799551; bh=0tEIz6JxNkf7bgRb+6/0QwG9eouCp7+4YDrSoXR8HxY=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=aHW3AmowwS2VFgoC895R8RCop4tahFGfE6KrrIugUoAZF4ZjaOS1SX+lRgTC7mZLS 7Ij6i2+VtOEWaDUFWXwOM5LsO4xkSg1M/KDnmqxdR68mWXkOGCiaRBYDZyj76e+J5O yRiHD5nRI2em23eOpru479AkmK7RkepLcgzrN3Mm77lQSwLj42/kuQhfn1ZDXkyz7/ snMXaZoXD7m27vt2i+x52DnzS+sk619eg+tUVYWM4lDUCkApklij28m2lb8cIV6IzV YbjayaAGqMvIHcPjNe1a7zyrp6i8Bl/8C2Vo8zB8jLG2VFcE/gSJgKe1Bz8ltmZO90 KRKSeGBsvW/Yg== From: Michael Ellerman To: Alistair Popple , linuxppc-dev@lists.ozlabs.org Subject: Re: [PATCH 2/2] selftests/powerpc: Add prefixed loads/stores to alignment_handler test In-Reply-To: <2070842.8SDOZEvoPg@townsend> References: <20200520021103.19798-1-jniethe5@gmail.com> <20200520021103.19798-2-jniethe5@gmail.com> <2070842.8SDOZEvoPg@townsend> Date: Mon, 22 Jun 2020 14:19:39 +1000 Message-ID: <87wo3zbulg.fsf@mpe.ellerman.id.au> MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Jordan Niethe Errors-To: linuxppc-dev-bounces+linuxppc-dev=archiver.kernel.org@lists.ozlabs.org Sender: "Linuxppc-dev" Alistair Popple writes: > On Wednesday, 20 May 2020 12:11:03 PM AEST Jordan Niethe wrote: >> +/* POWER10 feature */ >> +#ifndef PPC_FEATURE2_ARCH_3_10 >> +#define PPC_FEATURE2_ARCH_3_10 0x00040000 >> +#endif > > One minor nit pick, this needs to be updated to PPC_FEATURE2_ARCH_3_1 to > reflect the changes made in response to feedback on the patch series that > introduced this feature. Done, thanks for noticing. cheers