All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] ahci: Fix cpu_physical_memory_unmap() argument ordering
@ 2010-12-23  8:53 Stefan Hajnoczi
  2010-12-23 10:43 ` [Qemu-devel] " Alexander Graf
  2011-01-26  9:42 ` [Qemu-devel] " Kevin Wolf
  0 siblings, 2 replies; 6+ messages in thread
From: Stefan Hajnoczi @ 2010-12-23  8:53 UTC (permalink / raw)
  To: qemu-devel; +Cc: Alexander Graf, Stefan Hajnoczi

The len and is_write arguments to cpu_physical_memory_unmap() were
swapped.  This patch changes calls to use the correct argument ordering.

Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
---
This patch applies to agraf's ahci tree at git://repo.or.cz/qemu/ahci.git.

 hw/ide/ahci.c |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/hw/ide/ahci.c b/hw/ide/ahci.c
index 4c920da..f618f16 100644
--- a/hw/ide/ahci.c
+++ b/hw/ide/ahci.c
@@ -175,12 +175,12 @@ static void map_page(uint8_t **ptr, uint64_t addr, uint32_t wanted)
     target_phys_addr_t len = wanted;
 
     if (*ptr) {
-        cpu_physical_memory_unmap(*ptr, 1, len, len);
+        cpu_physical_memory_unmap(*ptr, len, 1, len);
     }
 
     *ptr = cpu_physical_memory_map(addr, &len, 1);
     if (len < wanted) {
-        cpu_physical_memory_unmap(*ptr, 1, len, len);
+        cpu_physical_memory_unmap(*ptr, len, 1, len);
         *ptr = NULL;
     }
 }
@@ -639,7 +639,7 @@ static void ahci_write_fis_d2h(AHCIDevice *ad, uint8_t *cmd_fis)
     ahci_trigger_irq(ad->hba, ad, PORT_IRQ_D2H_REG_FIS);
 
     if (cmd_mapped) {
-        cpu_physical_memory_unmap(cmd_fis, 0, cmd_len, cmd_len);
+        cpu_physical_memory_unmap(cmd_fis, cmd_len, 0, cmd_len);
     }
 }
 
@@ -650,8 +650,8 @@ static int ahci_iov_destroy(AHCIDevice *ad, QEMUIOVector *qiov, int is_write)
 
     for (i = 0; i < qiov->niov; i++) {
         /* flags_size is zero-based */
-        cpu_physical_memory_unmap(iov[i].iov_base, !is_write,
-                                  iov[i].iov_len, iov[i].iov_len);
+        cpu_physical_memory_unmap(iov[i].iov_base, iov[i].iov_len,
+                                  !is_write, iov[i].iov_len);
     }
 
     return 0;
@@ -720,7 +720,7 @@ static int ahci_populate_iov(AHCIDevice *ad, NCQTransferState *ncq_tfs,
     }
 
 out:
-    cpu_physical_memory_unmap(prdt, 0, prdt_len, prdt_len);
+    cpu_physical_memory_unmap(prdt, prdt_len, 0, prdt_len);
     return r;
 }
 
@@ -766,7 +766,7 @@ static int ahci_populate_sglist(AHCIDevice *ad, QEMUSGList *sglist)
     }
 
 out:
-    cpu_physical_memory_unmap(prdt, 0, prdt_len, prdt_len);
+    cpu_physical_memory_unmap(prdt, prdt_len, 0, prdt_len);
     return r;
 }
 
@@ -995,7 +995,7 @@ static int handle_cmd(AHCIState *s, int port, int slot)
     }
 
 out:
