Hi,
On Mon, Mar 23, 2015 at 8:05 PM, Peter Crosthwaite
wrote:
> Similar to a53, but with different L1 I cache policy, phys addr size and
^^^
I guess a57 :)
ozaki-r
> different cache geometries. The cache sizes is implementation
> configurable, but use these values (from Xili
2015/03/10 21:08 "Peter Maydell" :
>
> On 16 February 2015 at 14:43, Ryota Ozaki wrote:
> > Signed-off-by: Ryota Ozaki
> > Reviewed-by: Alistair Francis
> > ---
> > target-arm/cpu64.c | 1 +
> > 1 file changed, 1 insertion(+)
>
>
>
&
Signed-off-by: Ryota Ozaki
Reviewed-by: Alistair Francis
---
target-arm/cpu64.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/target-arm/cpu64.c b/target-arm/cpu64.c
index 823c739..270bc2f 100644
--- a/target-arm/cpu64.c
+++ b/target-arm/cpu64.c
@@ -96,6 +96,7 @@ static void
On Mon, Feb 16, 2015 at 9:30 AM, Alistair Francis wrote:
> On Mon, Feb 16, 2015 at 12:17 AM, Ryota Ozaki wrote:
>> Signed-off-by: Ryota Ozaki
>
> The title of your patch is incorrect, you specified A53 when you really mean
> A57
Definitely. I'm sorry for my fault (I fo
Signed-off-by: Ryota Ozaki
---
target-arm/cpu64.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/target-arm/cpu64.c b/target-arm/cpu64.c
index 823c739..270bc2f 100644
--- a/target-arm/cpu64.c
+++ b/target-arm/cpu64.c
@@ -96,6 +96,7 @@ static void aarch64_a57_initfn(Object *obj
Hi Michael
On Thu, Sep 20, 2012 at 1:40 PM, Michael Tokarev wrote:
> On 20.09.2012 00:20, Luiz Capitulino wrote:
>> On Fri, 14 Sep 2012 21:44:19 +0900
>> Ryota Ozaki wrote:
>>
>>> This patch series adds qemu-ga-client that is a command line
>>> scr
This patch series adds qemu-ga-client that is a command line
script to use guest agent functions easily.
Ryota Ozaki (3):
Make negotiation optional in QEMUMonitorProtocol
Support settimeout in QEMUMonitorProtocol
Add qemu-ga-client script
QMP/qemu-ga-client | 299
of
qmp.QEMUMonitorProtocol. Every commands are called with
timeout (3 sec.) to avoid blocking. The script always
calls sync command prior to issuing an actual command
(except for ping which doesn't need sync).
Signed-off-by: Ryota Ozaki
---
QMP/qemu-ga-client
ned-off-by: Ryota Ozaki
---
QMP/qmp.py | 7 ---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/QMP/qmp.py b/QMP/qmp.py
index 36ecc1d..5a573e1 100644
--- a/QMP/qmp.py
+++ b/QMP/qmp.py
@@ -49,7 +49,6 @@ class QEMUMonitorProtocol:
return socket.socket(family, socket.S
This method is used in the following qemu-ga-client script
to implement non-blocking operations.
Signed-off-by: Ryota Ozaki
---
QMP/qmp.py | 5 +
1 file changed, 5 insertions(+)
diff --git a/QMP/qmp.py b/QMP/qmp.py
index 5a573e1..33c7d36 100644
--- a/QMP/qmp.py
+++ b/QMP/qmp.py
@@ -162,3
- use err(3) instead of errx(3) if errno is available
to report why failed
- let fail prior to daemon(3) if opening a nbd file
is likely to fail after daemonizing to avoid silent
failure exit
- add missing 'ret = 1' when unix_socket_outgoing failed
Signed-off-by: Ryota Ozaki
On Mon, Mar 29, 2010 at 8:03 PM, Kevin Wolf wrote:
> Am 28.03.2010 19:07, schrieb Ryota Ozaki:
>> - use err(3) instead of errx(3) if errno is available
>> to report why failed
>> - let fail prior to daemon(3) if opening a nbd file
>> is likely to fail after
On Mon, Mar 29, 2010 at 7:54 PM, Kevin Wolf wrote:
> Am 28.03.2010 19:07, schrieb Ryota Ozaki:
>> This patch allows to operate on nbd device file
>> without write permission for the file if read-only
>> option is specified.
>>
>> Signed-off-by: Ryota Ozaki
>
Hi Kevin
On Mon, Mar 29, 2010 at 7:44 PM, Kevin Wolf wrote:
> Am 28.03.2010 19:07, schrieb Ryota Ozaki:
>> Follow "Every indented statement is braced; even if the block
>> contains just one statement." described in CODING_STYLE.
>>
>> Signed-off-by: Ryota
- use err(3) instead of errx(3) if errno is available
to report why failed
- let fail prior to daemon(3) if opening a nbd file
is likely to fail after daemonizing to avoid silent
failure exit
- add missing 'ret = 1' when unix_socket_outgoing failed
Signed-off-by: Ryota Ozaki
This patch allows to operate on nbd device file
without write permission for the file if read-only
option is specified.
Signed-off-by: Ryota Ozaki
---
qemu-nbd.c | 10 +-
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/qemu-nbd.c b/qemu-nbd.c
index 00b8896..7ef409f
Follow "Every indented statement is braced; even if the block
contains just one statement." described in CODING_STYLE.
Signed-off-by: Ryota Ozaki
---
qemu-nbd.c | 60
1 files changed, 40 insertions(+), 20 deletions(-)
di
On Sat, Mar 27, 2010 at 10:02 PM, Aurelien Jarno wrote:
> On Sat, Mar 20, 2010 at 03:23:24PM +0900, Ryota Ozaki wrote:
>> - use err(3) instead of errx(3) if errno is available
>> to report why failed
>> - let fail prior to daemon(3) if opening a nbd file
>> is likel
bdrv_open may return -errno so we have to check
if the return value is '< 0', not '== -1'.
Signed-off-by: Ryota Ozaki
---
qemu-io.c |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/qemu-io.c b/qemu-io.c
index b2f2f5a..2f195bf 100644
--- a/qe
On Sat, Mar 20, 2010 at 4:01 PM, Markus Armbruster wrote:
> Ryota Ozaki writes:
>
>> bdrv_open may return -errno so we have to check
>> if the return value is '< 0', not '== -1'.
>>
>> Signed-off-by: Ryota Ozaki
>> ---
>> qemu-
- use err(3) instead of errx(3) if errno is available
to report why failed
- let fail prior to daemon(3) if opening a nbd file
is likely to fail after daemonizing to avoid silent
failure exit
Signed-off-by: Ryota Ozaki
---
qemu-nbd.c | 16 +++-
1 files changed, 11 insertions
errx takes the exit status of a process as the first
argument. Passing errno to it is wrong. Instead the
patch lets errx take EXIT_FAILURE.
Signed-off-by: Ryota Ozaki
---
qemu-nbd.c | 34 +-
1 files changed, 17 insertions(+), 17 deletions(-)
diff --git a/qemu
bdrv_open may return -errno so we have to check
if the return value is '< 0', not '== -1'.
Signed-off-by: Ryota Ozaki
---
qemu-nbd.c |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/qemu-nbd.c b/qemu-nbd.c
index a393583..b89c361 100644
--- a/qemu
On Sat, Mar 20, 2010 at 2:26 PM, malc wrote:
> On Sat, 20 Mar 2010, Ryota Ozaki wrote:
>
>> - use err(3) instead of errx(3) if errno is available
>> to report why failed
>> - let fail prior to daemon(3) if opening a nbd file
>> is likely to fail after daemonizin
- use err(3) instead of errx(3) if errno is available
to report why failed
- let fail prior to daemon(3) if opening a nbd file
is likely to fail after daemonizing to avoid silent
failure exit
---
qemu-nbd.c | 16 +++-
1 files changed, 11 insertions(+), 5 deletions(-)
diff --gi
bdrv_open may return -errno so we have to check
if the return value is '< 0', not '== -1'.
---
qemu-nbd.c |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/qemu-nbd.c b/qemu-nbd.c
index a393583..b89c361 100644
--- a/qemu-nbd.c
+++ b/qemu-nbd.c
@@ -333,7 +333,7 @@ int main(i
-c option needs argument but it's missing now.
This patch fixes it.
Signed-off-by: Ryota Ozaki
---
qemu-nbd.texi |4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/qemu-nbd.texi b/qemu-nbd.texi
index ef13b34..44996cc 100644
--- a/qemu-nbd.texi
+++ b/qemu-nbd
27 matches
Mail list logo