]> Git Repo - qemu.git/commitdiff
libqos: allow zero-size allocations
authorJohn Snow <[email protected]>
Mon, 11 Jan 2016 19:10:43 +0000 (14:10 -0500)
committerJohn Snow <[email protected]>
Mon, 11 Jan 2016 19:10:43 +0000 (14:10 -0500)
As part of streamlining the AHCI tests interface, it'd be nice
if specying a size of zero could be handled without special branches
and the allocator could handle this special case gracefully.

This lets me use the "ahci_io" macros for non-data commands, too,
which moves me forward towards shepherding all AHCI qtests into
a common set of commands in a unified pipeline.

Signed-off-by: John Snow <[email protected]>
Message-id: 1452282920[email protected]

tests/ahci-test.c
tests/libqos/ahci.c
tests/libqos/malloc.c

index 8ebbd3334933205bc9fbc58fb4347dd6f9cc186c..8c485870ffa4362e57b772b5195e33445eba96c6 100644 (file)
@@ -890,18 +890,12 @@ static void ahci_test_io_rw_simple(AHCIQState *ahci, unsigned bufsize,
 static uint8_t ahci_test_nondata(AHCIQState *ahci, uint8_t ide_cmd)
 {
     uint8_t port;
-    AHCICommand *cmd;
 
     /* Sanitize */
     port = ahci_port_select(ahci);
     ahci_port_clear(ahci, port);
 
-    /* Issue Command */
-    cmd = ahci_command_create(ide_cmd);
-    ahci_command_commit(ahci, cmd, port);
-    ahci_command_issue(ahci, cmd);
-    ahci_command_verify(ahci, cmd);
-    ahci_command_free(cmd);
+    ahci_io(ahci, port, ide_cmd, NULL, 0, 0);
 
     return port;
 }
index 96a05a85998184592b3e5ccfeef2418f8ff34f1e..6536408a7db9c109a4b7cf2a1a9a0593b77bf262 100644 (file)
@@ -668,16 +668,16 @@ void ahci_io(AHCIQState *ahci, uint8_t port, uint8_t ide_cmd,
     props = ahci_command_find(ide_cmd);
     g_assert(props);
     ptr = ahci_alloc(ahci, bufsize);
-    g_assert(ptr);
+    g_assert(!bufsize || ptr);
     qmemset(ptr, 0x00, bufsize);
 
-    if (props->write) {
+    if (bufsize && props->write) {
         bufwrite(ptr, buffer, bufsize);
     }
 
     ahci_guest_io(ahci, port, ide_cmd, ptr, bufsize, sector);
 
-    if (props->read) {
+    if (bufsize && props->read) {
         bufread(ptr, buffer, bufsize);
     }
 
index 82b9df537a8293ff9b09b8c31f1d6fd2d4a0b968..19d05cafa67de733b68eeceb1207ef1d2b32d7d3 100644 (file)
@@ -270,6 +270,10 @@ uint64_t guest_alloc(QGuestAllocator *allocator, size_t size)
     uint64_t rsize = size;
     uint64_t naddr;
 
+    if (!size) {
+        return 0;
+    }
+
     rsize += (allocator->page_size - 1);
     rsize &= -allocator->page_size;
     g_assert_cmpint((allocator->start + rsize), <=, allocator->end);
This page took 0.033045 seconds and 4 git commands to generate.