Ping?
On 07/20/2012 07:09 AM, Anthony Liguori wrote:
Lei Li writes:
tcp_chr_write() did not deal with writing to an unconnected
connection and return the original length of the data, it's
not right and would cause false writing. So (re-)connect it
and return 0 for this situation.
Signe
On 08/02/2012 05:30 AM, Anthony Liguori wrote:
Lei Li writes:
Signed-off-by: Lei Li
---
qemu-char.c | 96 +++---
qemu-char.h |2 +-
2 files changed, 78 insertions(+), 20 deletions(-)
diff --git a/qemu-char.c b/qemu-char.c
index
Signed-off-by: Lei Li
---
qemu-char.c | 96 +++---
qemu-char.h |2 +-
2 files changed, 78 insertions(+), 20 deletions(-)
diff --git a/qemu-char.c b/qemu-char.c
index 398baf1..b21b93a 100644
--- a/qemu-char.c
+++ b/qemu-char.c
@@ -2528,38
the new rule for the name of qmp command from Eric.
For the comments of MemCharDriver improvment, which I am working on and
will send out within v3 with the rest feature implemented in few days.
Lei Li (6):
qemu-char: Convert MemCharDriver to circular buffer
monitor: Adjust qmp_human_mo
Signed-off-by: Lei Li
---
monitor.c |8 +++-
1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/monitor.c b/monitor.c
index 480f583..ab4650b 100644
--- a/monitor.c
+++ b/monitor.c
@@ -642,7 +642,13 @@ char *qmp_human_monitor_command(const char *command_line,
bool
Signed-off-by: Lei Li
---
qapi-schema-guest.json |2 +-
qapi-schema.json |4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/qapi-schema-guest.json b/qapi-schema-guest.json
index d955cf1..ed0eb69 100644
--- a/qapi-schema-guest.json
+++ b/qapi-schema-guest.json
Signed-off-by: Lei Li
---
hmp-commands.hx | 16
hmp.c| 15 +++
hmp.h|1 +
qapi-schema.json | 23 +++
qemu-char.c | 32
qmp-commands.hx | 31
Signed-off-by: Lei Li
---
qemu-char.c | 24
qemu-config.c |3 +++
qemu-options.hx | 10 ++
3 files changed, 37 insertions(+), 0 deletions(-)
diff --git a/qemu-char.c b/qemu-char.c
index ff6651b..36f4ecc 100644
--- a/qemu-char.c
+++ b/qemu-char.c
Signed-off-by: Lei Li
---
hmp-commands.hx | 16
hmp.c| 15 +++
hmp.h|1 +
qapi-schema.json | 28
qemu-char.c | 36
qmp-commands.hx | 33
On 08/23/2012 01:42 PM, Eric Blake wrote:
On 08/22/2012 11:14 PM, Lei Li wrote:
Signed-off-by: Lei Li
Subject line uses '_', but the QMP command uses '-' [1]
---
hmp-commands.hx | 16
hmp.c| 15 +++
hmp.h
On 08/23/2012 01:46 PM, Eric Blake wrote:
On 08/22/2012 11:14 PM, Lei Li wrote:
Signed-off-by: Lei Li
Again, subject line should use '-' not '_' for QMP.
---
hmp-commands.hx | 16
hmp.c| 15 +++
hmp.h|1
On 10/12/2012 08:39 PM, Gerd Hoffmann wrote:
This patch adds chardev_add and chardev_del monitor commands.
chardev_del is pretty straight forward, it just takes an id argument and
zaps the chardev specified.
chardev_add is more tricky as there are tons of arguments for the
different backends.
On 10/15/2012 04:06 PM, Gerd Hoffmann wrote:
This patch adds chardev_add and chardev_del monitor commands.
They work simliar to the netdev_{add,del} commands. The hmp version of
chardev_add accepts like the -chardev command line option does. The qmp
version expects the arguments being passed a
Signed-off-by: Lei Li
---
qemu-char.c | 72 +++
1 files changed, 72 insertions(+), 0 deletions(-)
diff --git a/qemu-char.c b/qemu-char.c
index b082bae..b174da1 100644
--- a/qemu-char.c
+++ b/qemu-char.c
@@ -2588,6 +2588,78 @@ size_t
Signed-off-by: Lei Li
---
qemu-char.c | 36
qemu-config.c |3 +++
qemu-options.hx | 10 ++
3 files changed, 49 insertions(+), 0 deletions(-)
diff --git a/qemu-char.c b/qemu-char.c
index b174da1..381bf60 100644
--- a/qemu-char.c
+++ b
ommand so that can interact with multiple
chardevs via a single monitor socket.
- Make the circular buffer backend and the current MemCharDriver
live in parallel, expose a new char backend with circular buffer
CirMemCharDriver suggested by Luiz.
- Other fixs from Eric and Markus.
Chan
Signed-off-by: Lei Li
---
hmp-commands.hx | 25 +
hmp.c| 17 +
hmp.h|1 +
qapi-schema.json | 27 +++
qemu-char.c | 52
qmp-commands.hx
Signed-off-by: Lei Li
---
hmp-commands.hx | 22 +
hmp.c| 19 +++
hmp.h|1 +
qapi-schema.json | 69 ++
qemu-char.c | 46
qmp-commands.hx
Signed-off-by: Lei Li
---
hmp-commands.hx | 23 +++
hmp.c | 53 +
hmp.h |1 +
monitor.c | 15 +++
monitor.h |3 +++
5 files changed, 95 insertions(+), 0 deletions
On 10/22/2012 10:08 PM, Eric Blake wrote:
On 10/21/2012 10:47 AM, Lei Li wrote:
Signed-off-by: Lei Li
---
qemu-char.c | 72 +++
1 files changed, 72 insertions(+), 0 deletions(-)
diff --git a/qemu-char.c b/qemu-char.c
index b082bae
On 10/23/2012 02:37 AM, Luiz Capitulino wrote:
On Mon, 22 Oct 2012 00:47:59 +0800
Lei Li wrote:
Signed-off-by: Lei Li
---
hmp-commands.hx | 22 +
hmp.c| 19 +++
hmp.h|1 +
qapi-schema.json | 69
On 10/23/2012 02:14 AM, Luiz Capitulino wrote:
On Mon, 22 Oct 2012 00:47:57 +0800
Lei Li wrote:
Signed-off-by: Lei Li
This patch should be squashed in the next one. More comments below.
---
qemu-char.c | 72 +++
1 files changed
On 10/23/2012 02:59 AM, Luiz Capitulino wrote:
On Mon, 22 Oct 2012 00:48:01 +0800
Lei Li wrote:
Signed-off-by: Lei Li
---
hmp-commands.hx | 23 +++
hmp.c | 53 +
hmp.h |1 +
monitor.c
On 10/24/2012 08:55 PM, Luiz Capitulino wrote:
On Wed, 24 Oct 2012 15:17:21 +0800
Lei Li wrote:
On 10/23/2012 02:59 AM, Luiz Capitulino wrote:
On Mon, 22 Oct 2012 00:48:01 +0800
Lei Li wrote:
Signed-off-by: Lei Li
---
hmp-commands.hx | 23 +++
hmp.c
Signed-off-by: Lei Li
---
qemu-char.c | 136 +++
qemu-config.c |3 +
qemu-options.hx | 10
3 files changed, 149 insertions(+), 0 deletions(-)
diff --git a/qemu-char.c b/qemu-char.c
index b082bae..45d2a86 100644
--- a/qemu
Signed-off-by: Lei Li
---
hmp-commands.hx | 17 +
hmp.c| 15 +++
hmp.h|1 +
qapi-schema.json | 47 +++
qemu-char.c | 44
qmp-commands.hx
Signed-off-by: Lei Li
---
hmp-commands.hx | 19 ++
hmp.c| 19 ++
hmp.h|1 +
qapi-schema.json | 27 ++
qemu-char.c | 55 ++
qmp-commands.hx | 40
Signed-off-by: Lei Li
---
qemu-char.c | 136 +++
qemu-config.c |3 +
qemu-options.hx | 10
3 files changed, 149 insertions(+), 0 deletions(-)
diff --git a/qemu-char.c b/qemu-char.c
index b082bae..45d2a86 100644
--- a/qemu
ar buffer backend and the current MemCharDriver
live in parallel, expose a new char backend with circular buffer
CirMemCharDriver suggested by Luiz.
- Other fixs from Eric and Markus.
Changes since v1:
- Exposing the MemCharDriver via command line.
- Support base64 data format suggested
Signed-off-by: Lei Li
---
hmp-commands.hx | 17 +
hmp.c| 15 +++
hmp.h|1 +
qapi-schema.json | 47 +++
qemu-char.c | 44
qmp-commands.hx
Signed-off-by: Lei Li
---
hmp-commands.hx | 25 +
hmp.c | 52
hmp.h |1 +
monitor.c | 15 +++
monitor.h |3 +++
5 files changed, 96 insertions(+), 0 deletions
Signed-off-by: Lei Li
---
hmp-commands.hx | 19 ++
hmp.c| 19 ++
hmp.h|1 +
qapi-schema.json | 27 ++
qemu-char.c | 55 ++
qmp-commands.hx | 40
Signed-off-by: Lei Li
---
hmp-commands.hx | 25 +
hmp.c | 52
hmp.h |1 +
monitor.c | 15 +++
monitor.h |3 +++
5 files changed, 96 insertions(+), 0 deletions
ar buffer backend and the current MemCharDriver
live in parallel, expose a new char backend with circular buffer
CirMemCharDriver suggested by Luiz.
- Other fixs from Eric and Markus.
Changes since v1:
- Exposing the MemCharDriver via command line.
- Support base64 data format suggested
On 10/26/2012 04:05 AM, Eric Blake wrote:
On 10/25/2012 01:54 PM, Lei Li wrote:
Signed-off-by: Lei Li
---
qemu-char.c | 136 +++
qemu-config.c |3 +
qemu-options.hx | 10
3 files changed, 149 insertions(+), 0 deletions
Please ignore this thread and review the other thread also titled V5.
Sorry for the mis-sending mostly caused by the unconsciousness
at midnight...
On 10/26/2012 03:48 AM, Lei Li wrote:
This patch series attempts to add new char backend CirMemCharDriver with
a circular buffer and expose it to
cement.
- Add HMP 'console' command so that can interact with multiple
chardevs via a single monitor socket.
- Make the circular buffer backend and the current MemCharDriver
live in parallel, expose a new char backend with circular buffer
CirMemCharDriver suggested by Luiz.
- Other
Signed-off-by: Lei Li
---
qemu-char.c | 140 +++
qemu-config.c |3 +
qemu-options.hx | 10
3 files changed, 153 insertions(+), 0 deletions(-)
diff --git a/qemu-char.c b/qemu-char.c
index b082bae..c3ec43d 100644
--- a/qemu
Signed-off-by: Lei Li
---
hmp-commands.hx | 25 +
hmp.c | 52
hmp.h |1 +
monitor.c | 15 +++
monitor.h |3 +++
5 files changed, 96 insertions(+), 0 deletions
Signed-off-by: Lei Li
---
hmp-commands.hx | 17 +
hmp.c| 15 +++
hmp.h|1 +
qapi-schema.json | 47 +++
qemu-char.c | 44
qmp-commands.hx
Signed-off-by: Lei Li
---
hmp-commands.hx | 19 ++
hmp.c| 19 ++
hmp.h|1 +
qapi-schema.json | 27 ++
qemu-char.c | 55 ++
qmp-commands.hx | 40
On 10/27/2012 01:39 AM, Luiz Capitulino wrote:
On Fri, 26 Oct 2012 19:21:51 +0800
Lei Li wrote:
Signed-off-by: Lei Li
---
hmp-commands.hx | 19 ++
hmp.c| 19 ++
hmp.h|1 +
qapi-schema.json | 27
On 10/27/2012 01:17 AM, Luiz Capitulino wrote:
On Fri, 26 Oct 2012 19:21:50 +0800
Lei Li wrote:
Signed-off-by: Lei Li
---
hmp-commands.hx | 17 +
hmp.c| 15 +++
hmp.h|1 +
qapi-schema.json | 47
On 10/27/2012 01:43 AM, Luiz Capitulino wrote:
On Fri, 26 Oct 2012 19:21:52 +0800
Lei Li wrote:
Signed-off-by: Lei Li
I still don't understand how this command, in its current form, is
different from memchar-write.
One more comment below.
Hi Luiz,
Yes, I have replied to it in
On 10/27/2012 12:47 AM, Luiz Capitulino wrote:
On Fri, 26 Oct 2012 19:21:49 +0800
Lei Li wrote:
Signed-off-by: Lei Li
---
qemu-char.c | 140 +++
qemu-config.c |3 +
qemu-options.hx | 10
3 files changed, 153
Signed-off-by: Lei Li
---
qemu-char.c | 131 +++
qemu-config.c |3 +
qemu-options.hx | 10
3 files changed, 144 insertions(+), 0 deletions(-)
diff --git a/qemu-char.c b/qemu-char.c
index afe2bfb..11c320f 100644
--- a/qemu
Signed-off-by: Lei Li
---
hmp-commands.hx | 21 +
hmp.c | 51 +++
hmp.h |1 +
monitor.c | 15 +++
monitor.h |3 +++
5 files changed, 91 insertions(+), 0 deletions
On 10/29/2012 09:23 PM, Luiz Capitulino wrote:
On Mon, 29 Oct 2012 12:10:24 +0800
Lei Li wrote:
On 10/27/2012 01:17 AM, Luiz Capitulino wrote:
On Fri, 26 Oct 2012 19:21:50 +0800
Lei Li wrote:
Signed-off-by: Lei Li
---
hmp-commands.hx | 17 +
hmp.c
On 10/29/2012 09:26 PM, Luiz Capitulino wrote:
On Mon, 29 Oct 2012 12:18:03 +0800
Lei Li wrote:
On 10/27/2012 01:43 AM, Luiz Capitulino wrote:
On Fri, 26 Oct 2012 19:21:52 +0800
Lei Li wrote:
Signed-off-by: Lei Li
I still don't understand how this command, in its current for
On 10/29/2012 09:17 PM, Luiz Capitulino wrote:
On Mon, 29 Oct 2012 12:09:38 +0800
Lei Li wrote:
On 10/27/2012 01:39 AM, Luiz Capitulino wrote:
On Fri, 26 Oct 2012 19:21:51 +0800
Lei Li wrote:
Signed-off-by: Lei Li
---
hmp-commands.hx | 19 ++
hmp.c
y infrastructure
enhancement.
- Add HMP 'console' command so that can interact with multiple
chardevs via a single monitor socket.
- Make the circular buffer backend and the current MemCharDriver
live in parallel, expose a new char backend with circular buffer
CirMemCha
Signed-off-by: Lei Li
---
hmp-commands.hx | 15 +++
hmp.c| 13 +
hmp.h|1 +
qapi-schema.json | 41 +
qemu-char.c | 48
qmp-commands.hx
Signed-off-by: Lei Li
---
hmp-commands.hx | 19 ++
hmp.c| 17
hmp.h|1 +
qapi-schema.json | 27 -
qemu-char.c | 57 ++
qmp-commands.hx | 34
Could you please give more details, like the steps to reproduce this
problems.
Thanks.
--
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1086745
Title:
serial port data THRE comes too early
Status in
Signed-off-by: Lei Li
---
qemu-char.c | 131 +++
qemu-config.c |3 +
qemu-options.hx | 10
3 files changed, 144 insertions(+), 0 deletions(-)
diff --git a/qemu-char.c b/qemu-char.c
index 242b799..3e45ce6 100644
--- a/qemu
urrent MemCharDriver
live in parallel, expose a new char backend with circular buffer
CirMemCharDriver suggested by Luiz.
- Other fixs from Eric and Markus.
Changes since v1:
- Exposing the MemCharDriver via command line.
- Support base64 data format suggested by Anthony and Eric.
- Foll
Signed-off-by: Lei Li
---
hmp-commands.hx | 19 ++
hmp.c| 17
hmp.h|1 +
qapi-schema.json | 25 +++
qemu-char.c | 57 ++
qmp-commands.hx | 34
Signed-off-by: Lei Li
---
hmp-commands.hx | 15 +++
hmp.c| 13 +
hmp.h|1 +
qapi-schema.json | 41 +
qemu-char.c | 48
qmp-commands.hx
Signed-off-by: Lei Li
---
hmp-commands.hx | 21 +
hmp.c | 52
hmp.h |1 +
monitor.c | 15 +++
monitor.h |3 +++
5 files changed, 92 insertions(+), 0 deletions
redirected to /dev/pts/7
Referred link: https://bugs.launchpad.net/qemu/+bug/938552
Reported-by: Craig Ringer
Signed-off-by: Lei Li
---
qemu-char.c |4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/qemu-char.c b/qemu-char.c
index 242b799..2b0f5f4 100644
--- a/qemu-c
redirected to /dev/pts/7
Referred link: https://bugs.launchpad.net/qemu/+bug/938552
Reported-by: Craig Ringer
Signed-off-by: Lei Li
---
qemu-char.c |4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/qemu-char.c b/qemu-char.c
index 242b799..2b0f5f4 100644
--- a/qemu-c
Sorry, s/imporve/improve...
On 12/20/2012 10:49 PM, Lei Li wrote:
When controlling a qemu instance from another program, it's
hard to know which serial port or monitor device is redirected
to which pty. With more than one device using "pty" a lot of
guesswork is involved.
$ .
pty -monitor pty
char device compat_monitor0 redirected to /dev/pts/5
char device serial0 redirected to /dev/pts/6
char device serial1 redirected to /dev/pts/7
Referred link: https://bugs.launchpad.net/qemu/+bug/938552
Signed-off-by: Lei Li
---
qemu-char.c |8 +++-
1 files changed, 7 ins
Hi guys,
I am working on the time drift issue as background info here.
http://mid.gmane.org/87pq5r5otp@codemonkey.ws
As Anthony proposed, one part of the solutions is that we want
to add a qemu-ga command to resync the guest clock by reading the
wallclock time when the tick overflow the lim
On 01/23/2013 11:47 PM, Luiz Capitulino wrote:
On Wed, 23 Jan 2013 17:06:09 +0800
Lei Li wrote:
Hi Anthony,
Resubmit this series with your comments squashed in and Luiz's new
comments fixed up. I will push console command part in another thread.
There are two bugs in this series.
On 01/23/2013 11:31 PM, Luiz Capitulino wrote:
On Wed, 23 Jan 2013 11:15:40 +0800
Lei Li wrote:
+static int cirmem_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
+{
+CirMemCharDriver *d = chr->opaque;
+int i;
+
+if (!buf || (len < 0)) {
+return -1;
+
On 01/23/2013 11:42 PM, Luiz Capitulino wrote:
On Wed, 23 Jan 2013 17:06:12 +0800
Lei Li wrote:
Signed-off-by: Lei Li
---
hmp-commands.hx | 21 +
hmp.c| 17 +
hmp.h|1 +
qapi-schema.json | 36
On 01/24/2013 08:48 PM, Luiz Capitulino wrote:
On Thu, 24 Jan 2013 15:18:04 +0800
Lei Li wrote:
On 01/23/2013 11:47 PM, Luiz Capitulino wrote:
On Wed, 23 Jan 2013 17:06:09 +0800
Lei Li wrote:
Hi Anthony,
Resubmit this series with your comments squashed in and Luiz's new
comments fix
Signed-off-by: Lei Li
---
qemu-char.c | 114 +++
qemu-options.hx | 10 +
2 files changed, 124 insertions(+), 0 deletions(-)
diff --git a/qemu-char.c b/qemu-char.c
index 9ba0573..8045869 100644
--- a/qemu-char.c
+++ b/qemu-char.c
Add HMP 'console' command so that can interact with multiple
chardevs via a single monitor socket.
- Make the circular buffer backend and the current MemCharDriver
live in parallel, expose a new char backend with circular buffer
CirMemCharDriver suggested by Luiz.
- Oth
Signed-off-by: Lei Li
---
hmp-commands.hx | 21 +
hmp.c| 21 +
hmp.h|1 +
qapi-schema.json | 36
qemu-char.c | 48
qmp
Signed-off-by: Lei Li
---
hmp-commands.hx | 18 ++
hmp.c| 13 +
hmp.h|1 +
qapi-schema.json | 38 ++
qemu-char.c | 42 ++
qmp-commands.hx | 33
e and add
guest-get-time command into one.
- Documents improvment based on the suggestions from
Eric and Mike.
- Change the name of 'HostTimeInfo' to 'TimeInfo'.
- Better use-case and logic for 'guest-set-time'
command suggested by Eric.
- Error han
Signed-off-by: Lei Li
---
include/qapi/qmp/qerror.h |3 +++
qga/commands-posix.c | 30 ++
qga/qapi-schema.json | 38 ++
3 files changed, 71 insertions(+), 0 deletions(-)
diff --git a/include/qapi/qmp/qerror.h b
e and add
guest-get-time command into one.
- Documents improvment based on the suggestions from
Eric and Mike.
- Change the name of 'HostTimeInfo' to 'TimeInfo'.
- Better use-case and logic for 'guest-set-time'
command suggested by Eric.
- Error han
Signed-off-by: Lei Li
---
include/qapi/qmp/qerror.h |3 +++
qga/commands-posix.c | 30 ++
qga/qapi-schema.json | 38 ++
3 files changed, 71 insertions(+), 0 deletions(-)
diff --git a/include/qapi/qmp/qerror.h b
Signed-off-by: Lei Li
---
qga/commands-posix.c | 76 ++
qga/qapi-schema.json | 42 +++
2 files changed, 118 insertions(+), 0 deletions(-)
diff --git a/qga/commands-posix.c b/qga/commands-posix.c
index 2fef2b6..5424c50
This patch fixes a compiler warning when cross-build:
qga/service-win32.c: In function 'printf_win_error':
qga/service-win32.c:32:5: warning: format '%d' expects argument of type 'int',
but argument 3 has type 'DWORD' [-Wformat]
On 01/29/2013 02:29 AM, Eric Blake wrote:
On 01/27/2013 11:14 AM, Lei Li wrote:
Signed-off-by: Lei Li
---
include/qapi/qmp/qerror.h |3 +++
qga/commands-posix.c | 30 ++
qga/qapi-schema.json | 38 ++
3 files
On 01/29/2013 04:24 AM, Anthony Liguori wrote:
Eric Blake writes:
On 01/27/2013 11:14 AM, Lei Li wrote:
Signed-off-by: Lei Li
---
include/qapi/qmp/qerror.h |3 +++
qga/commands-posix.c | 30 ++
qga/qapi-schema.json | 38
On 01/29/2013 04:45 AM, Eric Blake wrote:
On 01/27/2013 11:14 AM, Lei Li wrote:
Signed-off-by: Lei Li
---
qga/commands-posix.c | 76 ++
qga/qapi-schema.json | 42 +++
2 files changed, 118 insertions(+), 0 deletions
Sorry, missing replied... It should be the reply to Eric here.
On 01/30/2013 03:37 PM, Lei Li wrote:
On 01/29/2013 04:24 AM, Anthony Liguori wrote:
Eric Blake writes:
On 01/27/2013 11:14 AM, Lei Li wrote:
Signed-off-by: Lei Li
---
include/qapi/qmp/qerror.h |3 +++
qga/commands
On 09/20/2012 02:05 AM, Luiz Capitulino wrote:
On Wed, 12 Sep 2012 19:57:24 +0800
Lei Li wrote:
Signed-off-by: Lei Li
---
hmp-commands.hx | 23 ++
hmp.c| 19 +++
hmp.h|1 +
qapi-schema.json | 69
On 08/31/2012 02:51 AM, Luiz Capitulino wrote:
On Thu, 23 Aug 2012 13:14:22 +0800
Lei Li wrote:
Signed-off-by: Lei Li
---
monitor.c |8 +++-
1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/monitor.c b/monitor.c
index 480f583..ab4650b 100644
--- a/monitor.c
+++ b
Signed-off-by: Lei Li
---
qemu-char.c | 84 +++
1 files changed, 84 insertions(+), 0 deletions(-)
diff --git a/qemu-char.c b/qemu-char.c
index 767da93..0470085 100644
--- a/qemu-char.c
+++ b/qemu-char.c
@@ -2591,6 +2591,90 @@ size_t
live in parallel, expose a new char backend with circular buffer
CirMemCharDriver suggested by Luiz.
- Other fixs from Eric and Markus.
Changes since v1:
- Exposing the MemCharDriver via command line.
- Support base64 data format suggested by Anthony and Eric.
- F
Signed-off-by: Lei Li
---
hmp-commands.hx | 25 +
hmp.c| 18 ++
hmp.h|1 +
qapi-schema.json | 27 +++
qemu-char.c | 48
qmp-commands.hx
Signed-off-by: Lei Li
---
qemu-char.c | 31 +++
qemu-config.c |3 +++
qemu-options.hx | 10 ++
3 files changed, 44 insertions(+), 0 deletions(-)
diff --git a/qemu-char.c b/qemu-char.c
index 0470085..6e84acc 100644
--- a/qemu-char.c
+++ b/qemu
Signed-off-by: Lei Li
---
hmp.c | 42 ++
monitor.c | 18 ++
monitor.h |2 ++
3 files changed, 62 insertions(+), 0 deletions(-)
diff --git a/hmp.c b/hmp.c
index 4397981..a016a5c 100644
--- a/hmp.c
+++ b/hmp.c
@@ -1205,3 +1205,45
Signed-off-by: Lei Li
---
hmp-commands.hx | 23 ++
hmp.c| 19 +++
hmp.h|1 +
qapi-schema.json | 69 ++
qemu-char.c | 48 +
qmp-commands.hx
guest-get-time command into one.
- Documents improvment based on the suggestions from
Eric and Mike.
- Change the name of 'HostTimeInfo' to 'TimeInfo'.
- Better use-case and logic for 'guest-set-time'
command suggested by Eric.
- Error handel improvment from Luiz.
Lei Li (2):
qga: add guest-get-time command
qga: add guest-set-time command
Signed-off-by: Lei Li
---
qga/commands-posix.c | 16
qga/qapi-schema.json | 16
2 files changed, 32 insertions(+)
diff --git a/qga/commands-posix.c b/qga/commands-posix.c
index 0ad73f3..f159e25 100644
--- a/qga/commands-posix.c
+++ b/qga/commands-posix.c
Signed-off-by: Lei Li
---
qga/commands-posix.c | 55
qga/qapi-schema.json | 27 ++
2 files changed, 82 insertions(+)
diff --git a/qga/commands-posix.c b/qga/commands-posix.c
index f159e25..e246a0d 100644
--- a/qga
On 03/02/2013 01:02 AM, Eric Blake wrote:
On 03/01/2013 02:32 AM, Lei Li wrote:
Signed-off-by: Lei Li
---
qga/commands-posix.c | 16
qga/qapi-schema.json | 16
2 files changed, 32 insertions(+)
diff --git a/qga/commands-posix.c b/qga/commands-posix.c
On 03/02/2013 01:38 AM, Eric Blake wrote:
On 03/01/2013 02:33 AM, Lei Li wrote:
Signed-off-by: Lei Li
---
qga/commands-posix.c | 55
qga/qapi-schema.json | 27 ++
2 files changed, 82 insertions(+)
diff --git a
r use-case and logic for 'guest-set-time'
command suggested by Eric.
- Error handel improvment from Luiz.
Lei Li (2):
qga: add guest-get-time command
qga: add guest-set-time command
Signed-off-by: Lei Li
---
qga/commands-posix.c | 16
qga/qapi-schema.json | 13 +
2 files changed, 29 insertions(+)
diff --git a/qga/commands-posix.c b/qga/commands-posix.c
index 0ad73f3..6fc6003 100644
--- a/qga/commands-posix.c
+++ b/qga/commands-posix.c
@@ -119,6
Signed-off-by: Lei Li
---
qga/commands-posix.c | 54
qga/qapi-schema.json | 27 ++
2 files changed, 81 insertions(+)
diff --git a/qga/commands-posix.c b/qga/commands-posix.c
index 6fc6003..0515f5f 100644
--- a/qga
Signed-off-by: Lei Li
---
qga/commands-posix.c | 16
qga/qapi-schema.json | 13 +
2 files changed, 29 insertions(+)
diff --git a/qga/commands-posix.c b/qga/commands-posix.c
index 7a0202e..1426262 100644
--- a/qga/commands-posix.c
+++ b/qga/commands-posix.c
@@ -119,6
Eric and Mike.
- Change the name of 'HostTimeInfo' to 'TimeInfo'.
- Better use-case and logic for 'guest-set-time'
command suggested by Eric.
- Error handel improvment from Luiz.
Lei Li (2):
qga: add guest-get-time command
qga: add guest-set-time command
1 - 100 of 494 matches
Mail list logo