Received: by 2002:a05:6a10:f347:0:0:0:0 with SMTP id d7csp4727145pxu; Thu, 10 Dec 2020 04:08:17 -0800 (PST) X-Google-Smtp-Source: ABdhPJzmDkjGa5wIVixZZbfFxverZ2XE8LzujiiH7c+3WExLpPS94luizy+IQWjNUSvRPSFxumrO X-Received: by 2002:a05:6402:2041:: with SMTP id bc1mr6364458edb.369.1607602096958; Thu, 10 Dec 2020 04:08:16 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1607602096; cv=none; d=google.com; s=arc-20160816; b=oCw1thVbWLOzZ2ImlKvNqjpB1srYGJOjqJeEKNh6UqwfmJ1J0lGpbfkroH8U3Pj5UT RDHX2bcGgeUvlb3wCN4x4kk/4R+CXU8zqzGbJblWEbj3WY84NKHm3Rsv/ktIEnE9WYEL 7ONyEtGSN7Ch4NPL+sflZtFLIfOs75pZN62h8wSSIdxJc8qmQiBD5G1sIYDOXqBcyozj wmA4MI+JLY+RjT+CFCOVlxgm1ki+0Te8LpBIVcinyWTvNzUl7ONm0CyavMrkc/pI0WOI XUdo/oAYBXZnenmbF/SWT1/4mxw+HuTIRNB2EdDCjmZtGEx4q8ZZfnpsxfBiU633Wykb K96A== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:date:message-id:subject:references:in-reply-to :cc:to:from; bh=kFADgKBQb/hHw6jfnrEEWdDqgTF6ra3yP5rq5EagMHs=; b=Tm+146Trtib92eDUZrykI2qST51QCsRcdXHAraGEQzucqZHP049gSqN2hCSMY4Jjin i+GY/HFY6u+P3HQtfOQFDV2xO4pd5fvxgYGaXBLLE/T33tI8OgaWhVOCpdxDAtpAJxqT 5+JZ73LF2Cw0c1pXiA3c/lFzPJKzxUzsRYBPbTRiGt/T3S7W/xNm8gtnjQvn6TiDuvgF g8As+kuSjEX66JgXkHZkAM+jJqSOGATrit1XuSmZPeNvDvV9221phuAiG5eRjVJEkfNi hDuZFD6C0U6T6ojwu9TDKD3bluk/xhL/ITd0oK6EgT4iusp5Bl4PJGlyYqQ0QKK7bhjv uQPg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id lv26si2416288ejb.218.2020.12.10.04.07.54; Thu, 10 Dec 2020 04:08:16 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2389548AbgLJLcA (ORCPT + 99 others); Thu, 10 Dec 2020 06:32:00 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33112 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2389530AbgLJLbJ (ORCPT ); Thu, 10 Dec 2020 06:31:09 -0500 Received: from ozlabs.org (bilbo.ozlabs.org [IPv6:2401:3900:2:1::2]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 35525C06138C for ; Thu, 10 Dec 2020 03:30:01 -0800 (PST) Received: by ozlabs.org (Postfix, from userid 1034) id 4CsBXl0M35z9sXV; Thu, 10 Dec 2020 22:29:58 +1100 (AEDT) From: Michael Ellerman To: Christophe Leroy , Paul Mackerras , Benjamin Herrenschmidt , Michael Ellerman Cc: linux-kernel@vger.kernel.org, linuxppc-dev@lists.ozlabs.org In-Reply-To: <4fc9e30b2b09933c8dfd7a50924dfbdf9ea6a80f.1602587470.git.christophe.leroy@csgroup.eu> References: <4fc9e30b2b09933c8dfd7a50924dfbdf9ea6a80f.1602587470.git.christophe.leroy@csgroup.eu> Subject: Re: [PATCH v2 1/2] powerpc/feature: Fix CPU_FTRS_ALWAYS by removing CPU_FTRS_GENERIC_32 Message-Id: <160756607118.1313423.13202054747271223838.b4-ty@ellerman.id.au> Date: Thu, 10 Dec 2020 22:29:58 +1100 (AEDT) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 13 Oct 2020 11:11:20 +0000 (UTC), Christophe Leroy wrote: > On 8xx, we get the following features: > > [ 0.000000] cpu_features = 0x0000000000000100 > [ 0.000000] possible = 0x0000000000000120 > [ 0.000000] always = 0x0000000000000000 > > This is not correct. As CONFIG_PPC_8xx is mutually exclusive with all > other configurations, the three lines should be equal. > > [...] Patch 2 applied to powerpc/next. [2/2] powerpc/feature: Remove CPU_FTR_NODSISRALIGN https://git.kernel.org/powerpc/c/7d47034551687eb6c15e8431d897a3758fc5f83e cheers