All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] perf build: Make some improvements and fixes
@ 2015-03-20  3:20 Yunlong Song
  2015-03-20  3:20 ` [PATCH 1/2] perf build: Use FEATURE-DUMP instead of PERF-FEATURES in the .gitignore file Yunlong Song
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Yunlong Song @ 2015-03-20  3:20 UTC (permalink / raw)
  To: a.p.zijlstra, paulus, mingo, acme; +Cc: linux-kernel, wangnan0

Hi,
  Found some functions to improve and bugs to fix in perf building.

Yunlong Song (2):
  perf build: Use FEATURE-DUMP instead of PERF-FEATURES in the
    .gitignore     file
  perf build: Add config/feature-checks/*.output to the .gitignore file

 tools/perf/.gitignore                       | 2 +-
 tools/perf/config/feature-checks/.gitignore | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

-- 
1.8.5.2


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

* [PATCH 1/2] perf build: Use FEATURE-DUMP instead of PERF-FEATURES in the .gitignore file
  2015-03-20  3:20 [PATCH 0/2] perf build: Make some improvements and fixes Yunlong Song
@ 2015-03-20  3:20 ` Yunlong Song
  2015-03-22 10:14   ` [tip:perf/core] " tip-bot for Yunlong Song
  2015-03-20  3:20 ` [PATCH 2/2] perf build: Add config/feature-checks/*.output to " Yunlong Song
  2015-03-20 13:25 ` [PATCH 0/2] perf build: Make some improvements and fixes Arnaldo Carvalho de Melo
  2 siblings, 1 reply; 6+ messages in thread
From: Yunlong Song @ 2015-03-20  3:20 UTC (permalink / raw)
  To: a.p.zijlstra, paulus, mingo, acme; +Cc: linux-kernel, wangnan0

Since commit 4ae61202b31c ("perf build: Rename PERF-FEATURES into
FEATURE-DUMP") renames PERF-FEATURES into FEATURE-DUMP, the .gitignore
file should also do this thing for consistency.

Signed-off-by: Yunlong Song <yunlong.song@huawei.com>
---
 tools/perf/.gitignore | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/.gitignore b/tools/perf/.gitignore
index 68328f5..812f904 100644
--- a/tools/perf/.gitignore
+++ b/tools/perf/.gitignore
@@ -1,7 +1,7 @@
 PERF-CFLAGS
 PERF-GUI-VARS
 PERF-VERSION-FILE
-PERF-FEATURES
+FEATURE-DUMP
 perf
 perf-read-vdso32
 perf-read-vdsox32
-- 
1.8.5.2


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

* [PATCH 2/2] perf build: Add config/feature-checks/*.output to the .gitignore file
  2015-03-20  3:20 [PATCH 0/2] perf build: Make some improvements and fixes Yunlong Song
  2015-03-20  3:20 ` [PATCH 1/2] perf build: Use FEATURE-DUMP instead of PERF-FEATURES in the .gitignore file Yunlong Song
@ 2015-03-20  3:20 ` Yunlong Song
  2015-03-22 10:14   ` [tip:perf/core] perf build: Add config/feature-checks/ *.output " tip-bot for Yunlong Song
  2015-03-20 13:25 ` [PATCH 0/2] perf build: Make some improvements and fixes Arnaldo Carvalho de Melo
  2 siblings, 1 reply; 6+ messages in thread
From: Yunlong Song @ 2015-03-20  3:20 UTC (permalink / raw)
  To: a.p.zijlstra, paulus, mingo, acme; +Cc: linux-kernel, wangnan0

They are all auto-generated files during the perf building.

Before this patch:

 $ git status
 Untracked files:
   (use "git add <file>..." to include in what will be committed)

	config/feature-checks/test-all.make.output
	config/feature-checks/test-backtrace.make.output
	config/feature-checks/test-bionic.make.output
	config/feature-checks/test-dwarf.make.output
	config/feature-checks/test-fortify-source.make.output
	config/feature-checks/test-glibc.make.output
	config/feature-checks/test-gtk2-infobar.make.output
	config/feature-checks/test-gtk2.make.output
	config/feature-checks/test-libaudit.make.output
	config/feature-checks/test-libbabeltrace.make.output
	config/feature-checks/test-libbfd.make.output
	config/feature-checks/test-libdw-dwarf-unwind.make.output
	config/feature-checks/test-libelf-getphdrnum.make.output
	config/feature-checks/test-libelf-mmap.make.output
	config/feature-checks/test-libelf.make.output
	config/feature-checks/test-libnuma.make.output
	config/feature-checks/test-libperl.make.output
	config/feature-checks/test-libpython-version.make.output
	config/feature-checks/test-libpython.make.output
	config/feature-checks/test-libslang.make.output
	config/feature-checks/test-libunwind.make.output
	config/feature-checks/test-pthread-attr-setaffinity-np.make.output
	config/feature-checks/test-stackprotector-all.make.output
	config/feature-checks/test-sync-compare-and-swap.make.output
	config/feature-checks/test-timerfd.make.output
	config/feature-checks/test-zlib.make.output

After this patch:

 $ git status
 nothing to commit, working directory clean

Signed-off-by: Yunlong Song <yunlong.song@huawei.com>
---
 tools/perf/config/feature-checks/.gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/perf/config/feature-checks/.gitignore b/tools/perf/config/feature-checks/.gitignore
index 80f3da0..09b335b 100644
--- a/tools/perf/config/feature-checks/.gitignore
+++ b/tools/perf/config/feature-checks/.gitignore
@@ -1,2 +1,3 @@
 *.d
 *.bin
+*.output
-- 
1.8.5.2


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

* Re: [PATCH 0/2] perf build: Make some improvements and fixes
  2015-03-20  3:20 [PATCH 0/2] perf build: Make some improvements and fixes Yunlong Song
  2015-03-20  3:20 ` [PATCH 1/2] perf build: Use FEATURE-DUMP instead of PERF-FEATURES in the .gitignore file Yunlong Song
  2015-03-20  3:20 ` [PATCH 2/2] perf build: Add config/feature-checks/*.output to " Yunlong Song
@ 2015-03-20 13:25 ` Arnaldo Carvalho de Melo
  2 siblings, 0 replies; 6+ messages in thread
From: Arnaldo Carvalho de Melo @ 2015-03-20 13:25 UTC (permalink / raw)
  To: Yunlong Song
  Cc: a.p.zijlstra, paulus, mingo, linux-kernel, wangnan0, Jiri Olsa

Em Fri, Mar 20, 2015 at 11:20:36AM +0800, Yunlong Song escreveu:
> Hi,
>   Found some functions to improve and bugs to fix in perf building.
> 
> Yunlong Song (2):
>   perf build: Use FEATURE-DUMP instead of PERF-FEATURES in the
>     .gitignore     file
>   perf build: Add config/feature-checks/*.output to the .gitignore file

Thanks, applied.

Please add to the CC list the author of the patches where the problems
were introduced, I did it in the cset commit log CC list this time.

- Arnaldo

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

* [tip:perf/core] perf build: Use FEATURE-DUMP instead of PERF-FEATURES in the .gitignore file
  2015-03-20  3:20 ` [PATCH 1/2] perf build: Use FEATURE-DUMP instead of PERF-FEATURES in the .gitignore file Yunlong Song
@ 2015-03-22 10:14   ` tip-bot for Yunlong Song
  0 siblings, 0 replies; 6+ messages in thread
From: tip-bot for Yunlong Song @ 2015-03-22 10:14 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: acme, hpa, tglx, mingo, wangnan0, paulus, yunlong.song,
	linux-kernel, a.p.zijlstra, jolsa

Commit-ID:  43f3e14f0cd16a6c3430137ee22176033d1960da
Gitweb:     http://git.kernel.org/tip/43f3e14f0cd16a6c3430137ee22176033d1960da
Author:     Yunlong Song <yunlong.song@huawei.com>
AuthorDate: Fri, 20 Mar 2015 11:20:37 +0800
Committer:  Arnaldo Carvalho de Melo <acme@redhat.com>
CommitDate: Fri, 20 Mar 2015 17:49:51 -0300

perf build: Use FEATURE-DUMP instead of PERF-FEATURES in the .gitignore file

Since commit 4ae61202b31c ("perf build: Rename PERF-FEATURES into
FEATURE-DUMP") renames PERF-FEATURES into FEATURE-DUMP, the .gitignore
file should also do this thing for consistency.

Signed-off-by: Yunlong Song <yunlong.song@huawei.com>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/r/1426821638-11227-2-git-send-email-yunlong.song@huawei.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
 tools/perf/.gitignore | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/.gitignore b/tools/perf/.gitignore
index 68328f5..812f904 100644
--- a/tools/perf/.gitignore
+++ b/tools/perf/.gitignore
@@ -1,7 +1,7 @@
 PERF-CFLAGS
 PERF-GUI-VARS
 PERF-VERSION-FILE
-PERF-FEATURES
+FEATURE-DUMP
 perf
 perf-read-vdso32
 perf-read-vdsox32

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

* [tip:perf/core] perf build: Add config/feature-checks/ *.output to the .gitignore file
  2015-03-20  3:20 ` [PATCH 2/2] perf build: Add config/feature-checks/*.output to " Yunlong Song
@ 2015-03-22 10:14   ` tip-bot for Yunlong Song
  0 siblings, 0 replies; 6+ messages in thread
From: tip-bot for Yunlong Song @ 2015-03-22 10:14 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: acme, a.p.zijlstra, linux-kernel, mingo, paulus, hpa,
	yunlong.song, wangnan0, jolsa, tglx

Commit-ID:  1c30f546f3b7a1ac8b002dc3b3e8f4e26d195fa0
Gitweb:     http://git.kernel.org/tip/1c30f546f3b7a1ac8b002dc3b3e8f4e26d195fa0
Author:     Yunlong Song <yunlong.song@huawei.com>
AuthorDate: Fri, 20 Mar 2015 11:20:38 +0800
Committer:  Arnaldo Carvalho de Melo <acme@redhat.com>
CommitDate: Fri, 20 Mar 2015 17:49:52 -0300

perf build: Add config/feature-checks/*.output to the .gitignore file

They are all auto-generated files during the perf building.

Before this patch:

 $ git status
 Untracked files:
   (use "git add <file>..." to include in what will be committed)

	config/feature-checks/test-all.make.output
	config/feature-checks/test-backtrace.make.output
	config/feature-checks/test-bionic.make.output
	config/feature-checks/test-dwarf.make.output
	config/feature-checks/test-fortify-source.make.output
	config/feature-checks/test-glibc.make.output
	config/feature-checks/test-gtk2-infobar.make.output
	config/feature-checks/test-gtk2.make.output
	config/feature-checks/test-libaudit.make.output
	config/feature-checks/test-libbabeltrace.make.output
	config/feature-checks/test-libbfd.make.output
	config/feature-checks/test-libdw-dwarf-unwind.make.output
	config/feature-checks/test-libelf-getphdrnum.make.output
	config/feature-checks/test-libelf-mmap.make.output
	config/feature-checks/test-libelf.make.output
	config/feature-checks/test-libnuma.make.output
	config/feature-checks/test-libperl.make.output
	config/feature-checks/test-libpython-version.make.output
	config/feature-checks/test-libpython.make.output
	config/feature-checks/test-libslang.make.output
	config/feature-checks/test-libunwind.make.output
	config/feature-checks/test-pthread-attr-setaffinity-np.make.output
	config/feature-checks/test-stackprotector-all.make.output
	config/feature-checks/test-sync-compare-and-swap.make.output
	config/feature-checks/test-timerfd.make.output
	config/feature-checks/test-zlib.make.output

After this patch:

 $ git status
 nothing to commit, working directory clean

Signed-off-by: Yunlong Song <yunlong.song@huawei.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/r/1426821638-11227-3-git-send-email-yunlong.song@huawei.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
 tools/perf/config/feature-checks/.gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/perf/config/feature-checks/.gitignore b/tools/perf/config/feature-checks/.gitignore
index 80f3da0..09b335b 100644
--- a/tools/perf/config/feature-checks/.gitignore
+++ b/tools/perf/config/feature-checks/.gitignore
@@ -1,2 +1,3 @@
 *.d
 *.bin
+*.output

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

end of thread, other threads:[~2015-03-22 10:14 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-20  3:20 [PATCH 0/2] perf build: Make some improvements and fixes Yunlong Song
2015-03-20  3:20 ` [PATCH 1/2] perf build: Use FEATURE-DUMP instead of PERF-FEATURES in the .gitignore file Yunlong Song
2015-03-22 10:14   ` [tip:perf/core] " tip-bot for Yunlong Song
2015-03-20  3:20 ` [PATCH 2/2] perf build: Add config/feature-checks/*.output to " Yunlong Song
2015-03-22 10:14   ` [tip:perf/core] perf build: Add config/feature-checks/ *.output " tip-bot for Yunlong Song
2015-03-20 13:25 ` [PATCH 0/2] perf build: Make some improvements and fixes Arnaldo Carvalho de Melo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.