From: John Snow <jsnow@redhat.com>
To: qemu-devel@nongnu.org
Cc: kwolf@redhat.com, John Snow <jsnow@redhat.com>,
armbru@redhat.com, stefanha@redhat.com
Subject: [Qemu-devel] [PATCH 6/8] qtest/ahci: add fragmented dma test
Date: Thu, 19 Feb 2015 17:30:01 -0500 [thread overview]
Message-ID: <1424385003-9412-7-git-send-email-jsnow@redhat.com> (raw)
In-Reply-To: <1424385003-9412-1-git-send-email-jsnow@redhat.com>
Test what happens when we try to use extremely short PRDTs
to accomplish a small data transfer.
Signed-off-by: John Snow <jsnow@redhat.com>
---
tests/ahci-test.c | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 59 insertions(+)
diff --git a/tests/ahci-test.c b/tests/ahci-test.c
index cef8e2f..0d4a3df 100644
--- a/tests/ahci-test.c
+++ b/tests/ahci-test.c
@@ -851,6 +851,63 @@ static void test_identify(void)
ahci_shutdown(ahci);
}
+/**
+ * Fragmented DMA test: Perform a standard 4K DMA read/write
+ * test, but make sure the physical regions are fragmented to
+ * be very small, each just 32 bytes, to see how AHCI performs
+ * with chunks defined to be much less than a sector.
+ */
+static void test_dma_fragmented(void)
+{
+ AHCIQState *ahci;
+ AHCICommand *cmd;
+ uint8_t px;
+ size_t bufsize = 4096;
+ unsigned char *tx = g_malloc(bufsize);
+ unsigned char *rx = g_malloc0(bufsize);
+ unsigned i;
+ uint64_t ptr;
+
+ ahci = ahci_boot_and_enable();
+ px = ahci_port_select(ahci);
+ ahci_port_clear(ahci, px);
+
+ /* create pattern */
+ for (i = 0; i < bufsize; i++) {
+ tx[i] = (bufsize - i);
+ }
+
+ /* Create a DMA buffer in guest memory, and write our pattern to it. */
+ ptr = guest_alloc(ahci->parent->alloc, bufsize);
+ g_assert(ptr);
+ memwrite(ptr, tx, bufsize);
+
+ cmd = ahci_command_create(CMD_WRITE_DMA);
+ ahci_command_adjust(cmd, 0, ptr, bufsize, 32);
+ ahci_command_commit(ahci, cmd, px);
+ ahci_command_issue(ahci, cmd);
+ ahci_command_verify(ahci, cmd);
+ g_free(cmd);
+
+ cmd = ahci_command_create(CMD_READ_DMA);
+ ahci_command_adjust(cmd, 0, ptr, bufsize, 32);
+ ahci_command_commit(ahci, cmd, px);
+ ahci_command_issue(ahci, cmd);
+ ahci_command_verify(ahci, cmd);
+ g_free(cmd);
+
+ /* Read back the guest's receive buffer into local memory */
+ memread(ptr, rx, bufsize);
+ guest_free(ahci->parent->alloc, ptr);
+
+ g_assert_cmphex(memcmp(tx, rx, bufsize), ==, 0);
+
+ ahci_shutdown(ahci);
+
+ g_free(rx);
+ g_free(tx);
+}
+
/******************************************************************************/
/* AHCI I/O Test Matrix Definitions */
@@ -1053,6 +1110,8 @@ int main(int argc, char **argv)
}
}
+ qtest_add_func("/ahci/io/dma/lba28/fragmented", test_dma_fragmented);
+
ret = g_test_run();
/* Cleanup */
--
1.9.3
next prev parent reply other threads:[~2015-02-19 22:30 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-19 22:29 [Qemu-devel] [PATCH 0/8] ahci: add more IO tests John Snow
2015-02-19 22:29 ` [Qemu-devel] [PATCH 1/8] libqos/ahci: Zero-fill AHCI headers John Snow
2015-02-19 22:29 ` [Qemu-devel] [PATCH 2/8] qtest/ahci: Add a macro bootup routine John Snow
2015-02-19 22:29 ` [Qemu-devel] [PATCH 3/8] libqos/ahci: add ahci command helpers John Snow
2015-02-19 22:29 ` [Qemu-devel] [PATCH 4/8] qtest/ahci: Add DMA test variants John Snow
2015-02-19 22:30 ` [Qemu-devel] [PATCH 5/8] qtest/ahci: Add PIO and LBA48 tests John Snow
2015-02-19 22:30 ` John Snow [this message]
2015-02-19 22:30 ` [Qemu-devel] [PATCH 7/8] qtest/ahci: add qcow2 support to ahci-test John Snow
2015-02-25 15:27 ` Stefan Hajnoczi
2015-02-25 22:40 ` John Snow
2015-02-26 11:01 ` Stefan Hajnoczi
2015-02-19 22:30 ` [Qemu-devel] [PATCH 8/8] qtest/ahci: test different disk sectors John Snow
2015-02-24 17:58 ` [Qemu-devel] [PATCH 0/8] ahci: add more IO tests John Snow
2015-02-25 15:29 ` Stefan Hajnoczi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1424385003-9412-7-git-send-email-jsnow@redhat.com \
--to=jsnow@redhat.com \
--cc=armbru@redhat.com \
--cc=kwolf@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).