All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [Qemu-devel] [PATCH] IDE: MMIO IDE device control should be little endian
       [not found] <53F704BE.6000407@mrs.ro>
@ 2014-08-22  9:22 ` Peter Maydell
  2014-08-24  9:24 ` [Qemu-devel] [Qemu-trivial] " Michael Tokarev
  2014-08-31  8:32 ` [Qemu-devel] " Valentin Manea
  2 siblings, 0 replies; 13+ messages in thread
From: Peter Maydell @ 2014-08-22  9:22 UTC (permalink / raw)
  To: Valentin Manea, QEMU Developers; +Cc: QEMU Trivial, Wenchao Xia, Juan Quintela

You forgot to cc qemu-devel...

On 22 August 2014 09:52, Valentin Manea <qemu@mrs.ro> wrote:
> Set the IDE MMIO memory type to little endian. The ATA specs identify
> words part of the control commands encoded as little endian.
> While this has no impact on little endian systems, it's required for big
> endian systems(eg OpenRisc).
>
> Signed-off-by: Valentin Manea <valentin.manea@gmail.com>
> ---
>  hw/ide/mmio.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/hw/ide/mmio.c b/hw/ide/mmio.c
> index 01c1d0e..334c8cc 100644
> --- a/hw/ide/mmio.c
> +++ b/hw/ide/mmio.c
> @@ -82,7 +82,7 @@ static void mmio_ide_write(void *opaque, hwaddr addr,
>  static const MemoryRegionOps mmio_ide_ops = {
>      .read = mmio_ide_read,
>      .write = mmio_ide_write,
> -    .endianness = DEVICE_NATIVE_ENDIAN,
> +    .endianness = DEVICE_LITTLE_ENDIAN,
>  };
>
>  static uint64_t mmio_ide_status_read(void *opaque, hwaddr addr,
> @@ -102,7 +102,7 @@ static void mmio_ide_cmd_write(void *opaque, hwaddr
> addr,
>  static const MemoryRegionOps mmio_ide_cs_ops = {
>      .read = mmio_ide_status_read,
>      .write = mmio_ide_cmd_write,
> -    .endianness = DEVICE_NATIVE_ENDIAN,
> +    .endianness = DEVICE_LITTLE_ENDIAN,
>  };
>
>  static const VMStateDescription vmstate_ide_mmio = {
> --
> 1.9.1

thanks
-- PMM

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

* Re: [Qemu-devel] [Qemu-trivial] [PATCH] IDE: MMIO IDE device control should be little endian
       [not found] <53F704BE.6000407@mrs.ro>
  2014-08-22  9:22 ` [Qemu-devel] [PATCH] IDE: MMIO IDE device control should be little endian Peter Maydell
@ 2014-08-24  9:24 ` Michael Tokarev
  2014-08-28 11:13   ` Stefan Hajnoczi
  2014-08-31  8:32 ` [Qemu-devel] " Valentin Manea
  2 siblings, 1 reply; 13+ messages in thread
From: Michael Tokarev @ 2014-08-24  9:24 UTC (permalink / raw)
  To: Valentin Manea, qemu-trivial
  Cc: Kevin Wolf, Peter Maydell, Juan Quintela, qemu-devel,
	Stefan Hajnoczi, Wenchao Xia

22.08.2014 12:52, Valentin Manea wrote:
> Set the IDE MMIO memory type to little endian. The ATA specs identify
> words part of the control commands encoded as little endian.
> While this has no impact on little endian systems, it's required for big
> endian systems(eg OpenRisc).

While the patch itself is simple, I'm not sure it is "trivial enough".
And you didn't Cc neither qemu-devel@ nor the IDE subsystem "odd fixer"
maintainers (kwolf@ and stefanha@).  I'm not applying this for now to
trivial tree.

Thanks,

/mjt

> Signed-off-by: Valentin Manea <valentin.manea@gmail.com>
> ---
>  hw/ide/mmio.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/hw/ide/mmio.c b/hw/ide/mmio.c
> index 01c1d0e..334c8cc 100644
> --- a/hw/ide/mmio.c
> +++ b/hw/ide/mmio.c
> @@ -82,7 +82,7 @@ static void mmio_ide_write(void *opaque, hwaddr addr,
>  static const MemoryRegionOps mmio_ide_ops = {
>      .read = mmio_ide_read,
>      .write = mmio_ide_write,
> -    .endianness = DEVICE_NATIVE_ENDIAN,
> +    .endianness = DEVICE_LITTLE_ENDIAN,
>  };
> 
>  static uint64_t mmio_ide_status_read(void *opaque, hwaddr addr,
> @@ -102,7 +102,7 @@ static void mmio_ide_cmd_write(void *opaque, hwaddr
> addr,
>  static const MemoryRegionOps mmio_ide_cs_ops = {
>      .read = mmio_ide_status_read,
>      .write = mmio_ide_cmd_write,
> -    .endianness = DEVICE_NATIVE_ENDIAN,
> +    .endianness = DEVICE_LITTLE_ENDIAN,
>  };
> 
>  static const VMStateDescription vmstate_ide_mmio = {
> 

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

* Re: [Qemu-devel] [Qemu-trivial] [PATCH] IDE: MMIO IDE device control should be little endian
  2014-08-24  9:24 ` [Qemu-devel] [Qemu-trivial] " Michael Tokarev
