public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* A Bug Inquiry in linux/tools/perf/builtin-record.c
@ 2014-02-19  1:48 xiakaixu
  2014-02-25  7:16 ` xiakaixu
  0 siblings, 1 reply; 5+ messages in thread
From: xiakaixu @ 2014-02-19  1:48 UTC (permalink / raw)
  To: a.p.zijlstra, paulus, mingo, acme
  Cc: linux-kernel, Huxinwei, Genghui, peifeiyue

Hi all,

There is a bug found in my work when running "perf record". The basic information
is here. As we know, perf record is a parent process and the programme traced is
a child process when running "perf record". Sometimes the child process become
zombie state and disappear until the parent process is killed. The bug stays in linux/
tools/perf/builtin-record.c.
*********************************************************************
static int __cmd_record(struct perf_record *rec, int argc, const char **argv)
    ......
	if (hits == rec->samples) {
                         if (done)
                                 break;
                         err = poll(evsel_list->pollfd, evsel_list->nr_fds, -1);
                         waking++;
                 }
    ......
*********************************************************************
The parent process still call the function
poll(evsel_list->pollfd, evsel_list->nr_fds, -1) when the child process has exited
already, which caused a zombie process.

May I have your opinion ?
Waiting for your reply!

Best Regards
Kaixu Xia


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

* Re: A Bug Inquiry in linux/tools/perf/builtin-record.c
  2014-02-19  1:48 A Bug Inquiry in linux/tools/perf/builtin-record.c xiakaixu
@ 2014-02-25  7:16 ` xiakaixu
  2014-02-26  8:03   ` Namhyung Kim
  0 siblings, 1 reply; 5+ messages in thread
From: xiakaixu @ 2014-02-25  7:16 UTC (permalink / raw)
  To: a.p.zijlstra, paulus, mingo, acme
  Cc: linux-kernel, Huxinwei, Genghui, peifeiyue

于 2014/2/19 9:48, xiakaixu 写道:
> Hi all,
> 
> There is a bug found in my work when running "perf record". The basic information
> is here. As we know, perf record is a parent process and the programme traced is
> a child process when running "perf record". Sometimes the child process become
> zombie state and disappear until the parent process is killed. The bug stays in linux/
> tools/perf/builtin-record.c.
> *********************************************************************
> static int __cmd_record(struct perf_record *rec, int argc, const char **argv)
>     ......
> 	if (hits == rec->samples) {
>                          if (done)
>                                  break;
>                          err = poll(evsel_list->pollfd, evsel_list->nr_fds, -1);
>                          waking++;
>                  }
>     ......
> *********************************************************************
> The parent process still call the function
> poll(evsel_list->pollfd, evsel_list->nr_fds, -1) when the child process has exited
> already, which caused a zombie process.
> 
> May I have your opinion ?
> Waiting for your reply!
> 
> Best Regards
> Kaixu Xia
> 



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

* Re: A Bug Inquiry in linux/tools/perf/builtin-record.c
  2014-02-25  7:16 ` xiakaixu
@ 2014-02-26  8:03   ` Namhyung Kim
  2014-02-27  2:53     ` xiakaixu
  0 siblings, 1 reply; 5+ messages in thread
From: Namhyung Kim @ 2014-02-26  8:03 UTC (permalink / raw)
  To: xiakaixu
  Cc: a.p.zijlstra, paulus, mingo, acme, linux-kernel, Huxinwei,
	Genghui, peifeiyue

Hi xiakaixu,

> 于 2014/2/19 9:48, xiakaixu 写道:
>> Hi all,
>> 
>> There is a bug found in my work when running "perf record". The basic information
>> is here. As we know, perf record is a parent process and the programme traced is
>> a child process when running "perf record". Sometimes the child process become
>> zombie state and disappear until the parent process is killed. The bug stays in linux/
>> tools/perf/builtin-record.c.
>> *********************************************************************
>> static int __cmd_record(struct perf_record *rec, int argc, const char **argv)
>>     ......
>> 	if (hits == rec->samples) {
>>                          if (done)
>>                                  break;
>>                          err = poll(evsel_list->pollfd, evsel_list->nr_fds, -1);
>>                          waking++;
>>                  }
>>     ......
>> *********************************************************************
>> The parent process still call the function
>> poll(evsel_list->pollfd, evsel_list->nr_fds, -1) when the child process has exited
>> already, which caused a zombie process.
>> 
>> May I have your opinion ?
>> Waiting for your reply!

Do you have a real bug report based on this?

AFAIK perf record installed a signal handler for SIGCHLD so it'll set
the 'done' variable when child exits and then break the loop.

Thanks,
Namhyung

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

