[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 5/8] block: drop duplicated slice extension code
From: |
Kevin Wolf |
Subject: |
[Qemu-devel] [PATCH 5/8] block: drop duplicated slice extension code |
Date: |
Fri, 5 Apr 2013 15:28:07 +0200 |
From: Stefan Hajnoczi <address@hidden>
The current slice is extended when an I/O request exceeds the limit.
There is no need to extend the slice every time we check a request.
Signed-off-by: Stefan Hajnoczi <address@hidden>
Tested-By: Benoit Canet <address@hidden>
Signed-off-by: Kevin Wolf <address@hidden>
---
block.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/block.c b/block.c
index 00eca27..aa16fc4 100644
--- a/block.c
+++ b/block.c
@@ -3867,10 +3867,7 @@ static bool bdrv_exceed_io_limits(BlockDriverState *bs,
int nb_sectors,
int bps_ret, iops_ret;
now = qemu_get_clock_ns(vm_clock);
- if ((bs->slice_start < now)
- && (bs->slice_end > now)) {
- bs->slice_end = now + BLOCK_IO_SLICE_TIME;
- } else {
+ if (now > bs->slice_end) {
bs->slice_start = now;
bs->slice_end = now + BLOCK_IO_SLICE_TIME;
memset(&bs->slice_submitted, 0, sizeof(bs->slice_submitted));
--
1.8.1.4
- [Qemu-devel] [PULL 0/8] Block patches, Kevin Wolf, 2013/04/05
- [Qemu-devel] [PATCH 2/8] usb-storage: Forward serial number to scsi-disk, Kevin Wolf, 2013/04/05
- [Qemu-devel] [PATCH 1/8] virtio-blk-x: fix configuration synchronization., Kevin Wolf, 2013/04/05
- [Qemu-devel] [PATCH 5/8] block: drop duplicated slice extension code,
Kevin Wolf <=
- [Qemu-devel] [PATCH 3/8] block: fix I/O throttling accounting blind spot, Kevin Wolf, 2013/04/05
- [Qemu-devel] [PATCH 6/8] block: clean up I/O throttling wait_time code, Kevin Wolf, 2013/04/05
- [Qemu-devel] [PATCH 8/8] qcow2: Fix L1 write error handling in qcow2_update_snapshot_refcount, Kevin Wolf, 2013/04/05
- [Qemu-devel] [PATCH 7/8] qcow2: Return real error in qcow2_update_snapshot_refcount, Kevin Wolf, 2013/04/05
- [Qemu-devel] [PATCH 4/8] block: keep I/O throttling slice time constant, Kevin Wolf, 2013/04/05