mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] tools/perf: Remove duplicate header
@ 2019-01-15 13:59 Brajeswar Ghosh
  2019-01-17  5:55 ` Souptick Joarder
  2019-01-22 10:15 ` [tip:perf/core] perf tools: Remove duplicate headers tip-bot for Brajeswar Ghosh
  0 siblings, 2 replies; 5+ messages in thread
From: Brajeswar Ghosh @ 2019-01-15 13:59 UTC (permalink / raw)
  To: peterz, mingo, acme, alexander.shishkin, jolsa, namhyung, colin.king
  Cc: jrdr.linux, linux-kernel, sabyasachi.linux

Remove duplicate headers which are included more than once

Signed-off-by: Brajeswar Ghosh <brajeswar.linux@gmail.com>
---
 tools/perf/builtin-stat.c     | 1 -
 tools/perf/tests/bp_account.c | 1 -
 tools/perf/util/dso.h         | 1 -
 tools/perf/util/zlib.c        | 1 -
 4 files changed, 4 deletions(-)

diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c
index d1028d7755bb..f919ffc4b3b3 100644
--- a/tools/perf/builtin-stat.c
+++ b/tools/perf/builtin-stat.c
@@ -83,7 +83,6 @@
 #include <unistd.h>
 #include <sys/time.h>
 #include <sys/resource.h>
-#include <sys/wait.h>
 
 #include "sane_ctype.h"
 
diff --git a/tools/perf/tests/bp_account.c b/tools/perf/tests/bp_account.c
index a20cbc445426..57fc544aedb0 100644
--- a/tools/perf/tests/bp_account.c
+++ b/tools/perf/tests/bp_account.c
@@ -15,7 +15,6 @@
 #include <sys/mman.h>
 #include <linux/compiler.h>
 #include <linux/hw_breakpoint.h>
-#include <sys/ioctl.h>
 
 #include "tests.h"
 #include "debug.h"
diff --git a/tools/perf/util/dso.h b/tools/perf/util/dso.h
index c5380500bed4..722d67a407e2 100644
--- a/tools/perf/util/dso.h
+++ b/tools/perf/util/dso.h
@@ -8,7 +8,6 @@
 #include <sys/types.h>
 #include <stdbool.h>
 #include "rwsem.h"
-#include <linux/types.h>
 #include <linux/bitops.h>
 #include "map.h"
 #include "namespaces.h"
diff --git a/tools/perf/util/zlib.c b/tools/perf/util/zlib.c
index 902ce6384f57..512ad7c09b13 100644
--- a/tools/perf/util/zlib.c
+++ b/tools/perf/util/zlib.c
@@ -6,7 +6,6 @@
 #include <sys/mman.h>
 #include <zlib.h>
 #include <linux/compiler.h>
-#include <unistd.h>
 
 #include "util/compress.h"
 #include "util/util.h"
-- 
2.17.1


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] tools/perf: Remove duplicate header
  2019-01-15 13:59 [PATCH] tools/perf: Remove duplicate header Brajeswar Ghosh
@ 2019-01-17  5:55 ` Souptick Joarder
  2019-01-17 13:23   ` Arnaldo Carvalho de Melo
  2019-01-22 10:15 ` [tip:perf/core] perf tools: Remove duplicate headers tip-bot for Brajeswar Ghosh
  1 sibling, 1 reply; 5+ messages in thread
From: Souptick Joarder @ 2019-01-17  5:55 UTC (permalink / raw)
  To: Brajeswar Ghosh
  Cc: Peter Zijlstra, Ingo Molnar, acme, Alexander Shishkin, jolsa,
	namhyung, colin.king, linux-kernel, Sabyasachi Gupta

On Tue, Jan 15, 2019 at 7:29 PM Brajeswar Ghosh
<brajeswar.linux@gmail.com> wrote:
>
> Remove duplicate headers which are included more than once
>
> Signed-off-by: Brajeswar Ghosh <brajeswar.linux@gmail.com>

Acked-by: Souptick Joarder <jrdr.linux@gmail.com>

> ---
>  tools/perf/builtin-stat.c     | 1 -
>  tools/perf/tests/bp_account.c | 1 -
>  tools/perf/util/dso.h         | 1 -
>  tools/perf/util/zlib.c        | 1 -
>  4 files changed, 4 deletions(-)
>
> diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c
> index d1028d7755bb..f919ffc4b3b3 100644
> --- a/tools/perf/builtin-stat.c
> +++ b/tools/perf/builtin-stat.c
> @@ -83,7 +83,6 @@
>  #include <unistd.h>
>  #include <sys/time.h>
>  #include <sys/resource.h>
> -#include <sys/wait.h>
>
>  #include "sane_ctype.h"
>
> diff --git a/tools/perf/tests/bp_account.c b/tools/perf/tests/bp_account.c
> index a20cbc445426..57fc544aedb0 100644
> --- a/tools/perf/tests/bp_account.c
> +++ b/tools/perf/tests/bp_account.c
> @@ -15,7 +15,6 @@
>  #include <sys/mman.h>
>  #include <linux/compiler.h>
>  #include <linux/hw_breakpoint.h>
> -#include <sys/ioctl.h>
>
>  #include "tests.h"
>  #include "debug.h"
> diff --git a/tools/perf/util/dso.h b/tools/perf/util/dso.h
> index c5380500bed4..722d67a407e2 100644
> --- a/tools/perf/util/dso.h
> +++ b/tools/perf/util/dso.h
> @@ -8,7 +8,6 @@
>  #include <sys/types.h>
>  #include <stdbool.h>
>  #include "rwsem.h"
> -#include <linux/types.h>
>  #include <linux/bitops.h>
>  #include "map.h"
>  #include "namespaces.h"
> diff --git a/tools/perf/util/zlib.c b/tools/perf/util/zlib.c
> index 902ce6384f57..512ad7c09b13 100644
> --- a/tools/perf/util/zlib.c
> +++ b/tools/perf/util/zlib.c
> @@ -6,7 +6,6 @@
>  #include <sys/mman.h>
>  #include <zlib.h>
>  #include <linux/compiler.h>
> -#include <unistd.h>
>
>  #include "util/compress.h"
>  #include "util/util.h"
> --
> 2.17.1
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] tools/perf: Remove duplicate header
  2019-01-17  5:55 ` Souptick Joarder
