From nobody Sun Jun 14 21:08:48 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1EAFFC4332F for ; Wed, 11 May 2022 11:28:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237540AbiEKL1K (ORCPT ); Wed, 11 May 2022 07:27:10 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55284 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S243060AbiEKL0a (ORCPT ); Wed, 11 May 2022 07:26:30 -0400 Received: from galois.linutronix.de (Galois.linutronix.de [IPv6:2a0a:51c0:0:12e:550::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 18CE61CFC8 for ; Wed, 11 May 2022 04:26:26 -0700 (PDT) Date: Wed, 11 May 2022 13:26:23 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1652268384; 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; bh=RXcxCcCEHYkua10Jt4BwYI9HJhbTvBsUxwTZHrgO7K4=; b=q75ytNBn4bykp/jOp4U3FG3izwIWTY3LryDZkV2a/wTHWiWW4ZlN1pkx5JU8/PAM2cwaJD 0hh96LH12motU9DOhE9PTob/7TdoYMdvSVbR2lnJTXtTco/GKUXFy6zn2B13Pgnz19jAO0 j5aCj1v1PopI0PnxQXh30x+kloctElA6CoDk8agwqtLJlVHF+GgZhN7DzedbZO49xJn+yg mIdB69A6HQf3EDUxeOc2+3kPb5gJtymsO8O2GaM0vGLSjzDGgrmLtyBVbNrROPqNzxfswD ogkLLTTM9DMeVCQjhx8SBviIJW+4uOXWJjwYc32Kq2emhF+Wze1y3lcPHnnNAA== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1652268384; 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; bh=RXcxCcCEHYkua10Jt4BwYI9HJhbTvBsUxwTZHrgO7K4=; b=n6eJkXQe2mt1Vf01pSRVLE3JSONdl3kUlfJEH394bWQ7MBONWNJ7FP4S/aK/7ui50u9hIn Qge0DxdKp22UPhBg== From: Sebastian Andrzej Siewior To: linux-kernel@vger.kernel.org Cc: Peter Zijlstra , Ingo Molnar , Will Deacon , Waiman Long , Boqun Feng , Thomas Gleixner Subject: [REPOST PATCH] locking/lockdep: Remove lockdep_init_map_crosslock. Message-ID: MIME-Version: 1.0 Content-Disposition: inline Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" The cross-release bits have been removed, lockdep_init_map_crosslock() is a leftover. Remove lockdep_init_map_crosslock. Signed-off-by: Sebastian Andrzej Siewior Reviewed-by: Waiman Long Link: https://lore.kernel.org/r/20220311164457.46461-1-bigeasy@linutronix.de --- include/linux/lockdep.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/linux/lockdep.h b/include/linux/lockdep.h index 37951c17908e7..e4cfee37d5986 100644 --- a/include/linux/lockdep.h +++ b/include/linux/lockdep.h @@ -427,7 +427,6 @@ enum xhlock_context_t { XHLOCK_CTX_NR, }; =20 -#define lockdep_init_map_crosslock(m, n, k, s) do {} while (0) /* * To initialize a lockdep_map statically use this macro. * Note that _name must not be NULL. --=20 2.36.1