Received: by 2002:a05:6a10:5bc5:0:0:0:0 with SMTP id os5csp4126610pxb; Tue, 2 Nov 2021 04:42:28 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxC4guJXGcgyNxLCX5Aswzz9Ke0k3UvkBHbAmP/vhx2fW62Of6244Snoa8QzxPSuBm1Ut+W X-Received: by 2002:a17:906:4792:: with SMTP id cw18mr14508400ejc.224.1635853348283; Tue, 02 Nov 2021 04:42:28 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1635853348; cv=none; d=google.com; s=arc-20160816; b=Onju0WgAy+gxPM6z8VuRPI9phM0gG4N9Zfzi+ksBj5fHR24AGy9IFjQ515v6Kvghg6 yLMeNWTX3OTOVpJbotVKdUkkM6TPyxY5G8cJTJjvPPlRRJozBXPetqjqhOMqFbU7BNxF H1r7/x7gG2UwunqTF4gSDA3bUfMO/FEMoOj6Cs/C/tM1LD9v6RN6hnoclhyUP/xFgI5g xhY8VmTPBerFNYTrv8FctDuYWWWmOfVjLLarnfd+x2zhalAUUJ6fzcLTAUUE67WrjP6r FafRDJi5Xs4u+esjqhnRmoN3Jz6iUVsqM8avuvUEw5xoI5EUlOaKLN08ygb7J10FyLyr 2bDg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version:date :message-id:subject:references:in-reply-to:cc:to:from; bh=u56RuP/HxEAYPrmmhB449q1O79NybFW/Ahh2xWlD+0k=; b=ZCzS3V9tiY+AfB8FAzYhC3ja2z0EuD+TN8lKHBLSGTULoxxighxdvfmp/WbZ+p9JqO hAkaIIxENMXw+GT6NOpylUG5F5q5GhchdYMMX1IOCFmNDuLt1LvqZdYzGXOz2LGiyCe1 BZv18SKznuYxhN0DTKEgM6uUR03Anv3uQ0EDLgAc6jHW7kkAbCp0m/rsykYu/7eZJ1BY mk3gi3FmRdwvYiG0Ruloei8+rYXesSMGbzMCy69lo12PQ9cluOYoj5QiZ6A7eiBGgWxX V6FAjOSpy5PbfXXDN7cYMeTNChBj5ry943f9vu0kTgR2JOB9OkWRSXgYJOSVq6Mq5951 wVVQ== 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 h4si27126795edt.426.2021.11.02.04.42.04; Tue, 02 Nov 2021 04:42:28 -0700 (PDT) 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 S231939AbhKBLl2 (ORCPT + 99 others); Tue, 2 Nov 2021 07:41:28 -0400 Received: from gandalf.ozlabs.org ([150.107.74.76]:43817 "EHLO gandalf.ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231303AbhKBLlI (ORCPT ); Tue, 2 Nov 2021 07:41:08 -0400 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 4Hk7Fh55K6z4xd9; Tue, 2 Nov 2021 22:38:32 +1100 (AEDT) From: Michael Ellerman To: Paul Mackerras , Michael Ellerman , Christophe Leroy , Benjamin Herrenschmidt Cc: linux-kernel@vger.kernel.org, linuxppc-dev@lists.ozlabs.org In-Reply-To: References: Subject: Re: [PATCH v2] powerpc/8xx: Simplify TLB handling Message-Id: <163584791161.1845480.3784540326503366028.b4-ty@ellerman.id.au> Date: Tue, 02 Nov 2021 21:11:51 +1100 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 17 Sep 2021 15:57:12 +0200, Christophe Leroy wrote: > In the old days, TLB handling for 8xx was using tlbie and tlbia > instructions directly as much as possible. > > But commit f048aace29e0 ("powerpc/mm: Add SMP support to no-hash > TLB handling") broke that by introducing out-of-line unnecessary > complex functions for booke/smp which don't have tlbie/tlbia > instructions and require more complex handling. > > [...] Applied to powerpc/next. [1/1] powerpc/8xx: Simplify TLB handling https://git.kernel.org/powerpc/c/63f501e07a8557bc8ab79d17ef76ae21df1e395d cheers