qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [patch] correct tracing.txt
@ 2012-03-08  8:24 Jun Koi
  2012-03-08  8:30 ` 陳韋任
  2012-03-08 12:02 ` Stefan Hajnoczi
  0 siblings, 2 replies; 6+ messages in thread
From: Jun Koi @ 2012-03-08  8:24 UTC (permalink / raw)
  To: qemu-devel

this patch corrects the configure's trace option in docs/tracing.txt

Signed-off-by: Jun Koi <junkoi2004@gmail.com>

 diff --git a/docs/tracing.txt b/docs/tracing.txt
index ea29f2c..7b11d15 100644
--- a/docs/tracing.txt
+++ b/docs/tracing.txt
@@ -9,7 +9,7 @@ for debugging, profiling, and observing execution.

 1. Build with the 'simple' trace backend:

-    ./configure --trace-backend=simple
+    ./configure --enable-trace-backend=simple
     make

 2. Create a file with the events you want to trace:

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

* Re: [Qemu-devel] [patch] correct tracing.txt
  2012-03-08  8:24 [Qemu-devel] [patch] correct tracing.txt Jun Koi
@ 2012-03-08  8:30 ` 陳韋任
  2012-03-09 10:20   ` Stefan Hajnoczi
  2012-03-08 12:02 ` Stefan Hajnoczi
  1 sibling, 1 reply; 6+ messages in thread
From: 陳韋任 @ 2012-03-08  8:30 UTC (permalink / raw)
  To: Jun Koi; +Cc: qemu-devel

  Simple patch should cc to qemu-trivial@nongnu.org :).
 
On Thu, Mar 08, 2012 at 04:24:52PM +0800, Jun Koi wrote:
> this patch corrects the configure's trace option in docs/tracing.txt
> 
> Signed-off-by: Jun Koi <junkoi2004@gmail.com>
> 
>  diff --git a/docs/tracing.txt b/docs/tracing.txt
> index ea29f2c..7b11d15 100644
> --- a/docs/tracing.txt
> +++ b/docs/tracing.txt
> @@ -9,7 +9,7 @@ for debugging, profiling, and observing execution.
> 
>  1. Build with the 'simple' trace backend:
> 
> -    ./configure --trace-backend=simple
> +    ./configure --enable-trace-backend=simple
>      make
> 
>  2. Create a file with the events you want to trace:

-- 
Wei-Ren Chen (陳韋任)
Computer Systems Lab, Institute of Information Science,
Academia Sinica, Taiwan (R.O.C.)
Tel:886-2-2788-3799 #1667
Homepage: http://people.cs.nctu.edu.tw/~chenwj

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

* Re: [Qemu-devel] [patch] correct tracing.txt
  2012-03-08  8:24 [Qemu-devel] [patch] correct tracing.txt Jun Koi
  2012-03-08  8:30 ` 陳韋任
@ 2012-03-08 12:02 ` Stefan Hajnoczi
  1 sibling, 0 replies; 6+ messages in thread
From: Stefan Hajnoczi @ 2012-03-08 12:02 UTC (permalink / raw)
  To: Jun Koi; +Cc: qemu-devel

On Thu, Mar 08, 2012 at 04:24:52PM +0800, Jun Koi wrote:
> this patch corrects the configure's trace option in docs/tracing.txt
> 
> Signed-off-by: Jun Koi <junkoi2004@gmail.com>
> 
>  diff --git a/docs/tracing.txt b/docs/tracing.txt
> index ea29f2c..7b11d15 100644
> --- a/docs/tracing.txt
> +++ b/docs/tracing.txt
> @@ -9,7 +9,7 @@ for debugging, profiling, and observing execution.
> 
>  1. Build with the 'simple' trace backend:
> 
> -    ./configure --trace-backend=simple
> +    ./configure --enable-trace-backend=simple
>      make
> 
>  2. Create a file with the events you want to trace:
> 

This may conflict with other patches on the list - I haven't sent a
tracing pull request for far too long and there are a bunch of
outstanding patches.  But since it's here in a convenient patch email,
let's take this!

Thanks, applied to the tracing patches tree:
https://github.com/stefanha/qemu/commits/tracing

Stefan

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

* Re: [Qemu-devel] [patch] correct tracing.txt
  2012-03-08  8:30 ` 陳韋任
