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 4/8] qtest/ahci: Add DMA test variants
Date: Thu, 19 Feb 2015 17:29:59 -0500 [thread overview]
Message-ID: <1424385003-9412-5-git-send-email-jsnow@redhat.com> (raw)
In-Reply-To: <1424385003-9412-1-git-send-email-jsnow@redhat.com>
These test a few different pathways in the AHCI code.
short: Test the minimum transfer size, exactly one sector.
simple: Test a transfer using a single PRD, in this case, 4K.
double: Test transferring 8K, which we will split up as two PRDs.
long: Test transferring a lot of data using many PRDs, 256K.
Signed-off-by: John Snow <jsnow@redhat.com>
---
tests/ahci-test.c | 38 ++++++++++++++++++++++++++++++--------
1 file changed, 30 insertions(+), 8 deletions(-)
diff --git a/tests/ahci-test.c b/tests/ahci-test.c
index 9fe9fb5..9394d85 100644
--- a/tests/ahci-test.c
+++ b/tests/ahci-test.c
@@ -731,12 +731,11 @@ static void ahci_test_identify(AHCIQState *ahci)
g_assert_cmphex(sect_size, ==, 0x200);
}
-static void ahci_test_dma_rw_simple(AHCIQState *ahci)
+static void ahci_test_dma_rw_simple(AHCIQState *ahci, unsigned bufsize)
{
uint64_t ptr;
uint8_t port;
unsigned i;
- const unsigned bufsize = 4096;
unsigned char *tx = g_malloc(bufsize);
unsigned char *rx = g_malloc0(bufsize);
@@ -751,7 +750,7 @@ static void ahci_test_dma_rw_simple(AHCIQState *ahci)
ptr = ahci_alloc(ahci, bufsize);
g_assert(ptr);
- /* Write some indicative pattern to our 4K buffer. */
+ /* Write some indicative pattern to our buffer. */
for (i = 0; i < bufsize; i++) {
tx[i] = (bufsize - i);
}
@@ -852,15 +851,35 @@ static void test_identify(void)
}
/**
- * Perform a simple DMA R/W test, using a single PRD and non-NCQ commands.
+ * Perform a simple DMA R/W test using non-NCQ commands.
*/
+static void test_dma_rw_interface(unsigned bufsize)
+{
+ AHCIQState *ahci;
+
+ ahci = ahci_boot_and_enable();
+ ahci_test_dma_rw_simple(ahci, bufsize);
+ ahci_shutdown(ahci);
+}
+
static void test_dma_rw_simple(void)
{
- AHCIQState *ahci;
+ test_dma_rw_interface(4096);
+}
- ahci = ahci_boot_and_enable();
- ahci_test_dma_rw_simple(ahci);
- ahci_shutdown(ahci);
+static void test_dma_rw_double(void)
+{
+ test_dma_rw_interface(8192);
+}
+
+static void test_dma_rw_long(void)
+{
+ test_dma_rw_interface(4096 * 64);
+}
+
+static void test_dma_rw_short(void)
+{
+ test_dma_rw_interface(512);
}
/******************************************************************************/
@@ -919,6 +938,9 @@ int main(int argc, char **argv)
qtest_add_func("/ahci/hba_enable", test_hba_enable);
qtest_add_func("/ahci/identify", test_identify);
qtest_add_func("/ahci/dma/simple", test_dma_rw_simple);
+ qtest_add_func("/ahci/dma/double", test_dma_rw_double);
+ qtest_add_func("/ahci/dma/long", test_dma_rw_long);
+ qtest_add_func("/ahci/dma/short", test_dma_rw_short);
ret = g_test_run();
--
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 ` John Snow [this message]
2015-02-19 22:30 ` [Qemu-devel] [PATCH 5/8] qtest/ahci: Add PIO and LBA48 tests John Snow
2015-02-19 22:30 ` [Qemu-devel] [PATCH 6/8] qtest/ahci: add fragmented dma test John Snow
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-5-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).