From patchwork Sun Nov 27 14:46:45 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christophe JAILLET X-Patchwork-Id: 13056795 X-Patchwork-Delegate: kuba@kernel.org 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 CE08BC46467 for ; Sun, 27 Nov 2022 14:46:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229580AbiK0Oqx (ORCPT ); Sun, 27 Nov 2022 09:46:53 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44334 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229495AbiK0Oqw (ORCPT ); Sun, 27 Nov 2022 09:46:52 -0500 Received: from smtp.smtpout.orange.fr (smtp-23.smtpout.orange.fr [80.12.242.23]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 167B4C76F for ; Sun, 27 Nov 2022 06:46:50 -0800 (PST) Received: from pop-os.home ([86.243.100.34]) by smtp.orange.fr with ESMTPA id zIveos02xGPMszIveoBAEd; Sun, 27 Nov 2022 15:46:49 +0100 X-ME-Helo: pop-os.home X-ME-Auth: Y2hyaXN0b3BoZS5qYWlsbGV0QHdhbmFkb28uZnI= X-ME-Date: Sun, 27 Nov 2022 15:46:49 +0100 X-ME-IP: 86.243.100.34 From: Christophe JAILLET To: Eric Van Hensbergen , Latchesar Ionkov , Dominique Martinet , Christian Schoenebeck , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni Cc: linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org, Christophe JAILLET , v9fs-developer@lists.sourceforge.net, netdev@vger.kernel.org Subject: [PATCH] 9p: Remove unneeded idr.h #include in the net/9p directory Date: Sun, 27 Nov 2022 15:46:45 +0100 Message-Id: <9e386018601d7e4a9e5d7da8fc3e9555ebb25c87.1669560387.git.christophe.jaillet@wanadoo.fr> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org X-Patchwork-Delegate: kuba@kernel.org The 9p net files don't use IDR or IDA functionalities. So there is no point in including . Remove it. Signed-off-by: Christophe JAILLET Reviewed-by: Christian Schoenebeck --- net/9p/trans_fd.c | 1 - net/9p/trans_rdma.c | 1 - net/9p/trans_virtio.c | 1 - 3 files changed, 3 deletions(-) diff --git a/net/9p/trans_fd.c b/net/9p/trans_fd.c index eeea0a6a75b6..06ec9f7d3318 100644 --- a/net/9p/trans_fd.c +++ b/net/9p/trans_fd.c @@ -20,7 +20,6 @@ #include #include #include -#include #include #include #include diff --git a/net/9p/trans_rdma.c b/net/9p/trans_rdma.c index 6ff706760676..33a9ac6f2d55 100644 --- a/net/9p/trans_rdma.c +++ b/net/9p/trans_rdma.c @@ -21,7 +21,6 @@ #include #include #include -#include #include #include #include diff --git a/net/9p/trans_virtio.c b/net/9p/trans_virtio.c index e757f0601304..19bccfa0d593 100644 --- a/net/9p/trans_virtio.c +++ b/net/9p/trans_virtio.c @@ -22,7 +22,6 @@ #include #include #include -#include #include #include #include