@ 2012-03-09 10:20   ` Stefan Hajnoczi
  2012-03-09 11:48     ` Peter Maydell
  0 siblings, 1 reply; 6+ messages in thread
From: Stefan Hajnoczi @ 2012-03-09 10:20 UTC (permalink / raw)
  To: 陳韋任; +Cc: qemu-devel, Jun Koi

On Thu, Mar 8, 2012 at 8:30 AM, 陳韋任 <chenwj@iis.sinica.edu.tw> wrote:
>  Simple patch should cc to qemu-trivial@nongnu.org :).

Not in all cases.  qemu-trivial is a catch-all for simple patches so
we don't forget them.  It was a solution to the problem that patches
were often forgotten if they touch a QEMU subsystem that isn't
actively maintained.

In the case where you know there is an active maintainer - like pci,
block, ppc, tracing, etc - then it's fine to send it via the
maintainer instead of qemu-trivial.  qemu-trivial is a safety net so
that we don't drop simple patches just because no one feels
responsible for them.

Jun Koi: It's worth CCing the maintainer (see ./MAINTAINERS) so they
don't miss your patch.

Stefan

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

* Re: [Qemu-devel] [patch] correct tracing.txt
  2012-03-09 10:20   ` Stefan Hajnoczi
@ 2012-03-09 11:48     ` Peter Maydell
  2012-03-09 11:50       ` Stefan Hajnoczi
  0 siblings, 1 reply; 6+ messages in thread
From: Peter Maydell @ 2012-03-09 11:48 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: qemu-devel, 陳韋任, Jun Koi

On 9 March 2012 10:20, Stefan Hajnoczi <stefanha@gmail.com> wrote:
> Not in all cases.  qemu-trivial is a catch-all for simple patches so
> we don't forget them.  It was a solution to the problem that patches
> were often forgotten if they touch a QEMU subsystem that isn't
> actively maintained.

I think you could argue that our documentation counts as a "subsystem
that isn't actively maintained" :-)

-- PMM

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

* Re: [Qemu-devel] [patch] correct tracing.txt
  2012-03-09 11:48     ` Peter Maydell
@ 2012-03-09 11:50       ` Stefan Hajnoczi
  0 siblings, 0 replies; 6+ messages in thread
From: Stefan Hajnoczi @ 2012-03-09 11:50 UTC (permalink / raw)
  To: Peter Maydell; +Cc: qemu-devel, 陳韋任, Jun Koi

On Fri, Mar 9, 2012 at 11:48 AM, Peter Maydell <peter.maydell@linaro.org> wrote:
> On 9 March 2012 10:20, Stefan Hajnoczi <stefanha@gmail.com> wrote:
>> Not in all cases.  qemu-trivial is a catch-all for simple patches so
>> we don't forget them.  It was a solution to the problem that patches
>> were often forgotten if they touch a QEMU subsystem that isn't
>> actively maintained.
>
> I think you could argue that our documentation counts as a "subsystem
> that isn't actively maintained" :-)

If it's tracing then I'll look at it - although I'm admittedly very
behind on my patch queue.

Stefan

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

end of thread, other threads:[~2012-03-09 11:50 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-08  8:24 [Qemu-devel] [patch] correct tracing.txt Jun Koi
2012-03-08  8:30 ` 陳韋任
2012-03-09 10:20   ` Stefan Hajnoczi
2012-03-09 11:48     ` Peter Maydell
2012-03-09 11:50       ` Stefan Hajnoczi
2012-03-08 12:02 ` Stefan Hajnoczi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).