@ 2019-01-17 13:23   ` Arnaldo Carvalho de Melo
  0 siblings, 0 replies; 5+ messages in thread
From: Arnaldo Carvalho de Melo @ 2019-01-17 13:23 UTC (permalink / raw)
  To: Souptick Joarder
  Cc: Brajeswar Ghosh, Peter Zijlstra, Ingo Molnar, Alexander Shishkin,
	jolsa, namhyung, colin.king, linux-kernel, Sabyasachi Gupta

Em Thu, Jan 17, 2019 at 11:25:52AM +0530, Souptick Joarder escreveu:
> On Tue, Jan 15, 2019 at 7:29 PM Brajeswar Ghosh
> <brajeswar.linux@gmail.com> wrote:
> >
> > Remove duplicate headers which are included more than once
> >
> > Signed-off-by: Brajeswar Ghosh <brajeswar.linux@gmail.com>
> 
> Acked-by: Souptick Joarder <jrdr.linux@gmail.com>

Thanks, applied.

- Arnaldo

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [tip:perf/core] perf tools: Remove duplicate headers
  2019-01-15 13:59 [PATCH] tools/perf: Remove duplicate header Brajeswar Ghosh
  2019-01-17  5:55 ` Souptick Joarder
@ 2019-01-22 10:15 ` tip-bot for Brajeswar Ghosh
  1 sibling, 0 replies; 5+ messages in thread
From: tip-bot for Brajeswar Ghosh @ 2019-01-22 10:15 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: mingo, jolsa, acme, jrdr.linux, linux-kernel, sabyasachi.linux,
	brajeswar.linux, hpa, peterz, alexander.shishkin, tglx, namhyung,
	colin.king

Commit-ID:  3eb03a5208a4eb46443e23e3fa9eb7e4c7ae4885
Gitweb:     https://git.kernel.org/tip/3eb03a5208a4eb46443e23e3fa9eb7e4c7ae4885
Author:     Brajeswar Ghosh <brajeswar.linux@gmail.com>
AuthorDate: Tue, 15 Jan 2019 19:29:16 +0530
Committer:  Arnaldo Carvalho de Melo <acme@redhat.com>
CommitDate: Mon, 21 Jan 2019 15:15:57 -0300

perf tools: Remove duplicate headers

Remove duplicate headers which are included more than once in the same
file.

Signed-off-by: Brajeswar Ghosh <brajeswar.linux@gmail.com>
Acked-by: Souptick Joarder <jrdr.linux@gmail.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Colin King <colin.king@canonical.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Sabyasachi Gupta <sabyasachi.linux@gmail.com>
Link: http://lkml.kernel.org/r/20190115135916.GA3629@hp-pavilion-15-notebook-pc-brajeswar
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
 tools/perf/builtin-stat.c     | 1 -
 tools/perf/tests/bp_account.c | 1 -
 tools/perf/util/dso.h         | 1 -
 tools/perf/util/zlib.c        | 1 -
 4 files changed, 4 deletions(-)

diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c
index 63a3afc7f32b..e587808591e8 100644
--- a/tools/perf/builtin-stat.c
+++ b/tools/perf/builtin-stat.c
@@ -83,7 +83,6 @@
 #include <unistd.h>
 #include <sys/time.h>
 #include <sys/resource.h>
-#include <sys/wait.h>
 
 #include "sane_ctype.h"
 
diff --git a/tools/perf/tests/bp_account.c b/tools/perf/tests/bp_account.c
index a20cbc445426..57fc544aedb0 100644
--- a/tools/perf/tests/bp_account.c
+++ b/tools/perf/tests/bp_account.c
@@ -15,7 +15,6 @@
 #include <sys/mman.h>
 #include <linux/compiler.h>
 #include <linux/hw_breakpoint.h>
-#include <sys/ioctl.h>
 
 #include "tests.h"
 #include "debug.h"
diff --git a/tools/perf/util/dso.h b/tools/perf/util/dso.h
index 8c8a7abe809d..af2eda29660f 100644
--- a/tools/perf/util/dso.h
+++ b/tools/perf/util/dso.h
@@ -8,7 +8,6 @@
 #include <sys/types.h>
 #include <stdbool.h>
 #include "rwsem.h"
-#include <linux/types.h>
 #include <linux/bitops.h>
 #include "map.h"
 #include "namespaces.h"
diff --git a/tools/perf/util/zlib.c b/tools/perf/util/zlib.c
index 902ce6384f57..512ad7c09b13 100644
--- a/tools/perf/util/zlib.c
+++ b/tools/perf/util/zlib.c
@@ -6,7 +6,6 @@
 #include <sys/mman.h>
 #include <zlib.h>
 #include <linux/compiler.h>
-#include <unistd.h>
 
 #include "util/compress.h"
 #include "util/util.h"

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [tip: perf/core] perf tools: Remove duplicate headers
  2019-08-24 16:15 [RESEND PATCH] perf: " Souptick Joarder
@ 2019-08-27  8:26 ` tip-bot2 for Souptick Joarder
  0 siblings, 0 replies; 5+ messages in thread
