From nobody Fri Dec 19 21:47:56 2025 Received: from out-180.mta0.migadu.com (out-180.mta0.migadu.com [91.218.175.180]) (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 682D217AE1D for ; Mon, 19 Aug 2024 16:59:57 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.180 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724086799; cv=none; b=ZcqvbPEFngCSrHLB0nfx4Q+1i26UhDUyMIpBrbz/umZMOuQt0WQxxZSQm7OVSYrVAhrxUvcXodZ9hqH/+Agd2gK3SKI3iVH6Eub05QppdWWWHSaywsemczu2h1dy6x/vfA5Yz/5qD2HB0Tc6a2fCcWq/sFEo7B5oqgAXha9UsNg= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724086799; c=relaxed/simple; bh=/SzmOJ3LG15vYyGTtMCt8K0n5odmkaPenN5yL3rIqbw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=uj+fNuirYxy9WqOPsaeLRFjlemDPN1BFxZwJSwyX8HRKL3sfkKfjzPZHmDD4aqVc4fEjMMHUlVYSoavYy4bVh0j9HCCUfoqTxGglXvo0Wvwr/YmiWr5NOSimZG56Av5wf2jI0HSoUzyeQ+SO58fjUNzFT4AF9ugp8lxr9ly727A= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=MmZjI8QO; arc=none smtp.client-ip=91.218.175.180 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="MmZjI8QO" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1724086795; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=q+a59+xckq+FwlxTJgX8Ca3QgkTlwzyh9yPMBQiYgrI=; b=MmZjI8QOU4FfHIAlyzVOfn/3g5QIhD3bLcwk0TiPh8g6ONg//O4qEF7D4pzy//8VH1Nj96 2QB/GWRFzos5QN1Il3lv8jdI3KFdpkINo1nQSD0zMovM0RADTL1Rk3YpsLP1DeLKmv3ef3 VOLNrutBR1exEtDFKRUjnBJW2M5UBFM= From: Kent Overstreet To: rcu@vger.kernel.org Cc: Kent Overstreet , paulmck@kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 5/9] rcu: delete lockdep_assert_irqs_enabled() assert in start_poll_synchronize_rcu_common() Date: Mon, 19 Aug 2024 12:59:31 -0400 Message-ID: <20240819165939.745801-6-kent.overstreet@linux.dev> In-Reply-To: <20240819165939.745801-1-kent.overstreet@linux.dev> References: <20240819165939.745801-1-kent.overstreet@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Migadu-Flow: FLOW_OUT Content-Type: text/plain; charset="utf-8" this assertion appears to have been entirely unnecessary Signed-off-by: Kent Overstreet --- kernel/rcu/tree.c | 1 - 1 file changed, 1 deletion(-) diff --git a/kernel/rcu/tree.c b/kernel/rcu/tree.c index e641cc681901..52f9f0bf1b8e 100644 --- a/kernel/rcu/tree.c +++ b/kernel/rcu/tree.c @@ -4119,7 +4119,6 @@ static void start_poll_synchronize_rcu_common(void) struct rcu_data *rdp; struct rcu_node *rnp; =20 - lockdep_assert_irqs_enabled(); local_irq_save(flags); rdp =3D this_cpu_ptr(&rcu_data); rnp =3D rdp->mynode; --=20 2.45.2