From nobody Sat Jun 20 17:35:39 2026 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 A3D283624CF for ; Sun, 12 Apr 2026 17:45:59 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776015959; cv=none; b=qu6o5meHvoP35SYpgMdfwniV8Bi5pIMU/SSyf4g+SdjC+sDp1MDfYeIwDyf3rKHoQGOoo65eG7EUPuAvpNQ0R59KP6wj9D2C16KTaQwsgwTZPpsG/hHMTW0grf92+BGVwrWMwx4wBfbPOS+CRJLcWAK+4/dXiDSVN6wwBRR1CcU= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776015959; c=relaxed/simple; bh=OpU1pV3E66+YTxARHNuWWJnxoQSNe+kewKvhLyGX/64=; h=Date:From:To:Cc:Subject:Message-ID:Content-Type:MIME-Version; b=W7Pl3BiZJzh/mpEUzOrRjfiUFWKOATsGqf+RG1zMWyH99fx3+r5r+XnaSDFog71xfEyEjWt20I/BQt7u/fJ/2abBHJv5cYHg2PCfIiNeR3ArHDEm5pyvlL/xeJaKRCF1QJie1l0zHZ/sgoC+savef4HVgyhBClnJVMdb7FbhFrI= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=EfiG1Mun; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="EfiG1Mun" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 620BBC2BCB6; Sun, 12 Apr 2026 17:45:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1776015959; bh=OpU1pV3E66+YTxARHNuWWJnxoQSNe+kewKvhLyGX/64=; h=Date:From:To:Cc:Subject:From; b=EfiG1Mun0qxkFUmpe3FSI2C4lI74dzi7j5DvXnXR0YtYcv1ev37BucHv17eYtBgxq dZpaSIrbuC6UYMOfxAcxe20FnKmYkEnqInYxTKqF4BAtU0EZdORLUnkmQICo7czJSc PfwJRT81Y0+OMecg4fbm6S6BKYIg1fDYqtV5/qScHpdpO80kJtwlZT06Lp0e1Q/zKW ssI6GBB2qOvDaUlR8jPYme4mqG9zf2eb1iwoNMGYLilwYhc2O7X1No4zvtki/kdGT6 oRkC55VBxBbWPhhLnz4THHX4h92J5G0lOQcVISd4wDqKJwUXc3L1Ri/5xQKi+3K5bn N6D4wJEAQhRCg== Date: Sun, 12 Apr 2026 19:45:55 +0200 From: Thomas Gleixner To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, x86@kernel.org Subject: [GIT pull] core/debugobjects for v7.1-rc1 Message-ID: <177601563477.7932.4081917600853246368.tglx@xen13> Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Linus, please pull the latest core/debugobjects branch from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core-debugobje= cts-2026-04-12 up to: 723ddce93e8d: debugobjects: Drop likely() around !IS_ERR_OR_NULL() A trivial update for debugobjects to drop a pointless likely() around IS_ERR_OR_NULL(). Thanks, tglx ------------------> Philipp Hahn (1): debugobjects: Drop likely() around !IS_ERR_OR_NULL() lib/debugobjects.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/debugobjects.c b/lib/debugobjects.c index 12f50de85b62..12e2e42e6a31 100644 --- a/lib/debugobjects.c +++ b/lib/debugobjects.c @@ -1024,7 +1024,7 @@ void debug_object_assert_init(void *addr, const struc= t debug_obj_descr *descr) raw_spin_lock_irqsave(&db->lock, flags); obj =3D lookup_object_or_alloc(addr, db, descr, false, true); raw_spin_unlock_irqrestore(&db->lock, flags); - if (likely(!IS_ERR_OR_NULL(obj))) + if (!IS_ERR_OR_NULL(obj)) return; =20 /* If NULL the allocation has hit OOM */