@ 2014-08-28 11:13   ` Stefan Hajnoczi
  2014-08-31  8:32     ` Valentin Manea
  0 siblings, 1 reply; 13+ messages in thread
From: Stefan Hajnoczi @ 2014-08-28 11:13 UTC (permalink / raw)
  To: Michael Tokarev
  Cc: Kevin Wolf, Peter Maydell, Juan Quintela, Valentin Manea,
	qemu-devel, qemu-trivial, Stefan Hajnoczi, Wenchao Xia

[-- Attachment #1: Type: text/plain, Size: 905 bytes --]

On Sun, Aug 24, 2014 at 01:24:29PM +0400, Michael Tokarev wrote:
> 22.08.2014 12:52, Valentin Manea wrote:
> > Set the IDE MMIO memory type to little endian. The ATA specs identify
> > words part of the control commands encoded as little endian.
> > While this has no impact on little endian systems, it's required for big
> > endian systems(eg OpenRisc).
> 
> While the patch itself is simple, I'm not sure it is "trivial enough".
> And you didn't Cc neither qemu-devel@ nor the IDE subsystem "odd fixer"
> maintainers (kwolf@ and stefanha@).  I'm not applying this for now to
> trivial tree.

Hi Valentin,
Please resend the patch to qemu-devel@nongnu.org and CC Kevin Wolf
<kwolf@redhat.com> and Stefan Hajnoczi <stefanha@redhat.com>.

All patches must go through the mailing list so the community has a
chance to review and comment before a committer applies them.

Thanks,
Stefan

[-- Attachment #2: Type: application/pgp-signature, Size: 473 bytes --]

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

* [Qemu-devel] [PATCH] IDE: MMIO IDE device control should be little endian
       [not found] <53F704BE.6000407@mrs.ro>
  2014-08-22  9:22 ` [Qemu-devel] [PATCH] IDE: MMIO IDE device control should be little endian Peter Maydell
  2014-08-24  9:24 ` [Qemu-devel] [Qemu-trivial] " Michael Tokarev
@ 2014-08-31  8:32 ` Valentin Manea
  2014-09-07 19:07   ` Valentin Manea
                     ` (2 more replies)
  2 siblings, 3 replies; 13+ messages in thread
From: Valentin Manea @ 2014-08-31  8:32 UTC (permalink / raw)
  To: qemu-devel; +Cc: kwolf, mjt, stefanha


Set the IDE MMIO memory type to little endian. The ATA specs identify
words part of the control commands encoded as little endian.
While this has no impact on little endian systems, it's required for big
endian systems(eg OpenRisc).

Signed-off-by: Valentin Manea <valentin.manea@gmail.com>
---
 hw/ide/mmio.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/hw/ide/mmio.c b/hw/ide/mmio.c
index 01c1d0e..334c8cc 100644
--- a/hw/ide/mmio.c
+++ b/hw/ide/mmio.c
@@ -82,7 +82,7 @@ static void mmio_ide_write(void *opaque, hwaddr addr,
 static const MemoryRegionOps mmio_ide_ops = {
     .read = mmio_ide_read,
     .write = mmio_ide_write,
-    .endianness = DEVICE_NATIVE_ENDIAN,
+    .endianness = DEVICE_LITTLE_ENDIAN,
 };

 static uint64_t mmio_ide_status_read(void *opaque, hwaddr addr,
@@ -102,7 +102,7 @@ static void mmio_ide_cmd_write(void *opaque, hwaddr
addr,
 static const MemoryRegionOps mmio_ide_cs_ops = {
     .read = mmio_ide_status_read,
     .write = mmio_ide_cmd_write,
-    .endianness = DEVICE_NATIVE_ENDIAN,
+    .endianness = DEVICE_LITTLE_ENDIAN,
 };

 static const VMStateDescription vmstate_ide_mmio = {
-- 
1.9.1

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

* Re: [Qemu-devel] [Qemu-trivial] [PATCH] IDE: MMIO IDE device control should be little endian
  2014-08-28 11:13   ` Stefan Hajnoczi
@ 2014-08-31  8:32     ` Valentin Manea
  0 siblings, 0 replies; 13+ messages in thread
From: Valentin Manea @ 2014-08-31  8:32 UTC (permalink / raw)
  To: Stefan Hajnoczi, Michael Tokarev
  Cc: Kevin Wolf, Peter Maydell, Juan Quintela, qemu-trivial,
	qemu-devel, Stefan Hajnoczi, Wenchao Xia

On 2014-08-28 14:13, Stefan Hajnoczi wrote:
> Hi Valentin,
> Please resend the patch to qemu-devel@nongnu.org and CC Kevin Wolf
> <kwolf@redhat.com> and Stefan Hajnoczi <stefanha@redhat.com>.
> 
> All patches must go through the mailing list so the community has a
> chance to review and comment before a committer applies them.

Hi Stefan,

  Thanks for the tips, I have resent the patch.

Thanks,
Valentin

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

* Re: [Qemu-devel] [PATCH] IDE: MMIO IDE device control should be little endian
  2014-08-31  8:32 ` [Qemu-devel] " Valentin Manea
@ 2014-09-07 19:07   ` Valentin Manea
  2014-09-08  8:52     ` Stefan Hajnoczi
  2014-09-08  9:07   ` Stefan Hajnoczi
  2014-09-09  8:58   ` Kevin Wolf
  2 siblings, 1 reply; 13+ messages in thread
From: Valentin Manea @ 2014-09-07 19:07 UTC (permalink / raw)
  To: qemu-devel; +Cc: kwolf, mjt, Jia Liu, stefanha

Hi,

  Did anybody get the chance to review this patch?
  It would be quite nice to integrate it before all the other openrisc changes, to get
the IDE working also.

Thanks,
Valentin
On 2014-08-31 11:32, Valentin Manea wrote:
> 
> Set the IDE MMIO memory type to little endian. The ATA specs identify
> words part of the control commands encoded as little endian.
> While this has no impact on little endian systems, it's required for big
> endian systems(eg OpenRisc).
> 
> Signed-off-by: Valentin Manea <valentin.manea@gmail.com>
> ---
>  hw/ide/mmio.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/hw/ide/mmio.c b/hw/ide/mmio.c
> index 01c1d0e..334c8cc 100644
> --- a/hw/ide/mmio.c
> +++ b/hw/ide/mmio.c
> @@ -82,7 +82,7 @@ static void mmio_ide_write(void *opaque, hwaddr addr,
>  static const MemoryRegionOps mmio_ide_ops = {
>      .read = mmio_ide_read,
>      .write = mmio_ide_write,
> -    .endianness = DEVICE_NATIVE_ENDIAN,
> +    .endianness = DEVICE_LITTLE_ENDIAN,
>  };
> 
>  static uint64_t mmio_ide_status_read(void *opaque, hwaddr addr,
> @@ -102,7 +102,7 @@ static void mmio_ide_cmd_write(void *opaque, hwaddr
> addr,
>  static const MemoryRegionOps mmio_ide_cs_ops = {
>      .read = mmio_ide_status_read,
>      .write = mmio_ide_cmd_write,
> -    .endianness = DEVICE_NATIVE_ENDIAN,
> +    .endianness = DEVICE_LITTLE_ENDIAN,
>  };
> 
>  static const VMStateDescription vmstate_ide_mmio = {
> 

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

* Re: [Qemu-devel] [PATCH] IDE: MMIO IDE device control should be little endian
  2014-09-07 19:07   ` Valentin Manea
@ 2014-09-08  8:52     ` Stefan Hajnoczi
  0 siblings, 0 replies; 13+ messages in thread
From: Stefan Hajnoczi @ 2014-09-08  8:52 UTC (permalink / raw)
  To: Valentin Manea; +Cc: kwolf, mjt, qemu-devel, stefanha, Jia Liu

[-- Attachment #1: Type: text/plain, Size: 528 bytes --]

On Sun, Sep 07, 2014 at 10:07:10PM +0300, Valentin Manea wrote:
>   Did anybody get the chance to review this patch?
>   It would be quite nice to integrate it before all the other openrisc changes, to get
> the IDE working also.

Resending a patch as a reply in an existing thread increases the chance
of it getting overlooked.  Threaded mail clients bury the mail as part
of an old conversation.  Please send patches as top-level emails instead
so they don't get missed.

Anyway...I've spotted it now and will review.

Stefan

[-- Attachment #2: Type: application/pgp-signature, Size: 473 bytes --]

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

* Re: [Qemu-devel] [PATCH] IDE: MMIO IDE device control should be little endian
  2014-08-31  8:32 ` [Qemu-devel] " Valentin Manea
  2014-09-07 19:07   ` Valentin Manea
@ 2014-09-08  9:07   ` Stefan Hajnoczi
  2014-09-08  9:11     ` Paolo Bonzini
                       ` (2 more replies)
  2014-09-09  8:58   ` Kevin Wolf
  2 siblings, 3 replies; 13+ messages in thread
From: Stefan Hajnoczi @ 2014-09-08  9:07 UTC (permalink / raw)
  To: Valentin Manea; +Cc: kwolf, Paolo Bonzini, mjt, qemu-devel, stefanha

[-- Attachment #1: Type: text/plain, Size: 1626 bytes --]

On Sun, Aug 31, 2014 at 11:32:08AM +0300, Valentin Manea wrote:
> 
> Set the IDE MMIO memory type to little endian. The ATA specs identify
> words part of the control commands encoded as little endian.
> While this has no impact on little endian systems, it's required for big
> endian systems(eg OpenRisc).
> 
> Signed-off-by: Valentin Manea <valentin.manea@gmail.com>
> ---
>  hw/ide/mmio.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/hw/ide/mmio.c b/hw/ide/mmio.c
> index 01c1d0e..334c8cc 100644
> --- a/hw/ide/mmio.c
> +++ b/hw/ide/mmio.c
> @@ -82,7 +82,7 @@ static void mmio_ide_write(void *opaque, hwaddr addr,
>  static const MemoryRegionOps mmio_ide_ops = {
>      .read = mmio_ide_read,
>      .write = mmio_ide_write,
> -    .endianness = DEVICE_NATIVE_ENDIAN,
> +    .endianness = DEVICE_LITTLE_ENDIAN,
>  };
> 
>  static uint64_t mmio_ide_status_read(void *opaque, hwaddr addr,
> @@ -102,7 +102,7 @@ static void mmio_ide_cmd_write(void *opaque, hwaddr
> addr,
>  static const MemoryRegionOps mmio_ide_cs_ops = {
>      .read = mmio_ide_status_read,
>      .write = mmio_ide_cmd_write,
> -    .endianness = DEVICE_NATIVE_ENDIAN,
> +    .endianness = DEVICE_LITTLE_ENDIAN,
>  };
> 
>  static const VMStateDescription vmstate_ide_mmio = {

This patch changes the semantics of the sh4eb target (with the r2d
machine type), where the mmio-ide registers currently don't need
byteswapping.

I guess a real big-endian SH4 with MMIO IDE *should* byteswap but want
to double-check.

Does anyone know what the expected behavior here is?

Stefan

[-- Attachment #2: Type: application/pgp-signature, Size: 473 bytes --]

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

* Re: [Qemu-devel] [PATCH] IDE: MMIO IDE device control should be little endian
  2014-09-08  9:07   ` Stefan Hajnoczi
@ 2014-09-08  9:11     ` Paolo Bonzini
  2014-09-08 10:59     ` Michael Tokarev
  2014-09-08 12:13     ` Peter Maydell
  2 siblings, 0 replies; 13+ messages in thread
From: Paolo Bonzini @ 2014-09-08  9:11 UTC (permalink / raw)
  To: Stefan Hajnoczi, Valentin Manea; +Cc: kwolf, mjt, qemu-devel, stefanha

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Il 08/09/2014 11:07, Stefan Hajnoczi ha scritto:
> This patch changes the semantics of the sh4eb target (with the r2d
>  machine type), where the mmio-ide registers currently don't need 
> byteswapping.
> 
> I guess a real big-endian SH4 with MMIO IDE *should* byteswap but 
> want to double-check.
> 
> Does anyone know what the expected behavior here is?

Nope, but I agree that it would likely be a bug fix for sh4eb.

Paolo
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2

iQIcBAEBAgAGBQJUDXLUAAoJEBvWZb6bTYbyELoP/jwo9SbUupQDDVlvEF1ToB+M
MrhOy5umG3qIbrJrl3biiTvxkSpQ9TrfHT1jtk1caGsMos6lRfajVOp1L1JFG4el
l/QSMAwLv53yWwGkFeKOH/OtJuraM79iSTxq042mE6w6FP95vRYP+IYLBCbwJY59
qyHFk9/uP0UztdnwzoNcjeyJkGtQAET7seU4Xf25te2q3DK2cO+/jA3Ew16ebQYd
nCf3I7KeXNZT1kSZvctwvt0OM4De8IjHXgU76rZXAy1z/sYSEmd/QUzQkHwFHFXA
Hpza+LgLvIheEWcOtluyOlZH533JTmLSj2TdNDvcDq+W7pPXO2ncf64y8q+F3roi
CH4xHElv88D3bLiy2aE57k1xxuwnJ/xnpxQ0isMosR9fs99dd/k2sHnnaKuBYYVI
B4fM+dRfqO5zxNaPUA1zJ3VpQl66C8CXI/iLJbMfgqHYCnAEHgHZA0oLuL8o2RFJ
Nl+eulnlcE4XUvzkCsSe19c2g+9iG13ZfVBK4RIth23jSrgw6EhmRCb1Fj4Rf6Ej
oArfBcFQr9EZZ8acMbo7wFIwH2Y73+tW65IauFGVDAoOAeLcVyHZ+fudPEWYCLb6
ak9BcXnt5zkAzZgoc5CZS9hLeGKuMsMqkrKaXFu5RybqdaH6LCJfyYNkbdqn37LM
HOAIkqKZ+LES8fXJBoZe
=pOCE
-----END PGP SIGNATURE-----

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

* Re: [Qemu-devel] [PATCH] IDE: MMIO IDE device control should be little endian
  2014-09-08  9:07   ` Stefan Hajnoczi
  2014-09-08  9:11     ` Paolo Bonzini
@ 2014-09-08 10:59     ` Michael Tokarev
  2014-09-08 12:13     ` Peter Maydell
  2 siblings, 0 replies; 13+ messages in thread
From: Michael Tokarev @ 2014-09-08 10:59 UTC (permalink / raw)
  To: Stefan Hajnoczi, Valentin Manea
  Cc: kwolf, Paolo Bonzini, qemu-devel, stefanha

08.09.2014 13:07, Stefan Hajnoczi wrote:

> This patch changes the semantics of the sh4eb target (with the r2d
> machine type), where the mmio-ide registers currently don't need
> byteswapping.
> 
> I guess a real big-endian SH4 with MMIO IDE *should* byteswap but want
> to double-check.
> 
> Does anyone know what the expected behavior here is?

That's exactly the reason I don't think this is a -trivial material :)

Thanks,

/mjt

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

* Re: [Qemu-devel] [PATCH] IDE: MMIO IDE device control should be little endian
  2014-09-08  9:07   ` Stefan Hajnoczi
  2014-09-08  9:11     ` Paolo Bonzini
  2014-09-08 10:59     ` Michael Tokarev
@ 2014-09-08 12:13     ` Peter Maydell
  2 siblings, 0 replies; 13+ messages in thread
From: Peter Maydell @ 2014-09-08 12:13 UTC (permalink / raw)
  To: Stefan Hajnoczi
  Cc: Kevin Wolf, Valentin Manea, Michael Tokarev, qemu-devel,
	Stefan Hajnoczi, Paolo Bonzini

On 8 September 2014 10:07, Stefan Hajnoczi <stefanha@gmail.com> wrote:
> This patch changes the semantics of the sh4eb target (with the r2d
> machine type), where the mmio-ide registers currently don't need
> byteswapping.
>
> I guess a real big-endian SH4 with MMIO IDE *should* byteswap but want
> to double-check.
>
> Does anyone know what the expected behavior here is?

I had a look for the documentation, and the SH7751R
user's manual (hardware) is freely downloadable from
the Renesas website. It says:
 "The PCMCIA interface is supported only in little-endian mode."

So I think we don't need to care...

-- PMM

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

* Re: [Qemu-devel] [PATCH] IDE: MMIO IDE device control should be little endian
  2014-08-31  8:32 ` [Qemu-devel] " Valentin Manea
  2014-09-07 19:07   ` Valentin Manea
  2014-09-08  9:07   ` Stefan Hajnoczi
@ 2014-09-09  8:58   ` Kevin Wolf
  2014-09-09 19:18     ` Valentin Manea
  2 siblings, 1 reply; 13+ messages in thread
From: Kevin Wolf @ 2014-09-09  8:58 UTC (permalink / raw)
  To: Valentin Manea; +Cc: mjt, qemu-devel, stefanha

Am 31.08.2014 um 10:32 hat Valentin Manea geschrieben:
> 
> Set the IDE MMIO memory type to little endian. The ATA specs identify
> words part of the control commands encoded as little endian.
> While this has no impact on little endian systems, it's required for big
> endian systems(eg OpenRisc).
> 
> Signed-off-by: Valentin Manea <valentin.manea@gmail.com>

Thanks, applied to the block branch.

>  static uint64_t mmio_ide_status_read(void *opaque, hwaddr addr,
> @@ -102,7 +102,7 @@ static void mmio_ide_cmd_write(void *opaque, hwaddr
> addr,

Please make sure that your patch isn't corrupted by your mail client,
like by this line wrap. I had to manually fix the patch before I could
apply it. For larger patches, I would simply have rejected it.

Kevin

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

* Re: [Qemu-devel] [PATCH] IDE: MMIO IDE device control should be little endian
  2014-09-09  8:58   ` Kevin Wolf
@ 2014-09-09 19:18     ` Valentin Manea
  0 siblings, 0 replies; 13+ messages in thread
From: Valentin Manea @ 2014-09-09 19:18 UTC (permalink / raw)
  To: Kevin Wolf; +Cc: mjt, qemu-devel, stefanha

Hi Kevin
On 2014-09-09 11:58, Kevin Wolf wrote:
> Thanks, applied to the block branch.

Thanks a lot

> Please make sure that your patch isn't corrupted by your mail client,
> like by this line wrap. I had to manually fix the patch before I could
> apply it. For larger patches, I would simply have rejected it.


Really sorry, my mail client was playing tricks on me. I will make sure to triple check
next time.

Regards,
Valentin

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

end of thread, other threads:[~2014-09-09 19:19 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <53F704BE.6000407@mrs.ro>
2014-08-22  9:22 ` [Qemu-devel] [PATCH] IDE: MMIO IDE device control should be little endian Peter Maydell
2014-08-24  9:24 ` [Qemu-devel] [Qemu-trivial] " Michael Tokarev
2014-08-28 11:13   ` Stefan Hajnoczi
2014-08-31  8:32     ` Valentin Manea
2014-08-31  8:32 ` [Qemu-devel] " Valentin Manea
2014-09-07 19:07   ` Valentin Manea
2014-09-08  8:52     ` Stefan Hajnoczi
2014-09-08  9:07   ` Stefan Hajnoczi
2014-09-08  9:11     ` Paolo Bonzini
2014-09-08 10:59     ` Michael Tokarev
2014-09-08 12:13     ` Peter Maydell
2014-09-09  8:58   ` Kevin Wolf
2014-09-09 19:18     ` Valentin Manea

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.