Received: by 2002:a05:6a10:f347:0:0:0:0 with SMTP id d7csp3268131pxu; Tue, 15 Dec 2020 02:54:28 -0800 (PST) X-Google-Smtp-Source: ABdhPJyumkbQQTQOEbtrULQeD5qzpPuI0Z8qAZfumFP/EnmyeH7ozp0V9SCtaqIr4kGxz7Odns3W X-Received: by 2002:a17:906:26ca:: with SMTP id u10mr13431960ejc.165.1608029668628; Tue, 15 Dec 2020 02:54:28 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1608029668; cv=none; d=google.com; s=arc-20160816; b=nFa54nCBUFYVyDfKcNSI0mvHD18F8B8mxaukULNLHhUYXj1xqkEmYo7GqKeGmxK3sM 5qroQ1qPE1m/cH//v/2P1B6Pfue66x2SuzEu1y9dmaT8Jdm9pQ4mb7X1e4sl3d1z+vTf eCsoiCZ2dnw0y4xskIWXvQUAS3WcVEHp2vrZyI/ldhNCYR71l4/yWSfEMlseHx052D0N N1huSdZfwkh3f0kVt6izeyGq7a1wYXYQ+J1+lnAKErCQ3Umyvtl1AKTDB4jP3B8W0EoO 56stoM7e8wuXPgQJnfZRxo/h4TreDqYBkSNIuW6gpkCNBL6nBLEoUYlQfc46zQEDMm+T WLcw== 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=JmrWDL2jLRTz1+YMEJjQyf1qI+lDDiA/fe3Wt2gIcAQ=; b=yoms1iNoJp/XfD+txyk+A4z1Y+JLV4x4r3vAsDLQf0zLgODEgjwlSjhOB+HywGyz5l lBMCB/e7yq9s+H8aHd02mxRt+Z2uEeF8YufBU2B8FlruC5HNRCYcwI6rSlEBukoJqO8y tzOk4QfFIawL1F7FrYRYwi18LJ6i0f4SRn3O8gc4F0JqERxUAfczuSTUOZAzC8xRj3AL qXrkR3mKgf3joWMgM5FK9lgU9cw4mPqfgNazrEN+sSLCRJ8p3h5my147jHyhuBGAgd/r YLISsz93TkDjcJF+oPrEFRqGYRFEs8Qj5xKZb8sx+4wvVZg8rJ7J8qSUD3Evy8+fO6pg q+Ig== 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 v2si700844edw.41.2020.12.15.02.54.05; Tue, 15 Dec 2020 02:54:28 -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 S1728061AbgLOKu6 (ORCPT + 99 others); Tue, 15 Dec 2020 05:50:58 -0500 Received: from bilbo.ozlabs.org ([203.11.71.1]:40017 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727335AbgLOKtj (ORCPT ); Tue, 15 Dec 2020 05:49:39 -0500 Received: by ozlabs.org (Postfix, from userid 1034) id 4CwFP56srbz9sTc; Tue, 15 Dec 2020 21:48:57 +1100 (AEDT) From: Michael Ellerman To: Christophe Leroy , Benjamin Herrenschmidt , Paul Mackerras , Michael Ellerman Cc: linux-kernel@vger.kernel.org, linuxppc-dev@lists.ozlabs.org In-Reply-To: <6470ab99e58c84a5445af43ce4d1d772b0dc3e93.1606247495.git.christophe.leroy@csgroup.eu> References: <6470ab99e58c84a5445af43ce4d1d772b0dc3e93.1606247495.git.christophe.leroy@csgroup.eu> Subject: Re: [PATCH v1 1/3] powerpc/32s: Remove unused counters incremented by create_hpte() Message-Id: <160802921064.504444.15188323739151416876.b4-ty@ellerman.id.au> Date: Tue, 15 Dec 2020 21:48:57 +1100 (AEDT) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 24 Nov 2020 19:51:55 +0000 (UTC), Christophe Leroy wrote: > primary_pteg_full and htab_hash_searches are not used. > > Remove them. Applied to powerpc/next. [1/3] powerpc/32s: Remove unused counters incremented by create_hpte() https://git.kernel.org/powerpc/c/c5ccb4e78968fbe64f938a5a012fc8ec25cafabf [2/3] powerpc/32s: In add_hash_page(), calculate VSID later https://git.kernel.org/powerpc/c/fec6166b44ded68e68144144a02e498580118f1a [3/3] powerpc/32s: Cleanup around PTE_FLAGS_OFFSET in hash_low.S https://git.kernel.org/powerpc/c/da481c4fe0e485cdab5cf4d2761be8b8fb38d3d1 cheers