From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from casper.infradead.org (casper.infradead.org [90.155.50.34]) (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 BCB5C155389 for ; Fri, 13 Mar 2026 08:35:50 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=90.155.50.34 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773390954; cv=none; b=S2xMImlLHybWtuUoBVxqJz68pzyPOUBXuB4ib9f+8y9mkVOjrqxDc3J7E3mN9vwrGbTeLpXuWydMKt6XaGv1qBHGQlfUGYTMycXa9OKcLEeP3h3nf9TeDuINNj7W7cHn88tFe1ipD80A6M226Q6pkU3egOibE8b0NBFRQwKLbfc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773390954; c=relaxed/simple; bh=XFpykt/tLkOhxWXIEKiBy0I4EvPb1vtOc3oZtAlppwo=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=X/kvznzMmjYcRMQlf9hVEuMJiRl6lQKM1U1Lnl3RCcZczbUv8BBVKb/6QOfo9YWFvAPjvc7vUOHeGmobuJL4kx/6RYK5E9T2G6DcdhnTSuKPVPt9M8HwILWeMHb47PMe+p0cHUAAeosElCkmDFdFYgM6YXfNmwjZ3Y+5N+us/bY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org; spf=none smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=Q9C/7oFz; arc=none smtp.client-ip=90.155.50.34 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="Q9C/7oFz" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=In-Reply-To:Content-Transfer-Encoding: Content-Type:MIME-Version:References:Message-ID:Subject:Cc:To:From:Date: Sender:Reply-To:Content-ID:Content-Description; bh=omViXMKpaW9mgAJukd/M5DiqCJi8SrRIrVsIs5edPCw=; b=Q9C/7oFz6z6vSfNcMMCU6YZtAk MJOfcKLAYjs1p2d7Bwwc5L0jazTsOMgpphWgpdxuzaSRbQRmtCmJjW8XTCJrBCdVK06DTuHhZ+cBm u4ytXLKIfvnU5zHMFxpq9P+Nk7yRg7Lgh8R3bn7An3RReMNad1/n47OqA/rS8VSma2lStAvWtTS/J DPLPRCEOSOnLqqp2vwbDJgG/UIdb9s4DptOKotZJ8JTJU56pOjbg33bFBwvhkwC1yXU0Pta/QNF7s dEJ89IwnIpRQl4TwSrxcfxPckGDzZzMOGlDNz1jEPayRAogWzVDtKWGiZe/AQS7Wx7bE7CVTyoS/7 TZCLX1Ug==; Received: from 2001-1c00-8d85-5700-266e-96ff-fe07-7dcc.cable.dynamic.v6.ziggo.nl ([2001:1c00:8d85:5700:266e:96ff:fe07:7dcc] helo=noisy.programming.kicks-ass.net) by casper.infradead.org with esmtpsa (Exim 4.98.2 #2 (Red Hat Linux)) id 1w0xzl-0000000CnL8-0ray; Fri, 13 Mar 2026 08:35:45 +0000 Received: by noisy.programming.kicks-ass.net (Postfix, from userid 1000) id 94B04301BD5; Fri, 13 Mar 2026 09:35:38 +0100 (CET) Date: Fri, 13 Mar 2026 09:35:38 +0100 From: Peter Zijlstra To: Thomas =?iso-8859-1?Q?Wei=DFschuh?= Cc: Josh Poimboeuf , Jason Baron , Steven Rostedt , Ard Biesheuvel , Alice Ryhl , linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 0/2] jump_label: drop some workarounds in static key initialization Message-ID: <20260313083538.GH606826@noisy.programming.kicks-ass.net> References: <20260313-jump_label-cleanup-v2-0-35d3c0bde549@linutronix.de> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20260313-jump_label-cleanup-v2-0-35d3c0bde549@linutronix.de> On Fri, Mar 13, 2026 at 09:22:17AM +0100, Thomas Weißschuh wrote: > These workarounds are not necessary anymore so remove them. > Thomas Weißschuh (2): > jump_label: use ATOMIC_INIT() for initialization of .enabled > jump_label: remove workaround for old compilers in initializations Excellent, thanks!