Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1184297 > unrolled thread
| Started by | Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> |
|---|---|
| First post | 2015-07-15 08:20 +0200 |
| Last post | 2015-07-15 16:20 +0200 |
| Articles | 4 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH perf/core ] [BUGFIX] perf build-test: Add linux/export.h and lib/rbtree.c to MANIFEST Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> - 2015-07-15 08:20 +0200
Re: [PATCH perf/core ] [BUGFIX] perf build-test: Add linux/export.h and lib/rbtree.c to MANIFEST Arnaldo Carvalho de Melo <acme@kernel.org> - 2015-07-15 13:30 +0200
Re: Re: [PATCH perf/core ] [BUGFIX] perf build-test: Add linux/export.h and lib/rbtree.c to MANIFEST Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> - 2015-07-15 16:00 +0200
Re: Re: [PATCH perf/core ] [BUGFIX] perf build-test: Add linux/export.h and lib/rbtree.c to MANIFEST Arnaldo Carvalho de Melo <acme@kernel.org> - 2015-07-15 16:20 +0200
| From | Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> |
|---|---|
| Date | 2015-07-15 08:20 +0200 |
| Subject | [PATCH perf/core ] [BUGFIX] perf build-test: Add linux/export.h and lib/rbtree.c to MANIFEST |
| Message-ID | <pMocV-7vv-1@gated-at.bofh.it> |
Since linux/export.h and lib/rbtree.c are not listed in MANIFEST,
`make build-test` always fails as below (Note, to get these messages,
I've removed /dev/null redirect in tests/perf-targz-src-pkg);
----
CC util/hweight.o
../../lib/hweight.c:1:26: fatal error: linux/export.h:
No such file or directory
#include <linux/export.h>
^
compilation terminated.
make[3]: *** [util/hweight.o] Error 1
----
----
GEN common-cmds.h
make[1]: *** No rule to make target `../../lib/rbtree.c',
needed by `python/perf.so'. Stop.
make[1]: *** Waiting for unfinished jobs....
----
Signed-off-by: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
---
tools/perf/MANIFEST | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tools/perf/MANIFEST b/tools/perf/MANIFEST
index 09dc0aa..adce9de 100644
--- a/tools/perf/MANIFEST
+++ b/tools/perf/MANIFEST
@@ -58,7 +58,9 @@ include/linux/list.h
include/linux/hash.h
include/linux/stringify.h
lib/hweight.c
+lib/rbtree.c
include/linux/swab.h
+include/linux/export.h
arch/*/include/asm/unistd*.h
arch/*/include/uapi/asm/unistd*.h
arch/*/include/uapi/asm/perf_regs.h
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Arnaldo Carvalho de Melo <acme@kernel.org> |
|---|---|
| Date | 2015-07-15 13:30 +0200 |
| Subject | Re: [PATCH perf/core ] [BUGFIX] perf build-test: Add linux/export.h and lib/rbtree.c to MANIFEST |
| Message-ID | <pMt2W-62p-21@gated-at.bofh.it> |
| In reply to | #1184297 |
Em Wed, Jul 15, 2015 at 03:07:18PM +0900, Masami Hiramatsu escreveu: > Since linux/export.h and lib/rbtree.c are not listed in MANIFEST, > `make build-test` always fails as below (Note, to get these messages, > I've removed /dev/null redirect in tests/perf-targz-src-pkg); See: https://git.kernel.org/cgit/linux/kernel/git/tip/tip.git/commit/?h=perf/urgent&id=4756e1966c4e1c00a2c6e379cea0322429d1a29b https://git.kernel.org/cgit/linux/kernel/git/tip/tip.git/commit/?h=perf/urgent&id=0aefc3590afcc9ecbe173fc01fccbda0869d2f0a Summary: The fix below is wrong, the right one was pushed to Ingo and should make its way to Linus soon, - Arnaldo > ---- > CC util/hweight.o > ../../lib/hweight.c:1:26: fatal error: linux/export.h: > No such file or directory > #include <linux/export.h> > ^ > compilation terminated. > make[3]: *** [util/hweight.o] Error 1 > ---- > > ---- > GEN common-cmds.h > make[1]: *** No rule to make target `../../lib/rbtree.c', > needed by `python/perf.so'. Stop. > make[1]: *** Waiting for unfinished jobs.... > ---- > > Signed-off-by: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> > --- > tools/perf/MANIFEST | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/tools/perf/MANIFEST b/tools/perf/MANIFEST > index 09dc0aa..adce9de 100644 > --- a/tools/perf/MANIFEST > +++ b/tools/perf/MANIFEST > @@ -58,7 +58,9 @@ include/linux/list.h > include/linux/hash.h > include/linux/stringify.h > lib/hweight.c > +lib/rbtree.c > include/linux/swab.h > +include/linux/export.h > arch/*/include/asm/unistd*.h > arch/*/include/uapi/asm/unistd*.h > arch/*/include/uapi/asm/perf_regs.h > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> |
|---|---|
| Date | 2015-07-15 16:00 +0200 |
| Subject | Re: Re: [PATCH perf/core ] [BUGFIX] perf build-test: Add linux/export.h and lib/rbtree.c to MANIFEST |
| Message-ID | <pMvo7-S4-19@gated-at.bofh.it> |
| In reply to | #1184704 |
On 2015/07/15 20:22, Arnaldo Carvalho de Melo wrote: > Em Wed, Jul 15, 2015 at 03:07:18PM +0900, Masami Hiramatsu escreveu: >> Since linux/export.h and lib/rbtree.c are not listed in MANIFEST, >> `make build-test` always fails as below (Note, to get these messages, >> I've removed /dev/null redirect in tests/perf-targz-src-pkg); > > See: > > https://git.kernel.org/cgit/linux/kernel/git/tip/tip.git/commit/?h=perf/urgent&id=4756e1966c4e1c00a2c6e379cea0322429d1a29b > https://git.kernel.org/cgit/linux/kernel/git/tip/tip.git/commit/?h=perf/urgent&id=0aefc3590afcc9ecbe173fc01fccbda0869d2f0a > > Summary: The fix below is wrong, the right one was pushed to Ingo and > should make its way to Linus soon, Ah, OK. Since I just noticed that when I ran "make build-test" before releasing my patchset of perf probe cache. If it has successfully gone, please ignore this :) Thank you! > > - Arnaldo > >> ---- >> CC util/hweight.o >> ../../lib/hweight.c:1:26: fatal error: linux/export.h: >> No such file or directory >> #include <linux/export.h> >> ^ >> compilation terminated. >> make[3]: *** [util/hweight.o] Error 1 >> ---- >> >> ---- >> GEN common-cmds.h >> make[1]: *** No rule to make target `../../lib/rbtree.c', >> needed by `python/perf.so'. Stop. >> make[1]: *** Waiting for unfinished jobs.... >> ---- >> >> Signed-off-by: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> >> --- >> tools/perf/MANIFEST | 2 ++ >> 1 file changed, 2 insertions(+) >> >> diff --git a/tools/perf/MANIFEST b/tools/perf/MANIFEST >> index 09dc0aa..adce9de 100644 >> --- a/tools/perf/MANIFEST >> +++ b/tools/perf/MANIFEST >> @@ -58,7 +58,9 @@ include/linux/list.h >> include/linux/hash.h >> include/linux/stringify.h >> lib/hweight.c >> +lib/rbtree.c >> include/linux/swab.h >> +include/linux/export.h >> arch/*/include/asm/unistd*.h >> arch/*/include/uapi/asm/unistd*.h >> arch/*/include/uapi/asm/perf_regs.h >> > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ > -- Masami HIRAMATSU Linux Technology Research Center, System Productivity Research Dept. Center for Technology Innovation - Systems Engineering Hitachi, Ltd., Research & Development Group E-mail: masami.hiramatsu.pt@hitachi.com -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Arnaldo Carvalho de Melo <acme@kernel.org> |
|---|---|
| Date | 2015-07-15 16:20 +0200 |
| Subject | Re: Re: [PATCH perf/core ] [BUGFIX] perf build-test: Add linux/export.h and lib/rbtree.c to MANIFEST |
| Message-ID | <pMvHr-1uR-1@gated-at.bofh.it> |
| In reply to | #1184820 |
Em Wed, Jul 15, 2015 at 10:51:27PM +0900, Masami Hiramatsu escreveu: > On 2015/07/15 20:22, Arnaldo Carvalho de Melo wrote: > > https://git.kernel.org/cgit/linux/kernel/git/tip/tip.git/commit/?h=perf/urgent&id=4756e1966c4e1c00a2c6e379cea0322429d1a29b > > https://git.kernel.org/cgit/linux/kernel/git/tip/tip.git/commit/?h=perf/urgent&id=0aefc3590afcc9ecbe173fc01fccbda0869d2f0a > > > > Summary: The fix below is wrong, the right one was pushed to Ingo and > > should make its way to Linus soon, > > Ah, OK. > Since I just noticed that when I ran "make build-test" before releasing > my patchset of perf probe cache. If it has successfully gone, please > ignore this :) Right, thank you for doing that, in this case I was the bad boy, guess I need to make those tests run in parallel... Thanks! - Arnaldo -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web