Re: [PATCH] chardev: enable distinct input for -chardev file

2020-05-04 Thread Alexander Bulekov
On 200501 1325, Alexander Bulekov wrote: ... > diff --git a/qemu-options.hx b/qemu-options.hx > index 292d4e7c0c..bbb091872f 100644 > --- a/qemu-options.hx > +++ b/qemu-options.hx > @@ -2938,7 +2938,7 @@ DEF("chardev", HAS_ARG, QEMU_OPTION_chardev, > "-chardev > vc,id=id[[,width=width][,heigh

Re: [PATCH] chardev: enable distinct input for -chardev file

2020-05-04 Thread Stefan Hajnoczi
On Fri, May 01, 2020 at 01:25:59PM -0400, Alexander Bulekov wrote: > char-file already supports distinct paths for input/output but it was > only possible to specify a distinct input through QMP. With this change, > we can also specify a distinct input with the -chardev file argument: > qemu -c

Re: [PATCH] chardev: enable distinct input for -chardev file

2020-05-04 Thread Daniel P . Berrangé
On Fri, May 01, 2020 at 01:25:59PM -0400, Alexander Bulekov wrote: > char-file already supports distinct paths for input/output but it was > only possible to specify a distinct input through QMP. With this change, > we can also specify a distinct input with the -chardev file argument: > qemu -c

Re: [PATCH] chardev: enable distinct input for -chardev file

2020-05-01 Thread no-reply
Patchew URL: https://patchew.org/QEMU/20200501172559.6470-1-alx...@bu.edu/ Hi, This series failed the docker-quick@centos7 build test. Please find the testing commands and their output below. If you have Docker installed, you can probably reproduce it locally. === TEST SCRIPT BEGIN === #!/bin

Re: [PATCH] chardev: enable distinct input for -chardev file

2020-05-01 Thread Marc-André Lureau
Hi On Fri, May 1, 2020 at 7:26 PM Alexander Bulekov wrote: > > char-file already supports distinct paths for input/output but it was > only possible to specify a distinct input through QMP. With this change, > we can also specify a distinct input with the -chardev file argument: > qemu -chard

[PATCH] chardev: enable distinct input for -chardev file

2020-05-01 Thread Alexander Bulekov
char-file already supports distinct paths for input/output but it was only possible to specify a distinct input through QMP. With this change, we can also specify a distinct input with the -chardev file argument: qemu -chardev file,id=char1,path=/out/file,in=/in/file Signed-off-by: Alexander B