From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55546) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b2gC9-0004TB-Iq for qemu-devel@nongnu.org; Tue, 17 May 2016 10:42:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b2gC7-0005mR-J6 for qemu-devel@nongnu.org; Tue, 17 May 2016 10:42:00 -0400 From: Max Reitz Date: Tue, 17 May 2016 16:41:28 +0200 Message-Id: <1463496094-21608-4-git-send-email-mreitz@redhat.com> In-Reply-To: <1463496094-21608-1-git-send-email-mreitz@redhat.com> References: <1463496094-21608-1-git-send-email-mreitz@redhat.com> Subject: [Qemu-devel] [PATCH v4 3/9] tests: Drop BDS from test-throttle.c List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-block@nongnu.org Cc: qemu-devel@nongnu.org, Max Reitz , Kevin Wolf , Alberto Garcia Now that throttling has been moved to the BlockBackend level, we do not need to create a BDS along with the BB in the I/O throttling test. Signed-off-by: Max Reitz Reviewed-by: Kevin Wolf --- tests/test-throttle.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test-throttle.c b/tests/test-throttle.c index 5ec966c..d7fb0a6 100644 --- a/tests/test-throttle.c +++ b/tests/test-throttle.c @@ -578,9 +578,9 @@ static void test_groups(void) BlockBackend *blk1, *blk2, *blk3; BlockBackendPublic *blkp1, *blkp2, *blkp3; - blk1 = blk_new_with_bs(&error_abort); - blk2 = blk_new_with_bs(&error_abort); - blk3 = blk_new_with_bs(&error_abort); + blk1 = blk_new(&error_abort); + blk2 = blk_new(&error_abort); + blk3 = blk_new(&error_abort); blkp1 = blk_get_public(blk1); blkp2 = blk_get_public(blk2); -- 2.8.2