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=-5.8 required=3.0 tests=BAYES_00,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 66F6FC433E0 for ; Tue, 9 Feb 2021 15:44:47 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2AA3364E0D for ; Tue, 9 Feb 2021 15:44:47 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232550AbhBIPom (ORCPT ); Tue, 9 Feb 2021 10:44:42 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57524 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232540AbhBIPoX (ORCPT ); Tue, 9 Feb 2021 10:44:23 -0500 Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7F477C061788; Tue, 9 Feb 2021 07:43:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=s5g4oRzdusm7nzm3YBSDj6A0RZP/j9xutjAb4yxZeGc=; b=AqnQ8e/H7bgSWr6o6uJ5Ri8lBW IP8Vfk7QFeBFOmPAiXDbeix0b1Fmot0QgGrDEUSbY16LgAopd/aAWe8BnimcxQxkqstCng1eYdlnx 4inPGo4f92RRVnCDzjdVpzp+RIK3i1Ee4llLmJdYepKFNBBsWBQamycXysxFKN6Ti5v1j0YIEG8O/ FHBymeP5SsGB3VV4hhnrKZwz6SGe1MJpgD2N2pf15VOp59F1f8cvuzgwtMvNgu5N07mWbMWyeGqtM UCNqWz0wp7/eqpbaac+o5qjn6lddECFfwuHPlXfmdNeCzjnIEKLju273SRILFYBz7pKi+HMbo55qY fJhldnRw==; Received: from j217100.upc-j.chello.nl ([24.132.217.100] helo=noisy.programming.kicks-ass.net) by casper.infradead.org with esmtpsa (Exim 4.94 #2 (Red Hat Linux)) id 1l9VAx-007dEz-Na; Tue, 09 Feb 2021 15:43:40 +0000 Received: from hirez.programming.kicks-ass.net (hirez.programming.kicks-ass.net [192.168.1.225]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by noisy.programming.kicks-ass.net (Postfix) with ESMTPS id DA4983010D2; Tue, 9 Feb 2021 16:43:38 +0100 (CET) Received: by hirez.programming.kicks-ass.net (Postfix, from userid 1000) id C6FE22BC9353D; Tue, 9 Feb 2021 16:43:38 +0100 (CET) Date: Tue, 9 Feb 2021 16:43:38 +0100 From: Peter Zijlstra To: Sven Schnelle Cc: linux-kernel@vger.kernel.org, linux-next@vger.kernel.org Subject: Re: [PATCH] uprobes: add missing get_uprobe() in __find_uprobe() Message-ID: References: <20210209150711.36778-1-svens@linux.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210209150711.36778-1-svens@linux.ibm.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Feb 09, 2021 at 04:07:11PM +0100, Sven Schnelle wrote: > commit c6bc9bd06dff49fa4c("rbtree, uprobes: Use rbtree helpers") from > next-20210208 accidentally removed the refcount increase. Add it again. > Thanks, and sorry about that!