From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55446) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fT1Oz-00089A-3k for qemu-devel@nongnu.org; Wed, 13 Jun 2018 04:45:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fT1Oy-0002RE-98 for qemu-devel@nongnu.org; Wed, 13 Jun 2018 04:45:13 -0400 Date: Wed, 13 Jun 2018 04:44:56 -0400 From: Yaowei Bai Message-ID: <20180613084455.GA13936@byw> Reply-To: baiyaowei@cmss.chinamobile.com References: <1528859749-25286-1-git-send-email-baiyaowei@cmss.chinamobile.com> <20180613035030.GB25430@flamenco> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180613035030.GB25430@flamenco> Subject: Re: [Qemu-devel] [PATCH] tracing.txt: add missing '-' for trace option List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Emilio G. Cota" Cc: mjt@tls.msk.ru, laurent@vivier.eu, qemu-trivial@nongnu.org, qemu-devel@nongnu.org, stefanha@redhat.com On Tue, Jun 12, 2018 at 11:50:30PM -0400, Emilio G. Cota wrote: > On Tue, Jun 12, 2018 at 23:15:49 -0400, Yaowei Bai wrote: > > Signed-off-by: Yaowei Bai > > --- > > docs/devel/tracing.txt | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/docs/devel/tracing.txt b/docs/devel/tracing.txt > > index 07abbb3..6ab32cc 100644 > > --- a/docs/devel/tracing.txt > > +++ b/docs/devel/tracing.txt > > @@ -18,7 +18,7 @@ for debugging, profiling, and observing execution. > > > > 3. Run the virtual machine to produce a trace file: > > > > - qemu -trace events=/tmp/events ... # your normal QEMU invocation > > + qemu --trace events=/tmp/events ... # your normal QEMU invocation > > The second dash is not missing; both '-args' and '--args' work. > > '-args' seems to be favoured though; see `qemu -h' or `qemu --h' :-) Oh, you're right. I just checked qemu-nbd/io utilities. Forget about this change. Thanks. :-) > > Emilio