* [PATCH v2] perf tools: Add arch/*/include/generated/ to .gitignore
@ 2016-05-27 10:01 Taeung Song
2016-05-27 14:44 ` Arnaldo Carvalho de Melo
2016-06-02 6:34 ` [tip:perf/core] " tip-bot for Taeung Song
0 siblings, 2 replies; 4+ messages in thread
From: Taeung Song @ 2016-05-27 10:01 UTC (permalink / raw)
To: Arnaldo Carvalho de Melo
Cc: linux-kernel, Jiri Olsa, Namhyung Kim, Ingo Molnar,
Peter Zijlstra, Alexander Shishkin, Masami Hiramatsu, Taeung Song,
Adrian Hunter, David Ahern, Wang Nan
Commit 1b700c9975008615ad470cf79acc8455ce60a695 ("perf tools: Build
syscall table .c header from kernel's syscall_64.tbl") that automatically
generate per-arch syscall table arrays e.g.
arch/x86/include/generated/asm/syscalls_64.c
So add this directory to .gitignore
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Wang Nan <wangnan0@huawei.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Signed-off-by: Taeung Song <treeze.taeung@gmail.com>
---
tools/perf/.gitignore | 1 +
1 file changed, 1 insertion(+)
diff --git a/tools/perf/.gitignore b/tools/perf/.gitignore
index 3d1bb80..3db3db9 100644
--- a/tools/perf/.gitignore
+++ b/tools/perf/.gitignore
@@ -30,3 +30,4 @@ config.mak.autogen
*.pyo
.config-detected
util/intel-pt-decoder/inat-tables.c
+arch/*/include/generated/
--
2.5.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH v2] perf tools: Add arch/*/include/generated/ to .gitignore
2016-05-27 10:01 [PATCH v2] perf tools: Add arch/*/include/generated/ to .gitignore Taeung Song
@ 2016-05-27 14:44 ` Arnaldo Carvalho de Melo
2016-05-28 10:10 ` Taeung Song
2016-06-02 6:34 ` [tip:perf/core] " tip-bot for Taeung Song
1 sibling, 1 reply; 4+ messages in thread
From: Arnaldo Carvalho de Melo @ 2016-05-27 14:44 UTC (permalink / raw)
To: Taeung Song
Cc: linux-kernel, Jiri Olsa, Namhyung Kim, Ingo Molnar,
Peter Zijlstra, Alexander Shishkin, Masami Hiramatsu,
Adrian Hunter, David Ahern, Wang Nan
Em Fri, May 27, 2016 at 07:01:14PM +0900, Taeung Song escreveu:
> Commit 1b700c9975008615ad470cf79acc8455ce60a695 ("perf tools: Build
> syscall table .c header from kernel's syscall_64.tbl") that automatically
> generate per-arch syscall table arrays e.g.
>
> arch/x86/include/generated/asm/syscalls_64.c
>
> So add this directory to .gitignore
>
> Cc: Namhyung Kim <namhyung@kernel.org>
> Cc: Jiri Olsa <jolsa@kernel.org>
> Cc: Adrian Hunter <adrian.hunter@intel.com>
> Cc: David Ahern <dsahern@gmail.com>
> Cc: Wang Nan <wangnan0@huawei.com>
> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Thanks, applied, after adding a Fixes: tag:
Fixes: 1b700c997500 ("perf tools: Build syscall table .c header from kernel's syscall_64.tbl")
- Arnaldo
> Signed-off-by: Taeung Song <treeze.taeung@gmail.com>
> ---
> tools/perf/.gitignore | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/tools/perf/.gitignore b/tools/perf/.gitignore
> index 3d1bb80..3db3db9 100644
> --- a/tools/perf/.gitignore
> +++ b/tools/perf/.gitignore
> @@ -30,3 +30,4 @@ config.mak.autogen
> *.pyo
> .config-detected
> util/intel-pt-decoder/inat-tables.c
> +arch/*/include/generated/
> --
> 2.5.0
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH v2] perf tools: Add arch/*/include/generated/ to .gitignore
2016-05-27 14:44 ` Arnaldo Carvalho de Melo
@ 2016-05-28 10:10 ` Taeung Song
0 siblings, 0 replies; 4+ messages in thread
From: Taeung Song @ 2016-05-28 10:10 UTC (permalink / raw)
To: Arnaldo Carvalho de Melo
Cc: linux-kernel, Jiri Olsa, Namhyung Kim, Ingo Molnar,
Peter Zijlstra, Alexander Shishkin, Masami Hiramatsu,
Adrian Hunter, David Ahern, Wang Nan
On 05/27/2016 11:44 PM, Arnaldo Carvalho de Melo wrote:
> Em Fri, May 27, 2016 at 07:01:14PM +0900, Taeung Song escreveu:
>> Commit 1b700c9975008615ad470cf79acc8455ce60a695 ("perf tools: Build
>> syscall table .c header from kernel's syscall_64.tbl") that automatically
>> generate per-arch syscall table arrays e.g.
>>
>> arch/x86/include/generated/asm/syscalls_64.c
>>
>> So add this directory to .gitignore
>>
>> Cc: Namhyung Kim <namhyung@kernel.org>
>> Cc: Jiri Olsa <jolsa@kernel.org>
>> Cc: Adrian Hunter <adrian.hunter@intel.com>
>> Cc: David Ahern <dsahern@gmail.com>
>> Cc: Wang Nan <wangnan0@huawei.com>
>> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
>
> Thanks, applied, after adding a Fixes: tag:
>
> Fixes: 1b700c997500 ("perf tools: Build syscall table .c header from kernel's syscall_64.tbl")
>
> - Arnaldo
Thank you !! :)
Taeung
^ permalink raw reply [flat|nested] 4+ messages in thread
* [tip:perf/core] perf tools: Add arch/*/include/generated/ to .gitignore
2016-05-27 10:01 [PATCH v2] perf tools: Add arch/*/include/generated/ to .gitignore Taeung Song
2016-05-27 14:44 ` Arnaldo Carvalho de Melo
@ 2016-06-02 6:34 ` tip-bot for Taeung Song
1 sibling, 0 replies; 4+ messages in thread
From: tip-bot for Taeung Song @ 2016-06-02 6:34 UTC (permalink / raw)
To: linux-tip-commits
Cc: linux-kernel, treeze.taeung, acme, wangnan0, adrian.hunter,
dsahern, mhiramat, mingo, tglx, alexander.shishkin, namhyung,
peterz, hpa, jolsa
Commit-ID: dcd1e2a7ba63710843d559f1570628321e62223e
Gitweb: http://git.kernel.org/tip/dcd1e2a7ba63710843d559f1570628321e62223e
Author: Taeung Song <treeze.taeung@gmail.com>
AuthorDate: Fri, 27 May 2016 19:01:14 +0900
Committer: Arnaldo Carvalho de Melo <acme@redhat.com>
CommitDate: Mon, 30 May 2016 12:41:46 -0300
perf tools: Add arch/*/include/generated/ to .gitignore
Commit 1b700c997500 ("perf tools: Build syscall table .c header from
kernel's syscall_64.tbl") automatically generates per-arch syscall table
arrays, e.g.:
arch/x86/include/generated/asm/syscalls_64.c
So add this directory to .gitignore
Signed-off-by: Taeung Song <treeze.taeung@gmail.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Wang Nan <wangnan0@huawei.com>
Fixes: 1b700c997500 ("perf tools: Build syscall table .c header from kernel's syscall_64.tbl")
Link: http://lkml.kernel.org/r/1464343274-19403-1-git-send-email-treeze.taeung@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
tools/perf/.gitignore | 1 +
1 file changed, 1 insertion(+)
diff --git a/tools/perf/.gitignore b/tools/perf/.gitignore
index 3d1bb80..3db3db9 100644
--- a/tools/perf/.gitignore
+++ b/tools/perf/.gitignore
@@ -30,3 +30,4 @@ config.mak.autogen
*.pyo
.config-detected
util/intel-pt-decoder/inat-tables.c
+arch/*/include/generated/
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-06-02 6:34 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-27 10:01 [PATCH v2] perf tools: Add arch/*/include/generated/ to .gitignore Taeung Song
2016-05-27 14:44 ` Arnaldo Carvalho de Melo
2016-05-28 10:10 ` Taeung Song
2016-06-02 6:34 ` [tip:perf/core] " tip-bot for Taeung Song
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox