All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] qemu-options.hx: fix a typo of chardev
@ 2014-08-13  3:20 Liming Wang
  2014-08-13  3:33   ` Gonglei (Arei)
  2014-08-13  6:18   ` [Qemu-devel] " Michael Tokarev
  0 siblings, 2 replies; 5+ messages in thread
From: Liming Wang @ 2014-08-13  3:20 UTC (permalink / raw)
  To: qemu-devel

Change host to port.

Signed-off-by: Liming Wang <liming.wang@canonical.com>
---
 qemu-options.hx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qemu-options.hx b/qemu-options.hx
index 1549625..ac9e985 100644
--- a/qemu-options.hx
+++ b/qemu-options.hx
@@ -1926,7 +1926,7 @@ ETEXI
 
 DEF("chardev", HAS_ARG, QEMU_OPTION_chardev,
     "-chardev null,id=id[,mux=on|off]\n"
-    "-chardev socket,id=id[,host=host],port=host[,to=to][,ipv4][,ipv6][,nodelay]\n"
+    "-chardev socket,id=id[,host=host],port=port[,to=to][,ipv4][,ipv6][,nodelay]\n"
     "         [,server][,nowait][,telnet][,mux=on|off] (tcp)\n"
     "-chardev socket,id=id,path=path[,server][,nowait][,telnet],[mux=on|off] (unix)\n"
     "-chardev udp,id=id[,host=host],port=port[,localaddr=localaddr]\n"
-- 
1.9.1

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

* Re: [Qemu-trivial] [Qemu-devel] [PATCH] qemu-options.hx: fix a typo of chardev
  2014-08-13  3:20 [Qemu-devel] [PATCH] qemu-options.hx: fix a typo of chardev Liming Wang
@ 2014-08-13  3:33   ` Gonglei (Arei)
  2014-08-13  6:18   ` [Qemu-devel] " Michael Tokarev
  1 sibling, 0 replies; 5+ messages in thread
From: Gonglei (Arei) @ 2014-08-13  3:33 UTC (permalink / raw)
  To: Liming Wang, qemu-devel@nongnu.org; +Cc: qemu-trivial@nongnu.org

> Subject: [Qemu-devel] [PATCH] qemu-options.hx: fix a typo of chardev
> 
> Change host to port.
> 
> Signed-off-by: Liming Wang <liming.wang@canonical.com>
> ---
>  qemu-options.hx | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 

Reviewed-by: Gonglei <arei.gonglei@huawei.com>

Cc'ing qemu-trivial@

Best regards,
-Gonglei

> diff --git a/qemu-options.hx b/qemu-options.hx
> index 1549625..ac9e985 100644
> --- a/qemu-options.hx
> +++ b/qemu-options.hx
> @@ -1926,7 +1926,7 @@ ETEXI
> 
>  DEF("chardev", HAS_ARG, QEMU_OPTION_chardev,
>      "-chardev null,id=id[,mux=on|off]\n"
> -    "-chardev
> socket,id=id[,host=host],port=host[,to=to][,ipv4][,ipv6][,nodelay]\n"
> +    "-chardev
> socket,id=id[,host=host],port=port[,to=to][,ipv4][,ipv6][,nodelay]\n"
>      "         [,server][,nowait][,telnet][,mux=on|off] (tcp)\n"
>      "-chardev socket,id=id,path=path[,server][,nowait][,telnet],[mux=on|off]
> (unix)\n"
>      "-chardev udp,id=id[,host=host],port=port[,localaddr=localaddr]\n"
> --
> 1.9.1
> 



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

* Re: [Qemu-devel] [PATCH] qemu-options.hx: fix a typo of chardev
@ 2014-08-13  3:33   ` Gonglei (Arei)
  0 siblings, 0 replies; 5+ messages in thread
From: Gonglei (Arei) @ 2014-08-13  3:33 UTC (permalink / raw)
  To: Liming Wang, qemu-devel@nongnu.org; +Cc: qemu-trivial@nongnu.org

> Subject: [Qemu-devel] [PATCH] qemu-options.hx: fix a typo of chardev
> 
> Change host to port.
> 
> Signed-off-by: Liming Wang <liming.wang@canonical.com>
> ---
>  qemu-options.hx | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 

Reviewed-by: Gonglei <arei.gonglei@huawei.com>

Cc'ing qemu-trivial@

Best regards,
-Gonglei

> diff --git a/qemu-options.hx b/qemu-options.hx
> index 1549625..ac9e985 100644
> --- a/qemu-options.hx
> +++ b/qemu-options.hx
> @@ -1926,7 +1926,7 @@ ETEXI
> 
>  DEF("chardev", HAS_ARG, QEMU_OPTION_chardev,
>      "-chardev null,id=id[,mux=on|off]\n"
> -    "-chardev
> socket,id=id[,host=host],port=host[,to=to][,ipv4][,ipv6][,nodelay]\n"
> +    "-chardev
> socket,id=id[,host=host],port=port[,to=to][,ipv4][,ipv6][,nodelay]\n"
>      "         [,server][,nowait][,telnet][,mux=on|off] (tcp)\n"
>      "-chardev socket,id=id,path=path[,server][,nowait][,telnet],[mux=on|off]
> (unix)\n"
>      "-chardev udp,id=id[,host=host],port=port[,localaddr=localaddr]\n"
> --
> 1.9.1
> 

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

* Re: [Qemu-trivial] [PATCH] qemu-options.hx: fix a typo of chardev
  2014-08-13  3:20 [Qemu-devel] [PATCH] qemu-options.hx: fix a typo of chardev Liming Wang
@ 2014-08-13  6:18   ` Michael Tokarev
  2014-08-13  6:18   ` [Qemu-devel] " Michael Tokarev
  1 sibling, 0 replies; 5+ messages in thread
From: Michael Tokarev @ 2014-08-13  6:18 UTC (permalink / raw)
  To: Liming Wang, qemu-devel; +Cc: qemu-trivial

13.08.2014 07:20, Liming Wang wrote:
> Change host to port.

A good one.  Applied to -trivial, thank you!

/mjt


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

* Re: [Qemu-devel] [PATCH] qemu-options.hx: fix a typo of chardev
@ 2014-08-13  6:18   ` Michael Tokarev
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Tokarev @ 2014-08-13  6:18 UTC (permalink / raw)
  To: Liming Wang, qemu-devel; +Cc: qemu-trivial

13.08.2014 07:20, Liming Wang wrote:
> Change host to port.

A good one.  Applied to -trivial, thank you!

/mjt

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

end of thread, other threads:[~2014-08-13  6:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-13  3:20 [Qemu-devel] [PATCH] qemu-options.hx: fix a typo of chardev Liming Wang
2014-08-13  3:33 ` [Qemu-trivial] " Gonglei (Arei)
2014-08-13  3:33   ` Gonglei (Arei)
2014-08-13  6:18 ` [Qemu-trivial] " Michael Tokarev
2014-08-13  6:18   ` [Qemu-devel] " Michael Tokarev

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.