From: tip-bot2 for Souptick Joarder @ 2019-08-27  8:26 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: Souptick Joarder, Mukesh Ojha, Andrew Morton, Jiri Olsa,
	Namhyung Kim, Peter Zijlstra, Arnaldo Carvalho de Melo,
	Ingo Molnar, Borislav Petkov, linux-kernel

The following commit has been merged into the perf/core branch of tip:

Commit-ID:     b4de344b25b9fbd4db7b84da43808a6b7daac887
Gitweb:        https://git.kernel.org/tip/b4de344b25b9fbd4db7b84da43808a6b7daac887
Author:        Souptick Joarder <jrdr.linux@gmail.com>
AuthorDate:    Sat, 24 Aug 2019 21:45:19 +05:30
Committer:     Arnaldo Carvalho de Melo <acme@redhat.com>
CommitterDate: Mon, 26 Aug 2019 11:58:29 -03:00

perf tools: Remove duplicate headers

Removed headers which are included twice.

Signed-off-by: Souptick Joarder <jrdr.linux@gmail.com>
Reviewed-by: Mukesh Ojha <mojha@codeaurora.org>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1566663319-4283-1-git-send-email-jrdr.linux@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
 tools/perf/util/data.c                 | 1 -
 tools/perf/util/get_current_dir_name.c | 1 -
 tools/perf/util/stat-display.c         | 1 -
 3 files changed, 3 deletions(-)

diff --git a/tools/perf/util/data.c b/tools/perf/util/data.c
index 1d1b97a..74aafe0 100644
--- a/tools/perf/util/data.c
+++ b/tools/perf/util/data.c
@@ -9,7 +9,6 @@
 #include <unistd.h>
 #include <string.h>
 #include <asm/bug.h>
-#include <sys/types.h>
 #include <dirent.h>
 
 #include "data.h"
diff --git a/tools/perf/util/get_current_dir_name.c b/tools/perf/util/get_current_dir_name.c
index 01f32f2..b205d92 100644
--- a/tools/perf/util/get_current_dir_name.c
+++ b/tools/perf/util/get_current_dir_name.c
@@ -5,7 +5,6 @@
 #include "get_current_dir_name.h"
 #include <unistd.h>
 #include <stdlib.h>
-#include <stdlib.h>
 
 /* Android's 'bionic' library, for one, doesn't have this */
 
diff --git a/tools/perf/util/stat-display.c b/tools/perf/util/stat-display.c
index 51d6781..1461dac 100644
--- a/tools/perf/util/stat-display.c
+++ b/tools/perf/util/stat-display.c
@@ -14,7 +14,6 @@
 #include "string2.h"
 #include <linux/ctype.h>
 #include "cgroup.h"
-#include <math.h>
 #include <api/fs/fs.h>
 
 #define CNTR_NOT_SUPPORTED	"<not supported>"

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-08-27  8:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-15 13:59 [PATCH] tools/perf: Remove duplicate header Brajeswar Ghosh
2019-01-17  5:55 ` Souptick Joarder
2019-01-17 13:23   ` Arnaldo Carvalho de Melo
2019-01-22 10:15 ` [tip:perf/core] perf tools: Remove duplicate headers tip-bot for Brajeswar Ghosh
2019-08-24 16:15 [RESEND PATCH] perf: " Souptick Joarder
2019-08-27  8:26 ` [tip: perf/core] perf tools: " tip-bot2 for Souptick Joarder

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®