Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1405930 > unrolled thread
| Started by | Taeung Song <treeze.taeung@gmail.com> |
|---|---|
| First post | 2016-05-24 10:20 +0200 |
| Last post | 2016-05-27 12:10 +0200 |
| Articles | 4 — 3 participants |
Back to article view | Back to linux.kernel
[RESEND PATCH] perf tools: Add arch/*/include/generated/ to .gitignore Taeung Song <treeze.taeung@gmail.com> - 2016-05-24 10:20 +0200
Re: [RESEND PATCH] perf tools: Add arch/*/include/generated/ to .gitignore Taeung Song <taeung.dev@gmail.com> - 2016-05-27 11:20 +0200
Re: [RESEND PATCH] perf tools: Add arch/*/include/generated/ to .gitignore "Wangnan (F)" <wangnan0@huawei.com> - 2016-05-27 12:00 +0200
Re: [RESEND PATCH] perf tools: Add arch/*/include/generated/ to .gitignore Taeung Song <treeze.taeung@gmail.com> - 2016-05-27 12:10 +0200
| From | Taeung Song <treeze.taeung@gmail.com> |
|---|---|
| Date | 2016-05-24 10:20 +0200 |
| Subject | [RESEND PATCH] perf tools: Add arch/*/include/generated/ to .gitignore |
| Message-ID | <rCfJf-OC-11@gated-at.bofh.it> |
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: Masami Hiramatsu <mhiramat@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..4bef135 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/
\ No newline at end of file
--
2.5.0
[toc] | [next] | [standalone]
| From | Taeung Song <taeung.dev@gmail.com> |
|---|---|
| Date | 2016-05-27 11:20 +0200 |
| Subject | Re: [RESEND PATCH] perf tools: Add arch/*/include/generated/ to .gitignore |
| Message-ID | <rDm5Y-1zy-19@gated-at.bofh.it> |
| In reply to | #1405930 |
Hi, Arnaldo
If you have a little time,
could you check this simple patch ?
This patch is minor but
everytime I build tools/perf code,
untracked file(arch/*/include/generated/) is always generated..
like below
taeung ~/git/linux-perf/tools/perf
:> make -j4
BUILD: Doing 'make -j4' parallel build
...
INSTALL python-scripts
INSTALL perf_completion-script
INSTALL perf-tip
taeung ~/git/linux-perf/tools/perf
:> git status
On branch master
Your branch is up-to-date with 'origin/master'.
Untracked files:
(use "git add <file>..." to include in what will be committed)
arch/x86/include/generated/
nothing added to commit but untracked files present (use "git add" to track)
Thanks,
Taeung
On 05/24/2016 05:13 PM, Taeung Song wrote:
> 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: Masami Hiramatsu <mhiramat@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..4bef135 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/
> \ No newline at end of file
>
[toc] | [prev] | [next] | [standalone]
| From | "Wangnan (F)" <wangnan0@huawei.com> |
|---|---|
| Date | 2016-05-27 12:00 +0200 |
| Subject | Re: [RESEND PATCH] perf tools: Add arch/*/include/generated/ to .gitignore |
| Message-ID | <rDmIL-1N3-11@gated-at.bofh.it> |
| In reply to | #1407951 |
On 2016/5/27 17:15, Taeung Song wrote:
> Hi, Arnaldo
>
> If you have a little time,
> could you check this simple patch ?
>
> This patch is minor but
> everytime I build tools/perf code,
> untracked file(arch/*/include/generated/) is always generated..
> like below
>
> taeung ~/git/linux-perf/tools/perf
> :> make -j4
> BUILD: Doing 'make -j4' parallel build
>
> ...
>
> INSTALL python-scripts
> INSTALL perf_completion-script
> INSTALL perf-tip
>
> taeung ~/git/linux-perf/tools/perf
> :> git status
> On branch master
> Your branch is up-to-date with 'origin/master'.
> Untracked files:
> (use "git add <file>..." to include in what will be committed)
>
> arch/x86/include/generated/
>
> nothing added to commit but untracked files present (use "git add" to
> track)
>
>
> Thanks,
> Taeung
>
> On 05/24/2016 05:13 PM, Taeung Song wrote:
>> 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: Masami Hiramatsu <mhiramat@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..4bef135 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/
>> \ No newline at end of file
>>
Please add a newline here.
Thank you.
[toc] | [prev] | [next] | [standalone]
| From | Taeung Song <treeze.taeung@gmail.com> |
|---|---|
| Date | 2016-05-27 12:10 +0200 |
| Subject | Re: [RESEND PATCH] perf tools: Add arch/*/include/generated/ to .gitignore |
| Message-ID | <rDmSl-25m-7@gated-at.bofh.it> |
| In reply to | #1407970 |
Hi, Wangnan
Thank you !!
I'll resend modified patch, now
Thanks,
Taeung
On 05/27/2016 06:53 PM, Wangnan (F) wrote:
>
>
> On 2016/5/27 17:15, Taeung Song wrote:
>> Hi, Arnaldo
>>
>> If you have a little time,
>> could you check this simple patch ?
>>
>> This patch is minor but
>> everytime I build tools/perf code,
>> untracked file(arch/*/include/generated/) is always generated..
>> like below
>>
>> taeung ~/git/linux-perf/tools/perf
>> :> make -j4
>> BUILD: Doing 'make -j4' parallel build
>>
>> ...
>>
>> INSTALL python-scripts
>> INSTALL perf_completion-script
>> INSTALL perf-tip
>>
>> taeung ~/git/linux-perf/tools/perf
>> :> git status
>> On branch master
>> Your branch is up-to-date with 'origin/master'.
>> Untracked files:
>> (use "git add <file>..." to include in what will be committed)
>>
>> arch/x86/include/generated/
>>
>> nothing added to commit but untracked files present (use "git add" to
>> track)
>>
>>
>> Thanks,
>> Taeung
>>
>> On 05/24/2016 05:13 PM, Taeung Song wrote:
>>> 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: Masami Hiramatsu <mhiramat@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..4bef135 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/
>>> \ No newline at end of file
>>>
>
> Please add a newline here.
>
> Thank you.
>
>
>
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web