-    cpu_physical_memory_unmap(cmd_fis, 1, cmd_len, cmd_len);
+    cpu_physical_memory_unmap(cmd_fis, cmd_len, 1, cmd_len);
 
     if (s->dev[port].port.ifs[0].status & (BUSY_STAT|DRQ_STAT)) {
         /* async command, complete later */
-- 
1.7.2.3

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

* [Qemu-devel] Re: [PATCH] ahci: Fix cpu_physical_memory_unmap() argument ordering
  2010-12-23  8:53 [Qemu-devel] [PATCH] ahci: Fix cpu_physical_memory_unmap() argument ordering Stefan Hajnoczi
@ 2010-12-23 10:43 ` Alexander Graf
  2011-01-26  9:42 ` [Qemu-devel] " Kevin Wolf
  1 sibling, 0 replies; 6+ messages in thread
From: Alexander Graf @ 2010-12-23 10:43 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: qemu-devel


On 23.12.2010, at 09:53, Stefan Hajnoczi wrote:

> The len and is_write arguments to cpu_physical_memory_unmap() were
> swapped.  This patch changes calls to use the correct argument ordering.
> 
> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>

Ouch :).

Acked-by: Alexander Graf <agraf@suse.de>


Alex

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

* Re: [Qemu-devel] [PATCH] ahci: Fix cpu_physical_memory_unmap() argument ordering
  2010-12-23  8:53 [Qemu-devel] [PATCH] ahci: Fix cpu_physical_memory_unmap() argument ordering Stefan Hajnoczi
  2010-12-23 10:43 ` [Qemu-devel] " Alexander Graf
@ 2011-01-26  9:42 ` Kevin Wolf
  2011-01-26 10:10   ` Alexander Graf
  1 sibling, 1 reply; 6+ messages in thread
From: Kevin Wolf @ 2011-01-26  9:42 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: qemu-devel, Alexander Graf

Am 23.12.2010 09:53, schrieb Stefan Hajnoczi:
> The len and is_write arguments to cpu_physical_memory_unmap() were
> swapped.  This patch changes calls to use the correct argument ordering.
> 
> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
> ---
> This patch applies to agraf's ahci tree at git://repo.or.cz/qemu/ahci.git.

Maybe it would make sense to rebase this patch to master if Alex' AHCI
series still takes some time.

Kevin

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

* Re: [Qemu-devel] [PATCH] ahci: Fix cpu_physical_memory_unmap() argument ordering
  2011-01-26  9:42 ` [Qemu-devel] " Kevin Wolf
@ 2011-01-26 10:10   ` Alexander Graf
  2011-01-26 10:15     ` Kevin Wolf
  0 siblings, 1 reply; 6+ messages in thread
From: Alexander Graf @ 2011-01-26 10:10 UTC (permalink / raw)
  To: Kevin Wolf; +Cc: Stefan Hajnoczi, qemu-devel

Kevin Wolf wrote:
> Am 23.12.2010 09:53, schrieb Stefan Hajnoczi:
>   
>> The len and is_write arguments to cpu_physical_memory_unmap() were
>> swapped.  This patch changes calls to use the correct argument ordering.
>>
>> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
>> ---
>> This patch applies to agraf's ahci tree at git://repo.or.cz/qemu/ahci.git.
>>     
>
> Maybe it would make sense to rebase this patch to master if Alex' AHCI
> series still takes some time.
>   

IIRC I folded that patch into my patch set even. I'll try to get a new
version sent out next week.


Alex

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

* Re: [Qemu-devel] [PATCH] ahci: Fix cpu_physical_memory_unmap() argument ordering
  2011-01-26 10:10   ` Alexander Graf
@ 2011-01-26 10:15     ` Kevin Wolf
  0 siblings, 0 replies; 6+ messages in thread
From: Kevin Wolf @ 2011-01-26 10:15 UTC (permalink / raw)
  To: Alexander Graf; +Cc: Stefan Hajnoczi, qemu-devel

