From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-16.7 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3019EC433F5 for ; Mon, 13 Sep 2021 05:45:58 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 0EF1460E8B for ; Mon, 13 Sep 2021 05:45:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233103AbhIMFrM (ORCPT ); Mon, 13 Sep 2021 01:47:12 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37910 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232388AbhIMFrL (ORCPT ); Mon, 13 Sep 2021 01:47:11 -0400 Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4B8F9C061574; Sun, 12 Sep 2021 22:45:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=Content-Transfer-Encoding:MIME-Version: References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: Content-Type:Content-ID:Content-Description; bh=6SfgkC+JZnr0UNolZwMoQM7LNrDA0S14AXQgn/IuMC4=; b=dhoftXNEpLcCsE4MsG8ssXT5DI R36G2CIY6RC7aqVwIsnkdsybOKMEaQUm+/ARpChj+GLJ0obZj6ehYVkXq0ojLsAZUprPlXongmXM+ mKijVBgKrmDfCw4ZlWgPLek60eK6z6yLI9eVu5glcDo9lp1ULPmZ4g4DCXRTZSLW/CTGuPU61iS4y kMviLGl+3uAZ15mta4NDwabiD0DdZl0Hwt5XAl6PmtSPdhu8GoQXtmNyhp0OSaqK5XuVnxu2FLB8X Qn8goumjhuMujmJCeVLv0eEGhVEOj9XcMT86nW6mPWxkMewZ/QzPfcGSKZKQl0tOfnI0/HbPnnHhB tciUW/yg==; Received: from 089144214237.atnat0023.highway.a1.net ([89.144.214.237] helo=localhost) by casper.infradead.org with esmtpsa (Exim 4.94.2 #2 (Red Hat Linux)) id 1mPelL-00DCaY-A9; Mon, 13 Sep 2021 05:44:42 +0000 From: Christoph Hellwig To: Greg Kroah-Hartman , "Rafael J. Wysocki" , Alexander Viro Cc: Jens Axboe , Tejun Heo , linux-block@vger.kernel.org, linux-xfs@vger.kernel.org, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 03/13] kernfs: remove the unused lockdep_key field in struct kernfs_ops Date: Mon, 13 Sep 2021 07:41:11 +0200 Message-Id: <20210913054121.616001-4-hch@lst.de> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20210913054121.616001-1-hch@lst.de> References: <20210913054121.616001-1-hch@lst.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SRS-Rewrite: SMTP reverse-path rewritten from by casper.infradead.org. See http://www.infradead.org/rpr.html Precedence: bulk List-ID: X-Mailing-List: linux-xfs@vger.kernel.org No actually used anywhere. Signed-off-by: Christoph Hellwig --- include/linux/kernfs.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/linux/kernfs.h b/include/linux/kernfs.h index cecfeedb7361d..3ccce6f245484 100644 --- a/include/linux/kernfs.h +++ b/include/linux/kernfs.h @@ -269,10 +269,6 @@ struct kernfs_ops { struct poll_table_struct *pt); int (*mmap)(struct kernfs_open_file *of, struct vm_area_struct *vma); - -#ifdef CONFIG_DEBUG_LOCK_ALLOC - struct lock_class_key lockdep_key; -#endif }; /* -- 2.30.2