Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752572AbdLFReo (ORCPT ); Wed, 6 Dec 2017 12:34:44 -0500 Received: from mail-pf0-f196.google.com ([209.85.192.196]:43946 "EHLO mail-pf0-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752189AbdLFRel (ORCPT ); Wed, 6 Dec 2017 12:34:41 -0500 X-Google-Smtp-Source: AGs4zMbfUIc/Rpq6mKIAq0tmDju4BdLrJU/8Hblxj6pnY+jR73lbypepc0L0TlZ2wt53ae8XD7husQ== From: Pravin Shedge To: netdev@vger.kernel.org, ast@kernel.org, daniel@iogearbox.net Cc: linux-kernel@vger.kernel.org, pravin.shedge4linux@gmail.com Subject: [PATCH 28/45] samples: bpf: remove duplicate includes Date: Wed, 6 Dec 2017 23:04:32 +0530 Message-Id: <1512581672-6279-1-git-send-email-pravin.shedge4linux@gmail.com> X-Mailer: git-send-email 2.7.4 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1476 Lines: 47 These duplicate includes have been found with scripts/checkincludes.pl but they have been removed manually to avoid removing false positives. Signed-off-by: Pravin Shedge --- samples/bpf/bpf_load.c | 1 - samples/bpf/sampleip_user.c | 1 - samples/bpf/test_current_task_under_cgroup_user.c | 1 - 3 files changed, 3 deletions(-) diff --git a/samples/bpf/bpf_load.c b/samples/bpf/bpf_load.c index 522ca92..2a1ae26 100644 --- a/samples/bpf/bpf_load.c +++ b/samples/bpf/bpf_load.c @@ -1,6 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 #include -#include #include #include #include diff --git a/samples/bpf/sampleip_user.c b/samples/bpf/sampleip_user.c index 4ed690b..0e1f250 100644 --- a/samples/bpf/sampleip_user.c +++ b/samples/bpf/sampleip_user.c @@ -9,7 +9,6 @@ */ #include #include -#include #include #include #include diff --git a/samples/bpf/test_current_task_under_cgroup_user.c b/samples/bpf/test_current_task_under_cgroup_user.c index 65b5fb5..0643b2d 100644 --- a/samples/bpf/test_current_task_under_cgroup_user.c +++ b/samples/bpf/test_current_task_under_cgroup_user.c @@ -11,7 +11,6 @@ #include #include "libbpf.h" #include "bpf_load.h" -#include #include "cgroup_helpers.h" #define CGROUP_PATH "/my-cgroup" -- 2.7.4