Am 26.01.2011 11:10, schrieb Alexander Graf:
> Kevin Wolf wrote:
>> Am 23.12.2010 09:53, schrieb Stefan Hajnoczi:
>>   
>>> The len and is_write arguments to cpu_physical_memory_unmap() were
>>> swapped.  This patch changes calls to use the correct argument ordering.
>>>
>>> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
>>> ---
>>> This patch applies to agraf's ahci tree at git://repo.or.cz/qemu/ahci.git.
>>>     
>>
>> Maybe it would make sense to rebase this patch to master if Alex' AHCI
>> series still takes some time.
>>   
> 
> IIRC I folded that patch into my patch set even. I'll try to get a new
> version sent out next week.

Ok, I won't track it any more then. Please make sure that it's really
included in your series.

Kevin

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

* [Qemu-devel] [PATCH] ahci: Fix cpu_physical_memory_unmap() argument ordering
@ 2011-01-26 10:24 Stefan Hajnoczi
  0 siblings, 0 replies; 6+ messages in thread
From: Stefan Hajnoczi @ 2011-01-26 10:24 UTC (permalink / raw)
  To: qemu-devel; +Cc: Kevin Wolf, Alexander Graf, Stefan Hajnoczi

The len and is_write arguments to cpu_physical_memory_unmap() were
swapped.  This patch changes calls to use the correct argument ordering.

Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
---
 hw/ide/ahci.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

Rebased on qemu.git/master.

diff --git a/hw/ide/ahci.c b/hw/ide/ahci.c
index 968fdce..433171c 100644
--- a/hw/ide/ahci.c
+++ b/hw/ide/ahci.c
@@ -513,12 +513,12 @@ static void map_page(uint8_t **ptr, uint64_t addr, uint32_t wanted)
     target_phys_addr_t len = wanted;
 
     if (*ptr) {
-        cpu_physical_memory_unmap(*ptr, 1, len, len);
+        cpu_physical_memory_unmap(*ptr, len, 1, len);
     }
 
     *ptr = cpu_physical_memory_map(addr, &len, 1);
     if (len < wanted) {
-        cpu_physical_memory_unmap(*ptr, 1, len, len);
+        cpu_physical_memory_unmap(*ptr, len, 1, len);
         *ptr = NULL;
     }
 }
@@ -956,7 +956,7 @@ static void ahci_write_fis_d2h(AHCIDevice *ad, uint8_t *cmd_fis)
     ahci_trigger_irq(ad->hba, ad, PORT_IRQ_D2H_REG_FIS);
 
     if (cmd_mapped) {
-        cpu_physical_memory_unmap(cmd_fis, 0, cmd_len, cmd_len);
+        cpu_physical_memory_unmap(cmd_fis, cmd_len, 0, cmd_len);
     }
 }
 
@@ -1002,7 +1002,7 @@ static int ahci_populate_sglist(AHCIDevice *ad, QEMUSGList *sglist)
     }
 
 out:
-    cpu_physical_memory_unmap(prdt, 0, prdt_len, prdt_len);
+    cpu_physical_memory_unmap(prdt, prdt_len, 0, prdt_len);
     return r;
 }
 
@@ -1228,7 +1228,7 @@ static int handle_cmd(AHCIState *s, int port, int slot)
     }
 
 out:
-    cpu_physical_memory_unmap(cmd_fis, 1, cmd_len, cmd_len);
+    cpu_physical_memory_unmap(cmd_fis, cmd_len, 1, cmd_len);
 
     if (s->dev[port].port.ifs[0].status & (BUSY_STAT|DRQ_STAT)) {
         /* async command, complete later */
-- 
1.7.2.3

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

end of thread, other threads:[~2011-01-26 10:26 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-12-23  8:53 [Qemu-devel] [PATCH] ahci: Fix cpu_physical_memory_unmap() argument ordering Stefan Hajnoczi
2010-12-23 10:43 ` [Qemu-devel] " Alexander Graf
2011-01-26  9:42 ` [Qemu-devel] " Kevin Wolf
2011-01-26 10:10   ` Alexander Graf
2011-01-26 10:15     ` Kevin Wolf
2011-01-26 10:24 Stefan Hajnoczi

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.