Re: [PATCH] perf unwind: Fix a compile error

2015-06-17 Thread Arnaldo Carvalho de Melo
Em Wed, Jun 17, 2015 at 07:51:37PM +0800, Wangnan (F) escreveu: > > > On 2015/6/16 21:47, Arnaldo Carvalho de Melo wrote: > >Em Tue, Jun 16, 2015 at 11:16:35AM +, Hou Pengyang escreveu: > >>When libunwind is on, there is a compile error as : > >> > >>util/unwind-libunwind.c:363:21: error:

Re: [PATCH] perf unwind: Fix a compile error

2015-06-17 Thread Wangnan (F)
On 2015/6/16 21:47, Arnaldo Carvalho de Melo wrote: Em Tue, Jun 16, 2015 at 11:16:35AM +, Hou Pengyang escreveu: When libunwind is on, there is a compile error as : util/unwind-libunwind.c:363:21: error: 'dso' undeclared (first use in this function) dso__data_put_fd(dso); This

Re: [PATCH] perf unwind: Fix a compile error

2015-06-17 Thread Arnaldo Carvalho de Melo
Em Wed, Jun 17, 2015 at 07:51:37PM +0800, Wangnan (F) escreveu: On 2015/6/16 21:47, Arnaldo Carvalho de Melo wrote: Em Tue, Jun 16, 2015 at 11:16:35AM +, Hou Pengyang escreveu: When libunwind is on, there is a compile error as : util/unwind-libunwind.c:363:21: error: 'dso' undeclared

Re: [PATCH] perf unwind: Fix a compile error

2015-06-17 Thread Wangnan (F)
On 2015/6/16 21:47, Arnaldo Carvalho de Melo wrote: Em Tue, Jun 16, 2015 at 11:16:35AM +, Hou Pengyang escreveu: When libunwind is on, there is a compile error as : util/unwind-libunwind.c:363:21: error: 'dso' undeclared (first use in this function) dso__data_put_fd(dso); This

Re: [PATCH] perf unwind: Fix a compile error

2015-06-16 Thread Arnaldo Carvalho de Melo
Em Tue, Jun 16, 2015 at 11:16:35AM +, Hou Pengyang escreveu: > When libunwind is on, there is a compile error as : > > util/unwind-libunwind.c:363:21: error: 'dso' undeclared (first use in this > function) > dso__data_put_fd(dso); > > This patch fix it. Thanks, applied. - Arnaldo >

[PATCH] perf unwind: Fix a compile error

2015-06-16 Thread Hou Pengyang
When libunwind is on, there is a compile error as : util/unwind-libunwind.c:363:21: error: 'dso' undeclared (first use in this function) dso__data_put_fd(dso); This patch fix it. Fixes: 4bb11d012ab248d0 ("perf tools: Add dso__data_get/put_fd()") Signed-off-by: Hou Pengyang ---

Re: [PATCH] perf unwind: Fix a compile error

2015-06-16 Thread Arnaldo Carvalho de Melo
Em Tue, Jun 16, 2015 at 11:16:35AM +, Hou Pengyang escreveu: When libunwind is on, there is a compile error as : util/unwind-libunwind.c:363:21: error: 'dso' undeclared (first use in this function) dso__data_put_fd(dso); This patch fix it. Thanks, applied. - Arnaldo Fixes:

[PATCH] perf unwind: Fix a compile error

2015-06-16 Thread Hou Pengyang
When libunwind is on, there is a compile error as : util/unwind-libunwind.c:363:21: error: 'dso' undeclared (first use in this function) dso__data_put_fd(dso); This patch fix it. Fixes: 4bb11d012ab248d0 (perf tools: Add dso__data_get/put_fd()) Signed-off-by: Hou Pengyang