* Re: A Bug Inquiry in linux/tools/perf/builtin-record.c
  2014-02-26  8:03   ` Namhyung Kim
@ 2014-02-27  2:53     ` xiakaixu
  2014-03-03  4:10       ` xiakaixu
  0 siblings, 1 reply; 5+ messages in thread
From: xiakaixu @ 2014-02-27  2:53 UTC (permalink / raw)
  To: Namhyung Kim
  Cc: a.p.zijlstra, paulus, mingo, acme, linux-kernel, Huxinwei,
	Genghui, peifeiyue

Hi Namhyung,

于 2014/2/26 16:03, Namhyung Kim 写道:
> Hi xiakaixu,
> 
>> 于 2014/2/19 9:48, xiakaixu 写道:
>>> Hi all,
>>>
>>> There is a bug found in my work when running "perf record". The basic information
>>> is here. As we know, perf record is a parent process and the programme traced is
>>> a child process when running "perf record". Sometimes the child process become
>>> zombie state and disappear until the parent process is killed. The bug stays in linux/
>>> tools/perf/builtin-record.c.
>>> *********************************************************************
>>> static int __cmd_record(struct perf_record *rec, int argc, const char **argv)
>>>     ......
>>> 	if (hits == rec->samples) {
>>>                          if (done)
>>>                                  break;
>>>                          err = poll(evsel_list->pollfd, evsel_list->nr_fds, -1);
>>>                          waking++;
>>>                  }
>>>     ......
>>> *********************************************************************
>>> The parent process still call the function
>>> poll(evsel_list->pollfd, evsel_list->nr_fds, -1) when the child process has exited
>>> already, which caused a zombie process.
>>>
>>> May I have your opinion ?
>>> Waiting for your reply!
> 
> Do you have a real bug report based on this?
yeah, of course we have it, I'll be glad to provide it if necessary.
> 
> AFAIK perf record installed a signal handler for SIGCHLD so it'll set
> the 'done' variable when child exits and then break the loop.
yes, you are right. Though the 'done' varible will be set when child exits,
there is time gap between "if(done)" statement and "poll(...)" function.
The 'done' variable won't be judge when child exits in this time gap.
You know this time gap is instruction level, so this bug is small probability.
My solution is adding a while(...) statement outside poll(...) function.
>
> Thanks,
> Namhyung
> .
> 



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

* Re: A Bug Inquiry in linux/tools/perf/builtin-record.c
  2014-02-27  2:53     ` xiakaixu
@ 2014-03-03  4:10       ` xiakaixu
  0 siblings, 0 replies; 5+ messages in thread
From: xiakaixu @ 2014-03-03  4:10 UTC (permalink / raw)
  To: Namhyung Kim
  Cc: a.p.zijlstra, paulus, mingo, acme, linux-kernel, Huxinwei,
	Genghui, peifeiyue

于 2014/2/27 10:53, xiakaixu 写道:
> Hi Namhyung,
> 
> 于 2014/2/26 16:03, Namhyung Kim 写道:
>> Hi xiakaixu,
>>
>>> 于 2014/2/19 9:48, xiakaixu 写道:
>>>> Hi all,
>>>>
>>>> There is a bug found in my work when running "perf record". The basic information
>>>> is here. As we know, perf record is a parent process and the programme traced is
>>>> a child process when running "perf record". Sometimes the child process become
>>>> zombie state and disappear until the parent process is killed. The bug stays in linux/
>>>> tools/perf/builtin-record.c.
>>>> *********************************************************************
>>>> static int __cmd_record(struct perf_record *rec, int argc, const char **argv)
>>>>     ......
>>>> 	if (hits == rec->samples) {
>>>>                          if (done)
>>>>                                  break;
>>>>                          err = poll(evsel_list->pollfd, evsel_list->nr_fds, -1);
>>>>                          waking++;
>>>>                  }
>>>>     ......
>>>> *********************************************************************
>>>> The parent process still call the function
>>>> poll(evsel_list->pollfd, evsel_list->nr_fds, -1) when the child process has exited
>>>> already, which caused a zombie process.
>>>>
>>>> May I have your opinion ?
>>>> Waiting for your reply!
>>
>> Do you have a real bug report based on this?

> yeah, of course we have it, I'll be glad to provide it if necessary.

>>
>> AFAIK perf record installed a signal handler for SIGCHLD so it'll set
>> the 'done' variable when child exits and then break the loop.

> yes, you are right. Though the 'done' varible will be set when child exits,
> there is time gap between "if(done)" statement and "poll(...)" function.
> The 'done' variable won't be judge when child exits in this time gap.
> You know this time gap is instruction level, so this bug is small probability.
> My solution is adding a while(...) statement outside poll(...) function.
>>

>> Thanks,
>> Namhyung
>> .
>>
> 



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

end of thread, other threads:[~2014-03-03  4:11 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-19  1:48 A Bug Inquiry in linux/tools/perf/builtin-record.c xiakaixu
2014-02-25  7:16 ` xiakaixu
2014-02-26  8:03   ` Namhyung Kim
2014-02-27  2:53     ` xiakaixu
2014-03-03  4:10       ` xiakaixu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox