* [Qemu-devel] [PATCH] qtest/ide: add another short PRDT test flavor
@ 2015-07-01 17:09 Stefan Hajnoczi
2015-07-01 18:40 ` John Snow
2015-07-08 18:14 ` John Snow
0 siblings, 2 replies; 3+ messages in thread
From: Stefan Hajnoczi @ 2015-07-01 17:09 UTC (permalink / raw)
To: qemu-devel; +Cc: John Snow, Stefan Hajnoczi
The existing short PRDT test case does not transfer any data because the
first PRD is less than 1 sector.
This patch adds another short PRDT test case where the first sector can
be read but the PRDT is still smaller than the requested number of
sectors. This exercises a different code path in ide_dma_cb().
Cc: John Snow <jsnow@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
---
tests/ide-test.c | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/tests/ide-test.c b/tests/ide-test.c
index 78382e9..4a07e3a 100644
--- a/tests/ide-test.c
+++ b/tests/ide-test.c
@@ -339,6 +339,31 @@ static void test_bmdma_short_prdt(void)
assert_bit_clear(inb(IDE_BASE + reg_status), DF | ERR);
}
+static void test_bmdma_one_sector_short_prdt(void)
+{
+ uint8_t status;
+
+ /* Read 2 sectors but only give 1 sector in PRDT */
+ PrdtEntry prdt[] = {
+ {
+ .addr = 0,
+ .size = cpu_to_le32(0x200 | PRDT_EOT),
+ },
+ };
+
+ /* Normal request */
+ status = send_dma_request(CMD_READ_DMA, 0, 2,
+ prdt, ARRAY_SIZE(prdt));
+ g_assert_cmphex(status, ==, 0);
+ assert_bit_clear(inb(IDE_BASE + reg_status), DF | ERR);
+
+ /* Abort the request before it completes */
+ status = send_dma_request(CMD_READ_DMA | CMDF_ABORT, 0, 2,
+ prdt, ARRAY_SIZE(prdt));
+ g_assert_cmphex(status, ==, 0);
+ assert_bit_clear(inb(IDE_BASE + reg_status), DF | ERR);
+}
+
static void test_bmdma_long_prdt(void)
{
uint8_t status;
@@ -592,6 +617,8 @@ int main(int argc, char **argv)
qtest_add_func("/ide/bmdma/setup", test_bmdma_setup);
qtest_add_func("/ide/bmdma/simple_rw", test_bmdma_simple_rw);
qtest_add_func("/ide/bmdma/short_prdt", test_bmdma_short_prdt);
+ qtest_add_func("/ide/bmdma/one_sector_short_prdt",
+ test_bmdma_one_sector_short_prdt);
qtest_add_func("/ide/bmdma/long_prdt", test_bmdma_long_prdt);
qtest_add_func("/ide/bmdma/no_busmaster", test_bmdma_no_busmaster);
qtest_add_func("/ide/bmdma/teardown", test_bmdma_teardown);
--
2.4.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] qtest/ide: add another short PRDT test flavor
2015-07-01 17:09 [Qemu-devel] [PATCH] qtest/ide: add another short PRDT test flavor Stefan Hajnoczi
@ 2015-07-01 18:40 ` John Snow
2015-07-08 18:14 ` John Snow
1 sibling, 0 replies; 3+ messages in thread
From: John Snow @ 2015-07-01 18:40 UTC (permalink / raw)
To: Stefan Hajnoczi, qemu-devel
On 07/01/2015 01:09 PM, Stefan Hajnoczi wrote:
> The existing short PRDT test case does not transfer any data because the
> first PRD is less than 1 sector.
>
> This patch adds another short PRDT test case where the first sector can
> be read but the PRDT is still smaller than the requested number of
> sectors. This exercises a different code path in ide_dma_cb().
>
> Cc: John Snow <jsnow@redhat.com>
> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
> ---
> tests/ide-test.c | 27 +++++++++++++++++++++++++++
> 1 file changed, 27 insertions(+)
>
> diff --git a/tests/ide-test.c b/tests/ide-test.c
> index 78382e9..4a07e3a 100644
> --- a/tests/ide-test.c
> +++ b/tests/ide-test.c
> @@ -339,6 +339,31 @@ static void test_bmdma_short_prdt(void)
> assert_bit_clear(inb(IDE_BASE + reg_status), DF | ERR);
> }
>
> +static void test_bmdma_one_sector_short_prdt(void)
> +{
> + uint8_t status;
> +
> + /* Read 2 sectors but only give 1 sector in PRDT */
> + PrdtEntry prdt[] = {
> + {
> + .addr = 0,
> + .size = cpu_to_le32(0x200 | PRDT_EOT),
> + },
> + };
> +
> + /* Normal request */
> + status = send_dma_request(CMD_READ_DMA, 0, 2,
> + prdt, ARRAY_SIZE(prdt));
> + g_assert_cmphex(status, ==, 0);
> + assert_bit_clear(inb(IDE_BASE + reg_status), DF | ERR);
> +
> + /* Abort the request before it completes */
> + status = send_dma_request(CMD_READ_DMA | CMDF_ABORT, 0, 2,
> + prdt, ARRAY_SIZE(prdt));
> + g_assert_cmphex(status, ==, 0);
> + assert_bit_clear(inb(IDE_BASE + reg_status), DF | ERR);
> +}
> +
> static void test_bmdma_long_prdt(void)
> {
> uint8_t status;
> @@ -592,6 +617,8 @@ int main(int argc, char **argv)
> qtest_add_func("/ide/bmdma/setup", test_bmdma_setup);
> qtest_add_func("/ide/bmdma/simple_rw", test_bmdma_simple_rw);
> qtest_add_func("/ide/bmdma/short_prdt", test_bmdma_short_prdt);
> + qtest_add_func("/ide/bmdma/one_sector_short_prdt",
> + test_bmdma_one_sector_short_prdt);
> qtest_add_func("/ide/bmdma/long_prdt", test_bmdma_long_prdt);
> qtest_add_func("/ide/bmdma/no_busmaster", test_bmdma_no_busmaster);
> qtest_add_func("/ide/bmdma/teardown", test_bmdma_teardown);
>
köszönöm!
Reviewed-by: John Snow <jsnow@redhat.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] qtest/ide: add another short PRDT test flavor
2015-07-01 17:09 [Qemu-devel] [PATCH] qtest/ide: add another short PRDT test flavor Stefan Hajnoczi
2015-07-01 18:40 ` John Snow
@ 2015-07-08 18:14 ` John Snow
1 sibling, 0 replies; 3+ messages in thread
From: John Snow @ 2015-07-08 18:14 UTC (permalink / raw)
To: Stefan Hajnoczi, qemu-devel
On 07/01/2015 01:09 PM, Stefan Hajnoczi wrote:
> The existing short PRDT test case does not transfer any data because the
> first PRD is less than 1 sector.
>
> This patch adds another short PRDT test case where the first sector can
> be read but the PRDT is still smaller than the requested number of
> sectors. This exercises a different code path in ide_dma_cb().
>
> Cc: John Snow <jsnow@redhat.com>
> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
> ---
> tests/ide-test.c | 27 +++++++++++++++++++++++++++
> 1 file changed, 27 insertions(+)
>
> diff --git a/tests/ide-test.c b/tests/ide-test.c
> index 78382e9..4a07e3a 100644
> --- a/tests/ide-test.c
> +++ b/tests/ide-test.c
> @@ -339,6 +339,31 @@ static void test_bmdma_short_prdt(void)
> assert_bit_clear(inb(IDE_BASE + reg_status), DF | ERR);
> }
>
> +static void test_bmdma_one_sector_short_prdt(void)
> +{
> + uint8_t status;
> +
> + /* Read 2 sectors but only give 1 sector in PRDT */
> + PrdtEntry prdt[] = {
> + {
> + .addr = 0,
> + .size = cpu_to_le32(0x200 | PRDT_EOT),
> + },
> + };
> +
> + /* Normal request */
> + status = send_dma_request(CMD_READ_DMA, 0, 2,
> + prdt, ARRAY_SIZE(prdt));
> + g_assert_cmphex(status, ==, 0);
> + assert_bit_clear(inb(IDE_BASE + reg_status), DF | ERR);
> +
> + /* Abort the request before it completes */
> + status = send_dma_request(CMD_READ_DMA | CMDF_ABORT, 0, 2,
> + prdt, ARRAY_SIZE(prdt));
> + g_assert_cmphex(status, ==, 0);
> + assert_bit_clear(inb(IDE_BASE + reg_status), DF | ERR);
> +}
> +
> static void test_bmdma_long_prdt(void)
> {
> uint8_t status;
> @@ -592,6 +617,8 @@ int main(int argc, char **argv)
> qtest_add_func("/ide/bmdma/setup", test_bmdma_setup);
> qtest_add_func("/ide/bmdma/simple_rw", test_bmdma_simple_rw);
> qtest_add_func("/ide/bmdma/short_prdt", test_bmdma_short_prdt);
> + qtest_add_func("/ide/bmdma/one_sector_short_prdt",
> + test_bmdma_one_sector_short_prdt);
> qtest_add_func("/ide/bmdma/long_prdt", test_bmdma_long_prdt);
> qtest_add_func("/ide/bmdma/no_busmaster", test_bmdma_no_busmaster);
> qtest_add_func("/ide/bmdma/teardown", test_bmdma_teardown);
>
I goofed and didn't stage this one. I'll batch it with the next bugfix I
send out, or will otherwise stage for 2.5.
Apologies.
--js
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-07-08 18:14 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-01 17:09 [Qemu-devel] [PATCH] qtest/ide: add another short PRDT test flavor Stefan Hajnoczi
2015-07-01 18:40 ` John Snow
2015-07-08 18:14 ` John Snow
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).