From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 307EB1304A1 for ; Tue, 21 May 2024 14:24:44 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=170.10.133.124 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1716301486; cv=none; b=nA7MFBJptebS/qsnQgmpCptR53Q1hIaOi4wCnn5b6jB6AgjMwNWtiDiSIAObcDZ1MDRcmuTtZOgaEx+v3l6WFIAQ9kvK0w6HcU6Qr06lDm2afIIGUocbbnuz/Zddeh3OeWWmfwJP4c9rdWi93u2W90VWfcipq/Rn0J6LZgo8cBE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1716301486; c=relaxed/simple; bh=ecwQ1WESfS0Bg99iSTlfh+kjjj2JtCaqcwh6YNrIDzs=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=U9nOMAvulfVl3roN8zG5FJyNjnnIDMbgtmT9Dc078xf7rvVRU9YjLF19gkKqvcJ6dOI3f2BwGv77btJqegU70tmXyowQWZ9NIELYw/TfUbeWwJn6oNZojReu25JkYcluC7NvR0ZBUciSgyNRDyBWntEFKq0okTgyGDd39R/Bh5o= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=redhat.com; spf=pass smtp.mailfrom=redhat.com; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b=EPWm05kF; arc=none smtp.client-ip=170.10.133.124 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=redhat.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="EPWm05kF" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1716301484; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=h51fvV2Q63ftj3Ef8Qq5geaM49/S6D9fR9Vo3faaDr8=; b=EPWm05kFH+eXINKrQkUVjSp7xYjpur5OcyhDIP8Ohkq8vLmZRohdZEb43H4GiaVqhGiFDe F3FMDai/QdL2Hfyxz+KmTIBdaxwpiVxkjc4zoS3KCUaR8pdf84Dpga1yLJnwSZooNh768e sN5/X8EC0NRhgaoWh0rff136OxP6y7k= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-212-guMog13wMtOg8Q3jV0IpxA-1; Tue, 21 May 2024 10:24:38 -0400 X-MC-Unique: guMog13wMtOg8Q3jV0IpxA-1 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.rdu2.redhat.com [10.11.54.3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 08252101A551; Tue, 21 May 2024 14:24:38 +0000 (UTC) Received: from dhcp-27-174.brq.redhat.com (unknown [10.45.224.64]) by smtp.corp.redhat.com (Postfix) with SMTP id 4867E103A3AF; Tue, 21 May 2024 14:24:36 +0000 (UTC) Received: by dhcp-27-174.brq.redhat.com (nbSMTP-1.00) for uid 1000 oleg@redhat.com; Tue, 21 May 2024 16:23:11 +0200 (CEST) Date: Tue, 21 May 2024 16:23:08 +0200 From: Oleg Nesterov To: Andrii Nakryiko Cc: linux-trace-kernel@vger.kernel.org, rostedt@goodmis.org, mhiramat@kernel.org, bpf@vger.kernel.org, jolsa@kernel.org, Breno Leitao Subject: Re: [PATCH] uprobes: prevent mutex_lock() under rcu_read_lock() Message-ID: <20240521142308.GB19434@redhat.com> References: <20240521053017.3708530-1-andrii@kernel.org> Precedence: bulk X-Mailing-List: linux-trace-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240521053017.3708530-1-andrii@kernel.org> User-Agent: Mutt/1.5.24 (2015-08-30) X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.3 On 05/20, Andrii Nakryiko wrote: > > Fixes: 1b8f85defbc8 ("uprobes: prepare uprobe args buffer lazily") > Reported-by: Breno Leitao > Signed-off-by: Andrii Nakryiko > --- > kernel/trace/trace_uprobe.c | 14 +++++++++----- > 1 file changed, 9 insertions(+), 5 deletions(-) Reviewed-by: Oleg Nesterov