Received: by 2002:a05:6a10:8c0a:0:0:0:0 with SMTP id go10csp3722652pxb; Tue, 26 Jan 2021 03:07:48 -0800 (PST) X-Google-Smtp-Source: ABdhPJw+ljU2J700N3SQSeRKExo9RimvgyLQC1mWaE38hC96C6jxbtGSchukA1kf49lMmN4UbIzW X-Received: by 2002:a05:6402:6c4:: with SMTP id n4mr4217369edy.257.1611659268210; Tue, 26 Jan 2021 03:07:48 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1611659268; cv=none; d=google.com; s=arc-20160816; b=UarD1q/eQmyqsYfDp830iiUqMZEt08YaA2BdXpjhaUkBfJZAAMRQFsHdEfyAB2olTD /Ur/qO40RahOWhJD7VkshURxlqViiCgBE2nWiEoZey/XqMz/xfz0IgKgH7HcJ2SkUn6t ytrUoDUMTfsaNhFH4St/5D53IpjAKhCrS+xEALWDT0W+vCPi1eT5UB9KkrqM6fUXhBxl uenag1cZZ+wi+gzgBVyDLDso2dWmDWleDxe6AUz97SgNNg1/bRDgmGwPsI3nbAOWxlB+ hYKAxo/VtRg0FG2dgWOwIqPDbOLr6I6IQoDcvSPAXnL152d9AEWuvKCP5LP7ezBuAk32 lWCQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:user-agent:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=YIOTvSES37yb1c1XIh5lhyxLpml/tbOEs6Xh/uSwbEQ=; b=fxbg3aumlOWO466cm84wG/B7XhJ81RV2McVxnSH8sWAZVSJEQCkhloY/kad9TrH4Tn bUnGd5earkzzPvHgXl5L3XhhNhXYyMGDnqnFK5lgo4pPDUh79padrBRcE8lo3AYBbE+1 XM5lhfePCagkg/eetZeog6hNsO5+ZpVffRrguhR0qYDdVwgmvyYO4EwiCGnrhchiu79h rSasbv2Ep0YRLYYB7EN3ulAcoA/jn2eIa+8iJ3KqYJdfFsvtOTFRcfh5hF9coe2QVsna ghI81fIEcfckV0MGjJWoG5WAxR6rm8zjtqcVL9TAtpnY1SdYLrLtlUwDajuYGQgF62+b PojA== 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 j23si7209385eje.690.2021.01.26.03.07.24; Tue, 26 Jan 2021 03:07:48 -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 S1726822AbhAZLFZ (ORCPT + 99 others); Tue, 26 Jan 2021 06:05:25 -0500 Received: from mx2.suse.de ([195.135.220.15]:42836 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728409AbhAZGFW (ORCPT ); Tue, 26 Jan 2021 01:05:22 -0500 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id 0C527AF99; Tue, 26 Jan 2021 06:04:41 +0000 (UTC) Date: Mon, 25 Jan 2021 22:04:33 -0800 From: Davidlohr Bueso To: Peter Zijlstra Cc: linux-kernel@vger.kernel.org, walken@google.com, mingo@kernel.org, tglx@linutronix.de, oleg@redhat.com, irogers@google.com, juri.lelli@redhat.com, vincent.guittot@linaro.org Subject: Re: [PATCH v2 0/7] Generic RB-tree helpers Message-ID: <20210126060433.2oqgwogx6xrgcsan@offworld> References: <20210125150953.679129361@infradead.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <20210125150953.679129361@infradead.org> User-Agent: NeoMutt/20201120 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 25 Jan 2021, Peter Zijlstra wrote: > >Hai all, > >I found myself needing to write yet another rbtree and remembered I had these >patches gathering dust. I've had them in a git tree pretty much ever since I >posted them last and the robot is telling me they build/work/dance/sing fine. > >I'm proposing to stick them in tip and get on with life. What say you? I like consolidating this code with helpers, reduces LoC and improves readability imo. Feel free to add my: Acked-by: Davidlohr Bueso