Re: [PATCH v5 1/2] perf record: Propagate exit status of a command line workload

From: Ingo Molnar
Date: Thu May 08 2014 - 04:42:59 EST



* Peter Zijlstra <peterz@xxxxxxxxxxxxx> wrote:

> On Thu, May 08, 2014 at 04:59:53PM +0900, Namhyung Kim wrote:
> > Currently perf record doesn't propagate the exit status of a workload
> > given by the command line. But sometimes it'd useful if it's
> > propagated so that a monitoring script can handle errors
> > appropriately.
> >
> > To do that, it got rid of exit handlers and run/call them directly in
> > the __cmd_record(). I don't see any reason why those are in a form of
> > exit handlers in the first place. Also it cleaned up the resource
> > management code in record__exit().
> >
> > With this change, perf record returns the child exit status in case of
> > normal termination and send signal to itself when terminated by signal.
> >
> > Example run of Stephane's case:
> >
> > $ perf record true && echo yes || echo no
> > [ perf record: Woken up 1 times to write data ]
> > [ perf record: Captured and wrote 0.013 MB perf.data (~589 samples) ]
> > yes
> >
> > $ perf record false && echo yes || echo no
> > [ perf record: Woken up 1 times to write data ]
> > [ perf record: Captured and wrote 0.013 MB perf.data (~589 samples) ]
> > no
> >
> > Jiri's case (error in parent):
> >
> > $ perf record -m 10G true && echo yes || echo no
> > rounding mmap pages size to 17179869184 bytes (4194304 pages)
> > failed to mmap with 12 (Cannot allocate memory)
> > no
> >
> > And Peter's case (interrupted by signal):
> >
> > $ while :; do perf record sleep 1; done
> > ^C[ perf record: Woken up 1 times to write data ]
> > [ perf record: Captured and wrote 0.014 MB perf.data (~593 samples) ]
>
> Thanks!
>
> Acked-by: Peter Zijlstra <peterz@xxxxxxxxxxxxx>

Very nice!

Acked-by: Ingo Molnar <mingo@xxxxxxxxxx>

Thanks,

Ingo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/