All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/1] mmc: block: Add write packing control
@ 2012-06-01 18:55 Maya Erez
  2012-06-01 18:55   ` Maya Erez
  0 siblings, 1 reply; 44+ messages in thread
From: Maya Erez @ 2012-06-01 18:55 UTC (permalink / raw)
  To: linux-mmc; +Cc: linux-arm-msm, Maya Erez

Our experiments showed that the write packing causes degradation of the read
throughput, in parallel read and write operations.
Since the read latency is critical for user experience we added a write packing control
mechanism that disables the write packing in case of read requests.
This will ensure that read requests latency is not increased due to long write packed commands.

The trigger for enabling the write packing is managing to pack several write requests.
The number of potential packed requests that will trigger the packing can be configured via sysfs.
The trigger for disabling the write packing is a fetch of a read request.

this patch is dependant in the following patches:
  [PATCH v6 1/3] mmc: core: Add packed command feature of eMMC4.5
  [PATCH v6 2/3] mmc: core: Support packed write command for eMMC4.5 device

Changes in v2:
    - Move the attribute for setting the packing enabling trigger to the block device
    - Add documentation of the new attribute

Maya Erez (1):
  mmc: block: Add write packing control

 Documentation/mmc/mmc-dev-attrs.txt |   17 ++++++
 drivers/mmc/card/block.c            |  100 ++++++++++++++++++++++++++++++++++-
 drivers/mmc/card/queue.c            |    8 +++
 drivers/mmc/card/queue.h            |    3 +
 include/linux/mmc/host.h            |    1 +
 5 files changed, 128 insertions(+), 1 deletions(-)

--
1.7.3.3
-- 
Sent by a consultant of the Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum.

^ permalink raw reply	[flat|nested] 44+ messages in thread

* [PATCH v2 1/1] mmc: block: Add write packing control
  2012-06-01 18:55 [PATCH v2 0/1] mmc: block: Add write packing control Maya Erez
@ 2012-06-01 18:55   ` Maya Erez
  0 siblings, 0 replies; 44+ messages in thread
From: Maya Erez @ 2012-06-01 18:55 UTC (permalink / raw)
  To: linux-mmc; +Cc: linux-arm-msm, Maya Erez, open list:DOCUMENTATION, open list

The write packing control will ensure that read requests latency is
not increased due to long write packed commands.

The trigger for enabling the write packing is managing to pack several
write requests. The number of potential packed requests that will trigger
the packing can be configured via sysfs by writing the required value to:
/sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
The trigger for disabling the write packing is fetching a read request.

---
 Documentation/mmc/mmc-dev-attrs.txt |   17 ++++++
 drivers/mmc/card/block.c            |  100 ++++++++++++++++++++++++++++++++++-
 drivers/mmc/card/queue.c            |    8 +++
 drivers/mmc/card/queue.h            |    3 +
 include/linux/mmc/host.h            |    1 +
 5 files changed, 128 insertions(+), 1 deletions(-)

diff --git a/Documentation/mmc/mmc-dev-attrs.txt b/Documentation/mmc/mmc-dev-attrs.txt
index 22ae844..08f7312 100644
--- a/Documentation/mmc/mmc-dev-attrs.txt
+++ b/Documentation/mmc/mmc-dev-attrs.txt
@@ -8,6 +8,23 @@ The following attributes are read/write.

 	force_ro		Enforce read-only access even if write protect switch is off.

+	num_wr_reqs_to_start_packing 	This attribute is used to determine
+	the trigger for activating the write packing, in case the write
+	packing control feature is enabled.
+
+	When the MMC manages to reach a point where num_wr_reqs_to_start_packing
+	write requests could be packed, it enables the write packing feature.
+	This allows us to start the write packing only when it is beneficial
+	and has minimum affect on the read latency.
+
+	The number of potential packed requests that will trigger the packing
+	can be configured via sysfs by writing the required value to:
+	/sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
+
+	The default value of num_wr_reqs_to_start_packing was determined by
+	running parallel lmdd write and lmdd read operations and calculating
+	the max number of packed writes requests.
+
 SD and MMC Device Attributes
 ============================

diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c
index 2785fd4..ef192fb 100644
--- a/drivers/mmc/card/block.c
+++ b/drivers/mmc/card/block.c
@@ -114,6 +114,7 @@ struct mmc_blk_data {
 	struct device_attribute force_ro;
 	struct device_attribute power_ro_lock;
 	int	area_type;
+	struct device_attribute num_wr_reqs_to_start_packing;
 };

 static DEFINE_MUTEX(open_lock);
@@ -281,6 +282,38 @@ out:
 	return ret;
 }

+static ssize_t
+num_wr_reqs_to_start_packing_show(struct device *dev,
+				  struct device_attribute *attr, char *buf)
+{
+	struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
+	int num_wr_reqs_to_start_packing;
+	int ret;
+
+	num_wr_reqs_to_start_packing = md->queue.num_wr_reqs_to_start_packing;
+
+	ret = snprintf(buf, PAGE_SIZE, "%d\n", num_wr_reqs_to_start_packing);
+
+	mmc_blk_put(md);
+	return ret;
+}
+
+static ssize_t
+num_wr_reqs_to_start_packing_store(struct device *dev,
+				 struct device_attribute *attr,
+				 const char *buf, size_t count)
+{
+	int value;
+	struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
+
+	sscanf(buf, "%d", &value);
+	if (value >= 0)
+		md->queue.num_wr_reqs_to_start_packing = value;
+
+	mmc_blk_put(md);
+	return count;
+}
+
 static int mmc_blk_open(struct block_device *bdev, fmode_t mode)
 {
 	struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk);
@@ -1313,6 +1346,48 @@ static void mmc_blk_rw_rq_prep(struct mmc_queue_req *mqrq,
 	mmc_queue_bounce_pre(mqrq);
 }

+static void mmc_blk_write_packing_control(struct mmc_queue *mq,
+					  struct request *req)
+{
+	struct mmc_host *host = mq->card->host;
+	int data_dir;
+
+	if (!(host->caps2 & MMC_CAP2_PACKED_WR))
+		return;
+
+	/*
+	 * In case the packing control is not supported by the host, it should
+	 * not have an effect on the write packing. Therefore we have to enable
+	 * the write packing
+	 */
+	if (!(host->caps2 & MMC_CAP2_PACKED_WR_CONTROL)) {
+		mq->wr_packing_enabled = true;
+		return;
+	}
+
+	if (!req || (req && (req->cmd_flags & REQ_FLUSH))) {
+		if (mq->num_of_potential_packed_wr_reqs >
+				mq->num_wr_reqs_to_start_packing)
+			mq->wr_packing_enabled = true;
+		return;
+	}
+
+	data_dir = rq_data_dir(req);
+
+	if (data_dir == READ) {
+		mq->num_of_potential_packed_wr_reqs = 0;
+		mq->wr_packing_enabled = false;
+		return;
+	} else if (data_dir == WRITE) {
+		mq->num_of_potential_packed_wr_reqs++;
+	}
+
+	if (mq->num_of_potential_packed_wr_reqs >
+			mq->num_wr_reqs_to_start_packing)
+		mq->wr_packing_enabled = true;
+
+}
+
 static u8 mmc_blk_prep_packed_list(struct mmc_queue *mq, struct request *req)
 {
 	struct request_queue *q = mq->queue;
@@ -1332,6 +1407,9 @@ static u8 mmc_blk_prep_packed_list(struct mmc_queue *mq, struct request *req)
 			!card->ext_csd.packed_event_en)
 		goto no_packed;

+	if (!mq->wr_packing_enabled)
+		goto no_packed;
+
 	if ((rq_data_dir(cur) == WRITE) &&
 			(card->host->caps2 & MMC_CAP2_PACKED_WR))
 		max_packed_rw = card->ext_csd.max_packed_writes;
@@ -1396,6 +1474,8 @@ static u8 mmc_blk_prep_packed_list(struct mmc_queue *mq, struct request *req)
 			break;
 		}

+		if (rq_data_dir(next) == WRITE)
+			mq->num_of_potential_packed_wr_reqs++;
 		list_add_tail(&next->queuelist, &mq->mqrq_cur->packed_list);
 		cur = next;
 		reqs++;
@@ -1780,7 +1860,9 @@ static int mmc_blk_issue_rq(struct mmc_queue *mq, struct request *req)
 		goto out;
 	}

-	if (req && req->cmd_flags & REQ_DISCARD) {
+	mmc_blk_write_packing_control(mq, req);
+
+	if (req && req->cmd_flags & REQ_DISCARD) {
 		/* complete ongoing async transfer before issuing discard */
 		if (card->host->areq)
 			mmc_blk_issue_rw_rq(mq, NULL);
@@ -2010,6 +2092,8 @@ static void mmc_blk_remove_req(struct mmc_blk_data *md)

 	if (md) {
 		card = md->queue.card;
+		device_remove_file(disk_to_dev(md->disk),
+				   &md->num_wr_reqs_to_start_packing);
 		if (md->disk->flags & GENHD_FL_UP) {
 			device_remove_file(disk_to_dev(md->disk), &md->force_ro);
 			if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) &&
@@ -2076,6 +2160,20 @@ static int mmc_add_disk(struct mmc_blk_data *md)
 		if (ret)
 			goto power_ro_lock_fail;
 	}
+
+	md->num_wr_reqs_to_start_packing.show =
+		num_wr_reqs_to_start_packing_show;
+	md->num_wr_reqs_to_start_packing.store =
+		num_wr_reqs_to_start_packing_store;
+	sysfs_attr_init(&md->num_wr_reqs_to_start_packing.attr);
+	md->num_wr_reqs_to_start_packing.attr.name =
+		"num_wr_reqs_to_start_packing";
+	md->num_wr_reqs_to_start_packing.attr.mode = S_IRUGO | S_IWUSR;
+	ret = device_create_file(disk_to_dev(md->disk),
+				 &md->num_wr_reqs_to_start_packing);
+	if (ret)
+		goto power_ro_lock_fail;
+
 	return ret;

 power_ro_lock_fail:
diff --git a/drivers/mmc/card/queue.c b/drivers/mmc/card/queue.c
index 165d85a..79ef91b 100644
--- a/drivers/mmc/card/queue.c
+++ b/drivers/mmc/card/queue.c
@@ -25,6 +25,13 @@
 #define MMC_QUEUE_SUSPENDED	(1 << 0)

 /*
+ * Based on benchmark tests the default num of requests to trigger the write
+ * packing was determined, to keep the read latency as low as possible and
+ * manage to keep the high write throughput.
+ */
+#define DEFAULT_NUM_REQS_TO_START_PACK 17
+
+/*
  * Prepare a MMC request. This just filters out odd stuff.
  */
 static int mmc_prep_request(struct request_queue *q, struct request *req)
@@ -181,6 +188,7 @@ int mmc_init_queue(struct mmc_queue *mq, struct mmc_card *card,
 	mq->mqrq_cur = mqrq_cur;
 	mq->mqrq_prev = mqrq_prev;
 	mq->queue->queuedata = mq;
+	mq->num_wr_reqs_to_start_packing = DEFAULT_NUM_REQS_TO_START_PACK;

 	blk_queue_prep_rq(mq->queue, mmc_prep_request);
 	queue_flag_set_unlocked(QUEUE_FLAG_NONROT, mq->queue);
diff --git a/drivers/mmc/card/queue.h b/drivers/mmc/card/queue.h
index d761bf1..6c29e0e 100644
--- a/drivers/mmc/card/queue.h
+++ b/drivers/mmc/card/queue.h
@@ -44,6 +44,9 @@ struct mmc_queue {
 	struct mmc_queue_req	mqrq[2];
 	struct mmc_queue_req	*mqrq_cur;
 	struct mmc_queue_req	*mqrq_prev;
+	bool			wr_packing_enabled;
+	int			num_of_potential_packed_wr_reqs;
+	int			num_wr_reqs_to_start_packing;
 };

 extern int mmc_init_queue(struct mmc_queue *, struct mmc_card *, spinlock_t *,
diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h
index 9d0d946..0eb6c7b 100644
--- a/include/linux/mmc/host.h
+++ b/include/linux/mmc/host.h
@@ -242,6 +242,7 @@ struct mmc_host {
 #define MMC_CAP2_PACKED_WR	(1 << 11)	/* Allow packed write */
 #define MMC_CAP2_PACKED_CMD	(MMC_CAP2_PACKED_RD | \
 				 MMC_CAP2_PACKED_WR) /* Allow packed commands */
+#define MMC_CAP2_PACKED_WR_CONTROL (1 << 12) /* Allow write packing control */

 	mmc_pm_flag_t		pm_caps;	/* supported pm features */
 	unsigned int        power_notify_type;
--
1.7.3.3
-- 
Sent by a consultant of the Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum.

^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [PATCH v2 1/1] mmc: block: Add write packing control
@ 2012-06-01 18:55   ` Maya Erez
  0 siblings, 0 replies; 44+ messages in thread
From: Maya Erez @ 2012-06-01 18:55 UTC (permalink / raw)
  To: linux-mmc; +Cc: linux-arm-msm, Maya Erez, open list:DOCUMENTATION, open list

The write packing control will ensure that read requests latency is
not increased due to long write packed commands.

The trigger for enabling the write packing is managing to pack several
write requests. The number of potential packed requests that will trigger
the packing can be configured via sysfs by writing the required value to:
/sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
The trigger for disabling the write packing is fetching a read request.

---
 Documentation/mmc/mmc-dev-attrs.txt |   17 ++++++
 drivers/mmc/card/block.c            |  100 ++++++++++++++++++++++++++++++++++-
 drivers/mmc/card/queue.c            |    8 +++
 drivers/mmc/card/queue.h            |    3 +
 include/linux/mmc/host.h            |    1 +
 5 files changed, 128 insertions(+), 1 deletions(-)

diff --git a/Documentation/mmc/mmc-dev-attrs.txt b/Documentation/mmc/mmc-dev-attrs.txt
index 22ae844..08f7312 100644
--- a/Documentation/mmc/mmc-dev-attrs.txt
+++ b/Documentation/mmc/mmc-dev-attrs.txt
@@ -8,6 +8,23 @@ The following attributes are read/write.

 	force_ro		Enforce read-only access even if write protect switch is off.

+	num_wr_reqs_to_start_packing 	This attribute is used to determine
+	the trigger for activating the write packing, in case the write
+	packing control feature is enabled.
+
+	When the MMC manages to reach a point where num_wr_reqs_to_start_packing
+	write requests could be packed, it enables the write packing feature.
+	This allows us to start the write packing only when it is beneficial
+	and has minimum affect on the read latency.
+
+	The number of potential packed requests that will trigger the packing
+	can be configured via sysfs by writing the required value to:
+	/sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
+
+	The default value of num_wr_reqs_to_start_packing was determined by
+	running parallel lmdd write and lmdd read operations and calculating
+	the max number of packed writes requests.
+
 SD and MMC Device Attributes
 ============================

diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c
index 2785fd4..ef192fb 100644
--- a/drivers/mmc/card/block.c
+++ b/drivers/mmc/card/block.c
@@ -114,6 +114,7 @@ struct mmc_blk_data {
 	struct device_attribute force_ro;
 	struct device_attribute power_ro_lock;
 	int	area_type;
+	struct device_attribute num_wr_reqs_to_start_packing;
 };

 static DEFINE_MUTEX(open_lock);
@@ -281,6 +282,38 @@ out:
 	return ret;
 }

+static ssize_t
+num_wr_reqs_to_start_packing_show(struct device *dev,
+				  struct device_attribute *attr, char *buf)
+{
+	struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
+	int num_wr_reqs_to_start_packing;
+	int ret;
+
+	num_wr_reqs_to_start_packing = md->queue.num_wr_reqs_to_start_packing;
+
+	ret = snprintf(buf, PAGE_SIZE, "%d\n", num_wr_reqs_to_start_packing);
+
+	mmc_blk_put(md);
+	return ret;
+}
+
+static ssize_t
+num_wr_reqs_to_start_packing_store(struct device *dev,
+				 struct device_attribute *attr,
+				 const char *buf, size_t count)
+{
+	int value;
+	struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
+
+	sscanf(buf, "%d", &value);
+	if (value >= 0)
+		md->queue.num_wr_reqs_to_start_packing = value;
+
+	mmc_blk_put(md);
+	return count;
+}
+
 static int mmc_blk_open(struct block_device *bdev, fmode_t mode)
 {
 	struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk);
@@ -1313,6 +1346,48 @@ static void mmc_blk_rw_rq_prep(struct mmc_queue_req *mqrq,
 	mmc_queue_bounce_pre(mqrq);
 }

+static void mmc_blk_write_packing_control(struct mmc_queue *mq,
+					  struct request *req)
+{
+	struct mmc_host *host = mq->card->host;
+	int data_dir;
+
+	if (!(host->caps2 & MMC_CAP2_PACKED_WR))
+		return;
+
+	/*
+	 * In case the packing control is not supported by the host, it should
+	 * not have an effect on the write packing. Therefore we have to enable
+	 * the write packing
+	 */
+	if (!(host->caps2 & MMC_CAP2_PACKED_WR_CONTROL)) {
+		mq->wr_packing_enabled = true;
+		return;
+	}
+
+	if (!req || (req && (req->cmd_flags & REQ_FLUSH))) {
+		if (mq->num_of_potential_packed_wr_reqs >
+				mq->num_wr_reqs_to_start_packing)
+			mq->wr_packing_enabled = true;
+		return;
+	}
+
+	data_dir = rq_data_dir(req);
+
+	if (data_dir == READ) {
+		mq->num_of_potential_packed_wr_reqs = 0;
+		mq->wr_packing_enabled = false;
+		return;
+	} else if (data_dir == WRITE) {
+		mq->num_of_potential_packed_wr_reqs++;
+	}
+
+	if (mq->num_of_potential_packed_wr_reqs >
+			mq->num_wr_reqs_to_start_packing)
+		mq->wr_packing_enabled = true;
+
+}
+
 static u8 mmc_blk_prep_packed_list(struct mmc_queue *mq, struct request *req)
 {
 	struct request_queue *q = mq->queue;
@@ -1332,6 +1407,9 @@ static u8 mmc_blk_prep_packed_list(struct mmc_queue *mq, struct request *req)
 			!card->ext_csd.packed_event_en)
 		goto no_packed;

+	if (!mq->wr_packing_enabled)
+		goto no_packed;
+
 	if ((rq_data_dir(cur) == WRITE) &&
 			(card->host->caps2 & MMC_CAP2_PACKED_WR))
 		max_packed_rw = card->ext_csd.max_packed_writes;
@@ -1396,6 +1474,8 @@ static u8 mmc_blk_prep_packed_list(struct mmc_queue *mq, struct request *req)
 			break;
 		}

+		if (rq_data_dir(next) == WRITE)
+			mq->num_of_potential_packed_wr_reqs++;
 		list_add_tail(&next->queuelist, &mq->mqrq_cur->packed_list);
 		cur = next;
 		reqs++;
@@ -1780,7 +1860,9 @@ static int mmc_blk_issue_rq(struct mmc_queue *mq, struct request *req)
 		goto out;
 	}

-	if (req && req->cmd_flags & REQ_DISCARD) {
+	mmc_blk_write_packing_control(mq, req);
+
+	if (req && req->cmd_flags & REQ_DISCARD) {
 		/* complete ongoing async transfer before issuing discard */
 		if (card->host->areq)
 			mmc_blk_issue_rw_rq(mq, NULL);
@@ -2010,6 +2092,8 @@ static void mmc_blk_remove_req(struct mmc_blk_data *md)

 	if (md) {
 		card = md->queue.card;
+		device_remove_file(disk_to_dev(md->disk),
+				   &md->num_wr_reqs_to_start_packing);
 		if (md->disk->flags & GENHD_FL_UP) {
 			device_remove_file(disk_to_dev(md->disk), &md->force_ro);
 			if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) &&
@@ -2076,6 +2160,20 @@ static int mmc_add_disk(struct mmc_blk_data *md)
 		if (ret)
 			goto power_ro_lock_fail;
 	}
+
+	md->num_wr_reqs_to_start_packing.show =
+		num_wr_reqs_to_start_packing_show;
+	md->num_wr_reqs_to_start_packing.store =
+		num_wr_reqs_to_start_packing_store;
+	sysfs_attr_init(&md->num_wr_reqs_to_start_packing.attr);
+	md->num_wr_reqs_to_start_packing.attr.name =
+		"num_wr_reqs_to_start_packing";
+	md->num_wr_reqs_to_start_packing.attr.mode = S_IRUGO | S_IWUSR;
+	ret = device_create_file(disk_to_dev(md->disk),
+				 &md->num_wr_reqs_to_start_packing);
+	if (ret)
+		goto power_ro_lock_fail;
+
 	return ret;

 power_ro_lock_fail:
diff --git a/drivers/mmc/card/queue.c b/drivers/mmc/card/queue.c
index 165d85a..79ef91b 100644
--- a/drivers/mmc/card/queue.c
+++ b/drivers/mmc/card/queue.c
@@ -25,6 +25,13 @@
 #define MMC_QUEUE_SUSPENDED	(1 << 0)

 /*
+ * Based on benchmark tests the default num of requests to trigger the write
+ * packing was determined, to keep the read latency as low as possible and
+ * manage to keep the high write throughput.
+ */
+#define DEFAULT_NUM_REQS_TO_START_PACK 17
+
+/*
  * Prepare a MMC request. This just filters out odd stuff.
  */
 static int mmc_prep_request(struct request_queue *q, struct request *req)
@@ -181,6 +188,7 @@ int mmc_init_queue(struct mmc_queue *mq, struct mmc_card *card,
 	mq->mqrq_cur = mqrq_cur;
 	mq->mqrq_prev = mqrq_prev;
 	mq->queue->queuedata = mq;
+	mq->num_wr_reqs_to_start_packing = DEFAULT_NUM_REQS_TO_START_PACK;

 	blk_queue_prep_rq(mq->queue, mmc_prep_request);
 	queue_flag_set_unlocked(QUEUE_FLAG_NONROT, mq->queue);
diff --git a/drivers/mmc/card/queue.h b/drivers/mmc/card/queue.h
index d761bf1..6c29e0e 100644
--- a/drivers/mmc/card/queue.h
+++ b/drivers/mmc/card/queue.h
@@ -44,6 +44,9 @@ struct mmc_queue {
 	struct mmc_queue_req	mqrq[2];
 	struct mmc_queue_req	*mqrq_cur;
 	struct mmc_queue_req	*mqrq_prev;
+	bool			wr_packing_enabled;
+	int			num_of_potential_packed_wr_reqs;
+	int			num_wr_reqs_to_start_packing;
 };

 extern int mmc_init_queue(struct mmc_queue *, struct mmc_card *, spinlock_t *,
diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h
index 9d0d946..0eb6c7b 100644
--- a/include/linux/mmc/host.h
+++ b/include/linux/mmc/host.h
@@ -242,6 +242,7 @@ struct mmc_host {
 #define MMC_CAP2_PACKED_WR	(1 << 11)	/* Allow packed write */
 #define MMC_CAP2_PACKED_CMD	(MMC_CAP2_PACKED_RD | \
 				 MMC_CAP2_PACKED_WR) /* Allow packed commands */
+#define MMC_CAP2_PACKED_WR_CONTROL (1 << 12) /* Allow write packing control */

 	mmc_pm_flag_t		pm_caps;	/* supported pm features */
 	unsigned int        power_notify_type;
--
1.7.3.3
-- 
Sent by a consultant of the Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum.

^ permalink raw reply related	[flat|nested] 44+ messages in thread

* RE: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-06-01 18:55   ` Maya Erez
  (?)
@ 2012-06-08  9:37   ` Seungwon Jeon
  2012-06-09 14:46     ` merez
  -1 siblings, 1 reply; 44+ messages in thread
From: Seungwon Jeon @ 2012-06-08  9:37 UTC (permalink / raw)
  To: 'Maya Erez', linux-mmc
  Cc: linux-arm-msm, 'open list:DOCUMENTATION', 'open list'

Hi,

How can we check the effect?
Do you have any result?
Please check the several comment below.

Maya Erez <merez@codeaurora.org> wrote:
> The write packing control will ensure that read requests latency is
> not increased due to long write packed commands.
> 
> The trigger for enabling the write packing is managing to pack several
> write requests. The number of potential packed requests that will trigger
> the packing can be configured via sysfs by writing the required value to:
> /sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
> The trigger for disabling the write packing is fetching a read request.
> 
> ---
>  Documentation/mmc/mmc-dev-attrs.txt |   17 ++++++
>  drivers/mmc/card/block.c            |  100 ++++++++++++++++++++++++++++++++++-
>  drivers/mmc/card/queue.c            |    8 +++
>  drivers/mmc/card/queue.h            |    3 +
>  include/linux/mmc/host.h            |    1 +
>  5 files changed, 128 insertions(+), 1 deletions(-)
> 
> diff --git a/Documentation/mmc/mmc-dev-attrs.txt b/Documentation/mmc/mmc-dev-attrs.txt
> index 22ae844..08f7312 100644
> --- a/Documentation/mmc/mmc-dev-attrs.txt
> +++ b/Documentation/mmc/mmc-dev-attrs.txt
> @@ -8,6 +8,23 @@ The following attributes are read/write.
> 
>  	force_ro		Enforce read-only access even if write protect switch is off.
> 
> +	num_wr_reqs_to_start_packing 	This attribute is used to determine
> +	the trigger for activating the write packing, in case the write
> +	packing control feature is enabled.
> +
> +	When the MMC manages to reach a point where num_wr_reqs_to_start_packing
> +	write requests could be packed, it enables the write packing feature.
> +	This allows us to start the write packing only when it is beneficial
> +	and has minimum affect on the read latency.
> +
> +	The number of potential packed requests that will trigger the packing
> +	can be configured via sysfs by writing the required value to:
> +	/sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
> +
> +	The default value of num_wr_reqs_to_start_packing was determined by
> +	running parallel lmdd write and lmdd read operations and calculating
> +	the max number of packed writes requests.
> +
>  SD and MMC Device Attributes
>  ============================
> 
> diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c
> index 2785fd4..ef192fb 100644
> --- a/drivers/mmc/card/block.c
> +++ b/drivers/mmc/card/block.c
> @@ -114,6 +114,7 @@ struct mmc_blk_data {
>  	struct device_attribute force_ro;
>  	struct device_attribute power_ro_lock;
>  	int	area_type;
> +	struct device_attribute num_wr_reqs_to_start_packing;
>  };
> 
>  static DEFINE_MUTEX(open_lock);
> @@ -281,6 +282,38 @@ out:
>  	return ret;
>  }
> 
> +static ssize_t
> +num_wr_reqs_to_start_packing_show(struct device *dev,
> +				  struct device_attribute *attr, char *buf)
> +{
> +	struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
> +	int num_wr_reqs_to_start_packing;
> +	int ret;
> +
> +	num_wr_reqs_to_start_packing = md->queue.num_wr_reqs_to_start_packing;
> +
> +	ret = snprintf(buf, PAGE_SIZE, "%d\n", num_wr_reqs_to_start_packing);
> +
> +	mmc_blk_put(md);
> +	return ret;
> +}
> +
> +static ssize_t
> +num_wr_reqs_to_start_packing_store(struct device *dev,
> +				 struct device_attribute *attr,
> +				 const char *buf, size_t count)
> +{
> +	int value;
> +	struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
> +
> +	sscanf(buf, "%d", &value);
> +	if (value >= 0)
> +		md->queue.num_wr_reqs_to_start_packing = value;
> +
> +	mmc_blk_put(md);
> +	return count;
> +}
> +
>  static int mmc_blk_open(struct block_device *bdev, fmode_t mode)
>  {
>  	struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk);
> @@ -1313,6 +1346,48 @@ static void mmc_blk_rw_rq_prep(struct mmc_queue_req *mqrq,
>  	mmc_queue_bounce_pre(mqrq);
>  }
> 
> +static void mmc_blk_write_packing_control(struct mmc_queue *mq,
> +					  struct request *req)
> +{
> +	struct mmc_host *host = mq->card->host;
> +	int data_dir;
> +
> +	if (!(host->caps2 & MMC_CAP2_PACKED_WR))
> +		return;
> +
> +	/*
> +	 * In case the packing control is not supported by the host, it should
> +	 * not have an effect on the write packing. Therefore we have to enable
> +	 * the write packing
> +	 */
> +	if (!(host->caps2 & MMC_CAP2_PACKED_WR_CONTROL)) {
> +		mq->wr_packing_enabled = true;
> +		return;
> +	}
> +
> +	if (!req || (req && (req->cmd_flags & REQ_FLUSH))) {
> +		if (mq->num_of_potential_packed_wr_reqs >
> +				mq->num_wr_reqs_to_start_packing)
> +			mq->wr_packing_enabled = true;
> +		return;
> +	}
> +
> +	data_dir = rq_data_dir(req);
> +
> +	if (data_dir == READ) {
> +		mq->num_of_potential_packed_wr_reqs = 0;
> +		mq->wr_packing_enabled = false;
> +		return;
> +	} else if (data_dir == WRITE) {
> +		mq->num_of_potential_packed_wr_reqs++;
> +	}
> +
> +	if (mq->num_of_potential_packed_wr_reqs >
> +			mq->num_wr_reqs_to_start_packing)
> +		mq->wr_packing_enabled = true;
Write Packing is available only if continuing write requests are over num_wr_reqs_to_start_packing?
That means individual request(1...17) will be issued with non-packing.
Could you explain your policy more?
> +
> +}
> +
>  static u8 mmc_blk_prep_packed_list(struct mmc_queue *mq, struct request *req)
>  {
>  	struct request_queue *q = mq->queue;
> @@ -1332,6 +1407,9 @@ static u8 mmc_blk_prep_packed_list(struct mmc_queue *mq, struct request *req)
>  			!card->ext_csd.packed_event_en)
>  		goto no_packed;
> 
> +	if (!mq->wr_packing_enabled)
> +		goto no_packed;
If wr_packing_enabled is set to true, several write requests can be packed.
We don't need to consider read request since packed write?

Thanks,
Seungwon Jeon
> +
>  	if ((rq_data_dir(cur) == WRITE) &&
>  			(card->host->caps2 & MMC_CAP2_PACKED_WR))
>  		max_packed_rw = card->ext_csd.max_packed_writes;
> @@ -1396,6 +1474,8 @@ static u8 mmc_blk_prep_packed_list(struct mmc_queue *mq, struct request *req)
>  			break;
>  		}
> 
> +		if (rq_data_dir(next) == WRITE)
> +			mq->num_of_potential_packed_wr_reqs++;
>  		list_add_tail(&next->queuelist, &mq->mqrq_cur->packed_list);
>  		cur = next;
>  		reqs++;
> @@ -1780,7 +1860,9 @@ static int mmc_blk_issue_rq(struct mmc_queue *mq, struct request *req)
>  		goto out;
>  	}
> 
> -	if (req && req->cmd_flags & REQ_DISCARD) {
> +	mmc_blk_write_packing_control(mq, req);
> +
> +	if (req && req->cmd_flags & REQ_DISCARD) {
>  		/* complete ongoing async transfer before issuing discard */
>  		if (card->host->areq)
>  			mmc_blk_issue_rw_rq(mq, NULL);
> @@ -2010,6 +2092,8 @@ static void mmc_blk_remove_req(struct mmc_blk_data *md)
> 
>  	if (md) {
>  		card = md->queue.card;
> +		device_remove_file(disk_to_dev(md->disk),
> +				   &md->num_wr_reqs_to_start_packing);
>  		if (md->disk->flags & GENHD_FL_UP) {
>  			device_remove_file(disk_to_dev(md->disk), &md->force_ro);
>  			if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) &&
> @@ -2076,6 +2160,20 @@ static int mmc_add_disk(struct mmc_blk_data *md)
>  		if (ret)
>  			goto power_ro_lock_fail;
>  	}
> +
> +	md->num_wr_reqs_to_start_packing.show =
> +		num_wr_reqs_to_start_packing_show;
> +	md->num_wr_reqs_to_start_packing.store =
> +		num_wr_reqs_to_start_packing_store;
> +	sysfs_attr_init(&md->num_wr_reqs_to_start_packing.attr);
> +	md->num_wr_reqs_to_start_packing.attr.name =
> +		"num_wr_reqs_to_start_packing";
> +	md->num_wr_reqs_to_start_packing.attr.mode = S_IRUGO | S_IWUSR;
> +	ret = device_create_file(disk_to_dev(md->disk),
> +				 &md->num_wr_reqs_to_start_packing);
> +	if (ret)
> +		goto power_ro_lock_fail;
> +
>  	return ret;
> 
>  power_ro_lock_fail:
> diff --git a/drivers/mmc/card/queue.c b/drivers/mmc/card/queue.c
> index 165d85a..79ef91b 100644
> --- a/drivers/mmc/card/queue.c
> +++ b/drivers/mmc/card/queue.c
> @@ -25,6 +25,13 @@
>  #define MMC_QUEUE_SUSPENDED	(1 << 0)
> 
>  /*
> + * Based on benchmark tests the default num of requests to trigger the write
> + * packing was determined, to keep the read latency as low as possible and
> + * manage to keep the high write throughput.
> + */
> +#define DEFAULT_NUM_REQS_TO_START_PACK 17
> +
> +/*
>   * Prepare a MMC request. This just filters out odd stuff.
>   */
>  static int mmc_prep_request(struct request_queue *q, struct request *req)
> @@ -181,6 +188,7 @@ int mmc_init_queue(struct mmc_queue *mq, struct mmc_card *card,
>  	mq->mqrq_cur = mqrq_cur;
>  	mq->mqrq_prev = mqrq_prev;
>  	mq->queue->queuedata = mq;
> +	mq->num_wr_reqs_to_start_packing = DEFAULT_NUM_REQS_TO_START_PACK;
> 
>  	blk_queue_prep_rq(mq->queue, mmc_prep_request);
>  	queue_flag_set_unlocked(QUEUE_FLAG_NONROT, mq->queue);
> diff --git a/drivers/mmc/card/queue.h b/drivers/mmc/card/queue.h
> index d761bf1..6c29e0e 100644
> --- a/drivers/mmc/card/queue.h
> +++ b/drivers/mmc/card/queue.h
> @@ -44,6 +44,9 @@ struct mmc_queue {
>  	struct mmc_queue_req	mqrq[2];
>  	struct mmc_queue_req	*mqrq_cur;
>  	struct mmc_queue_req	*mqrq_prev;
> +	bool			wr_packing_enabled;
> +	int			num_of_potential_packed_wr_reqs;
> +	int			num_wr_reqs_to_start_packing;
>  };
> 
>  extern int mmc_init_queue(struct mmc_queue *, struct mmc_card *, spinlock_t *,
> diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h
> index 9d0d946..0eb6c7b 100644
> --- a/include/linux/mmc/host.h
> +++ b/include/linux/mmc/host.h
> @@ -242,6 +242,7 @@ struct mmc_host {
>  #define MMC_CAP2_PACKED_WR	(1 << 11)	/* Allow packed write */
>  #define MMC_CAP2_PACKED_CMD	(MMC_CAP2_PACKED_RD | \
>  				 MMC_CAP2_PACKED_WR) /* Allow packed commands */
> +#define MMC_CAP2_PACKED_WR_CONTROL (1 << 12) /* Allow write packing control */
> 
>  	mmc_pm_flag_t		pm_caps;	/* supported pm features */
>  	unsigned int        power_notify_type;
> --
> 1.7.3.3
> --
> Sent by a consultant of the Qualcomm Innovation Center, Inc.
> The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum.
> --
> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html


^ permalink raw reply	[flat|nested] 44+ messages in thread

* RE: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-06-08  9:37   ` Seungwon Jeon
@ 2012-06-09 14:46     ` merez
  2012-06-11  9:10       ` Seungwon Jeon
  2012-06-11 17:19       ` S, Venkatraman
  0 siblings, 2 replies; 44+ messages in thread
From: merez @ 2012-06-09 14:46 UTC (permalink / raw)
  To: Seungwon Jeon
  Cc: 'Maya Erez', linux-mmc, linux-arm-msm, DOCUMENTATION',
	'open list'


> Hi,
>
> How can we check the effect?
> Do you have any result?
We ran parallel lmdd read and write operations and found out that the
write packing causes the read throughput to drop from 24MB/s to 12MB/s.
The write packing control managed to increase the read throughput back to
the original value.
We also examined "real life" scenarios, such as performing a big push
operation in parallel to launching several applications. We measured the
read latency and found out that with the write packing control the worst
case of the read latency was smaller.

> Please check the several comment below.
>
> Maya Erez <merez@codeaurora.org> wrote:
>> The write packing control will ensure that read requests latency is
>> not increased due to long write packed commands.
>>
>> The trigger for enabling the write packing is managing to pack several
>> write requests. The number of potential packed requests that will
>> trigger
>> the packing can be configured via sysfs by writing the required value
>> to:
>> /sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
>> The trigger for disabling the write packing is fetching a read request.
>>
>> ---
>>  Documentation/mmc/mmc-dev-attrs.txt |   17 ++++++
>>  drivers/mmc/card/block.c            |  100
>> ++++++++++++++++++++++++++++++++++-
>>  drivers/mmc/card/queue.c            |    8 +++
>>  drivers/mmc/card/queue.h            |    3 +
>>  include/linux/mmc/host.h            |    1 +
>>  5 files changed, 128 insertions(+), 1 deletions(-)
>>
>> diff --git a/Documentation/mmc/mmc-dev-attrs.txt
>> b/Documentation/mmc/mmc-dev-attrs.txt
>> index 22ae844..08f7312 100644
>> --- a/Documentation/mmc/mmc-dev-attrs.txt
>> +++ b/Documentation/mmc/mmc-dev-attrs.txt
>> @@ -8,6 +8,23 @@ The following attributes are read/write.
>>
>>  	force_ro		Enforce read-only access even if write protect switch is
>> off.
>>
>> +	num_wr_reqs_to_start_packing 	This attribute is used to determine
>> +	the trigger for activating the write packing, in case the write
>> +	packing control feature is enabled.
>> +
>> +	When the MMC manages to reach a point where
>> num_wr_reqs_to_start_packing
>> +	write requests could be packed, it enables the write packing feature.
>> +	This allows us to start the write packing only when it is beneficial
>> +	and has minimum affect on the read latency.
>> +
>> +	The number of potential packed requests that will trigger the packing
>> +	can be configured via sysfs by writing the required value to:
>> +	/sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
>> +
>> +	The default value of num_wr_reqs_to_start_packing was determined by
>> +	running parallel lmdd write and lmdd read operations and calculating
>> +	the max number of packed writes requests.
>> +
>>  SD and MMC Device Attributes
>>  ============================
>>
>> diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c
>> index 2785fd4..ef192fb 100644
>> --- a/drivers/mmc/card/block.c
>> +++ b/drivers/mmc/card/block.c
>> @@ -114,6 +114,7 @@ struct mmc_blk_data {
>>  	struct device_attribute force_ro;
>>  	struct device_attribute power_ro_lock;
>>  	int	area_type;
>> +	struct device_attribute num_wr_reqs_to_start_packing;
>>  };
>>
>>  static DEFINE_MUTEX(open_lock);
>> @@ -281,6 +282,38 @@ out:
>>  	return ret;
>>  }
>>
>> +static ssize_t
>> +num_wr_reqs_to_start_packing_show(struct device *dev,
>> +				  struct device_attribute *attr, char *buf)
>> +{
>> +	struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
>> +	int num_wr_reqs_to_start_packing;
>> +	int ret;
>> +
>> +	num_wr_reqs_to_start_packing = md->queue.num_wr_reqs_to_start_packing;
>> +
>> +	ret = snprintf(buf, PAGE_SIZE, "%d\n", num_wr_reqs_to_start_packing);
>> +
>> +	mmc_blk_put(md);
>> +	return ret;
>> +}
>> +
>> +static ssize_t
>> +num_wr_reqs_to_start_packing_store(struct device *dev,
>> +				 struct device_attribute *attr,
>> +				 const char *buf, size_t count)
>> +{
>> +	int value;
>> +	struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
>> +
>> +	sscanf(buf, "%d", &value);
>> +	if (value >= 0)
>> +		md->queue.num_wr_reqs_to_start_packing = value;
>> +
>> +	mmc_blk_put(md);
>> +	return count;
>> +}
>> +
>>  static int mmc_blk_open(struct block_device *bdev, fmode_t mode)
>>  {
>>  	struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk);
>> @@ -1313,6 +1346,48 @@ static void mmc_blk_rw_rq_prep(struct
>> mmc_queue_req *mqrq,
>>  	mmc_queue_bounce_pre(mqrq);
>>  }
>>
>> +static void mmc_blk_write_packing_control(struct mmc_queue *mq,
>> +					  struct request *req)
>> +{
>> +	struct mmc_host *host = mq->card->host;
>> +	int data_dir;
>> +
>> +	if (!(host->caps2 & MMC_CAP2_PACKED_WR))
>> +		return;
>> +
>> +	/*
>> +	 * In case the packing control is not supported by the host, it should
>> +	 * not have an effect on the write packing. Therefore we have to
>> enable
>> +	 * the write packing
>> +	 */
>> +	if (!(host->caps2 & MMC_CAP2_PACKED_WR_CONTROL)) {
>> +		mq->wr_packing_enabled = true;
>> +		return;
>> +	}
>> +
>> +	if (!req || (req && (req->cmd_flags & REQ_FLUSH))) {
>> +		if (mq->num_of_potential_packed_wr_reqs >
>> +				mq->num_wr_reqs_to_start_packing)
>> +			mq->wr_packing_enabled = true;
>> +		return;
>> +	}
>> +
>> +	data_dir = rq_data_dir(req);
>> +
>> +	if (data_dir == READ) {
>> +		mq->num_of_potential_packed_wr_reqs = 0;
>> +		mq->wr_packing_enabled = false;
>> +		return;
>> +	} else if (data_dir == WRITE) {
>> +		mq->num_of_potential_packed_wr_reqs++;
>> +	}
>> +
>> +	if (mq->num_of_potential_packed_wr_reqs >
>> +			mq->num_wr_reqs_to_start_packing)
>> +		mq->wr_packing_enabled = true;
> Write Packing is available only if continuing write requests are over
> num_wr_reqs_to_start_packing?
> That means individual request(1...17) will be issued with non-packing.
> Could you explain your policy more?
We try to identify the case where there is parallel read and write
operations. In our experiments we found out that the number of write
requests between read requests in parallel read and write operations
doesn't exceed 17 requests. Therefore, we can assume that fetching more
than 17 write requests without hitting a read request can indicate that
there is no read activity.
You are right that this affects the write throughput a bit but the goal of
this algorithm is to make sure the read throughput and latency are not
decreased due to write. If this is not the desired result, this algorithm
can be disabled.
>> +
>> +}
>> +
>>  static u8 mmc_blk_prep_packed_list(struct mmc_queue *mq, struct request
>> *req)
>>  {
>>  	struct request_queue *q = mq->queue;
>> @@ -1332,6 +1407,9 @@ static u8 mmc_blk_prep_packed_list(struct
>> mmc_queue *mq, struct request *req)
>>  			!card->ext_csd.packed_event_en)
>>  		goto no_packed;
>>
>> +	if (!mq->wr_packing_enabled)
>> +		goto no_packed;
> If wr_packing_enabled is set to true, several write requests can be
> packed.
> We don't need to consider read request since packed write?
I'm not sure I understand the question. We check if there was a read
request in the mmc_blk_write_packing_control, and in such a case set
mq->wr_packing_enabled to false.
If I didn't answer the question, please explain it again.

>
> Thanks,
> Seungwon Jeon

Thanks,
Maya Erez
--
Sent by a consultant of the Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum

^ permalink raw reply	[flat|nested] 44+ messages in thread

* RE: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-06-09 14:46     ` merez
@ 2012-06-11  9:10       ` Seungwon Jeon
  2012-06-11 13:55         ` merez
  2012-06-11 17:19       ` S, Venkatraman
  1 sibling, 1 reply; 44+ messages in thread
From: Seungwon Jeon @ 2012-06-11  9:10 UTC (permalink / raw)
  To: 'Maya Erez'
  Cc: linux-mmc, linux-arm-msm, 'DOCUMENTATION'',
	'open list'

Maya Erez <merez@codeaurora.org> wrote:
> 
> > Hi,
> >
> > How can we check the effect?
> > Do you have any result?
> We ran parallel lmdd read and write operations and found out that the
> write packing causes the read throughput to drop from 24MB/s to 12MB/s.
> The write packing control managed to increase the read throughput back to
> the original value.
> We also examined "real life" scenarios, such as performing a big push
> operation in parallel to launching several applications. We measured the
> read latency and found out that with the write packing control the worst
> case of the read latency was smaller.
> 
> > Please check the several comment below.
> >
> > Maya Erez <merez@codeaurora.org> wrote:
> >> The write packing control will ensure that read requests latency is
> >> not increased due to long write packed commands.
> >>
> >> The trigger for enabling the write packing is managing to pack several
> >> write requests. The number of potential packed requests that will
> >> trigger
> >> the packing can be configured via sysfs by writing the required value
> >> to:
> >> /sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
> >> The trigger for disabling the write packing is fetching a read request.
> >>
> >> ---
> >>  Documentation/mmc/mmc-dev-attrs.txt |   17 ++++++
> >>  drivers/mmc/card/block.c            |  100
> >> ++++++++++++++++++++++++++++++++++-
> >>  drivers/mmc/card/queue.c            |    8 +++
> >>  drivers/mmc/card/queue.h            |    3 +
> >>  include/linux/mmc/host.h            |    1 +
> >>  5 files changed, 128 insertions(+), 1 deletions(-)
> >>
> >> diff --git a/Documentation/mmc/mmc-dev-attrs.txt
> >> b/Documentation/mmc/mmc-dev-attrs.txt
> >> index 22ae844..08f7312 100644
> >> --- a/Documentation/mmc/mmc-dev-attrs.txt
> >> +++ b/Documentation/mmc/mmc-dev-attrs.txt
> >> @@ -8,6 +8,23 @@ The following attributes are read/write.
> >>
> >>  	force_ro		Enforce read-only access even if write protect switch is
> >> off.
> >>
> >> +	num_wr_reqs_to_start_packing 	This attribute is used to determine
> >> +	the trigger for activating the write packing, in case the write
> >> +	packing control feature is enabled.
> >> +
> >> +	When the MMC manages to reach a point where
> >> num_wr_reqs_to_start_packing
> >> +	write requests could be packed, it enables the write packing feature.
> >> +	This allows us to start the write packing only when it is beneficial
> >> +	and has minimum affect on the read latency.
> >> +
> >> +	The number of potential packed requests that will trigger the packing
> >> +	can be configured via sysfs by writing the required value to:
> >> +	/sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
> >> +
> >> +	The default value of num_wr_reqs_to_start_packing was determined by
> >> +	running parallel lmdd write and lmdd read operations and calculating
> >> +	the max number of packed writes requests.
> >> +
> >>  SD and MMC Device Attributes
> >>  ============================
> >>
> >> diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c
> >> index 2785fd4..ef192fb 100644
> >> --- a/drivers/mmc/card/block.c
> >> +++ b/drivers/mmc/card/block.c
> >> @@ -114,6 +114,7 @@ struct mmc_blk_data {
> >>  	struct device_attribute force_ro;
> >>  	struct device_attribute power_ro_lock;
> >>  	int	area_type;
> >> +	struct device_attribute num_wr_reqs_to_start_packing;
> >>  };
> >>
> >>  static DEFINE_MUTEX(open_lock);
> >> @@ -281,6 +282,38 @@ out:
> >>  	return ret;
> >>  }
> >>
> >> +static ssize_t
> >> +num_wr_reqs_to_start_packing_show(struct device *dev,
> >> +				  struct device_attribute *attr, char *buf)
> >> +{
> >> +	struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
> >> +	int num_wr_reqs_to_start_packing;
> >> +	int ret;
> >> +
> >> +	num_wr_reqs_to_start_packing = md->queue.num_wr_reqs_to_start_packing;
> >> +
> >> +	ret = snprintf(buf, PAGE_SIZE, "%d\n", num_wr_reqs_to_start_packing);
> >> +
> >> +	mmc_blk_put(md);
> >> +	return ret;
> >> +}
> >> +
> >> +static ssize_t
> >> +num_wr_reqs_to_start_packing_store(struct device *dev,
> >> +				 struct device_attribute *attr,
> >> +				 const char *buf, size_t count)
> >> +{
> >> +	int value;
> >> +	struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
> >> +
> >> +	sscanf(buf, "%d", &value);
> >> +	if (value >= 0)
> >> +		md->queue.num_wr_reqs_to_start_packing = value;
> >> +
> >> +	mmc_blk_put(md);
> >> +	return count;
> >> +}
> >> +
> >>  static int mmc_blk_open(struct block_device *bdev, fmode_t mode)
> >>  {
> >>  	struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk);
> >> @@ -1313,6 +1346,48 @@ static void mmc_blk_rw_rq_prep(struct
> >> mmc_queue_req *mqrq,
> >>  	mmc_queue_bounce_pre(mqrq);
> >>  }
> >>
> >> +static void mmc_blk_write_packing_control(struct mmc_queue *mq,
> >> +					  struct request *req)
> >> +{
> >> +	struct mmc_host *host = mq->card->host;
> >> +	int data_dir;
> >> +
> >> +	if (!(host->caps2 & MMC_CAP2_PACKED_WR))
> >> +		return;
> >> +
> >> +	/*
> >> +	 * In case the packing control is not supported by the host, it should
> >> +	 * not have an effect on the write packing. Therefore we have to
> >> enable
> >> +	 * the write packing
> >> +	 */
> >> +	if (!(host->caps2 & MMC_CAP2_PACKED_WR_CONTROL)) {
> >> +		mq->wr_packing_enabled = true;
> >> +		return;
> >> +	}
> >> +
> >> +	if (!req || (req && (req->cmd_flags & REQ_FLUSH))) {
> >> +		if (mq->num_of_potential_packed_wr_reqs >
> >> +				mq->num_wr_reqs_to_start_packing)
> >> +			mq->wr_packing_enabled = true;
> >> +		return;
> >> +	}
> >> +
> >> +	data_dir = rq_data_dir(req);
> >> +
> >> +	if (data_dir == READ) {
> >> +		mq->num_of_potential_packed_wr_reqs = 0;
> >> +		mq->wr_packing_enabled = false;
> >> +		return;
> >> +	} else if (data_dir == WRITE) {
> >> +		mq->num_of_potential_packed_wr_reqs++;
> >> +	}
> >> +
> >> +	if (mq->num_of_potential_packed_wr_reqs >
> >> +			mq->num_wr_reqs_to_start_packing)
> >> +		mq->wr_packing_enabled = true;
> > Write Packing is available only if continuing write requests are over
> > num_wr_reqs_to_start_packing?
> > That means individual request(1...17) will be issued with non-packing.
> > Could you explain your policy more?
> We try to identify the case where there is parallel read and write
> operations. In our experiments we found out that the number of write
> requests between read requests in parallel read and write operations
> doesn't exceed 17 requests. Therefore, we can assume that fetching more
> than 17 write requests without hitting a read request can indicate that
> there is no read activity.
We can apply this experiment regardless I/O scheduler?
Which I/O scheduler was used with this experiment?

> You are right that this affects the write throughput a bit but the goal of
> this algorithm is to make sure the read throughput and latency are not
> decreased due to write. If this is not the desired result, this algorithm
> can be disabled.
> >> +
> >> +}
> >> +
> >>  static u8 mmc_blk_prep_packed_list(struct mmc_queue *mq, struct request
> >> *req)
> >>  {
> >>  	struct request_queue *q = mq->queue;
> >> @@ -1332,6 +1407,9 @@ static u8 mmc_blk_prep_packed_list(struct
> >> mmc_queue *mq, struct request *req)
> >>  			!card->ext_csd.packed_event_en)
> >>  		goto no_packed;
> >>
> >> +	if (!mq->wr_packing_enabled)
> >> +		goto no_packed;
> > If wr_packing_enabled is set to true, several write requests can be
> > packed.
> > We don't need to consider read request since packed write?
> I'm not sure I understand the question. We check if there was a read
> request in the mmc_blk_write_packing_control, and in such a case set
> mq->wr_packing_enabled to false.
> If I didn't answer the question, please explain it again.
Packed write can be possible after exceeding 17 requests.
Is it assured that read request doesn't follow immediately after packed write?
I wonder this case.

Thanks,
Seungwon Jeon.
> 
> >
> > Thanks,
> > Seungwon Jeon
> 
> Thanks,
> Maya Erez
> --
> Sent by a consultant of the Qualcomm Innovation Center, Inc.
> Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html


^ permalink raw reply	[flat|nested] 44+ messages in thread

* RE: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-06-11  9:10       ` Seungwon Jeon
@ 2012-06-11 13:55         ` merez
  2012-06-11 14:39           ` S, Venkatraman
  0 siblings, 1 reply; 44+ messages in thread
From: merez @ 2012-06-11 13:55 UTC (permalink / raw)
  To: Seungwon Jeon
  Cc: 'Maya Erez',
	linux-mmc, linux-arm-msm, 'DOCUMENTATION'',
	'open list'


> Maya Erez <merez@codeaurora.org> wrote:
>>
>> > Hi,
>> >
>> > How can we check the effect?
>> > Do you have any result?
>> We ran parallel lmdd read and write operations and found out that the
>> write packing causes the read throughput to drop from 24MB/s to 12MB/s.
>> The write packing control managed to increase the read throughput back
>> to
>> the original value.
>> We also examined "real life" scenarios, such as performing a big push
>> operation in parallel to launching several applications. We measured the
>> read latency and found out that with the write packing control the worst
>> case of the read latency was smaller.
>>
>> > Please check the several comment below.
>> >
>> > Maya Erez <merez@codeaurora.org> wrote:
>> >> The write packing control will ensure that read requests latency is
>> >> not increased due to long write packed commands.
>> >>
>> >> The trigger for enabling the write packing is managing to pack
>> several
>> >> write requests. The number of potential packed requests that will
>> >> trigger
>> >> the packing can be configured via sysfs by writing the required value
>> >> to:
>> >> /sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
>> >> The trigger for disabling the write packing is fetching a read
>> request.
>> >>
>> >> ---
>> >>  Documentation/mmc/mmc-dev-attrs.txt |   17 ++++++
>> >>  drivers/mmc/card/block.c            |  100
>> >> ++++++++++++++++++++++++++++++++++-
>> >>  drivers/mmc/card/queue.c            |    8 +++
>> >>  drivers/mmc/card/queue.h            |    3 +
>> >>  include/linux/mmc/host.h            |    1 +
>> >>  5 files changed, 128 insertions(+), 1 deletions(-)
>> >>
>> >> diff --git a/Documentation/mmc/mmc-dev-attrs.txt
>> >> b/Documentation/mmc/mmc-dev-attrs.txt
>> >> index 22ae844..08f7312 100644
>> >> --- a/Documentation/mmc/mmc-dev-attrs.txt
>> >> +++ b/Documentation/mmc/mmc-dev-attrs.txt
>> >> @@ -8,6 +8,23 @@ The following attributes are read/write.
>> >>
>> >>  	force_ro		Enforce read-only access even if write protect switch is
>> >> off.
>> >>
>> >> +	num_wr_reqs_to_start_packing 	This attribute is used to determine
>> >> +	the trigger for activating the write packing, in case the write
>> >> +	packing control feature is enabled.
>> >> +
>> >> +	When the MMC manages to reach a point where
>> >> num_wr_reqs_to_start_packing
>> >> +	write requests could be packed, it enables the write packing
>> feature.
>> >> +	This allows us to start the write packing only when it is
>> beneficial
>> >> +	and has minimum affect on the read latency.
>> >> +
>> >> +	The number of potential packed requests that will trigger the
>> packing
>> >> +	can be configured via sysfs by writing the required value to:
>> >> +	/sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
>> >> +
>> >> +	The default value of num_wr_reqs_to_start_packing was determined by
>> >> +	running parallel lmdd write and lmdd read operations and
>> calculating
>> >> +	the max number of packed writes requests.
>> >> +
>> >>  SD and MMC Device Attributes
>> >>  ============================
>> >>
>> >> diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c
>> >> index 2785fd4..ef192fb 100644
>> >> --- a/drivers/mmc/card/block.c
>> >> +++ b/drivers/mmc/card/block.c
>> >> @@ -114,6 +114,7 @@ struct mmc_blk_data {
>> >>  	struct device_attribute force_ro;
>> >>  	struct device_attribute power_ro_lock;
>> >>  	int	area_type;
>> >> +	struct device_attribute num_wr_reqs_to_start_packing;
>> >>  };
>> >>
>> >>  static DEFINE_MUTEX(open_lock);
>> >> @@ -281,6 +282,38 @@ out:
>> >>  	return ret;
>> >>  }
>> >>
>> >> +static ssize_t
>> >> +num_wr_reqs_to_start_packing_show(struct device *dev,
>> >> +				  struct device_attribute *attr, char *buf)
>> >> +{
>> >> +	struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
>> >> +	int num_wr_reqs_to_start_packing;
>> >> +	int ret;
>> >> +
>> >> +	num_wr_reqs_to_start_packing =
>> md->queue.num_wr_reqs_to_start_packing;
>> >> +
>> >> +	ret = snprintf(buf, PAGE_SIZE, "%d\n",
>> num_wr_reqs_to_start_packing);
>> >> +
>> >> +	mmc_blk_put(md);
>> >> +	return ret;
>> >> +}
>> >> +
>> >> +static ssize_t
>> >> +num_wr_reqs_to_start_packing_store(struct device *dev,
>> >> +				 struct device_attribute *attr,
>> >> +				 const char *buf, size_t count)
>> >> +{
>> >> +	int value;
>> >> +	struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
>> >> +
>> >> +	sscanf(buf, "%d", &value);
>> >> +	if (value >= 0)
>> >> +		md->queue.num_wr_reqs_to_start_packing = value;
>> >> +
>> >> +	mmc_blk_put(md);
>> >> +	return count;
>> >> +}
>> >> +
>> >>  static int mmc_blk_open(struct block_device *bdev, fmode_t mode)
>> >>  {
>> >>  	struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk);
>> >> @@ -1313,6 +1346,48 @@ static void mmc_blk_rw_rq_prep(struct
>> >> mmc_queue_req *mqrq,
>> >>  	mmc_queue_bounce_pre(mqrq);
>> >>  }
>> >>
>> >> +static void mmc_blk_write_packing_control(struct mmc_queue *mq,
>> >> +					  struct request *req)
>> >> +{
>> >> +	struct mmc_host *host = mq->card->host;
>> >> +	int data_dir;
>> >> +
>> >> +	if (!(host->caps2 & MMC_CAP2_PACKED_WR))
>> >> +		return;
>> >> +
>> >> +	/*
>> >> +	 * In case the packing control is not supported by the host, it
>> should
>> >> +	 * not have an effect on the write packing. Therefore we have to
>> >> enable
>> >> +	 * the write packing
>> >> +	 */
>> >> +	if (!(host->caps2 & MMC_CAP2_PACKED_WR_CONTROL)) {
>> >> +		mq->wr_packing_enabled = true;
>> >> +		return;
>> >> +	}
>> >> +
>> >> +	if (!req || (req && (req->cmd_flags & REQ_FLUSH))) {
>> >> +		if (mq->num_of_potential_packed_wr_reqs >
>> >> +				mq->num_wr_reqs_to_start_packing)
>> >> +			mq->wr_packing_enabled = true;
>> >> +		return;
>> >> +	}
>> >> +
>> >> +	data_dir = rq_data_dir(req);
>> >> +
>> >> +	if (data_dir == READ) {
>> >> +		mq->num_of_potential_packed_wr_reqs = 0;
>> >> +		mq->wr_packing_enabled = false;
>> >> +		return;
>> >> +	} else if (data_dir == WRITE) {
>> >> +		mq->num_of_potential_packed_wr_reqs++;
>> >> +	}
>> >> +
>> >> +	if (mq->num_of_potential_packed_wr_reqs >
>> >> +			mq->num_wr_reqs_to_start_packing)
>> >> +		mq->wr_packing_enabled = true;
>> > Write Packing is available only if continuing write requests are over
>> > num_wr_reqs_to_start_packing?
>> > That means individual request(1...17) will be issued with non-packing.
>> > Could you explain your policy more?
>> We try to identify the case where there is parallel read and write
>> operations. In our experiments we found out that the number of write
>> requests between read requests in parallel read and write operations
>> doesn't exceed 17 requests. Therefore, we can assume that fetching more
>> than 17 write requests without hitting a read request can indicate that
>> there is no read activity.
> We can apply this experiment regardless I/O scheduler?
> Which I/O scheduler was used with this experiment?
The experiment was performed with the CFQ scheduler. Since the deadline
uses a batch of 16 requests it should also fit the deadline scheduler.
In case another value is required, this value can be changed via sysfs.
>
>> You are right that this affects the write throughput a bit but the goal
>> of
>> this algorithm is to make sure the read throughput and latency are not
>> decreased due to write. If this is not the desired result, this
>> algorithm
>> can be disabled.
>> >> +
>> >> +}
>> >> +
>> >>  static u8 mmc_blk_prep_packed_list(struct mmc_queue *mq, struct
>> request
>> >> *req)
>> >>  {
>> >>  	struct request_queue *q = mq->queue;
>> >> @@ -1332,6 +1407,9 @@ static u8 mmc_blk_prep_packed_list(struct
>> >> mmc_queue *mq, struct request *req)
>> >>  			!card->ext_csd.packed_event_en)
>> >>  		goto no_packed;
>> >>
>> >> +	if (!mq->wr_packing_enabled)
>> >> +		goto no_packed;
>> > If wr_packing_enabled is set to true, several write requests can be
>> > packed.
>> > We don't need to consider read request since packed write?
>> I'm not sure I understand the question. We check if there was a read
>> request in the mmc_blk_write_packing_control, and in such a case set
>> mq->wr_packing_enabled to false.
>> If I didn't answer the question, please explain it again.
> Packed write can be possible after exceeding 17 requests.
> Is it assured that read request doesn't follow immediately after packed
> write?
> I wonder this case.
Currently in such a case we will send the packed command followed by the
read request. The latency of this read request will be high due to waiting
for the completion of the packed write. However, since we will disable the
write packing, the latency of the following read requests will be low.
We are working on a solution where the read request will bypass the write
requests in such a case. This change requires modification of the
scheduler in order to re-insert the write requests to the scheduler.
>
> Thanks,
> Seungwon Jeon.
>>
>> >
>> > Thanks,
>> > Seungwon Jeon
>>
>> Thanks,
>> Maya Erez
>> --
>> Sent by a consultant of the Qualcomm Innovation Center, Inc.
>> Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
>

Thanks,
Maya Erez
Consultant for Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum


^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-06-11 13:55         ` merez
@ 2012-06-11 14:39           ` S, Venkatraman
  2012-06-11 20:10             ` merez
  0 siblings, 1 reply; 44+ messages in thread
From: S, Venkatraman @ 2012-06-11 14:39 UTC (permalink / raw)
  To: merez
  Cc: Seungwon Jeon, linux-mmc, linux-arm-msm, DOCUMENTATION', open list

On Mon, Jun 11, 2012 at 7:25 PM,  <merez@codeaurora.org> wrote:
>
>> Maya Erez <merez@codeaurora.org> wrote:
>>>
>>> > Hi,
>>> >
>>> > How can we check the effect?
>>> > Do you have any result?
>>> We ran parallel lmdd read and write operations and found out that the
>>> write packing causes the read throughput to drop from 24MB/s to 12MB/s.
>>> The write packing control managed to increase the read throughput back
>>> to
>>> the original value.
>>> We also examined "real life" scenarios, such as performing a big push
>>> operation in parallel to launching several applications. We measured the
>>> read latency and found out that with the write packing control the worst
>>> case of the read latency was smaller.
>>>
>>> > Please check the several comment below.
>>> >
>>> > Maya Erez <merez@codeaurora.org> wrote:
>>> >> The write packing control will ensure that read requests latency is
>>> >> not increased due to long write packed commands.
>>> >>
>>> >> The trigger for enabling the write packing is managing to pack
>>> several
>>> >> write requests. The number of potential packed requests that will
>>> >> trigger
>>> >> the packing can be configured via sysfs by writing the required value
>>> >> to:
>>> >> /sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
>>> >> The trigger for disabling the write packing is fetching a read
>>> request.
>>> >>
>>> >> ---
>>> >>  Documentation/mmc/mmc-dev-attrs.txt |   17 ++++++
>>> >>  drivers/mmc/card/block.c            |  100
>>> >> ++++++++++++++++++++++++++++++++++-
>>> >>  drivers/mmc/card/queue.c            |    8 +++
>>> >>  drivers/mmc/card/queue.h            |    3 +
>>> >>  include/linux/mmc/host.h            |    1 +
>>> >>  5 files changed, 128 insertions(+), 1 deletions(-)
>>> >>
>>> >> diff --git a/Documentation/mmc/mmc-dev-attrs.txt
>>> >> b/Documentation/mmc/mmc-dev-attrs.txt
>>> >> index 22ae844..08f7312 100644
>>> >> --- a/Documentation/mmc/mmc-dev-attrs.txt
>>> >> +++ b/Documentation/mmc/mmc-dev-attrs.txt
>>> >> @@ -8,6 +8,23 @@ The following attributes are read/write.
>>> >>
>>> >>   force_ro                Enforce read-only access even if write protect switch is
>>> >> off.
>>> >>
>>> >> + num_wr_reqs_to_start_packing    This attribute is used to determine
>>> >> + the trigger for activating the write packing, in case the write
>>> >> + packing control feature is enabled.
>>> >> +
>>> >> + When the MMC manages to reach a point where
>>> >> num_wr_reqs_to_start_packing
>>> >> + write requests could be packed, it enables the write packing
>>> feature.
>>> >> + This allows us to start the write packing only when it is
>>> beneficial
>>> >> + and has minimum affect on the read latency.
>>> >> +
>>> >> + The number of potential packed requests that will trigger the
>>> packing
>>> >> + can be configured via sysfs by writing the required value to:
>>> >> + /sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
>>> >> +
>>> >> + The default value of num_wr_reqs_to_start_packing was determined by
>>> >> + running parallel lmdd write and lmdd read operations and
>>> calculating
>>> >> + the max number of packed writes requests.
>>> >> +
>>> >>  SD and MMC Device Attributes
>>> >>  ============================
>>> >>
>>> >> diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c
>>> >> index 2785fd4..ef192fb 100644
>>> >> --- a/drivers/mmc/card/block.c
>>> >> +++ b/drivers/mmc/card/block.c
>>> >> @@ -114,6 +114,7 @@ struct mmc_blk_data {
>>> >>   struct device_attribute force_ro;
>>> >>   struct device_attribute power_ro_lock;
>>> >>   int     area_type;
>>> >> + struct device_attribute num_wr_reqs_to_start_packing;
>>> >>  };
>>> >>
>>> >>  static DEFINE_MUTEX(open_lock);
>>> >> @@ -281,6 +282,38 @@ out:
>>> >>   return ret;
>>> >>  }
>>> >>
>>> >> +static ssize_t
>>> >> +num_wr_reqs_to_start_packing_show(struct device *dev,
>>> >> +                           struct device_attribute *attr, char *buf)
>>> >> +{
>>> >> + struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
>>> >> + int num_wr_reqs_to_start_packing;
>>> >> + int ret;
>>> >> +
>>> >> + num_wr_reqs_to_start_packing =
>>> md->queue.num_wr_reqs_to_start_packing;
>>> >> +
>>> >> + ret = snprintf(buf, PAGE_SIZE, "%d\n",
>>> num_wr_reqs_to_start_packing);
>>> >> +
>>> >> + mmc_blk_put(md);
>>> >> + return ret;
>>> >> +}
>>> >> +
>>> >> +static ssize_t
>>> >> +num_wr_reqs_to_start_packing_store(struct device *dev,
>>> >> +                          struct device_attribute *attr,
>>> >> +                          const char *buf, size_t count)
>>> >> +{
>>> >> + int value;
>>> >> + struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
>>> >> +
>>> >> + sscanf(buf, "%d", &value);
>>> >> + if (value >= 0)
>>> >> +         md->queue.num_wr_reqs_to_start_packing = value;
>>> >> +
>>> >> + mmc_blk_put(md);
>>> >> + return count;
>>> >> +}
>>> >> +
>>> >>  static int mmc_blk_open(struct block_device *bdev, fmode_t mode)
>>> >>  {
>>> >>   struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk);
>>> >> @@ -1313,6 +1346,48 @@ static void mmc_blk_rw_rq_prep(struct
>>> >> mmc_queue_req *mqrq,
>>> >>   mmc_queue_bounce_pre(mqrq);
>>> >>  }
>>> >>
>>> >> +static void mmc_blk_write_packing_control(struct mmc_queue *mq,
>>> >> +                                   struct request *req)
>>> >> +{
>>> >> + struct mmc_host *host = mq->card->host;
>>> >> + int data_dir;
>>> >> +
>>> >> + if (!(host->caps2 & MMC_CAP2_PACKED_WR))
>>> >> +         return;
>>> >> +
>>> >> + /*
>>> >> +  * In case the packing control is not supported by the host, it
>>> should
>>> >> +  * not have an effect on the write packing. Therefore we have to
>>> >> enable
>>> >> +  * the write packing
>>> >> +  */
>>> >> + if (!(host->caps2 & MMC_CAP2_PACKED_WR_CONTROL)) {
>>> >> +         mq->wr_packing_enabled = true;
>>> >> +         return;
>>> >> + }
>>> >> +
>>> >> + if (!req || (req && (req->cmd_flags & REQ_FLUSH))) {
>>> >> +         if (mq->num_of_potential_packed_wr_reqs >
>>> >> +                         mq->num_wr_reqs_to_start_packing)
>>> >> +                 mq->wr_packing_enabled = true;
>>> >> +         return;
>>> >> + }
>>> >> +
>>> >> + data_dir = rq_data_dir(req);
>>> >> +
>>> >> + if (data_dir == READ) {
>>> >> +         mq->num_of_potential_packed_wr_reqs = 0;
>>> >> +         mq->wr_packing_enabled = false;
>>> >> +         return;
>>> >> + } else if (data_dir == WRITE) {
>>> >> +         mq->num_of_potential_packed_wr_reqs++;
>>> >> + }
>>> >> +
>>> >> + if (mq->num_of_potential_packed_wr_reqs >
>>> >> +                 mq->num_wr_reqs_to_start_packing)
>>> >> +         mq->wr_packing_enabled = true;
>>> > Write Packing is available only if continuing write requests are over
>>> > num_wr_reqs_to_start_packing?
>>> > That means individual request(1...17) will be issued with non-packing.
>>> > Could you explain your policy more?
>>> We try to identify the case where there is parallel read and write
>>> operations. In our experiments we found out that the number of write
>>> requests between read requests in parallel read and write operations
>>> doesn't exceed 17 requests. Therefore, we can assume that fetching more
>>> than 17 write requests without hitting a read request can indicate that
>>> there is no read activity.
>> We can apply this experiment regardless I/O scheduler?
>> Which I/O scheduler was used with this experiment?
> The experiment was performed with the CFQ scheduler. Since the deadline
> uses a batch of 16 requests it should also fit the deadline scheduler.
> In case another value is required, this value can be changed via sysfs.
>>
>>> You are right that this affects the write throughput a bit but the goal
>>> of
>>> this algorithm is to make sure the read throughput and latency are not
>>> decreased due to write. If this is not the desired result, this
>>> algorithm
>>> can be disabled.
>>> >> +
>>> >> +}
>>> >> +
>>> >>  static u8 mmc_blk_prep_packed_list(struct mmc_queue *mq, struct
>>> request
>>> >> *req)
>>> >>  {
>>> >>   struct request_queue *q = mq->queue;
>>> >> @@ -1332,6 +1407,9 @@ static u8 mmc_blk_prep_packed_list(struct
>>> >> mmc_queue *mq, struct request *req)
>>> >>                   !card->ext_csd.packed_event_en)
>>> >>           goto no_packed;
>>> >>
>>> >> + if (!mq->wr_packing_enabled)
>>> >> +         goto no_packed;
>>> > If wr_packing_enabled is set to true, several write requests can be
>>> > packed.
>>> > We don't need to consider read request since packed write?
>>> I'm not sure I understand the question. We check if there was a read
>>> request in the mmc_blk_write_packing_control, and in such a case set
>>> mq->wr_packing_enabled to false.
>>> If I didn't answer the question, please explain it again.
>> Packed write can be possible after exceeding 17 requests.
>> Is it assured that read request doesn't follow immediately after packed
>> write?
>> I wonder this case.
> Currently in such a case we will send the packed command followed by the
> read request. The latency of this read request will be high due to waiting
> for the completion of the packed write. However, since we will disable the
> write packing, the latency of the following read requests will be low.
> We are working on a solution where the read request will bypass the write
> requests in such a case. This change requires modification of the
> scheduler in order to re-insert the write requests to the scheduler.
>>

Thats the precise reason for using foreground HPI (shameless plug :-))
I understand the intent of write packing control, but using the number
of requests
as a metric is too coarse. Some writes could be for only one sector
(512B) and others
could be in 512KB or more, giving a 1000x variance.

Foreground HPI solves this problem by interrupting only on a wait threshold.

Another aspect is that if a packed write is in progress, and you have
a read request,
you will most likely disable packing for the _next_ write, not the
ongoing one, right ?
That's too late an intervention IMHO.

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-06-09 14:46     ` merez
  2012-06-11  9:10       ` Seungwon Jeon
@ 2012-06-11 17:19       ` S, Venkatraman
  2012-06-11 20:19         ` merez
  1 sibling, 1 reply; 44+ messages in thread
From: S, Venkatraman @ 2012-06-11 17:19 UTC (permalink / raw)
  To: merez
  Cc: Seungwon Jeon, linux-mmc, linux-arm-msm, DOCUMENTATION', open list

On Sat, Jun 9, 2012 at 8:16 PM,  <merez@codeaurora.org> wrote:
>
>> Hi,
>>
>> How can we check the effect?
>> Do you have any result?
> We ran parallel lmdd read and write operations and found out that the
> write packing causes the read throughput to drop from 24MB/s to 12MB/s.

Whoa! That's a big drop.
BTW, is there a problem with throughput or latency, or both ?
If these numbers are over long duration (>5 seconds), then where are
the cycles going?
It would be nice to see some blktrace figures for the issue, and then fix it,
rather than apply a band aid like the write-packing-control on top..


> The write packing control managed to increase the read throughput back to
> the original value.
> We also examined "real life" scenarios, such as performing a big push
> operation in parallel to launching several applications. We measured the
> read latency and found out that with the write packing control the worst
> case of the read latency was smaller.
>
>> Please check the several comment below.
>>
>> Maya Erez <merez@codeaurora.org> wrote:
>>> The write packing control will ensure that read requests latency is
>>> not increased due to long write packed commands.
>>>
>>> The trigger for enabling the write packing is managing to pack several
>>> write requests. The number of potential packed requests that will
>>> trigger
>>> the packing can be configured via sysfs by writing the required value
>>> to:
>>> /sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
>>> The trigger for disabling the write packing is fetching a read request.
>>>

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-06-11 14:39           ` S, Venkatraman
@ 2012-06-11 20:10             ` merez
  2012-06-12  4:16               ` S, Venkatraman
  0 siblings, 1 reply; 44+ messages in thread
From: merez @ 2012-06-11 20:10 UTC (permalink / raw)
  To: S, Venkatraman
  Cc: merez, Seungwon Jeon, linux-mmc, linux-arm-msm,
	DOCUMENTATION',
	open list


> On Mon, Jun 11, 2012 at 7:25 PM,  <merez@codeaurora.org> wrote:
>>
>>> Maya Erez <merez@codeaurora.org> wrote:
>>>>
>>>> > Hi,
>>>> >
>>>> > How can we check the effect?
>>>> > Do you have any result?
>>>> We ran parallel lmdd read and write operations and found out that the
>>>> write packing causes the read throughput to drop from 24MB/s to
>>>> 12MB/s.
>>>> The write packing control managed to increase the read throughput back
>>>> to
>>>> the original value.
>>>> We also examined "real life" scenarios, such as performing a big push
>>>> operation in parallel to launching several applications. We measured
>>>> the
>>>> read latency and found out that with the write packing control the
>>>> worst
>>>> case of the read latency was smaller.
>>>>
>>>> > Please check the several comment below.
>>>> >
>>>> > Maya Erez <merez@codeaurora.org> wrote:
>>>> >> The write packing control will ensure that read requests latency is
>>>> >> not increased due to long write packed commands.
>>>> >>
>>>> >> The trigger for enabling the write packing is managing to pack
>>>> several
>>>> >> write requests. The number of potential packed requests that will
>>>> >> trigger
>>>> >> the packing can be configured via sysfs by writing the required
>>>> value
>>>> >> to:
>>>> >> /sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
>>>> >> The trigger for disabling the write packing is fetching a read
>>>> request.
>>>> >>
>>>> >> ---
>>>> >>  Documentation/mmc/mmc-dev-attrs.txt |   17 ++++++
>>>> >>  drivers/mmc/card/block.c            |  100
>>>> >> ++++++++++++++++++++++++++++++++++-
>>>> >>  drivers/mmc/card/queue.c            |    8 +++
>>>> >>  drivers/mmc/card/queue.h            |    3 +
>>>> >>  include/linux/mmc/host.h            |    1 +
>>>> >>  5 files changed, 128 insertions(+), 1 deletions(-)
>>>> >>
>>>> >> diff --git a/Documentation/mmc/mmc-dev-attrs.txt
>>>> >> b/Documentation/mmc/mmc-dev-attrs.txt
>>>> >> index 22ae844..08f7312 100644
>>>> >> --- a/Documentation/mmc/mmc-dev-attrs.txt
>>>> >> +++ b/Documentation/mmc/mmc-dev-attrs.txt
>>>> >> @@ -8,6 +8,23 @@ The following attributes are read/write.
>>>> >>
>>>> >>   force_ro                Enforce read-only access even if write
>>>> protect switch is
>>>> >> off.
>>>> >>
>>>> >> + num_wr_reqs_to_start_packing    This attribute is used to
>>>> determine
>>>> >> + the trigger for activating the write packing, in case the write
>>>> >> + packing control feature is enabled.
>>>> >> +
>>>> >> + When the MMC manages to reach a point where
>>>> >> num_wr_reqs_to_start_packing
>>>> >> + write requests could be packed, it enables the write packing
>>>> feature.
>>>> >> + This allows us to start the write packing only when it is
>>>> beneficial
>>>> >> + and has minimum affect on the read latency.
>>>> >> +
>>>> >> + The number of potential packed requests that will trigger the
>>>> packing
>>>> >> + can be configured via sysfs by writing the required value to:
>>>> >> + /sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
>>>> >> +
>>>> >> + The default value of num_wr_reqs_to_start_packing was determined
>>>> by
>>>> >> + running parallel lmdd write and lmdd read operations and
>>>> calculating
>>>> >> + the max number of packed writes requests.
>>>> >> +
>>>> >>  SD and MMC Device Attributes
>>>> >>  ============================
>>>> >>
>>>> >> diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c
>>>> >> index 2785fd4..ef192fb 100644
>>>> >> --- a/drivers/mmc/card/block.c
>>>> >> +++ b/drivers/mmc/card/block.c
>>>> >> @@ -114,6 +114,7 @@ struct mmc_blk_data {
>>>> >>   struct device_attribute force_ro;
>>>> >>   struct device_attribute power_ro_lock;
>>>> >>   int     area_type;
>>>> >> + struct device_attribute num_wr_reqs_to_start_packing;
>>>> >>  };
>>>> >>
>>>> >>  static DEFINE_MUTEX(open_lock);
>>>> >> @@ -281,6 +282,38 @@ out:
>>>> >>   return ret;
>>>> >>  }
>>>> >>
>>>> >> +static ssize_t
>>>> >> +num_wr_reqs_to_start_packing_show(struct device *dev,
>>>> >> +                           struct device_attribute *attr, char
>>>> *buf)
>>>> >> +{
>>>> >> + struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
>>>> >> + int num_wr_reqs_to_start_packing;
>>>> >> + int ret;
>>>> >> +
>>>> >> + num_wr_reqs_to_start_packing =
>>>> md->queue.num_wr_reqs_to_start_packing;
>>>> >> +
>>>> >> + ret = snprintf(buf, PAGE_SIZE, "%d\n",
>>>> num_wr_reqs_to_start_packing);
>>>> >> +
>>>> >> + mmc_blk_put(md);
>>>> >> + return ret;
>>>> >> +}
>>>> >> +
>>>> >> +static ssize_t
>>>> >> +num_wr_reqs_to_start_packing_store(struct device *dev,
>>>> >> +                          struct device_attribute *attr,
>>>> >> +                          const char *buf, size_t count)
>>>> >> +{
>>>> >> + int value;
>>>> >> + struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
>>>> >> +
>>>> >> + sscanf(buf, "%d", &value);
>>>> >> + if (value >= 0)
>>>> >> +         md->queue.num_wr_reqs_to_start_packing = value;
>>>> >> +
>>>> >> + mmc_blk_put(md);
>>>> >> + return count;
>>>> >> +}
>>>> >> +
>>>> >>  static int mmc_blk_open(struct block_device *bdev, fmode_t mode)
>>>> >>  {
>>>> >>   struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk);
>>>> >> @@ -1313,6 +1346,48 @@ static void mmc_blk_rw_rq_prep(struct
>>>> >> mmc_queue_req *mqrq,
>>>> >>   mmc_queue_bounce_pre(mqrq);
>>>> >>  }
>>>> >>
>>>> >> +static void mmc_blk_write_packing_control(struct mmc_queue *mq,
>>>> >> +                                   struct request *req)
>>>> >> +{
>>>> >> + struct mmc_host *host = mq->card->host;
>>>> >> + int data_dir;
>>>> >> +
>>>> >> + if (!(host->caps2 & MMC_CAP2_PACKED_WR))
>>>> >> +         return;
>>>> >> +
>>>> >> + /*
>>>> >> +  * In case the packing control is not supported by the host, it
>>>> should
>>>> >> +  * not have an effect on the write packing. Therefore we have to
>>>> >> enable
>>>> >> +  * the write packing
>>>> >> +  */
>>>> >> + if (!(host->caps2 & MMC_CAP2_PACKED_WR_CONTROL)) {
>>>> >> +         mq->wr_packing_enabled = true;
>>>> >> +         return;
>>>> >> + }
>>>> >> +
>>>> >> + if (!req || (req && (req->cmd_flags & REQ_FLUSH))) {
>>>> >> +         if (mq->num_of_potential_packed_wr_reqs >
>>>> >> +                         mq->num_wr_reqs_to_start_packing)
>>>> >> +                 mq->wr_packing_enabled = true;
>>>> >> +         return;
>>>> >> + }
>>>> >> +
>>>> >> + data_dir = rq_data_dir(req);
>>>> >> +
>>>> >> + if (data_dir == READ) {
>>>> >> +         mq->num_of_potential_packed_wr_reqs = 0;
>>>> >> +         mq->wr_packing_enabled = false;
>>>> >> +         return;
>>>> >> + } else if (data_dir == WRITE) {
>>>> >> +         mq->num_of_potential_packed_wr_reqs++;
>>>> >> + }
>>>> >> +
>>>> >> + if (mq->num_of_potential_packed_wr_reqs >
>>>> >> +                 mq->num_wr_reqs_to_start_packing)
>>>> >> +         mq->wr_packing_enabled = true;
>>>> > Write Packing is available only if continuing write requests are
>>>> over
>>>> > num_wr_reqs_to_start_packing?
>>>> > That means individual request(1...17) will be issued with
>>>> non-packing.
>>>> > Could you explain your policy more?
>>>> We try to identify the case where there is parallel read and write
>>>> operations. In our experiments we found out that the number of write
>>>> requests between read requests in parallel read and write operations
>>>> doesn't exceed 17 requests. Therefore, we can assume that fetching
>>>> more
>>>> than 17 write requests without hitting a read request can indicate
>>>> that
>>>> there is no read activity.
>>> We can apply this experiment regardless I/O scheduler?
>>> Which I/O scheduler was used with this experiment?
>> The experiment was performed with the CFQ scheduler. Since the deadline
>> uses a batch of 16 requests it should also fit the deadline scheduler.
>> In case another value is required, this value can be changed via sysfs.
>>>
>>>> You are right that this affects the write throughput a bit but the
>>>> goal
>>>> of
>>>> this algorithm is to make sure the read throughput and latency are not
>>>> decreased due to write. If this is not the desired result, this
>>>> algorithm
>>>> can be disabled.
>>>> >> +
>>>> >> +}
>>>> >> +
>>>> >>  static u8 mmc_blk_prep_packed_list(struct mmc_queue *mq, struct
>>>> request
>>>> >> *req)
>>>> >>  {
>>>> >>   struct request_queue *q = mq->queue;
>>>> >> @@ -1332,6 +1407,9 @@ static u8 mmc_blk_prep_packed_list(struct
>>>> >> mmc_queue *mq, struct request *req)
>>>> >>                   !card->ext_csd.packed_event_en)
>>>> >>           goto no_packed;
>>>> >>
>>>> >> + if (!mq->wr_packing_enabled)
>>>> >> +         goto no_packed;
>>>> > If wr_packing_enabled is set to true, several write requests can be
>>>> > packed.
>>>> > We don't need to consider read request since packed write?
>>>> I'm not sure I understand the question. We check if there was a read
>>>> request in the mmc_blk_write_packing_control, and in such a case set
>>>> mq->wr_packing_enabled to false.
>>>> If I didn't answer the question, please explain it again.
>>> Packed write can be possible after exceeding 17 requests.
>>> Is it assured that read request doesn't follow immediately after packed
>>> write?
>>> I wonder this case.
>> Currently in such a case we will send the packed command followed by the
>> read request. The latency of this read request will be high due to
>> waiting
>> for the completion of the packed write. However, since we will disable
>> the
>> write packing, the latency of the following read requests will be low.
>> We are working on a solution where the read request will bypass the
>> write
>> requests in such a case. This change requires modification of the
>> scheduler in order to re-insert the write requests to the scheduler.
>>>
>
> Thats the precise reason for using foreground HPI (shameless plug :-))
> I understand the intent of write packing control, but using the number
> of requests
> as a metric is too coarse. Some writes could be for only one sector
> (512B) and others
> could be in 512KB or more, giving a 1000x variance.
>
> Foreground HPI solves this problem by interrupting only on a wait
> threshold.
>
> Another aspect is that if a packed write is in progress, and you have
> a read request,
> you will most likely disable packing for the _next_ write, not the
> ongoing one, right ?
> That's too late an intervention IMHO.
>
If a write request is in progress and a read is fetched we pln to use HPI
to stop it and re-insert the remider of the write packed command back to
the scheduler for a later dispatch.
Regarding the packing control trigger, we also tried using a trigger of an
amount of write bytes between read. However, the number of potential
packed requests seemed like the reasonable trigger since we would like to
activate the packing only when it will be beneficial, regardless of the
write requests sizes.

Thanks,
Maya Erez
Consultant for Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-06-11 17:19       ` S, Venkatraman
@ 2012-06-11 20:19         ` merez
  2012-06-12  4:07           ` S, Venkatraman
  0 siblings, 1 reply; 44+ messages in thread
From: merez @ 2012-06-11 20:19 UTC (permalink / raw)
  To: S, Venkatraman
  Cc: merez, Seungwon Jeon, linux-mmc, linux-arm-msm,
	DOCUMENTATION',
	open list


> On Sat, Jun 9, 2012 at 8:16 PM,  <merez@codeaurora.org> wrote:
>>
>>> Hi,
>>>
>>> How can we check the effect?
>>> Do you have any result?
>> We ran parallel lmdd read and write operations and found out that the
>> write packing causes the read throughput to drop from 24MB/s to 12MB/s.
>
> Whoa! That's a big drop.
> BTW, is there a problem with throughput or latency, or both ?
> If these numbers are over long duration (>5 seconds), then where are
> the cycles going?
> It would be nice to see some blktrace figures for the issue, and then fix
> it,
> rather than apply a band aid like the write-packing-control on top..
I believe this is because the write packing changes the dispatching policy
of the scheduler. Without write packing only 2 write requests were
fetched, giving the read requests a chance to be inserted into the
scheduler while we wait for the completion of the first write request.
Then when the next fetch was performed the read request would be the
chosen one. When write packing is enabled we keep fetching all the write
requests that are queued (assuming there are no read requests inserted
yet) and when the read is inserted and fetched is has to wait for the
completion of a bigger amount of write requests.

>
>
>> The write packing control managed to increase the read throughput back
>> to
>> the original value.
>> We also examined "real life" scenarios, such as performing a big push
>> operation in parallel to launching several applications. We measured the
>> read latency and found out that with the write packing control the worst
>> case of the read latency was smaller.
>>
>>> Please check the several comment below.
>>>
>>> Maya Erez <merez@codeaurora.org> wrote:
>>>> The write packing control will ensure that read requests latency is
>>>> not increased due to long write packed commands.
>>>>
>>>> The trigger for enabling the write packing is managing to pack several
>>>> write requests. The number of potential packed requests that will
>>>> trigger
>>>> the packing can be configured via sysfs by writing the required value
>>>> to:
>>>> /sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
>>>> The trigger for disabling the write packing is fetching a read
>>>> request.
>>>>
>

Thanks,
Maya Erez
Consultant for Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum


^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-06-01 18:55   ` Maya Erez
  (?)
  (?)
@ 2012-06-11 21:19   ` Muthu Kumar
  2012-06-12  0:28     ` Muthu Kumar
  -1 siblings, 1 reply; 44+ messages in thread
From: Muthu Kumar @ 2012-06-11 21:19 UTC (permalink / raw)
  To: Maya Erez; +Cc: linux-mmc, linux-arm-msm, open list:DOCUMENTATION, open list

On Fri, Jun 1, 2012 at 11:55 AM, Maya Erez <merez@codeaurora.org> wrote:
> The write packing control will ensure that read requests latency is
> not increased due to long write packed commands.
>
> The trigger for enabling the write packing is managing to pack several
> write requests. The number of potential packed requests that will trigger
> the packing can be configured via sysfs by writing the required value to:
> /sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
> The trigger for disabling the write packing is fetching a read request.
>

If it is applicable only to MMC why do we have this sysfs attr for all
block devices?

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-06-11 21:19   ` Muthu Kumar
@ 2012-06-12  0:28     ` Muthu Kumar
  2012-06-12 20:08       ` merez
  2012-06-13 19:52       ` merez
  0 siblings, 2 replies; 44+ messages in thread
From: Muthu Kumar @ 2012-06-12  0:28 UTC (permalink / raw)
  To: Maya Erez; +Cc: linux-mmc, linux-arm-msm, open list:DOCUMENTATION, open list

On Mon, Jun 11, 2012 at 2:19 PM, Muthu Kumar <muthu.lkml@gmail.com> wrote:
> On Fri, Jun 1, 2012 at 11:55 AM, Maya Erez <merez@codeaurora.org> wrote:
>> The write packing control will ensure that read requests latency is
>> not increased due to long write packed commands.
>>
>> The trigger for enabling the write packing is managing to pack several
>> write requests. The number of potential packed requests that will trigger
>> the packing can be configured via sysfs by writing the required value to:
>> /sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
>> The trigger for disabling the write packing is fetching a read request.
>>
>
> If it is applicable only to MMC why do we have this sysfs attr for all
> block devices?

Just to be clear, please create a directory, say mmc, under
/sys/block/<dev>/ and create the attr inside that.

You can refer to dm (dm-sysfs.c) for sample implementation.

Regards,
Muthu

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-06-11 20:19         ` merez
@ 2012-06-12  4:07           ` S, Venkatraman
  0 siblings, 0 replies; 44+ messages in thread
From: S, Venkatraman @ 2012-06-12  4:07 UTC (permalink / raw)
  To: merez
  Cc: Seungwon Jeon, linux-mmc, linux-arm-msm, DOCUMENTATION', open list

On Tue, Jun 12, 2012 at 1:49 AM,  <merez@codeaurora.org> wrote:
>
>> On Sat, Jun 9, 2012 at 8:16 PM,  <merez@codeaurora.org> wrote:
>>>
>>>> Hi,
>>>>
>>>> How can we check the effect?
>>>> Do you have any result?
>>> We ran parallel lmdd read and write operations and found out that the
>>> write packing causes the read throughput to drop from 24MB/s to 12MB/s.
>>
>> Whoa! That's a big drop.
>> BTW, is there a problem with throughput or latency, or both ?
>> If these numbers are over long duration (>5 seconds), then where are
>> the cycles going?
>> It would be nice to see some blktrace figures for the issue, and then fix
>> it,
>> rather than apply a band aid like the write-packing-control on top..
> I believe this is because the write packing changes the dispatching policy
> of the scheduler. Without write packing only 2 write requests were
> fetched, giving the read requests a chance to be inserted into the
> scheduler while we wait for the completion of the first write request.

Which I/O scheduler are you using ? Both CFQ and deadline would do the
balancing
act to prevent writes overwhelming reads. Writes are async and reads
are sync (usually),
so this imbalance would have existed otherwise, packed command or not.

> Then when the next fetch was performed the read request would be the
> chosen one. When write packing is enabled we keep fetching all the write
> requests that are queued (assuming there are no read requests inserted
> yet) and when the read is inserted and fetched is has to wait for the
> completion of a bigger amount of write requests.
>

Yes - but that should introduce latency, not bandwidth drop - unless you are
using the no-op scheduler.

>>
>>
>>> The write packing control managed to increase the read throughput back
>>> to
>>> the original value.
>>> We also examined "real life" scenarios, such as performing a big push
>>> operation in parallel to launching several applications. We measured the
>>> read latency and found out that with the write packing control the worst
>>> case of the read latency was smaller.
>>>
>>>> Please check the several comment below.
>>>>
>>>> Maya Erez <merez@codeaurora.org> wrote:
>>>>> The write packing control will ensure that read requests latency is
>>>>> not increased due to long write packed commands.
>>>>>
>>>>> The trigger for enabling the write packing is managing to pack several
>>>>> write requests. The number of potential packed requests that will
>>>>> trigger
>>>>> the packing can be configured via sysfs by writing the required value
>>>>> to:
>>>>> /sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
>>>>> The trigger for disabling the write packing is fetching a read
>>>>> request.
>>>>>
>>
>
> Thanks,
> Maya Erez
> Consultant for Qualcomm Innovation Center, Inc.
> Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum
>

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-06-11 20:10             ` merez
@ 2012-06-12  4:16               ` S, Venkatraman
  0 siblings, 0 replies; 44+ messages in thread
From: S, Venkatraman @ 2012-06-12  4:16 UTC (permalink / raw)
  To: merez
  Cc: Seungwon Jeon, linux-mmc, linux-arm-msm, DOCUMENTATION', open list

On Tue, Jun 12, 2012 at 1:40 AM,  <merez@codeaurora.org> wrote:
>
>> On Mon, Jun 11, 2012 at 7:25 PM,  <merez@codeaurora.org> wrote:
>>>
>>>> Maya Erez <merez@codeaurora.org> wrote:
>>>>>
>>>>> > Hi,
>>>>> >
>>>>> > How can we check the effect?
>>>>> > Do you have any result?
>>>>> We ran parallel lmdd read and write operations and found out that the
>>>>> write packing causes the read throughput to drop from 24MB/s to
>>>>> 12MB/s.
>>>>> The write packing control managed to increase the read throughput back
>>>>> to
>>>>> the original value.
>>>>> We also examined "real life" scenarios, such as performing a big push
>>>>> operation in parallel to launching several applications. We measured
>>>>> the
>>>>> read latency and found out that with the write packing control the
>>>>> worst
>>>>> case of the read latency was smaller.
>>>>>
>>>>> > Please check the several comment below.
>>>>> >
>>>>> > Maya Erez <merez@codeaurora.org> wrote:
>>>>> >> The write packing control will ensure that read requests latency is
>>>>> >> not increased due to long write packed commands.
>>>>> >>
>>>>> >> The trigger for enabling the write packing is managing to pack
>>>>> several
>>>>> >> write requests. The number of potential packed requests that will
>>>>> >> trigger
>>>>> >> the packing can be configured via sysfs by writing the required
>>>>> value
>>>>> >> to:
>>>>> >> /sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
>>>>> >> The trigger for disabling the write packing is fetching a read
>>>>> request.
>>>>> >>
>>>>> >> ---
>>>>> >>  Documentation/mmc/mmc-dev-attrs.txt |   17 ++++++
>>>>> >>  drivers/mmc/card/block.c            |  100
>>>>> >> ++++++++++++++++++++++++++++++++++-
>>>>> >>  drivers/mmc/card/queue.c            |    8 +++
>>>>> >>  drivers/mmc/card/queue.h            |    3 +
>>>>> >>  include/linux/mmc/host.h            |    1 +
>>>>> >>  5 files changed, 128 insertions(+), 1 deletions(-)
>>>>> >>
>>>>> >> diff --git a/Documentation/mmc/mmc-dev-attrs.txt
>>>>> >> b/Documentation/mmc/mmc-dev-attrs.txt
>>>>> >> index 22ae844..08f7312 100644
>>>>> >> --- a/Documentation/mmc/mmc-dev-attrs.txt
>>>>> >> +++ b/Documentation/mmc/mmc-dev-attrs.txt
>>>>> >> @@ -8,6 +8,23 @@ The following attributes are read/write.
>>>>> >>
>>>>> >>   force_ro                Enforce read-only access even if write
>>>>> protect switch is
>>>>> >> off.
>>>>> >>
>>>>> >> + num_wr_reqs_to_start_packing    This attribute is used to
>>>>> determine
>>>>> >> + the trigger for activating the write packing, in case the write
>>>>> >> + packing control feature is enabled.
>>>>> >> +
>>>>> >> + When the MMC manages to reach a point where
>>>>> >> num_wr_reqs_to_start_packing
>>>>> >> + write requests could be packed, it enables the write packing
>>>>> feature.
>>>>> >> + This allows us to start the write packing only when it is
>>>>> beneficial
>>>>> >> + and has minimum affect on the read latency.
>>>>> >> +
>>>>> >> + The number of potential packed requests that will trigger the
>>>>> packing
>>>>> >> + can be configured via sysfs by writing the required value to:
>>>>> >> + /sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
>>>>> >> +
>>>>> >> + The default value of num_wr_reqs_to_start_packing was determined
>>>>> by
>>>>> >> + running parallel lmdd write and lmdd read operations and
>>>>> calculating
>>>>> >> + the max number of packed writes requests.
>>>>> >> +
>>>>> >>  SD and MMC Device Attributes
>>>>> >>  ============================
>>>>> >>
>>>>> >> diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c
>>>>> >> index 2785fd4..ef192fb 100644
>>>>> >> --- a/drivers/mmc/card/block.c
>>>>> >> +++ b/drivers/mmc/card/block.c
>>>>> >> @@ -114,6 +114,7 @@ struct mmc_blk_data {
>>>>> >>   struct device_attribute force_ro;
>>>>> >>   struct device_attribute power_ro_lock;
>>>>> >>   int     area_type;
>>>>> >> + struct device_attribute num_wr_reqs_to_start_packing;
>>>>> >>  };
>>>>> >>
>>>>> >>  static DEFINE_MUTEX(open_lock);
>>>>> >> @@ -281,6 +282,38 @@ out:
>>>>> >>   return ret;
>>>>> >>  }
>>>>> >>
>>>>> >> +static ssize_t
>>>>> >> +num_wr_reqs_to_start_packing_show(struct device *dev,
>>>>> >> +                           struct device_attribute *attr, char
>>>>> *buf)
>>>>> >> +{
>>>>> >> + struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
>>>>> >> + int num_wr_reqs_to_start_packing;
>>>>> >> + int ret;
>>>>> >> +
>>>>> >> + num_wr_reqs_to_start_packing =
>>>>> md->queue.num_wr_reqs_to_start_packing;
>>>>> >> +
>>>>> >> + ret = snprintf(buf, PAGE_SIZE, "%d\n",
>>>>> num_wr_reqs_to_start_packing);
>>>>> >> +
>>>>> >> + mmc_blk_put(md);
>>>>> >> + return ret;
>>>>> >> +}
>>>>> >> +
>>>>> >> +static ssize_t
>>>>> >> +num_wr_reqs_to_start_packing_store(struct device *dev,
>>>>> >> +                          struct device_attribute *attr,
>>>>> >> +                          const char *buf, size_t count)
>>>>> >> +{
>>>>> >> + int value;
>>>>> >> + struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
>>>>> >> +
>>>>> >> + sscanf(buf, "%d", &value);
>>>>> >> + if (value >= 0)
>>>>> >> +         md->queue.num_wr_reqs_to_start_packing = value;
>>>>> >> +
>>>>> >> + mmc_blk_put(md);
>>>>> >> + return count;
>>>>> >> +}
>>>>> >> +
>>>>> >>  static int mmc_blk_open(struct block_device *bdev, fmode_t mode)
>>>>> >>  {
>>>>> >>   struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk);
>>>>> >> @@ -1313,6 +1346,48 @@ static void mmc_blk_rw_rq_prep(struct
>>>>> >> mmc_queue_req *mqrq,
>>>>> >>   mmc_queue_bounce_pre(mqrq);
>>>>> >>  }
>>>>> >>
>>>>> >> +static void mmc_blk_write_packing_control(struct mmc_queue *mq,
>>>>> >> +                                   struct request *req)
>>>>> >> +{
>>>>> >> + struct mmc_host *host = mq->card->host;
>>>>> >> + int data_dir;
>>>>> >> +
>>>>> >> + if (!(host->caps2 & MMC_CAP2_PACKED_WR))
>>>>> >> +         return;
>>>>> >> +
>>>>> >> + /*
>>>>> >> +  * In case the packing control is not supported by the host, it
>>>>> should
>>>>> >> +  * not have an effect on the write packing. Therefore we have to
>>>>> >> enable
>>>>> >> +  * the write packing
>>>>> >> +  */
>>>>> >> + if (!(host->caps2 & MMC_CAP2_PACKED_WR_CONTROL)) {
>>>>> >> +         mq->wr_packing_enabled = true;
>>>>> >> +         return;
>>>>> >> + }
>>>>> >> +
>>>>> >> + if (!req || (req && (req->cmd_flags & REQ_FLUSH))) {
>>>>> >> +         if (mq->num_of_potential_packed_wr_reqs >
>>>>> >> +                         mq->num_wr_reqs_to_start_packing)
>>>>> >> +                 mq->wr_packing_enabled = true;
>>>>> >> +         return;
>>>>> >> + }
>>>>> >> +
>>>>> >> + data_dir = rq_data_dir(req);
>>>>> >> +
>>>>> >> + if (data_dir == READ) {
>>>>> >> +         mq->num_of_potential_packed_wr_reqs = 0;
>>>>> >> +         mq->wr_packing_enabled = false;
>>>>> >> +         return;
>>>>> >> + } else if (data_dir == WRITE) {
>>>>> >> +         mq->num_of_potential_packed_wr_reqs++;
>>>>> >> + }
>>>>> >> +
>>>>> >> + if (mq->num_of_potential_packed_wr_reqs >
>>>>> >> +                 mq->num_wr_reqs_to_start_packing)
>>>>> >> +         mq->wr_packing_enabled = true;
>>>>> > Write Packing is available only if continuing write requests are
>>>>> over
>>>>> > num_wr_reqs_to_start_packing?
>>>>> > That means individual request(1...17) will be issued with
>>>>> non-packing.
>>>>> > Could you explain your policy more?
>>>>> We try to identify the case where there is parallel read and write
>>>>> operations. In our experiments we found out that the number of write
>>>>> requests between read requests in parallel read and write operations
>>>>> doesn't exceed 17 requests. Therefore, we can assume that fetching
>>>>> more
>>>>> than 17 write requests without hitting a read request can indicate
>>>>> that
>>>>> there is no read activity.
>>>> We can apply this experiment regardless I/O scheduler?
>>>> Which I/O scheduler was used with this experiment?
>>> The experiment was performed with the CFQ scheduler. Since the deadline
>>> uses a batch of 16 requests it should also fit the deadline scheduler.
>>> In case another value is required, this value can be changed via sysfs.
>>>>
>>>>> You are right that this affects the write throughput a bit but the
>>>>> goal
>>>>> of
>>>>> this algorithm is to make sure the read throughput and latency are not
>>>>> decreased due to write. If this is not the desired result, this
>>>>> algorithm
>>>>> can be disabled.
>>>>> >> +
>>>>> >> +}
>>>>> >> +
>>>>> >>  static u8 mmc_blk_prep_packed_list(struct mmc_queue *mq, struct
>>>>> request
>>>>> >> *req)
>>>>> >>  {
>>>>> >>   struct request_queue *q = mq->queue;
>>>>> >> @@ -1332,6 +1407,9 @@ static u8 mmc_blk_prep_packed_list(struct
>>>>> >> mmc_queue *mq, struct request *req)
>>>>> >>                   !card->ext_csd.packed_event_en)
>>>>> >>           goto no_packed;
>>>>> >>
>>>>> >> + if (!mq->wr_packing_enabled)
>>>>> >> +         goto no_packed;
>>>>> > If wr_packing_enabled is set to true, several write requests can be
>>>>> > packed.
>>>>> > We don't need to consider read request since packed write?
>>>>> I'm not sure I understand the question. We check if there was a read
>>>>> request in the mmc_blk_write_packing_control, and in such a case set
>>>>> mq->wr_packing_enabled to false.
>>>>> If I didn't answer the question, please explain it again.
>>>> Packed write can be possible after exceeding 17 requests.
>>>> Is it assured that read request doesn't follow immediately after packed
>>>> write?
>>>> I wonder this case.
>>> Currently in such a case we will send the packed command followed by the
>>> read request. The latency of this read request will be high due to
>>> waiting
>>> for the completion of the packed write. However, since we will disable
>>> the
>>> write packing, the latency of the following read requests will be low.
>>> We are working on a solution where the read request will bypass the
>>> write
>>> requests in such a case. This change requires modification of the
>>> scheduler in order to re-insert the write requests to the scheduler.
>>>>
>>
>> Thats the precise reason for using foreground HPI (shameless plug :-))
>> I understand the intent of write packing control, but using the number
>> of requests
>> as a metric is too coarse. Some writes could be for only one sector
>> (512B) and others
>> could be in 512KB or more, giving a 1000x variance.
>>
>> Foreground HPI solves this problem by interrupting only on a wait
>> threshold.
>>
>> Another aspect is that if a packed write is in progress, and you have
>> a read request,
>> you will most likely disable packing for the _next_ write, not the
>> ongoing one, right ?
>> That's too late an intervention IMHO.
>>
> If a write request is in progress and a read is fetched we pln to use HPI
> to stop it and re-insert the remider of the write packed command back to
> the scheduler for a later dispatch.
IIUC, there were 2 reasons mentioned by you for introducing write
packing control -
1) Read bandwidth drop
2) Use case "latency" or if I were to guess, "sluggish UI".

So if (2) is solved by HPI, we can investigate the reason for (1) and
fix that, rather
than adding another functionality (which belongs in the I/O scheduler
anyway) to MMC.

> Regarding the packing control trigger, we also tried using a trigger of an
> amount of write bytes between read. However, the number of potential
> packed requests seemed like the reasonable trigger since we would like to
> activate the packing only when it will be beneficial, regardless of the
> write requests sizes.
>
Why ? How do you know "when it will be beneficial" ? As I mentioned,
the number of
blocks per request would vary over time, and also depends on the
filesystem. OTOH, even small
writes could take a lot longer than usual (>500ms) due to garbage
collection etc.

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-06-12  0:28     ` Muthu Kumar
@ 2012-06-12 20:08       ` merez
  2012-06-13 19:52       ` merez
  1 sibling, 0 replies; 44+ messages in thread
From: merez @ 2012-06-12 20:08 UTC (permalink / raw)
  To: Muthu Kumar; +Cc: Maya Erez, linux-mmc, linux-arm-msm, DOCUMENTATION, open list


On Mon, June 11, 2012 5:28 pm, Muthu Kumar wrote:
> On Mon, Jun 11, 2012 at 2:19 PM, Muthu Kumar <muthu.lkml@gmail.com> wrote:
>> On Fri, Jun 1, 2012 at 11:55 AM, Maya Erez <merez@codeaurora.org> wrote:
>>> The write packing control will ensure that read requests latency is
>>> not increased due to long write packed commands.
>>>
>>> The trigger for enabling the write packing is managing to pack several
>>> write requests. The number of potential packed requests that will
>>> trigger
>>> the packing can be configured via sysfs by writing the required value
>>> to:
>>> /sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
>>> The trigger for disabling the write packing is fetching a read request.
>>>
>>
>> If it is applicable only to MMC why do we have this sysfs attr for all
>> block devices?
>
> Just to be clear, please create a directory, say mmc, under
> /sys/block/<dev>/ and create the attr inside that.
>
> You can refer to dm (dm-sysfs.c) for sample implementation.
>
> Regards,
> Muthu
>

I will apply this change in the next patch.

Thanks,
Maya Erez

-- 
Sent by consultant of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-06-12  0:28     ` Muthu Kumar
  2012-06-12 20:08       ` merez
@ 2012-06-13 19:52       ` merez
  2012-06-13 22:21         ` Muthu Kumar
  1 sibling, 1 reply; 44+ messages in thread
From: merez @ 2012-06-13 19:52 UTC (permalink / raw)
  To: Muthu Kumar; +Cc: Maya Erez, linux-mmc, linux-arm-msm, DOCUMENTATION, open list


On Mon, June 11, 2012 5:28 pm, Muthu Kumar wrote:
> On Mon, Jun 11, 2012 at 2:19 PM, Muthu Kumar <muthu.lkml@gmail.com> wrote:
>> On Fri, Jun 1, 2012 at 11:55 AM, Maya Erez <merez@codeaurora.org> wrote:
>>> The write packing control will ensure that read requests latency is
>>> not increased due to long write packed commands.
>>>
>>> The trigger for enabling the write packing is managing to pack several
>>> write requests. The number of potential packed requests that will
>>> trigger
>>> the packing can be configured via sysfs by writing the required value
>>> to:
>>> /sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
>>> The trigger for disabling the write packing is fetching a read request.
>>>
>>
>> If it is applicable only to MMC why do we have this sysfs attr for all
>> block devices?
>
> Just to be clear, please create a directory, say mmc, under
> /sys/block/<dev>/ and create the attr inside that.
>
> You can refer to dm (dm-sysfs.c) for sample implementation.
>
> Regards,
> Muthu
>
Hi Muthu,

I released a new version of this patch which doesn't include this change yet.

I understand why you think it would be best to distinguish the MMC
specific attribute from the general block devices attributes.
However, since this attribute is created only for the MMC block device,
other block devices won't be aware of it. Therefore, it doesn't
necessarily require a separation to a different folder.
Currently there is another MMC specific attribute (force_ro) which is also
created in the root directory. I think it would be better to also create
the num_wr_reqs_to_start_packing in the same folder as force_ro and not
make it an exceptional attribute in its location and the code that handles
it.
I would appreciate your opinion on that.

Thanks,
Maya
-- 
Sent by consultant of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-06-13 19:52       ` merez
@ 2012-06-13 22:21         ` Muthu Kumar
  2012-06-14  7:46           ` merez
  2012-07-14 19:12           ` Chris Ball
  0 siblings, 2 replies; 44+ messages in thread
From: Muthu Kumar @ 2012-06-13 22:21 UTC (permalink / raw)
  To: merez; +Cc: linux-mmc, linux-arm-msm, DOCUMENTATION, open list

On Wed, Jun 13, 2012 at 12:52 PM,  <merez@codeaurora.org> wrote:
>
> On Mon, June 11, 2012 5:28 pm, Muthu Kumar wrote:
>> On Mon, Jun 11, 2012 at 2:19 PM, Muthu Kumar <muthu.lkml@gmail.com> wrote:
>>> On Fri, Jun 1, 2012 at 11:55 AM, Maya Erez <merez@codeaurora.org> wrote:
>>>> trigger
>>>> the packing can be configured via sysfs by writing the required value
>>>> to:
>>>> /sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
>>>> The trigger for disabling the write packing is fetching a read request.
>>>>
>>>
>>> If it is applicable only to MMC why do we have this sysfs attr for all
>>> block devices?
>>
>> Just to be clear, please create a directory, say mmc, under
>> /sys/block/<dev>/ and create the attr inside that.
>>
>> You can refer to dm (dm-sysfs.c) for sample implementation.
> I understand why you think it would be best to distinguish the MMC
> specific attribute from the general block devices attributes.
> However, since this attribute is created only for the MMC block device,
> other block devices won't be aware of it.

I understand its created by the MMC code so will not be there for
other block devices. But having the device specific attributes inside
one <device> directory is better/cleaner. And since we are already
following that model for other devices, why not follow that for MMC
also?

> Therefore, it doesn't
> necessarily require a separation to a different folder.
> Currently there is another MMC specific attribute (force_ro) which is also
> created in the root directory. I think it would be better to also create
> the num_wr_reqs_to_start_packing in the same folder as force_ro and not
> make it an exceptional attribute in its location and the code that handles
> it.

Then time to move that as well to "mmc" directory.

Regards,
Muthu


> I would appreciate your opinion on that.
>
> Thanks,
> Maya
> --
> Sent by consultant of Qualcomm Innovation Center, Inc.
> Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum
>

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-06-13 22:21         ` Muthu Kumar
@ 2012-06-14  7:46           ` merez
  2012-07-14 19:12           ` Chris Ball
  1 sibling, 0 replies; 44+ messages in thread
From: merez @ 2012-06-14  7:46 UTC (permalink / raw)
  To: Muthu Kumar; +Cc: merez, linux-mmc, linux-arm-msm, DOCUMENTATION, open list


On Wed, June 13, 2012 3:21 pm, Muthu Kumar wrote:
> On Wed, Jun 13, 2012 at 12:52 PM,  <merez@codeaurora.org> wrote:
>>
>> On Mon, June 11, 2012 5:28 pm, Muthu Kumar wrote:
>>> On Mon, Jun 11, 2012 at 2:19 PM, Muthu Kumar <muthu.lkml@gmail.com>
>>> wrote:
>>>> On Fri, Jun 1, 2012 at 11:55 AM, Maya Erez <merez@codeaurora.org>
>>>> wrote:
>>>>> trigger
>>>>> the packing can be configured via sysfs by writing the required value
>>>>> to:
>>>>> /sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
>>>>> The trigger for disabling the write packing is fetching a read
>>>>> request.
>>>>>
>>>>
>>>> If it is applicable only to MMC why do we have this sysfs attr for all
>>>> block devices?
>>>
>>> Just to be clear, please create a directory, say mmc, under
>>> /sys/block/<dev>/ and create the attr inside that.
>>>
>>> You can refer to dm (dm-sysfs.c) for sample implementation.
>> I understand why you think it would be best to distinguish the MMC
>> specific attribute from the general block devices attributes.
>> However, since this attribute is created only for the MMC block device,
>> other block devices won't be aware of it.
>
> I understand its created by the MMC code so will not be there for
> other block devices. But having the device specific attributes inside
> one <device> directory is better/cleaner. And since we are already
> following that model for other devices, why not follow that for MMC
> also?
>
>> Therefore, it doesn't
>> necessarily require a separation to a different folder.
>> Currently there is another MMC specific attribute (force_ro) which is
>> also
>> created in the root directory. I think it would be better to also create
>> the num_wr_reqs_to_start_packing in the same folder as force_ro and not
>> make it an exceptional attribute in its location and the code that
>> handles
>> it.
>
> Then time to move that as well to "mmc" directory.
>
> Regards,
> Muthu

I will make this change for the new attribute and for force_ro as well.

Thanks,
Maya

>
>
>> I would appreciate your opinion on that.
>>
>> Thanks,
>> Maya
>> --
>> Sent by consultant of Qualcomm Innovation Center, Inc.
>> Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum
>>
>


-- 
Sent by consultant of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum


^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-06-13 22:21         ` Muthu Kumar
  2012-06-14  7:46           ` merez
@ 2012-07-14 19:12           ` Chris Ball
  2012-07-16  1:49             ` Muthu Kumar
  1 sibling, 1 reply; 44+ messages in thread
From: Chris Ball @ 2012-07-14 19:12 UTC (permalink / raw)
  To: Muthu Kumar; +Cc: merez, linux-mmc, linux-arm-msm, DOCUMENTATION, open list

Hi,

On Wed, Jun 13 2012, Muthu Kumar wrote:
> On Wed, Jun 13, 2012 at 12:52 PM,  <merez@codeaurora.org> wrote:
>>
>> On Mon, June 11, 2012 5:28 pm, Muthu Kumar wrote:
>>> On Mon, Jun 11, 2012 at 2:19 PM, Muthu Kumar <muthu.lkml@gmail.com> wrote:
>>>> On Fri, Jun 1, 2012 at 11:55 AM, Maya Erez <merez@codeaurora.org> wrote:
>>>>> trigger
>>>>> the packing can be configured via sysfs by writing the required value
>>>>> to:
>>>>> /sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
>>>>> The trigger for disabling the write packing is fetching a read request.
>>>>>
>>>>
>>>> If it is applicable only to MMC why do we have this sysfs attr for all
>>>> block devices?
>>>
>>> Just to be clear, please create a directory, say mmc, under
>>> /sys/block/<dev>/ and create the attr inside that.
>>>
>>> You can refer to dm (dm-sysfs.c) for sample implementation.
>> I understand why you think it would be best to distinguish the MMC
>> specific attribute from the general block devices attributes.
>> However, since this attribute is created only for the MMC block device,
>> other block devices won't be aware of it.
>
> I understand its created by the MMC code so will not be there for
> other block devices. But having the device specific attributes inside
> one <device> directory is better/cleaner. And since we are already
> following that model for other devices, why not follow that for MMC
> also?

I've already replied to a later version of the patch, but just to get
this comment in at the appropriate point of the discussion as well:

Even though it would result in a cleaner sysfs, I don't want to do
this now because it will break userspace scripts that are depending
on the current locations of these attributes.

Thanks,

- Chris.
-- 
Chris Ball   <cjb@laptop.org>   <http://printf.net/>
One Laptop Per Child

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-07-14 19:12           ` Chris Ball
@ 2012-07-16  1:49             ` Muthu Kumar
  2012-07-16  2:46               ` Chris Ball
  0 siblings, 1 reply; 44+ messages in thread
From: Muthu Kumar @ 2012-07-16  1:49 UTC (permalink / raw)
  To: Chris Ball; +Cc: merez, linux-mmc, linux-arm-msm, DOCUMENTATION, open list

Chris,

On Sat, Jul 14, 2012 at 12:12 PM, Chris Ball <cjb@laptop.org> wrote:
> Hi,
>
> On Wed, Jun 13 2012, Muthu Kumar wrote:
>> On Wed, Jun 13, 2012 at 12:52 PM,  <merez@codeaurora.org> wrote:
>>>
>>> On Mon, June 11, 2012 5:28 pm, Muthu Kumar wrote:
>>>> On Mon, Jun 11, 2012 at 2:19 PM, Muthu Kumar <muthu.lkml@gmail.com> wrote:
>>>>> On Fri, Jun 1, 2012 at 11:55 AM, Maya Erez <merez@codeaurora.org> wrote:
>>>>>> trigger
>>>>>> the packing can be configured via sysfs by writing the required value
>>>>>> to:
>>>>>> /sys/block/<block_dev_name>/num_wr_reqs_to_start_packing.
>>>>>> The trigger for disabling the write packing is fetching a read request.
>>>>>>
>>>>>
>>>>> If it is applicable only to MMC why do we have this sysfs attr for all
>>>>> block devices?
>>>>
>>>> Just to be clear, please create a directory, say mmc, under
>>>> /sys/block/<dev>/ and create the attr inside that.
>>>>
>>>> You can refer to dm (dm-sysfs.c) for sample implementation.
>>> I understand why you think it would be best to distinguish the MMC
>>> specific attribute from the general block devices attributes.
>>> However, since this attribute is created only for the MMC block device,
>>> other block devices won't be aware of it.
>>
>> I understand its created by the MMC code so will not be there for
>> other block devices. But having the device specific attributes inside
>> one <device> directory is better/cleaner. And since we are already
>> following that model for other devices, why not follow that for MMC
>> also?
>
> I've already replied to a later version of the patch, but just to get
> this comment in at the appropriate point of the discussion as well:
>
> Even though it would result in a cleaner sysfs, I don't want to do
> this now because it will break userspace scripts that are depending
> on the current locations of these attributes.
>

Maya is adding a new sysfs attribute with that patch. So, there should
not be any user space stuff that depends on it.

Regards,
Muthu


> Thanks,
>
> - Chris.
> --
> Chris Ball   <cjb@laptop.org>   <http://printf.net/>
> One Laptop Per Child

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-07-16  1:49             ` Muthu Kumar
@ 2012-07-16  2:46               ` Chris Ball
  2012-07-16 16:44                 ` Muthu Kumar
  2012-07-17  4:15                 ` S, Venkatraman
  0 siblings, 2 replies; 44+ messages in thread
From: Chris Ball @ 2012-07-16  2:46 UTC (permalink / raw)
  To: Muthu Kumar; +Cc: merez, linux-mmc, linux-arm-msm, DOCUMENTATION, open list

Hi,

On Sun, Jul 15 2012, Muthu Kumar wrote:
>> I've already replied to a later version of the patch, but just to get
>> this comment in at the appropriate point of the discussion as well:
>>
>> Even though it would result in a cleaner sysfs, I don't want to do
>> this now because it will break userspace scripts that are depending
>> on the current locations of these attributes.
>
> Maya is adding a new sysfs attribute with that patch. So, there should
> not be any user space stuff that depends on it.

In the later patchset, Maya's "[PATCH v4 1/2] mmc: card: Move MMC
specific attributes to mmc sub-directory" moves the existing attributes
into the mmc/ directory.

It's that move that I'm objecting to, rather than the creation of a new
directory -- although since we're going to leave the current attributes
where they are, it might not make sense to add the new directory.

We'd be creating two places that people have to look for mmc-related
attributes, which is arguably less clean than having one place to look
even though it's mixed in with the other block device attributes.

Thanks,

- Chris.
-- 
Chris Ball   <cjb@laptop.org>   <http://printf.net/>
One Laptop Per Child

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-07-16  2:46               ` Chris Ball
@ 2012-07-16 16:44                 ` Muthu Kumar
  2012-07-17 22:50                   ` Chris Ball
  2012-07-17  4:15                 ` S, Venkatraman
  1 sibling, 1 reply; 44+ messages in thread
From: Muthu Kumar @ 2012-07-16 16:44 UTC (permalink / raw)
  To: Chris Ball, Jens Axboe
  Cc: merez, linux-mmc, linux-arm-msm, DOCUMENTATION, open list

On Sun, Jul 15, 2012 at 7:46 PM, Chris Ball <cjb@laptop.org> wrote:
> Hi,
>
> On Sun, Jul 15 2012, Muthu Kumar wrote:
>>> I've already replied to a later version of the patch, but just to get
>>> this comment in at the appropriate point of the discussion as well:
>>>
>>> Even though it would result in a cleaner sysfs, I don't want to do
>>> this now because it will break userspace scripts that are depending
>>> on the current locations of these attributes.
>>
>> Maya is adding a new sysfs attribute with that patch. So, there should
>> not be any user space stuff that depends on it.
>
> In the later patchset, Maya's "[PATCH v4 1/2] mmc: card: Move MMC
> specific attributes to mmc sub-directory" moves the existing attributes
> into the mmc/ directory.
>
> It's that move that I'm objecting to, rather than the creation of a new
> directory -- although since we're going to leave the current attributes
> where they are, it might not make sense to add the new directory.
>
> We'd be creating two places that people have to look for mmc-related
> attributes, which is arguably less clean than having one place to look
> even though it's mixed in with the other block device attributes.

So, what is the plan for fixing the user land tools and cleaning this up?

Jens,
What do you think?


Regards,
Muthu




>
> Thanks,
>
> - Chris.
> --
> Chris Ball   <cjb@laptop.org>   <http://printf.net/>
> One Laptop Per Child

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-07-16  2:46               ` Chris Ball
  2012-07-16 16:44                 ` Muthu Kumar
@ 2012-07-17  4:15                 ` S, Venkatraman
  1 sibling, 0 replies; 44+ messages in thread
From: S, Venkatraman @ 2012-07-17  4:15 UTC (permalink / raw)
  To: Chris Ball
  Cc: Muthu Kumar, merez, linux-mmc, linux-arm-msm, DOCUMENTATION, open list

On Mon, Jul 16, 2012 at 8:16 AM, Chris Ball <cjb@laptop.org> wrote:
> Hi,
>
> On Sun, Jul 15 2012, Muthu Kumar wrote:
>>> I've already replied to a later version of the patch, but just to get
>>> this comment in at the appropriate point of the discussion as well:
>>>
>>> Even though it would result in a cleaner sysfs, I don't want to do
>>> this now because it will break userspace scripts that are depending
>>> on the current locations of these attributes.
>>
>> Maya is adding a new sysfs attribute with that patch. So, there should
>> not be any user space stuff that depends on it.
>
> In the later patchset, Maya's "[PATCH v4 1/2] mmc: card: Move MMC
> specific attributes to mmc sub-directory" moves the existing attributes
> into the mmc/ directory.
>
> It's that move that I'm objecting to, rather than the creation of a new
> directory -- although since we're going to leave the current attributes
> where they are, it might not make sense to add the new directory.
>
> We'd be creating two places that people have to look for mmc-related
> attributes, which is arguably less clean than having one place to look
> even though it's mixed in with the other block device attributes.
>

It's better to normalise this eventually. It would be better if we create a
duplicate sysfs entry within MMC, which is identical to the current
block layer attribute. Then schedule the block layer attribute to be
removed by, say, 3.9. [Add it to Documentation/feature-removal-schedule.txt]

Since it is a MMC specific attribute, generic tools wouldn't depend on it.

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-07-16 16:44                 ` Muthu Kumar
@ 2012-07-17 22:50                   ` Chris Ball
  2012-07-18  6:34                     ` merez
  2012-07-19  0:33                     ` Muthu Kumar
  0 siblings, 2 replies; 44+ messages in thread
From: Chris Ball @ 2012-07-17 22:50 UTC (permalink / raw)
  To: Muthu Kumar
  Cc: Jens Axboe, merez, linux-mmc, linux-arm-msm, DOCUMENTATION, open list

Hi Muthu,

On Mon, Jul 16 2012, Muthu Kumar wrote:
> On Sun, Jul 15, 2012 at 7:46 PM, Chris Ball <cjb@laptop.org> wrote:
>> Hi,
>>
>> On Sun, Jul 15 2012, Muthu Kumar wrote:
>>>> I've already replied to a later version of the patch, but just to get
>>>> this comment in at the appropriate point of the discussion as well:
>>>>
>>>> Even though it would result in a cleaner sysfs, I don't want to do
>>>> this now because it will break userspace scripts that are depending
>>>> on the current locations of these attributes.
>>>
>>> Maya is adding a new sysfs attribute with that patch. So, there should
>>> not be any user space stuff that depends on it.
>>
>> In the later patchset, Maya's "[PATCH v4 1/2] mmc: card: Move MMC
>> specific attributes to mmc sub-directory" moves the existing attributes
>> into the mmc/ directory.
>>
>> It's that move that I'm objecting to, rather than the creation of a new
>> directory -- although since we're going to leave the current attributes
>> where they are, it might not make sense to add the new directory.
>>
>> We'd be creating two places that people have to look for mmc-related
>> attributes, which is arguably less clean than having one place to look
>> even though it's mixed in with the other block device attributes.
>
> So, what is the plan for fixing the user land tools and cleaning this up?

At the moment I don't have any plan to do that, because the cure
(potentially breaking userland scripts that are writing to some
read/write attributes, by breaking ABI to move everything into a
new directory) seems worse than the disease (having some attributes
in a directory that isn't the ideal one).

I'd be willing to explore something like Venkat's idea if the block
layer maintainers insist, though.

- Chris.
-- 
Chris Ball   <cjb@laptop.org>   <http://printf.net/>
One Laptop Per Child

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-07-17 22:50                   ` Chris Ball
@ 2012-07-18  6:34                     ` merez
  2012-07-18  7:26                         ` Chris Ball
  2012-07-19  0:33                     ` Muthu Kumar
  1 sibling, 1 reply; 44+ messages in thread
From: merez @ 2012-07-18  6:34 UTC (permalink / raw)
  To: Chris Ball
  Cc: Muthu Kumar, Jens Axboe, merez, linux-mmc, linux-arm-msm,
	DOCUMENTATION, open list

Hi Chris,

Is there anything else that holds this patch from being pushed to mmc-next?

Thanks,
Maya
On Tue, July 17, 2012 3:50 pm, Chris Ball wrote:
> Hi Muthu,
>
> On Mon, Jul 16 2012, Muthu Kumar wrote:
>> On Sun, Jul 15, 2012 at 7:46 PM, Chris Ball <cjb@laptop.org> wrote:
>>> Hi,
>>>
>>> On Sun, Jul 15 2012, Muthu Kumar wrote:
>>>>> I've already replied to a later version of the patch, but just to get
>>>>> this comment in at the appropriate point of the discussion as well:
>>>>>
>>>>> Even though it would result in a cleaner sysfs, I don't want to do
>>>>> this now because it will break userspace scripts that are depending
>>>>> on the current locations of these attributes.
>>>>
>>>> Maya is adding a new sysfs attribute with that patch. So, there should
>>>> not be any user space stuff that depends on it.
>>>
>>> In the later patchset, Maya's "[PATCH v4 1/2] mmc: card: Move MMC
>>> specific attributes to mmc sub-directory" moves the existing attributes
>>> into the mmc/ directory.
>>>
>>> It's that move that I'm objecting to, rather than the creation of a new
>>> directory -- although since we're going to leave the current attributes
>>> where they are, it might not make sense to add the new directory.
>>>
>>> We'd be creating two places that people have to look for mmc-related
>>> attributes, which is arguably less clean than having one place to look
>>> even though it's mixed in with the other block device attributes.
>>
>> So, what is the plan for fixing the user land tools and cleaning this
>> up?
>
> At the moment I don't have any plan to do that, because the cure
> (potentially breaking userland scripts that are writing to some
> read/write attributes, by breaking ABI to move everything into a
> new directory) seems worse than the disease (having some attributes
> in a directory that isn't the ideal one).
>
> I'd be willing to explore something like Venkat's idea if the block
> layer maintainers insist, though.
>
> - Chris.
> --
> Chris Ball   <cjb@laptop.org>   <http://printf.net/>
> One Laptop Per Child
>


-- 
Sent by consultant of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-07-18  6:34                     ` merez
@ 2012-07-18  7:26                         ` Chris Ball
  0 siblings, 0 replies; 44+ messages in thread
From: Chris Ball @ 2012-07-18  7:26 UTC (permalink / raw)
  To: merez
  Cc: Muthu Kumar, linux-mmc, linux-arm-msm, open list, S, Venkatraman,
	Seungwon Jeon

Hi,  [removing Jens and the documentation list, since now we're
talking about the MMC side only]

On Wed, Jul 18 2012, merez@codeaurora.org wrote:
> Is there anything else that holds this patch from being pushed to mmc-next?

Yes, I'm still uncomfortable with the write packing patchsets for a
couple of reasons, and I suspect that the sum of those reasons means
that we should probably plan on holding off merging it until after 3.6.

Here are the open issues; please correct any misunderstandings:

With Seungwon's patchset ("Support packed write command"):

* I still don't have a good set of representative benchmarks showing
  what kind of performance changes come with this patchset.  It seems
  like we've had a small amount of testing on one controller/eMMC part
  combo from Seungwon, and an entirely different test from Maya, and the
  results aren't documented fully anywhere to the level of describing
  what the hardware was, what the test was, and what the results were
  before and after the patchset.

With the reads-during-writes regression:

* Venkat still has open questions about the nature of the read
  regression, and thinks we should understand it with blktrace before
  trying to fix it.  Maya has a theory about writes overwhelming reads,
  but Venkat doesn't understand why this would explain the observed
  bandwidth drop.

With Maya's patchset ("write packing control"):

* Venkat thinks that HPI should be used, and the number-of-requests
  metric is too coarse, and it doesn't let you disable packing at the
  right time, and you're essentially implementing a new I/O scheduler
  inside the MMC subsystem without understanding the root cause for
  why that's necessary.

My sense is that there's no way we can solve all of these to
satisfaction in the next week (which is when the merge window will
open), but that by waiting a cycle we might come up with some good
answers.

What do other people think?  If you're excited about these patchsets,
now would be a fine time to come forward with your benchmarking results
and to help understand the reads-during-writes regression.

Thanks!

- Chris.
-- 
Chris Ball   <cjb@laptop.org>   <http://printf.net/>
One Laptop Per Child

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
@ 2012-07-18  7:26                         ` Chris Ball
  0 siblings, 0 replies; 44+ messages in thread
From: Chris Ball @ 2012-07-18  7:26 UTC (permalink / raw)
  To: merez
  Cc: Muthu Kumar, linux-mmc, linux-arm-msm, open list, S, Venkatraman,
	Seungwon Jeon

Hi,  [removing Jens and the documentation list, since now we're
talking about the MMC side only]

On Wed, Jul 18 2012, merez@codeaurora.org wrote:
> Is there anything else that holds this patch from being pushed to mmc-next?

Yes, I'm still uncomfortable with the write packing patchsets for a
couple of reasons, and I suspect that the sum of those reasons means
that we should probably plan on holding off merging it until after 3.6.

Here are the open issues; please correct any misunderstandings:

With Seungwon's patchset ("Support packed write command"):

* I still don't have a good set of representative benchmarks showing
  what kind of performance changes come with this patchset.  It seems
  like we've had a small amount of testing on one controller/eMMC part
  combo from Seungwon, and an entirely different test from Maya, and the
  results aren't documented fully anywhere to the level of describing
  what the hardware was, what the test was, and what the results were
  before and after the patchset.

With the reads-during-writes regression:

* Venkat still has open questions about the nature of the read
  regression, and thinks we should understand it with blktrace before
  trying to fix it.  Maya has a theory about writes overwhelming reads,
  but Venkat doesn't understand why this would explain the observed
  bandwidth drop.

With Maya's patchset ("write packing control"):

* Venkat thinks that HPI should be used, and the number-of-requests
  metric is too coarse, and it doesn't let you disable packing at the
  right time, and you're essentially implementing a new I/O scheduler
  inside the MMC subsystem without understanding the root cause for
  why that's necessary.

My sense is that there's no way we can solve all of these to
satisfaction in the next week (which is when the merge window will
open), but that by waiting a cycle we might come up with some good
answers.

What do other people think?  If you're excited about these patchsets,
now would be a fine time to come forward with your benchmarking results
and to help understand the reads-during-writes regression.

Thanks!

- Chris.
-- 
Chris Ball   <cjb@laptop.org>   <http://printf.net/>
One Laptop Per Child

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-07-17 22:50                   ` Chris Ball
  2012-07-18  6:34                     ` merez
@ 2012-07-19  0:33                     ` Muthu Kumar
  1 sibling, 0 replies; 44+ messages in thread
From: Muthu Kumar @ 2012-07-19  0:33 UTC (permalink / raw)
  To: Chris Ball
  Cc: Jens Axboe, merez, linux-mmc, linux-arm-msm, DOCUMENTATION, open list

>
> I'd be willing to explore something like Venkat's idea if the block
> layer maintainers insist, though.


Yeah... I guess it's upto Jens.


>
> - Chris.
> --
> Chris Ball   <cjb@laptop.org>   <http://printf.net/>
> One Laptop Per Child

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-08-28 17:40         ` S, Venkatraman
@ 2012-09-06  5:17           ` merez
  0 siblings, 0 replies; 44+ messages in thread
From: merez @ 2012-09-06  5:17 UTC (permalink / raw)
  To: S, Venkatraman
  Cc: merez, Chris Ball, Muthu Kumar, linux-mmc, linux-arm-msm,
	open list, Seungwon Jeon

Hi Venkat,

Sorry for the late response. I came back from a long vacation and had many
issues to take care of.
If you still need a rebased version of the packed commands patches, I can
send a rebased version of the write packing control patch once Seungwon
Jeon will send the rebased version of the packing patches.
Please let us know if you ran into conflicts and it is required.

Thanks,
Maya
On Tue, August 28, 2012 10:40 am, S, Venkatraman wrote:
> On Mon, Aug 27, 2012 at 11:58 PM,  <merez@codeaurora.org> wrote:
>>
>> On Fri, July 27, 2012 2:07 am, S, Venkatraman wrote:
>>> On Fri, Jul 27, 2012 at 12:24 AM,  <merez@codeaurora.org> wrote:
>>>>
>>>> On Thu, July 26, 2012 8:28 am, S, Venkatraman wrote:
>>>>> On Tue, Jul 24, 2012 at 2:14 PM,  <merez@codeaurora.org> wrote:
>>>>>> On Mon, July 23, 2012 5:22 am, S, Venkatraman wrote:
>>>>>>> On Mon, Jul 23, 2012 at 5:13 PM,  <merez@codeaurora.org> wrote:
>>>>>>>> On Wed, July 18, 2012 12:26 am, Chris Ball wrote:
>>>>>>>>> Hi,  [removing Jens and the documentation list, since now we're
>>>>>> talking about the MMC side only]
>>>>>>>>> On Wed, Jul 18 2012, merez@codeaurora.org wrote:
>>>>>>>>>> Is there anything else that holds this patch from being pushed
>>>>>>>>>> to
>>>>>>>> mmc-next?
>>>>>>>>> Yes, I'm still uncomfortable with the write packing patchsets for
>>>>>>>>> a
>>>>>>>> couple of reasons, and I suspect that the sum of those reasons
>>>>>>>> means
>>>>>>>> that
>>>>>>>> we should probably plan on holding off merging it until after 3.6.
>>>>>>>>> Here are the open issues; please correct any misunderstandings:
>>>>>>>>> With
>>>>>> Seungwon's patchset ("Support packed write command"):
>>>>>>>>> * I still don't have a good set of representative benchmarks
>>>>>>>>> showing
>>>>>>>>>   what kind of performance changes come with this patchset.  It
>>>>>>>>> seems
>>>>>>>> like we've had a small amount of testing on one controller/eMMC
>>>>>>>> part
>>>>>>>> combo
>>>>>>>> from Seungwon, and an entirely different test from Maya, and the
>>>>>> results
>>>>>>>> aren't documented fully anywhere to the level of describing what
>>>>>>>> the
>>>>>> hardware was, what the test was, and what the results were before
>>>>>> and
>>>>>> after the patchset.
>>>>>>>> Currently, there is only one card vendor that supports packed
>>>>>>>> commands.
>>>>>> Following are our sequential write (LMDD) test results on 2 of our
>>>>>> targets
>>>>>>>> (in MB/s):
>>>>>>>>                        No packing        packing
>>>>>>>> Target 1 (SDR 50MHz)     15               25
>>>>>>>> Target 2 (DDR 50MHz)     20               30
>>>>>>>>> With the reads-during-writes regression:
>>>>>>>>> * Venkat still has open questions about the nature of the read
>>>>>>>>>   regression, and thinks we should understand it with blktrace
>>>>>>>>> before
>>>>>>>> trying to fix it.  Maya has a theory about writes overwhelming
>>>>>>>> reads,
>>>>>>>> but
>>>>>>>> Venkat doesn't understand why this would explain the observed
>>>>>>>> bandwidth drop.
>>>>>>>> The degradation of read due to writes is not a new behavior and
>>>>>>>> exists
>>>>>> also without the write packing feature (which only increases the
>>>>>> degradation). Our investigation of this phenomenon led us to the
>>>>>> Conclusion that a new scheduling policy should be used for mobile
>>>>>> devices,
>>>>>>>> but this is not related to the current discussion of the write
>>>>>>>> packing
>>>>>> feature.
>>>>>>>> The write packing feature increases the degradation of read due to
>>>>>> write
>>>>>>>> since it allows the MMC to fetch many write requests in a row,
>>>>>>>> instead
>>>>>>>> of
>>>>>>>> fetching only one at a time.  Therefore some of the read requests
>>>>>>>> will
>>>>>> have to wait for the completion of more write requests before they
>>>>>> can
>>>>>> be
>>>>>>>> issued.
>>>>>>>
>>>>>>> I am a bit puzzled by this claim. One thing I checked carefully
>>>>>>> when
>>>>>> reviewing write packing patches from SJeon was that the code didn't
>>>>>> plough through a mixed list of reads and writes and selected only
>>>>>> writes.
>>>>>>> This section of the code in "mmc_blk_prep_packed_list()", from v8
>>>>>> patchset..
>>>>>>> <Quote>
>>>>>>> +               if (rq_data_dir(cur) != rq_data_dir(next)) {
>>>>>>> +                       put_back = 1;
>>>>>>> +                       break;
>>>>>>> +               }
>>>>>>> </Quote>
>>>>>>>
>>>>>>> means that once a read is encountered in the middle of write
>>>>>>> packing,
>>>>>> the packing is stopped at that point and it is executed. Then the
>>>>>> next
>>>>>> blk_fetch_request should get the next read and continue as before.
>>>>>>>
>>>>>>> IOW, the ordering of reads and writes is _not_ altered when using
>>>>>>> packed
>>>>>> commands.
>>>>>>> For example if there were 5 write requests, followed by 1 read,
>>>>>>> followed by 5 more write requests in the request_queue, the first 5
>>>>>> writes will be executed as one "packed command", then the read will
>>>>>> be
>>>>>> executed, and then the remaining 5 writes will be executed as one
>>>>>> "packed command". So the read does not have to wait any more than it
>>>>>> waited before (packing feature)
>>>>>>
>>>>>> Let me try to better explain with your example.
>>>>>> Without packing the MMC layer will fetch 2 write requests and wait
>>>>>> for
>>>>>> the
>>>>>> first write request completion before fetching another write
>>>>>> request.
>>>>>> During this time the read request could be inserted into the CFQ and
>>>>>> since
>>>>>> it has higher priority than the async write it will be dispatched in
>>>>>> the
>>>>>> next fetch. So, the result would be 2 write requests followed by one
>>>>>> read
>>>>>> request and the read would have to wait for completion of only 2
>>>>>> write
>>>>>> requests.
>>>>>> With packing, all the 5 write requests will be fetched in a row, and
>>>>>> then
>>>>>> the read will arrive and be dispatched in the next fetch. Then the
>>>>>> read
>>>>>> will have to wait for the completion of 5 write requests.
>>>>>>
>>>>>> Few more clarifications:
>>>>>> Due to the plug list mechanism in the block layer the applications
>>>>>> can
>>>>>> "aggregate" several requests to be inserted into the scheduler
>>>>>> before
>>>>>> waking the MMC queue thread.
>>>>>> This leads to a situation where there are several write requests in
>>>>>> the
>>>>>> CFQ queue when MMC starts to do the fetches.
>>>>>>
>>>>>> If the read was inserted while we are building the packed command
>>>>>> then
>>>>>> I
>>>>>> agree that we should have seen less effect on the read performance.
>>>>>> However, the write packing statistics show that in most of the cases
>>>>>> the
>>>>>> packing stopped due to an empty queue, meaning that the read was
>>>>>> inserted
>>>>>> to the CFQ after all the pending write requests were fetched and
>>>>>> packed.
>>>>>>
>>>>>> Following is an example for write packing statistics of a READ/WRITE
>>>>>> parallel scenario:
>>>>>> write packing statistics:
>>>>>> Packed 1 reqs - 448 times
>>>>>> Packed 2 reqs - 38 times
>>>>>> Packed 3 reqs - 23 times
>>>>>> Packed 4 reqs - 30 times
>>>>>> Packed 5 reqs - 14 times
>>>>>> Packed 6 reqs - 8 times
>>>>>> Packed 7 reqs - 4 times
>>>>>> Packed 8 reqs - 1 times
>>>>>> Packed 10 reqs - 1 times
>>>>>> Packed 34 reqs - 1 times
>>>>>> stopped packing due to the following reasons:
>>>>>> 2 times: wrong data direction (meaning a READ was fetched and
>>>>>> stopped
>>>>>> the
>>>>>> packing)
>>>>>> 1 times: flush or discard
>>>>>> 565 times: empty queue (meaning blk_fetch_request returned NULL)
>>>>>>
>>>>>>>
>>>>>>> And I requested blktrace to confirm that this is indeed the
>>>>>>> behaviour.
>>>>>>
>>>>>> The trace logs show that in case of no packing, there are maximum of
>>>>>> 3-4
>>>>>> requests issued before a read request, while with packing there are
>>>>>> also
>>>>>> cases of 6 and 7 requests dispatched before a read request.
>>>>>>
>>>>>> I'm waiting for an approval for sharing the block trace logs.
>>>>>> Since this is a simple test to run you can collect the trace logs
>>>>>> and
>>>>>> let
>>>>>> us know if you reach other conclusions.
>>>>>>
>>>>> Thanks for the brief. I don't have the eMMC4.5 device with me yet, so
>>>>> I can't reproduce the result.
>>>>
>>>> I sent the trace logs of both packing and non packing. Please let me
>>>> know
>>>> if you have additional questions after reviewing them.
>>>>
>>>> The problem you describe is most likely
>>>>> applicable
>>>>> to any block device driver with a large queue depth ( any queue depth
>>>>> >1).
>>>>> I'll check to see what knobs in block affect the result.
>>>>> Speaking of it, what is the host controller you use to test this ?
>>>>
>>>> The controller I use is msm_sdcc.
>>>>
>>>>> I was wondering if host->max_seg_size is taken into account while
>>>>> packed
>>>>> command
>>>>> is in use. If not, shouldn't it be ?  - it could act as a better
>>>>> throttle for "packing density".
>>>>
>>>> The max segments (which is calculated from host->max_seg_size) is
>>>> taking
>>>> into account when preparing the packed list (so that the whole packed
>>>> won't exceed the max number of segments).
>>>> I'm not sure I understand how host->max_seg_size can be used as a
>>>> throttle
>>>> for "packing density". Can you please explain?
>>>>
>>> Ok - I overlooked that max_segments is indeed used to limit the number
>>> of requests
>>> that are packed.(And this corresponds to max_seg_size, which is what I
>>> intended)
>>> I should be getting my MMC4.5 test gear in a couple of days - I'll run
>>> it through
>>> on some hosts and can either provide more feedback or Ack this patch.
>>> Regards,
>>> Venkat.
>>
>> Hi Venkat,
>>
>> Do you have additional questions/comments?
>>
> None. I am just running some stress tests on BKOPS patches right now
> and after tomorrow I'll start testing packed command. Will all the
> patches apply on top of current mmc-next ? If not, it would be great
> if
> you can send an updated version.
>
> Thanks,
> Venkat.
> --
> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>


-- 
QUALCOMM ISRAEL, on behalf of Qualcomm Innovation Center, Inc. is a member
of Code Aurora Forum, hosted by The Linux Foundation

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-08-27 18:28       ` merez
@ 2012-08-28 17:40         ` S, Venkatraman
  2012-09-06  5:17           ` merez
  0 siblings, 1 reply; 44+ messages in thread
From: S, Venkatraman @ 2012-08-28 17:40 UTC (permalink / raw)
  To: merez
  Cc: Chris Ball, Muthu Kumar, linux-mmc, linux-arm-msm, open list,
	Seungwon Jeon

On Mon, Aug 27, 2012 at 11:58 PM,  <merez@codeaurora.org> wrote:
>
> On Fri, July 27, 2012 2:07 am, S, Venkatraman wrote:
>> On Fri, Jul 27, 2012 at 12:24 AM,  <merez@codeaurora.org> wrote:
>>>
>>> On Thu, July 26, 2012 8:28 am, S, Venkatraman wrote:
>>>> On Tue, Jul 24, 2012 at 2:14 PM,  <merez@codeaurora.org> wrote:
>>>>> On Mon, July 23, 2012 5:22 am, S, Venkatraman wrote:
>>>>>> On Mon, Jul 23, 2012 at 5:13 PM,  <merez@codeaurora.org> wrote:
>>>>>>> On Wed, July 18, 2012 12:26 am, Chris Ball wrote:
>>>>>>>> Hi,  [removing Jens and the documentation list, since now we're
>>>>> talking about the MMC side only]
>>>>>>>> On Wed, Jul 18 2012, merez@codeaurora.org wrote:
>>>>>>>>> Is there anything else that holds this patch from being pushed to
>>>>>>> mmc-next?
>>>>>>>> Yes, I'm still uncomfortable with the write packing patchsets for a
>>>>>>> couple of reasons, and I suspect that the sum of those reasons means
>>>>>>> that
>>>>>>> we should probably plan on holding off merging it until after 3.6.
>>>>>>>> Here are the open issues; please correct any misunderstandings:
>>>>>>>> With
>>>>> Seungwon's patchset ("Support packed write command"):
>>>>>>>> * I still don't have a good set of representative benchmarks
>>>>>>>> showing
>>>>>>>>   what kind of performance changes come with this patchset.  It
>>>>>>>> seems
>>>>>>> like we've had a small amount of testing on one controller/eMMC part
>>>>>>> combo
>>>>>>> from Seungwon, and an entirely different test from Maya, and the
>>>>> results
>>>>>>> aren't documented fully anywhere to the level of describing what the
>>>>> hardware was, what the test was, and what the results were before and
>>>>> after the patchset.
>>>>>>> Currently, there is only one card vendor that supports packed
>>>>>>> commands.
>>>>> Following are our sequential write (LMDD) test results on 2 of our
>>>>> targets
>>>>>>> (in MB/s):
>>>>>>>                        No packing        packing
>>>>>>> Target 1 (SDR 50MHz)     15               25
>>>>>>> Target 2 (DDR 50MHz)     20               30
>>>>>>>> With the reads-during-writes regression:
>>>>>>>> * Venkat still has open questions about the nature of the read
>>>>>>>>   regression, and thinks we should understand it with blktrace
>>>>>>>> before
>>>>>>> trying to fix it.  Maya has a theory about writes overwhelming
>>>>>>> reads,
>>>>>>> but
>>>>>>> Venkat doesn't understand why this would explain the observed
>>>>>>> bandwidth drop.
>>>>>>> The degradation of read due to writes is not a new behavior and
>>>>>>> exists
>>>>> also without the write packing feature (which only increases the
>>>>> degradation). Our investigation of this phenomenon led us to the
>>>>> Conclusion that a new scheduling policy should be used for mobile
>>>>> devices,
>>>>>>> but this is not related to the current discussion of the write
>>>>>>> packing
>>>>> feature.
>>>>>>> The write packing feature increases the degradation of read due to
>>>>> write
>>>>>>> since it allows the MMC to fetch many write requests in a row,
>>>>>>> instead
>>>>>>> of
>>>>>>> fetching only one at a time.  Therefore some of the read requests
>>>>>>> will
>>>>> have to wait for the completion of more write requests before they can
>>>>> be
>>>>>>> issued.
>>>>>>
>>>>>> I am a bit puzzled by this claim. One thing I checked carefully when
>>>>> reviewing write packing patches from SJeon was that the code didn't
>>>>> plough through a mixed list of reads and writes and selected only
>>>>> writes.
>>>>>> This section of the code in "mmc_blk_prep_packed_list()", from v8
>>>>> patchset..
>>>>>> <Quote>
>>>>>> +               if (rq_data_dir(cur) != rq_data_dir(next)) {
>>>>>> +                       put_back = 1;
>>>>>> +                       break;
>>>>>> +               }
>>>>>> </Quote>
>>>>>>
>>>>>> means that once a read is encountered in the middle of write packing,
>>>>> the packing is stopped at that point and it is executed. Then the next
>>>>> blk_fetch_request should get the next read and continue as before.
>>>>>>
>>>>>> IOW, the ordering of reads and writes is _not_ altered when using
>>>>>> packed
>>>>> commands.
>>>>>> For example if there were 5 write requests, followed by 1 read,
>>>>>> followed by 5 more write requests in the request_queue, the first 5
>>>>> writes will be executed as one "packed command", then the read will be
>>>>> executed, and then the remaining 5 writes will be executed as one
>>>>> "packed command". So the read does not have to wait any more than it
>>>>> waited before (packing feature)
>>>>>
>>>>> Let me try to better explain with your example.
>>>>> Without packing the MMC layer will fetch 2 write requests and wait for
>>>>> the
>>>>> first write request completion before fetching another write request.
>>>>> During this time the read request could be inserted into the CFQ and
>>>>> since
>>>>> it has higher priority than the async write it will be dispatched in
>>>>> the
>>>>> next fetch. So, the result would be 2 write requests followed by one
>>>>> read
>>>>> request and the read would have to wait for completion of only 2 write
>>>>> requests.
>>>>> With packing, all the 5 write requests will be fetched in a row, and
>>>>> then
>>>>> the read will arrive and be dispatched in the next fetch. Then the
>>>>> read
>>>>> will have to wait for the completion of 5 write requests.
>>>>>
>>>>> Few more clarifications:
>>>>> Due to the plug list mechanism in the block layer the applications can
>>>>> "aggregate" several requests to be inserted into the scheduler before
>>>>> waking the MMC queue thread.
>>>>> This leads to a situation where there are several write requests in
>>>>> the
>>>>> CFQ queue when MMC starts to do the fetches.
>>>>>
>>>>> If the read was inserted while we are building the packed command then
>>>>> I
>>>>> agree that we should have seen less effect on the read performance.
>>>>> However, the write packing statistics show that in most of the cases
>>>>> the
>>>>> packing stopped due to an empty queue, meaning that the read was
>>>>> inserted
>>>>> to the CFQ after all the pending write requests were fetched and
>>>>> packed.
>>>>>
>>>>> Following is an example for write packing statistics of a READ/WRITE
>>>>> parallel scenario:
>>>>> write packing statistics:
>>>>> Packed 1 reqs - 448 times
>>>>> Packed 2 reqs - 38 times
>>>>> Packed 3 reqs - 23 times
>>>>> Packed 4 reqs - 30 times
>>>>> Packed 5 reqs - 14 times
>>>>> Packed 6 reqs - 8 times
>>>>> Packed 7 reqs - 4 times
>>>>> Packed 8 reqs - 1 times
>>>>> Packed 10 reqs - 1 times
>>>>> Packed 34 reqs - 1 times
>>>>> stopped packing due to the following reasons:
>>>>> 2 times: wrong data direction (meaning a READ was fetched and stopped
>>>>> the
>>>>> packing)
>>>>> 1 times: flush or discard
>>>>> 565 times: empty queue (meaning blk_fetch_request returned NULL)
>>>>>
>>>>>>
>>>>>> And I requested blktrace to confirm that this is indeed the
>>>>>> behaviour.
>>>>>
>>>>> The trace logs show that in case of no packing, there are maximum of
>>>>> 3-4
>>>>> requests issued before a read request, while with packing there are
>>>>> also
>>>>> cases of 6 and 7 requests dispatched before a read request.
>>>>>
>>>>> I'm waiting for an approval for sharing the block trace logs.
>>>>> Since this is a simple test to run you can collect the trace logs and
>>>>> let
>>>>> us know if you reach other conclusions.
>>>>>
>>>> Thanks for the brief. I don't have the eMMC4.5 device with me yet, so
>>>> I can't reproduce the result.
>>>
>>> I sent the trace logs of both packing and non packing. Please let me
>>> know
>>> if you have additional questions after reviewing them.
>>>
>>> The problem you describe is most likely
>>>> applicable
>>>> to any block device driver with a large queue depth ( any queue depth
>>>> >1).
>>>> I'll check to see what knobs in block affect the result.
>>>> Speaking of it, what is the host controller you use to test this ?
>>>
>>> The controller I use is msm_sdcc.
>>>
>>>> I was wondering if host->max_seg_size is taken into account while
>>>> packed
>>>> command
>>>> is in use. If not, shouldn't it be ?  - it could act as a better
>>>> throttle for "packing density".
>>>
>>> The max segments (which is calculated from host->max_seg_size) is taking
>>> into account when preparing the packed list (so that the whole packed
>>> won't exceed the max number of segments).
>>> I'm not sure I understand how host->max_seg_size can be used as a
>>> throttle
>>> for "packing density". Can you please explain?
>>>
>> Ok - I overlooked that max_segments is indeed used to limit the number
>> of requests
>> that are packed.(And this corresponds to max_seg_size, which is what I
>> intended)
>> I should be getting my MMC4.5 test gear in a couple of days - I'll run
>> it through
>> on some hosts and can either provide more feedback or Ack this patch.
>> Regards,
>> Venkat.
>
> Hi Venkat,
>
> Do you have additional questions/comments?
>
None. I am just running some stress tests on BKOPS patches right now
and after tomorrow I'll start testing packed command. Will all the
patches apply on top of current mmc-next ? If not, it would be great
if
you can send an updated version.

Thanks,
Venkat.

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-07-27  9:07     ` S, Venkatraman
@ 2012-08-27 18:28       ` merez
  2012-08-28 17:40         ` S, Venkatraman
  0 siblings, 1 reply; 44+ messages in thread
From: merez @ 2012-08-27 18:28 UTC (permalink / raw)
  To: S, Venkatraman
  Cc: merez, Chris Ball, Muthu Kumar, linux-mmc, linux-arm-msm,
	open list, Seungwon Jeon


On Fri, July 27, 2012 2:07 am, S, Venkatraman wrote:
> On Fri, Jul 27, 2012 at 12:24 AM,  <merez@codeaurora.org> wrote:
>>
>> On Thu, July 26, 2012 8:28 am, S, Venkatraman wrote:
>>> On Tue, Jul 24, 2012 at 2:14 PM,  <merez@codeaurora.org> wrote:
>>>> On Mon, July 23, 2012 5:22 am, S, Venkatraman wrote:
>>>>> On Mon, Jul 23, 2012 at 5:13 PM,  <merez@codeaurora.org> wrote:
>>>>>> On Wed, July 18, 2012 12:26 am, Chris Ball wrote:
>>>>>>> Hi,  [removing Jens and the documentation list, since now we're
>>>> talking about the MMC side only]
>>>>>>> On Wed, Jul 18 2012, merez@codeaurora.org wrote:
>>>>>>>> Is there anything else that holds this patch from being pushed to
>>>>>> mmc-next?
>>>>>>> Yes, I'm still uncomfortable with the write packing patchsets for a
>>>>>> couple of reasons, and I suspect that the sum of those reasons means
>>>>>> that
>>>>>> we should probably plan on holding off merging it until after 3.6.
>>>>>>> Here are the open issues; please correct any misunderstandings:
>>>>>>> With
>>>> Seungwon's patchset ("Support packed write command"):
>>>>>>> * I still don't have a good set of representative benchmarks
>>>>>>> showing
>>>>>>>   what kind of performance changes come with this patchset.  It
>>>>>>> seems
>>>>>> like we've had a small amount of testing on one controller/eMMC part
>>>>>> combo
>>>>>> from Seungwon, and an entirely different test from Maya, and the
>>>> results
>>>>>> aren't documented fully anywhere to the level of describing what the
>>>> hardware was, what the test was, and what the results were before and
>>>> after the patchset.
>>>>>> Currently, there is only one card vendor that supports packed
>>>>>> commands.
>>>> Following are our sequential write (LMDD) test results on 2 of our
>>>> targets
>>>>>> (in MB/s):
>>>>>>                        No packing        packing
>>>>>> Target 1 (SDR 50MHz)     15               25
>>>>>> Target 2 (DDR 50MHz)     20               30
>>>>>>> With the reads-during-writes regression:
>>>>>>> * Venkat still has open questions about the nature of the read
>>>>>>>   regression, and thinks we should understand it with blktrace
>>>>>>> before
>>>>>> trying to fix it.  Maya has a theory about writes overwhelming
>>>>>> reads,
>>>>>> but
>>>>>> Venkat doesn't understand why this would explain the observed
>>>>>> bandwidth drop.
>>>>>> The degradation of read due to writes is not a new behavior and
>>>>>> exists
>>>> also without the write packing feature (which only increases the
>>>> degradation). Our investigation of this phenomenon led us to the
>>>> Conclusion that a new scheduling policy should be used for mobile
>>>> devices,
>>>>>> but this is not related to the current discussion of the write
>>>>>> packing
>>>> feature.
>>>>>> The write packing feature increases the degradation of read due to
>>>> write
>>>>>> since it allows the MMC to fetch many write requests in a row,
>>>>>> instead
>>>>>> of
>>>>>> fetching only one at a time.  Therefore some of the read requests
>>>>>> will
>>>> have to wait for the completion of more write requests before they can
>>>> be
>>>>>> issued.
>>>>>
>>>>> I am a bit puzzled by this claim. One thing I checked carefully when
>>>> reviewing write packing patches from SJeon was that the code didn't
>>>> plough through a mixed list of reads and writes and selected only
>>>> writes.
>>>>> This section of the code in "mmc_blk_prep_packed_list()", from v8
>>>> patchset..
>>>>> <Quote>
>>>>> +               if (rq_data_dir(cur) != rq_data_dir(next)) {
>>>>> +                       put_back = 1;
>>>>> +                       break;
>>>>> +               }
>>>>> </Quote>
>>>>>
>>>>> means that once a read is encountered in the middle of write packing,
>>>> the packing is stopped at that point and it is executed. Then the next
>>>> blk_fetch_request should get the next read and continue as before.
>>>>>
>>>>> IOW, the ordering of reads and writes is _not_ altered when using
>>>>> packed
>>>> commands.
>>>>> For example if there were 5 write requests, followed by 1 read,
>>>>> followed by 5 more write requests in the request_queue, the first 5
>>>> writes will be executed as one "packed command", then the read will be
>>>> executed, and then the remaining 5 writes will be executed as one
>>>> "packed command". So the read does not have to wait any more than it
>>>> waited before (packing feature)
>>>>
>>>> Let me try to better explain with your example.
>>>> Without packing the MMC layer will fetch 2 write requests and wait for
>>>> the
>>>> first write request completion before fetching another write request.
>>>> During this time the read request could be inserted into the CFQ and
>>>> since
>>>> it has higher priority than the async write it will be dispatched in
>>>> the
>>>> next fetch. So, the result would be 2 write requests followed by one
>>>> read
>>>> request and the read would have to wait for completion of only 2 write
>>>> requests.
>>>> With packing, all the 5 write requests will be fetched in a row, and
>>>> then
>>>> the read will arrive and be dispatched in the next fetch. Then the
>>>> read
>>>> will have to wait for the completion of 5 write requests.
>>>>
>>>> Few more clarifications:
>>>> Due to the plug list mechanism in the block layer the applications can
>>>> "aggregate" several requests to be inserted into the scheduler before
>>>> waking the MMC queue thread.
>>>> This leads to a situation where there are several write requests in
>>>> the
>>>> CFQ queue when MMC starts to do the fetches.
>>>>
>>>> If the read was inserted while we are building the packed command then
>>>> I
>>>> agree that we should have seen less effect on the read performance.
>>>> However, the write packing statistics show that in most of the cases
>>>> the
>>>> packing stopped due to an empty queue, meaning that the read was
>>>> inserted
>>>> to the CFQ after all the pending write requests were fetched and
>>>> packed.
>>>>
>>>> Following is an example for write packing statistics of a READ/WRITE
>>>> parallel scenario:
>>>> write packing statistics:
>>>> Packed 1 reqs - 448 times
>>>> Packed 2 reqs - 38 times
>>>> Packed 3 reqs - 23 times
>>>> Packed 4 reqs - 30 times
>>>> Packed 5 reqs - 14 times
>>>> Packed 6 reqs - 8 times
>>>> Packed 7 reqs - 4 times
>>>> Packed 8 reqs - 1 times
>>>> Packed 10 reqs - 1 times
>>>> Packed 34 reqs - 1 times
>>>> stopped packing due to the following reasons:
>>>> 2 times: wrong data direction (meaning a READ was fetched and stopped
>>>> the
>>>> packing)
>>>> 1 times: flush or discard
>>>> 565 times: empty queue (meaning blk_fetch_request returned NULL)
>>>>
>>>>>
>>>>> And I requested blktrace to confirm that this is indeed the
>>>>> behaviour.
>>>>
>>>> The trace logs show that in case of no packing, there are maximum of
>>>> 3-4
>>>> requests issued before a read request, while with packing there are
>>>> also
>>>> cases of 6 and 7 requests dispatched before a read request.
>>>>
>>>> I'm waiting for an approval for sharing the block trace logs.
>>>> Since this is a simple test to run you can collect the trace logs and
>>>> let
>>>> us know if you reach other conclusions.
>>>>
>>> Thanks for the brief. I don't have the eMMC4.5 device with me yet, so
>>> I can't reproduce the result.
>>
>> I sent the trace logs of both packing and non packing. Please let me
>> know
>> if you have additional questions after reviewing them.
>>
>> The problem you describe is most likely
>>> applicable
>>> to any block device driver with a large queue depth ( any queue depth
>>> >1).
>>> I'll check to see what knobs in block affect the result.
>>> Speaking of it, what is the host controller you use to test this ?
>>
>> The controller I use is msm_sdcc.
>>
>>> I was wondering if host->max_seg_size is taken into account while
>>> packed
>>> command
>>> is in use. If not, shouldn't it be ?  - it could act as a better
>>> throttle for "packing density".
>>
>> The max segments (which is calculated from host->max_seg_size) is taking
>> into account when preparing the packed list (so that the whole packed
>> won't exceed the max number of segments).
>> I'm not sure I understand how host->max_seg_size can be used as a
>> throttle
>> for "packing density". Can you please explain?
>>
> Ok - I overlooked that max_segments is indeed used to limit the number
> of requests
> that are packed.(And this corresponds to max_seg_size, which is what I
> intended)
> I should be getting my MMC4.5 test gear in a couple of days - I'll run
> it through
> on some hosts and can either provide more feedback or Ack this patch.
> Regards,
> Venkat.

Hi Venkat,

Do you have additional questions/comments?

Thanks,
Maya
-- 
Sent by consultant of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-07-26 18:54   ` merez
@ 2012-07-27  9:07     ` S, Venkatraman
  2012-08-27 18:28       ` merez
  0 siblings, 1 reply; 44+ messages in thread
From: S, Venkatraman @ 2012-07-27  9:07 UTC (permalink / raw)
  To: merez
  Cc: Chris Ball, Muthu Kumar, linux-mmc, linux-arm-msm, open list,
	Seungwon Jeon

On Fri, Jul 27, 2012 at 12:24 AM,  <merez@codeaurora.org> wrote:
>
> On Thu, July 26, 2012 8:28 am, S, Venkatraman wrote:
>> On Tue, Jul 24, 2012 at 2:14 PM,  <merez@codeaurora.org> wrote:
>>> On Mon, July 23, 2012 5:22 am, S, Venkatraman wrote:
>>>> On Mon, Jul 23, 2012 at 5:13 PM,  <merez@codeaurora.org> wrote:
>>>>> On Wed, July 18, 2012 12:26 am, Chris Ball wrote:
>>>>>> Hi,  [removing Jens and the documentation list, since now we're
>>> talking about the MMC side only]
>>>>>> On Wed, Jul 18 2012, merez@codeaurora.org wrote:
>>>>>>> Is there anything else that holds this patch from being pushed to
>>>>> mmc-next?
>>>>>> Yes, I'm still uncomfortable with the write packing patchsets for a
>>>>> couple of reasons, and I suspect that the sum of those reasons means
>>>>> that
>>>>> we should probably plan on holding off merging it until after 3.6.
>>>>>> Here are the open issues; please correct any misunderstandings: With
>>> Seungwon's patchset ("Support packed write command"):
>>>>>> * I still don't have a good set of representative benchmarks showing
>>>>>>   what kind of performance changes come with this patchset.  It seems
>>>>> like we've had a small amount of testing on one controller/eMMC part
>>>>> combo
>>>>> from Seungwon, and an entirely different test from Maya, and the
>>> results
>>>>> aren't documented fully anywhere to the level of describing what the
>>> hardware was, what the test was, and what the results were before and
>>> after the patchset.
>>>>> Currently, there is only one card vendor that supports packed
>>>>> commands.
>>> Following are our sequential write (LMDD) test results on 2 of our
>>> targets
>>>>> (in MB/s):
>>>>>                        No packing        packing
>>>>> Target 1 (SDR 50MHz)     15               25
>>>>> Target 2 (DDR 50MHz)     20               30
>>>>>> With the reads-during-writes regression:
>>>>>> * Venkat still has open questions about the nature of the read
>>>>>>   regression, and thinks we should understand it with blktrace before
>>>>> trying to fix it.  Maya has a theory about writes overwhelming reads,
>>>>> but
>>>>> Venkat doesn't understand why this would explain the observed
>>>>> bandwidth drop.
>>>>> The degradation of read due to writes is not a new behavior and exists
>>> also without the write packing feature (which only increases the
>>> degradation). Our investigation of this phenomenon led us to the
>>> Conclusion that a new scheduling policy should be used for mobile
>>> devices,
>>>>> but this is not related to the current discussion of the write packing
>>> feature.
>>>>> The write packing feature increases the degradation of read due to
>>> write
>>>>> since it allows the MMC to fetch many write requests in a row, instead
>>>>> of
>>>>> fetching only one at a time.  Therefore some of the read requests will
>>> have to wait for the completion of more write requests before they can
>>> be
>>>>> issued.
>>>>
>>>> I am a bit puzzled by this claim. One thing I checked carefully when
>>> reviewing write packing patches from SJeon was that the code didn't
>>> plough through a mixed list of reads and writes and selected only
>>> writes.
>>>> This section of the code in "mmc_blk_prep_packed_list()", from v8
>>> patchset..
>>>> <Quote>
>>>> +               if (rq_data_dir(cur) != rq_data_dir(next)) {
>>>> +                       put_back = 1;
>>>> +                       break;
>>>> +               }
>>>> </Quote>
>>>>
>>>> means that once a read is encountered in the middle of write packing,
>>> the packing is stopped at that point and it is executed. Then the next
>>> blk_fetch_request should get the next read and continue as before.
>>>>
>>>> IOW, the ordering of reads and writes is _not_ altered when using
>>>> packed
>>> commands.
>>>> For example if there were 5 write requests, followed by 1 read,
>>>> followed by 5 more write requests in the request_queue, the first 5
>>> writes will be executed as one "packed command", then the read will be
>>> executed, and then the remaining 5 writes will be executed as one
>>> "packed command". So the read does not have to wait any more than it
>>> waited before (packing feature)
>>>
>>> Let me try to better explain with your example.
>>> Without packing the MMC layer will fetch 2 write requests and wait for
>>> the
>>> first write request completion before fetching another write request.
>>> During this time the read request could be inserted into the CFQ and
>>> since
>>> it has higher priority than the async write it will be dispatched in the
>>> next fetch. So, the result would be 2 write requests followed by one
>>> read
>>> request and the read would have to wait for completion of only 2 write
>>> requests.
>>> With packing, all the 5 write requests will be fetched in a row, and
>>> then
>>> the read will arrive and be dispatched in the next fetch. Then the read
>>> will have to wait for the completion of 5 write requests.
>>>
>>> Few more clarifications:
>>> Due to the plug list mechanism in the block layer the applications can
>>> "aggregate" several requests to be inserted into the scheduler before
>>> waking the MMC queue thread.
>>> This leads to a situation where there are several write requests in the
>>> CFQ queue when MMC starts to do the fetches.
>>>
>>> If the read was inserted while we are building the packed command then I
>>> agree that we should have seen less effect on the read performance.
>>> However, the write packing statistics show that in most of the cases the
>>> packing stopped due to an empty queue, meaning that the read was
>>> inserted
>>> to the CFQ after all the pending write requests were fetched and packed.
>>>
>>> Following is an example for write packing statistics of a READ/WRITE
>>> parallel scenario:
>>> write packing statistics:
>>> Packed 1 reqs - 448 times
>>> Packed 2 reqs - 38 times
>>> Packed 3 reqs - 23 times
>>> Packed 4 reqs - 30 times
>>> Packed 5 reqs - 14 times
>>> Packed 6 reqs - 8 times
>>> Packed 7 reqs - 4 times
>>> Packed 8 reqs - 1 times
>>> Packed 10 reqs - 1 times
>>> Packed 34 reqs - 1 times
>>> stopped packing due to the following reasons:
>>> 2 times: wrong data direction (meaning a READ was fetched and stopped
>>> the
>>> packing)
>>> 1 times: flush or discard
>>> 565 times: empty queue (meaning blk_fetch_request returned NULL)
>>>
>>>>
>>>> And I requested blktrace to confirm that this is indeed the behaviour.
>>>
>>> The trace logs show that in case of no packing, there are maximum of 3-4
>>> requests issued before a read request, while with packing there are also
>>> cases of 6 and 7 requests dispatched before a read request.
>>>
>>> I'm waiting for an approval for sharing the block trace logs.
>>> Since this is a simple test to run you can collect the trace logs and
>>> let
>>> us know if you reach other conclusions.
>>>
>> Thanks for the brief. I don't have the eMMC4.5 device with me yet, so
>> I can't reproduce the result.
>
> I sent the trace logs of both packing and non packing. Please let me know
> if you have additional questions after reviewing them.
>
> The problem you describe is most likely
>> applicable
>> to any block device driver with a large queue depth ( any queue depth >1).
>> I'll check to see what knobs in block affect the result.
>> Speaking of it, what is the host controller you use to test this ?
>
> The controller I use is msm_sdcc.
>
>> I was wondering if host->max_seg_size is taken into account while packed
>> command
>> is in use. If not, shouldn't it be ?  - it could act as a better
>> throttle for "packing density".
>
> The max segments (which is calculated from host->max_seg_size) is taking
> into account when preparing the packed list (so that the whole packed
> won't exceed the max number of segments).
> I'm not sure I understand how host->max_seg_size can be used as a throttle
> for "packing density". Can you please explain?
>
Ok - I overlooked that max_segments is indeed used to limit the number
of requests
that are packed.(And this corresponds to max_seg_size, which is what I intended)
I should be getting my MMC4.5 test gear in a couple of days - I'll run
it through
on some hosts and can either provide more feedback or Ack this patch.
Regards,
Venkat.

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-07-26 15:28 ` S, Venkatraman
@ 2012-07-26 18:54   ` merez
  2012-07-27  9:07     ` S, Venkatraman
  0 siblings, 1 reply; 44+ messages in thread
From: merez @ 2012-07-26 18:54 UTC (permalink / raw)
  To: S, Venkatraman
  Cc: merez, Chris Ball, Muthu Kumar, linux-mmc, linux-arm-msm,
	open list, Seungwon Jeon


On Thu, July 26, 2012 8:28 am, S, Venkatraman wrote:
> On Tue, Jul 24, 2012 at 2:14 PM,  <merez@codeaurora.org> wrote:
>> On Mon, July 23, 2012 5:22 am, S, Venkatraman wrote:
>>> On Mon, Jul 23, 2012 at 5:13 PM,  <merez@codeaurora.org> wrote:
>>>> On Wed, July 18, 2012 12:26 am, Chris Ball wrote:
>>>>> Hi,  [removing Jens and the documentation list, since now we're
>> talking about the MMC side only]
>>>>> On Wed, Jul 18 2012, merez@codeaurora.org wrote:
>>>>>> Is there anything else that holds this patch from being pushed to
>>>> mmc-next?
>>>>> Yes, I'm still uncomfortable with the write packing patchsets for a
>>>> couple of reasons, and I suspect that the sum of those reasons means
>>>> that
>>>> we should probably plan on holding off merging it until after 3.6.
>>>>> Here are the open issues; please correct any misunderstandings: With
>> Seungwon's patchset ("Support packed write command"):
>>>>> * I still don't have a good set of representative benchmarks showing
>>>>>   what kind of performance changes come with this patchset.  It seems
>>>> like we've had a small amount of testing on one controller/eMMC part
>>>> combo
>>>> from Seungwon, and an entirely different test from Maya, and the
>> results
>>>> aren't documented fully anywhere to the level of describing what the
>> hardware was, what the test was, and what the results were before and
>> after the patchset.
>>>> Currently, there is only one card vendor that supports packed
>>>> commands.
>> Following are our sequential write (LMDD) test results on 2 of our
>> targets
>>>> (in MB/s):
>>>>                        No packing        packing
>>>> Target 1 (SDR 50MHz)     15               25
>>>> Target 2 (DDR 50MHz)     20               30
>>>>> With the reads-during-writes regression:
>>>>> * Venkat still has open questions about the nature of the read
>>>>>   regression, and thinks we should understand it with blktrace before
>>>> trying to fix it.  Maya has a theory about writes overwhelming reads,
>>>> but
>>>> Venkat doesn't understand why this would explain the observed
>>>> bandwidth drop.
>>>> The degradation of read due to writes is not a new behavior and exists
>> also without the write packing feature (which only increases the
>> degradation). Our investigation of this phenomenon led us to the
>> Conclusion that a new scheduling policy should be used for mobile
>> devices,
>>>> but this is not related to the current discussion of the write packing
>> feature.
>>>> The write packing feature increases the degradation of read due to
>> write
>>>> since it allows the MMC to fetch many write requests in a row, instead
>>>> of
>>>> fetching only one at a time.  Therefore some of the read requests will
>> have to wait for the completion of more write requests before they can
>> be
>>>> issued.
>>>
>>> I am a bit puzzled by this claim. One thing I checked carefully when
>> reviewing write packing patches from SJeon was that the code didn't
>> plough through a mixed list of reads and writes and selected only
>> writes.
>>> This section of the code in "mmc_blk_prep_packed_list()", from v8
>> patchset..
>>> <Quote>
>>> +               if (rq_data_dir(cur) != rq_data_dir(next)) {
>>> +                       put_back = 1;
>>> +                       break;
>>> +               }
>>> </Quote>
>>>
>>> means that once a read is encountered in the middle of write packing,
>> the packing is stopped at that point and it is executed. Then the next
>> blk_fetch_request should get the next read and continue as before.
>>>
>>> IOW, the ordering of reads and writes is _not_ altered when using
>>> packed
>> commands.
>>> For example if there were 5 write requests, followed by 1 read,
>>> followed by 5 more write requests in the request_queue, the first 5
>> writes will be executed as one "packed command", then the read will be
>> executed, and then the remaining 5 writes will be executed as one
>> "packed command". So the read does not have to wait any more than it
>> waited before (packing feature)
>>
>> Let me try to better explain with your example.
>> Without packing the MMC layer will fetch 2 write requests and wait for
>> the
>> first write request completion before fetching another write request.
>> During this time the read request could be inserted into the CFQ and
>> since
>> it has higher priority than the async write it will be dispatched in the
>> next fetch. So, the result would be 2 write requests followed by one
>> read
>> request and the read would have to wait for completion of only 2 write
>> requests.
>> With packing, all the 5 write requests will be fetched in a row, and
>> then
>> the read will arrive and be dispatched in the next fetch. Then the read
>> will have to wait for the completion of 5 write requests.
>>
>> Few more clarifications:
>> Due to the plug list mechanism in the block layer the applications can
>> "aggregate" several requests to be inserted into the scheduler before
>> waking the MMC queue thread.
>> This leads to a situation where there are several write requests in the
>> CFQ queue when MMC starts to do the fetches.
>>
>> If the read was inserted while we are building the packed command then I
>> agree that we should have seen less effect on the read performance.
>> However, the write packing statistics show that in most of the cases the
>> packing stopped due to an empty queue, meaning that the read was
>> inserted
>> to the CFQ after all the pending write requests were fetched and packed.
>>
>> Following is an example for write packing statistics of a READ/WRITE
>> parallel scenario:
>> write packing statistics:
>> Packed 1 reqs - 448 times
>> Packed 2 reqs - 38 times
>> Packed 3 reqs - 23 times
>> Packed 4 reqs - 30 times
>> Packed 5 reqs - 14 times
>> Packed 6 reqs - 8 times
>> Packed 7 reqs - 4 times
>> Packed 8 reqs - 1 times
>> Packed 10 reqs - 1 times
>> Packed 34 reqs - 1 times
>> stopped packing due to the following reasons:
>> 2 times: wrong data direction (meaning a READ was fetched and stopped
>> the
>> packing)
>> 1 times: flush or discard
>> 565 times: empty queue (meaning blk_fetch_request returned NULL)
>>
>>>
>>> And I requested blktrace to confirm that this is indeed the behaviour.
>>
>> The trace logs show that in case of no packing, there are maximum of 3-4
>> requests issued before a read request, while with packing there are also
>> cases of 6 and 7 requests dispatched before a read request.
>>
>> I'm waiting for an approval for sharing the block trace logs.
>> Since this is a simple test to run you can collect the trace logs and
>> let
>> us know if you reach other conclusions.
>>
> Thanks for the brief. I don't have the eMMC4.5 device with me yet, so
> I can't reproduce the result.

I sent the trace logs of both packing and non packing. Please let me know
if you have additional questions after reviewing them.

The problem you describe is most likely
> applicable
> to any block device driver with a large queue depth ( any queue depth >1).
> I'll check to see what knobs in block affect the result.
> Speaking of it, what is the host controller you use to test this ?

The controller I use is msm_sdcc.

> I was wondering if host->max_seg_size is taken into account while packed
> command
> is in use. If not, shouldn't it be ?  - it could act as a better
> throttle for "packing density".

The max segments (which is calculated from host->max_seg_size) is taking
into account when preparing the packed list (so that the whole packed
won't exceed the max number of segments).
I'm not sure I understand how host->max_seg_size can be used as a throttle
for "packing density". Can you please explain?

>
> Thanks,
> Venkat.
> --
> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>

Thanks,
Maya
-- 
Sent by consultant of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-07-24  8:44 merez
  2012-07-24 20:23   ` merez
@ 2012-07-26 15:28 ` S, Venkatraman
  2012-07-26 18:54   ` merez
  1 sibling, 1 reply; 44+ messages in thread
From: S, Venkatraman @ 2012-07-26 15:28 UTC (permalink / raw)
  To: merez
  Cc: Chris Ball, Muthu Kumar, linux-mmc, linux-arm-msm, open list,
	Seungwon Jeon

On Tue, Jul 24, 2012 at 2:14 PM,  <merez@codeaurora.org> wrote:
> On Mon, July 23, 2012 5:22 am, S, Venkatraman wrote:
>> On Mon, Jul 23, 2012 at 5:13 PM,  <merez@codeaurora.org> wrote:
>>> On Wed, July 18, 2012 12:26 am, Chris Ball wrote:
>>>> Hi,  [removing Jens and the documentation list, since now we're
> talking about the MMC side only]
>>>> On Wed, Jul 18 2012, merez@codeaurora.org wrote:
>>>>> Is there anything else that holds this patch from being pushed to
>>> mmc-next?
>>>> Yes, I'm still uncomfortable with the write packing patchsets for a
>>> couple of reasons, and I suspect that the sum of those reasons means that
>>> we should probably plan on holding off merging it until after 3.6.
>>>> Here are the open issues; please correct any misunderstandings: With
> Seungwon's patchset ("Support packed write command"):
>>>> * I still don't have a good set of representative benchmarks showing
>>>>   what kind of performance changes come with this patchset.  It seems
>>> like we've had a small amount of testing on one controller/eMMC part combo
>>> from Seungwon, and an entirely different test from Maya, and the
> results
>>> aren't documented fully anywhere to the level of describing what the
> hardware was, what the test was, and what the results were before and
> after the patchset.
>>> Currently, there is only one card vendor that supports packed commands.
> Following are our sequential write (LMDD) test results on 2 of our
> targets
>>> (in MB/s):
>>>                        No packing        packing
>>> Target 1 (SDR 50MHz)     15               25
>>> Target 2 (DDR 50MHz)     20               30
>>>> With the reads-during-writes regression:
>>>> * Venkat still has open questions about the nature of the read
>>>>   regression, and thinks we should understand it with blktrace before
>>> trying to fix it.  Maya has a theory about writes overwhelming reads, but
>>> Venkat doesn't understand why this would explain the observed
>>> bandwidth drop.
>>> The degradation of read due to writes is not a new behavior and exists
> also without the write packing feature (which only increases the
> degradation). Our investigation of this phenomenon led us to the
> Conclusion that a new scheduling policy should be used for mobile
> devices,
>>> but this is not related to the current discussion of the write packing
> feature.
>>> The write packing feature increases the degradation of read due to
> write
>>> since it allows the MMC to fetch many write requests in a row, instead of
>>> fetching only one at a time.  Therefore some of the read requests will
> have to wait for the completion of more write requests before they can
> be
>>> issued.
>>
>> I am a bit puzzled by this claim. One thing I checked carefully when
> reviewing write packing patches from SJeon was that the code didn't
> plough through a mixed list of reads and writes and selected only
> writes.
>> This section of the code in "mmc_blk_prep_packed_list()", from v8
> patchset..
>> <Quote>
>> +               if (rq_data_dir(cur) != rq_data_dir(next)) {
>> +                       put_back = 1;
>> +                       break;
>> +               }
>> </Quote>
>>
>> means that once a read is encountered in the middle of write packing,
> the packing is stopped at that point and it is executed. Then the next
> blk_fetch_request should get the next read and continue as before.
>>
>> IOW, the ordering of reads and writes is _not_ altered when using packed
> commands.
>> For example if there were 5 write requests, followed by 1 read,
>> followed by 5 more write requests in the request_queue, the first 5
> writes will be executed as one "packed command", then the read will be
> executed, and then the remaining 5 writes will be executed as one
> "packed command". So the read does not have to wait any more than it
> waited before (packing feature)
>
> Let me try to better explain with your example.
> Without packing the MMC layer will fetch 2 write requests and wait for the
> first write request completion before fetching another write request.
> During this time the read request could be inserted into the CFQ and since
> it has higher priority than the async write it will be dispatched in the
> next fetch. So, the result would be 2 write requests followed by one read
> request and the read would have to wait for completion of only 2 write
> requests.
> With packing, all the 5 write requests will be fetched in a row, and then
> the read will arrive and be dispatched in the next fetch. Then the read
> will have to wait for the completion of 5 write requests.
>
> Few more clarifications:
> Due to the plug list mechanism in the block layer the applications can
> "aggregate" several requests to be inserted into the scheduler before
> waking the MMC queue thread.
> This leads to a situation where there are several write requests in the
> CFQ queue when MMC starts to do the fetches.
>
> If the read was inserted while we are building the packed command then I
> agree that we should have seen less effect on the read performance.
> However, the write packing statistics show that in most of the cases the
> packing stopped due to an empty queue, meaning that the read was inserted
> to the CFQ after all the pending write requests were fetched and packed.
>
> Following is an example for write packing statistics of a READ/WRITE
> parallel scenario:
> write packing statistics:
> Packed 1 reqs - 448 times
> Packed 2 reqs - 38 times
> Packed 3 reqs - 23 times
> Packed 4 reqs - 30 times
> Packed 5 reqs - 14 times
> Packed 6 reqs - 8 times
> Packed 7 reqs - 4 times
> Packed 8 reqs - 1 times
> Packed 10 reqs - 1 times
> Packed 34 reqs - 1 times
> stopped packing due to the following reasons:
> 2 times: wrong data direction (meaning a READ was fetched and stopped the
> packing)
> 1 times: flush or discard
> 565 times: empty queue (meaning blk_fetch_request returned NULL)
>
>>
>> And I requested blktrace to confirm that this is indeed the behaviour.
>
> The trace logs show that in case of no packing, there are maximum of 3-4
> requests issued before a read request, while with packing there are also
> cases of 6 and 7 requests dispatched before a read request.
>
> I'm waiting for an approval for sharing the block trace logs.
> Since this is a simple test to run you can collect the trace logs and let
> us know if you reach other conclusions.
>
Thanks for the brief. I don't have the eMMC4.5 device with me yet, so
I can't reproduce the result. The problem you describe is most likely
applicable
to any block device driver with a large queue depth ( any queue depth >1).
I'll check to see what knobs in block affect the result.
Speaking of it, what is the host controller you use to test this ?
I was wondering if host->max_seg_size is taken into account while packed command
is in use. If not, shouldn't it be ?  - it could act as a better
throttle for "packing density".

Thanks,
Venkat.

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-07-24 20:23   ` merez
@ 2012-07-24 20:52     ` merez
  -1 siblings, 0 replies; 44+ messages in thread
From: merez @ 2012-07-24 20:52 UTC (permalink / raw)
  Cc: merez, S, Venkatraman, Chris Ball, Muthu Kumar, linux-mmc,
	linux-arm-msm, open list, Seungwon Jeon

[-- Attachment #1: Type: text/plain, Size: 11955 bytes --]

Since the original trace logs are to big to be sent, I'm sending a parsed
version of the files.
Please let me know if the original trace logs are still required.

On Tue, July 24, 2012 1:23 pm, merez@codeaurora.org wrote:
> Attached are the trace logs for parallel read and write lmdd operations.
>
> On Tue, July 24, 2012 1:44 am, merez@codeaurora.org wrote:
>> On Mon, July 23, 2012 5:22 am, S, Venkatraman wrote:
>>> On Mon, Jul 23, 2012 at 5:13 PM,  <merez@codeaurora.org> wrote:
>>>> On Wed, July 18, 2012 12:26 am, Chris Ball wrote:
>>>>> Hi,  [removing Jens and the documentation list, since now we're
>> talking about the MMC side only]
>>>>> On Wed, Jul 18 2012, merez@codeaurora.org wrote:
>>>>>> Is there anything else that holds this patch from being pushed to
>>>> mmc-next?
>>>>> Yes, I'm still uncomfortable with the write packing patchsets for a
>>>> couple of reasons, and I suspect that the sum of those reasons means
>>>> that
>>>> we should probably plan on holding off merging it until after 3.6.
>>>>> Here are the open issues; please correct any misunderstandings: With
>> Seungwon's patchset ("Support packed write command"):
>>>>> * I still don't have a good set of representative benchmarks showing
>>>>>   what kind of performance changes come with this patchset.  It seems
>>>> like we've had a small amount of testing on one controller/eMMC part
>>>> combo
>>>> from Seungwon, and an entirely different test from Maya, and the
>> results
>>>> aren't documented fully anywhere to the level of describing what the
>> hardware was, what the test was, and what the results were before and
>> after the patchset.
>>>> Currently, there is only one card vendor that supports packed
>>>> commands.
>> Following are our sequential write (LMDD) test results on 2 of our
>> targets
>>>> (in MB/s):
>>>>                        No packing        packing
>>>> Target 1 (SDR 50MHz)     15               25
>>>> Target 2 (DDR 50MHz)     20               30
>>>>> With the reads-during-writes regression:
>>>>> * Venkat still has open questions about the nature of the read
>>>>>   regression, and thinks we should understand it with blktrace before
>>>> trying to fix it.  Maya has a theory about writes overwhelming reads,
>>>> but
>>>> Venkat doesn't understand why this would explain the observed
>>>> bandwidth drop.
>>>> The degradation of read due to writes is not a new behavior and exists
>> also without the write packing feature (which only increases the
>> degradation). Our investigation of this phenomenon led us to the
>> Conclusion that a new scheduling policy should be used for mobile
>> devices,
>>>> but this is not related to the current discussion of the write packing
>> feature.
>>>> The write packing feature increases the degradation of read due to
>> write
>>>> since it allows the MMC to fetch many write requests in a row, instead
>>>> of
>>>> fetching only one at a time.  Therefore some of the read requests will
>> have to wait for the completion of more write requests before they can
>> be
>>>> issued.
>>>
>>> I am a bit puzzled by this claim. One thing I checked carefully when
>> reviewing write packing patches from SJeon was that the code didn't
>> plough through a mixed list of reads and writes and selected only
>> writes.
>>> This section of the code in "mmc_blk_prep_packed_list()", from v8
>> patchset..
>>> <Quote>
>>> +               if (rq_data_dir(cur) != rq_data_dir(next)) {
>>> +                       put_back = 1;
>>> +                       break;
>>> +               }
>>> </Quote>
>>>
>>> means that once a read is encountered in the middle of write packing,
>> the packing is stopped at that point and it is executed. Then the next
>> blk_fetch_request should get the next read and continue as before.
>>>
>>> IOW, the ordering of reads and writes is _not_ altered when using
>>> packed
>> commands.
>>> For example if there were 5 write requests, followed by 1 read,
>>> followed by 5 more write requests in the request_queue, the first 5
>> writes will be executed as one "packed command", then the read will be
>> executed, and then the remaining 5 writes will be executed as one
>> "packed command". So the read does not have to wait any more than it
>> waited before (packing feature)
>>
>> Let me try to better explain with your example.
>> Without packing the MMC layer will fetch 2 write requests and wait for
>> the
>> first write request completion before fetching another write request.
>> During this time the read request could be inserted into the CFQ and
>> since
>> it has higher priority than the async write it will be dispatched in the
>> next fetch. So, the result would be 2 write requests followed by one
>> read
>> request and the read would have to wait for completion of only 2 write
>> requests.
>> With packing, all the 5 write requests will be fetched in a row, and
>> then
>> the read will arrive and be dispatched in the next fetch. Then the read
>> will have to wait for the completion of 5 write requests.
>>
>> Few more clarifications:
>> Due to the plug list mechanism in the block layer the applications can
>> "aggregate" several requests to be inserted into the scheduler before
>> waking the MMC queue thread.
>> This leads to a situation where there are several write requests in the
>> CFQ queue when MMC starts to do the fetches.
>>
>> If the read was inserted while we are building the packed command then I
>> agree that we should have seen less effect on the read performance.
>> However, the write packing statistics show that in most of the cases the
>> packing stopped due to an empty queue, meaning that the read was
>> inserted
>> to the CFQ after all the pending write requests were fetched and packed.
>>
>> Following is an example for write packing statistics of a READ/WRITE
>> parallel scenario:
>> write packing statistics:
>> Packed 1 reqs - 448 times
>> Packed 2 reqs - 38 times
>> Packed 3 reqs - 23 times
>> Packed 4 reqs - 30 times
>> Packed 5 reqs - 14 times
>> Packed 6 reqs - 8 times
>> Packed 7 reqs - 4 times
>> Packed 8 reqs - 1 times
>> Packed 10 reqs - 1 times
>> Packed 34 reqs - 1 times
>> stopped packing due to the following reasons:
>> 2 times: wrong data direction (meaning a READ was fetched and stopped
>> the
>> packing)
>> 1 times: flush or discard
>> 565 times: empty queue (meaning blk_fetch_request returned NULL)
>>
>>>
>>> And I requested blktrace to confirm that this is indeed the behaviour.
>>
>> The trace logs show that in case of no packing, there are maximum of 3-4
>> requests issued before a read request, while with packing there are also
>> cases of 6 and 7 requests dispatched before a read request.
>>
>> I'm waiting for an approval for sharing the block trace logs.
>> Since this is a simple test to run you can collect the trace logs and
>> let
>> us know if you reach other conclusions.
>>
>> Thanks,
>> Maya
>>
>>>
>>> Your rest of the arguments anyway depend on this assertion, so can you
>> please clarify this.
>>>
>>>> To overcome this behavior, the solution would be to stop the write
>>>> packing
>>>> when a read request is fetched, and this is the algorithm suggested by
>>>> the
>>>> write packing control.
>>>> Let's also keep in mind that lmdd benchmarking doesn't fully reflect
>> the
>>>> real life in which there are not many scenarios that cause massive
>>>> read
>> and write operations. In our user-common-scenarios tests we saw that in
>> many cases the write packing decreases the read latency. It can happen
>> in
>>>> cases where the same amount of write requests is fetched with and
>>>> without
>>>> packing. In such a case the write packing decreases the transfer time
>> of
>>>> the write requests and causes the read request to wait for a shorter
>>>> time.
>>>>> With Maya's patchset ("write packing control"):
>>>>> * Venkat thinks that HPI should be used, and the number-of-requests
>>>>>   metric is too coarse, and it doesn't let you disable packing at the
>>>> right time, and you're essentially implementing a new I/O scheduler
>>>> inside
>>>> the MMC subsystem without understanding the root cause for why that's
>> necessary.
>>>> According to our measurements the stop transmission (CMD12) + HPI is a
>> heavy operation that may take up to several milliseconds. Therefore, a
>> massive usage of HPI can cause a degradation of performance.
>>>> In addition, it doesn’t provide a complete solution for read during
>>>> write
>>>> since it doesn’t solve the problem of “what to do with the interrupted
>> write request remainder?”.  That is, a common interrupting read request
>> will usually be followed by another one. If we just continue to write
>> the
>>>> interrupted write request remainder we will probably get another HPI
>> due
>>>> to the second read request, so eventually we may end up with lots of
>>>> HPIs
>>>> and write retries. A complete solution will be: stop the current
>>>> write,
>> change packing mode to non-packing, serve the read request, push back
>> the
>>>> write remainders to the block I/O scheduler and let him schedule them
>> again probably after the read burst ends (this requires block layer
>> support of course).
>>>> Regarding the packing control, there seem to be a confusion since the
>> number-of-requests is the trigger for *enabling* the packing (after it
>> was
>>>> disabled), while a single read request disable packing. Therefore, the
>> packing is stopped at the right time.
>>>> The packing control doesn't add any scheduling policy to the MMC
>>>> layer.
>> The write packing feature is the one changing the scheduling policy by
>> fetching many write requests in a row without a delay that allows read
>> requests to come in the middle.
>>>> By disabling the write packing, the write packing control returns the
>>>> old
>>>> scheduling policy. It causes the MMC to fetch the requests one by one,
>> thus read requests are served as before.
>>>> It is correct that the trigger for enabling the write packing control
>> should be adjusted per platform and doesn't give a complete solution.
>> As
>>>> I
>>>> mentioned above, the complete solution will include the usage of write
>> packing control, a re-insert of the write packed to the scheduler when
>> a
>>>> read request is fetched and usage of HPI to stop the packing that is
>> already transferred.
>>>> To summarize -
>>>> We recommend including the write packing in 3.6 due to the following
>> reasons:
>>>> 1. It significantly improves the write throughput
>>>> 2. In some of the cases it even decreases the read latency
>>>> 3. The read degradation in simultaneous read-write flows already
>>>> exist,
>> even without this feature
>>>> As for the write packing control, it can be included in 3.6 to supply
>>>> a
>> partial solution for the read degradation or we can postpone it to 3.7
>> and
>>>> integrate it as part of the complete solution.
>>>> Thanks,
>>>> Maya
>>>>> My sense is that there's no way we can solve all of these to
>>>>> satisfaction in the next week (which is when the merge window will
>>>> open), but that by waiting a cycle we might come up with some good
>> answers.
>>>>> What do other people think?  If you're excited about these patchsets,
>>>> now would be a fine time to come forward with your benchmarking
>>>> results
>> and to help understand the reads-during-writes regression.
>>>
>>
>>
>> --
>> Sent by consultant of Qualcomm Innovation Center, Inc.
>> Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum
>>
>>
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>
>
>
> --
> Sent by consultant of Qualcomm Innovation Center, Inc.
> Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum
>
>


-- 
Sent by consultant of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum

[-- Attachment #2: no_packing_parallel_read_write.txt --]
[-- Type: text/plain, Size: 240934 bytes --]

505.906	queue	R	1912400	32
506.058	issue	R	1912400	32
520.891	queue	RA	1835552	8
520.983	issue	R	1835552	8
521.074	queue	RA	1835568	8
521.135	queue	RA	1835576	8
521.196	queue	RA	1835584	8
521.227	queue	RA	1835592	8
521.257	queue	RA	1835600	8
521.318	queue	RA	1835608	8
521.349	queue	RA	1835616	8
521.410	cmplt	R	1835552	8
521.471	issue	R	1835568	56
521.532	queue	RA	1835624	8
521.593	queue	RA	1835632	8
521.654	queue	RA	1835640	8
521.685	queue	RA	1835648	8
521.746	queue	RA	1835656	8
521.776	queue	RA	1835664	8
521.807	queue	RA	1835672	8
521.868	queue	RA	1835680	8
521.898	queue	RA	1835688	8
521.929	queue	RA	1835712	8
521.990	queue	RA	1835720	8
522.051	queue	RA	1835728	8
522.081	queue	RA	1835736	8
522.112	queue	RA	1835744	8
522.173	queue	RA	1835752	8
522.204	queue	RA	1835760	8
522.265	queue	RA	1835768	8
522.295	queue	RA	1835776	8
522.326	cmplt	R	1835568	56
522.387	issue	R	1835624	72
522.448	issue	R	1835712	64
522.509	queue	RA	1835784	8
522.570	queue	RA	1835792	8
522.600	queue	RA	1835800	8
522.631	queue	RM	1835544	8
523.485	cmplt	R	1835624	72
523.516	issue	RM	1835544	8
524.371	cmplt	R	1835712	64
524.432	issue	R	1835776	32
524.645	cmplt	RM	1835544	8
540.302	queue	R	1982464	512
547.505	queue	R	1982976	256
547.871	queue	R	1983232	256
551.381	queue	R	1983488	256
554.891	queue	R	1983744	256
558.401	queue	R	1984000	256
561.972	queue	R	1984256	256
565.543	queue	R	1984512	256
569.083	queue	R	1984768	256
572.593	queue	R	1985024	256
576.164	queue	R	1985280	256
579.704	queue	R	1985536	256
583.214	queue	R	1985792	256
586.724	queue	R	1986048	256
590.295	queue	R	1986304	256
593.865	queue	R	1986560	256
597.436	queue	R	1986816	256
600.916	queue	R	1987072	256
604.425	queue	R	1987328	256
607.996	queue	R	1987584	256
611.537	queue	R	1987840	256
615.077	queue	R	1988096	256
618.587	queue	R	1988352	256
622.097	queue	R	1988608	256
625.668	queue	R	1988864	256
629.239	queue	R	1989120	256
632.748	queue	R	1989376	256
636.289	queue	R	1989632	256
639.799	queue	R	1989888	256
643.400	queue	R	1990144	256
646.940	queue	R	1990400	256
650.511	queue	R	1990656	256
653.991	queue	R	1990912	256
657.561	queue	R	1991168	256
661.041	queue	R	1991424	256
664.581	queue	R	1991680	256
668.152	queue	R	1991936	256
671.692	queue	R	1992192	256
675.202	queue	R	1992448	256
678.743	queue	R	1992704	256
682.283	queue	R	1992960	256
685.823	queue	R	1993216	256
689.394	queue	R	1993472	256
692.904	queue	R	1993728	256
696.414	queue	R	1993984	256
697.268	queue	W	1835696	8
699.985	queue	R	1994240	256
703.495	queue	R	1994496	256
703.800	queue	R	2097672	8
707.004	queue	R	1994752	256
710.453	queue	R	1995008	256
713.902	queue	R	1995264	256
717.351	queue	R	1995520	256
720.769	queue	R	1995776	256
724.218	queue	R	1996032	256
727.667	queue	R	1996288	256
731.085	queue	R	1996544	256
734.534	queue	R	1996800	256
737.952	queue	R	1997056	256
741.401	queue	R	1997312	256
748.360	queue	R	2359296	8
754.921	queue	R	1997568	256
755.288	queue	R	1997824	256
758.736	queue	R	1998080	256
762.185	queue	R	1998336	256
765.604	queue	R	1998592	256
769.052	queue	R	1998848	256
772.471	queue	R	1999104	256
775.919	queue	R	1999360	256
779.338	queue	R	1999616	256
782.787	queue	R	1999872	256
786.205	queue	R	2000128	256
789.654	queue	R	2000384	256
793.072	queue	R	2000640	256
796.521	queue	R	2000896	256
799.939	queue	R	2001152	256
803.357	queue	R	2001408	256
806.806	queue	R	2001664	256
810.224	queue	R	2001920	256
813.673	queue	R	2002176	256
817.091	queue	R	2002432	256
820.540	queue	R	2002688	256
823.989	queue	R	2002944	256
827.407	queue	R	2003200	256
830.826	queue	R	2003456	256
834.244	queue	R	2003712	256
837.723	queue	R	2003968	256
841.172	queue	R	2004224	256
844.621	queue	R	2004480	256
848.070	queue	R	2004736	256
851.518	queue	R	2004992	256
854.967	queue	R	2005248	256
858.385	queue	R	2005504	256
861.834	queue	R	2005760	256
865.283	queue	R	2006016	256
868.732	queue	R	2006272	256
872.181	queue	R	2006528	256
875.629	queue	R	2006784	256
879.048	queue	R	2007040	256
882.497	queue	R	2007296	256
885.945	queue	R	2007552	256
889.394	queue	R	2007808	256
892.843	queue	R	2008064	256
896.322	queue	R	2008320	256
899.771	queue	R	2008576	256
903.220	queue	R	2008832	256
906.669	queue	R	2009088	256
910.148	queue	R	2009344	256
913.566	queue	R	2009600	256
917.015	queue	R	2009856	256
920.464	queue	R	2010112	256
923.913	queue	R	2010368	256
927.362	queue	R	2010624	256
930.810	queue	R	2010880	256
934.259	queue	R	2011136	256
937.708	queue	R	2011392	256
941.157	queue	R	2011648	256
944.606	queue	R	2011904	256
948.054	queue	R	2012160	256
951.473	queue	R	2012416	256
954.921	queue	R	2012672	256
958.370	queue	R	2012928	256
961.819	queue	R	2013184	256
963.498	queue	W	2523136	1024
963.955	queue	W	2524160	1024
964.413	queue	W	2525184	1024
964.871	queue	W	2526208	1024
965.329	queue	W	2527232	1024
965.787	queue	W	2528256	1024
966.214	queue	W	2529280	1024
966.702	queue	W	2530304	1024
980.009	issue	R	1074912	24
980.101	issue	R	1074872	16
980.559	queue	W	2531328	1024
981.016	queue	W	2532352	1024
981.444	queue	W	2533376	1024
981.901	queue	W	2534400	1024
982.390	queue	W	2535424	1024
982.878	queue	W	2536448	1024
983.427	queue	W	2537472	1024
983.916	queue	W	2538496	1024
986.235	queue	W	2539520	1024
986.663	queue	W	2540544	1024
987.120	queue	W	2541568	1024
987.761	queue	W	2542592	1024
988.219	queue	W	2543616	1024
988.830	queue	W	2544640	1024
989.287	queue	W	2545664	1024
989.837	queue	W	2546688	1024
990.081	issue	R	2012928	512
992.523	queue	W	2547712	1024
992.980	queue	W	2548736	1024
993.408	queue	W	2549760	1024
993.835	queue	W	2550784	1024
994.293	queue	W	2551808	1024
994.720	queue	W	2552832	1024
995.117	queue	W	2553856	1024
995.575	queue	W	2554880	1024
997.070	queue	R	2013440	256
997.436	queue	R	2013696	256
997.497	issue	R	2013440	512
1002.045	queue	W	2555904	1024
1002.472	queue	W	2556928	1024
1002.899	queue	W	2557952	1024
1003.357	queue	W	2558976	1024
1003.785	queue	W	2560000	1024
1004.029	cmplt	R	2013440	512
1004.486	queue	R	2013952	256
1004.853	queue	R	2014208	256
1004.914	issue	R	2013952	512
1011.811	queue	R	2014464	256
1012.208	queue	R	2014720	256
1012.635	queue	W	2561024	1024
1013.063	queue	W	2562048	1024
1013.521	queue	W	2563072	1024
1013.948	queue	W	2564096	1024
1014.345	queue	W	2565120	1024
1014.833	queue	W	2566144	1024
1015.687	queue	R	2014976	256
1015.749	queue	W	2567168	1024
1015.932	queue	W	2568192	368
1019.167	queue	R	2015232	256
1022.677	queue	R	2015488	256
1026.186	queue	R	2015744	256
1029.727	queue	R	2016000	256
1033.267	queue	R	2016256	256
1036.838	queue	R	2016512	256
1040.378	queue	R	2016768	256
1043.919	queue	R	2017024	256
1047.429	queue	R	2017280	256
1050.969	queue	R	2017536	256
1054.540	queue	R	2017792	256
1058.050	queue	R	2018048	256
1061.590	queue	R	2018304	256
1065.130	queue	R	2018560	256
1068.701	queue	R	2018816	256
1072.242	queue	R	2019072	256
1075.721	queue	R	2019328	256
1079.231	queue	R	2019584	256
1082.771	queue	R	2019840	256
1086.312	queue	R	2020096	256
1089.852	queue	R	2020352	256
1093.423	queue	R	2020608	256
1096.933	queue	R	2020864	256
1100.443	queue	R	2021120	256
1103.983	queue	R	2021376	256
1107.523	queue	R	2021632	256
1111.064	queue	R	2021888	256
1114.635	queue	R	2022144	256
1118.175	queue	R	2022400	256
1121.685	queue	R	2022656	256
1125.225	queue	R	2022912	256
1128.765	queue	R	2023168	256
1132.275	queue	R	2023424	256
1135.816	queue	R	2023680	256
1139.356	queue	R	2023936	256
1142.927	queue	R	2024192	256
1146.467	queue	R	2024448	256
1149.184	queue	W	2568560	1024
1150.008	queue	R	2024704	256
1150.099	queue	W	2569584	1024
1150.526	queue	W	2570608	1024
1151.717	queue	W	2571632	656
1153.487	queue	R	2024960	256
1156.966	queue	R	2025216	256
1157.546	queue	W	2572288	1024
1157.973	queue	W	2573312	1024
1158.401	queue	W	2574336	1024
1158.889	queue	W	2575360	1024
1159.316	queue	W	2576384	1024
1159.744	queue	W	2577408	1024
1160.476	queue	R	2025472	256
1164.016	queue	R	2025728	256
1164.230	queue	W	2578432	1024
1164.688	queue	W	2579456	1024
1165.115	queue	W	2580480	1024
1165.543	queue	W	2581504	1024
1165.970	queue	W	2582528	1024
1166.428	queue	W	2583552	1024
1166.824	queue	W	2584576	1024
1167.465	queue	R	2025984	256
1171.006	queue	R	2026240	256
1171.280	queue	W	2585600	1024
1171.738	queue	W	2586624	1024
1172.165	queue	W	2587648	1024
1174.485	queue	R	2026496	256
1177.995	queue	R	2026752	256
1178.239	queue	W	2588672	1024
1178.666	queue	W	2589696	1024
1179.094	queue	W	2590720	1024
1179.521	queue	W	2591744	1024
1179.979	queue	W	2592768	1024
1180.436	queue	W	2593792	1024
1180.864	queue	W	2594816	1024
1181.474	queue	R	2027008	256
1184.984	queue	R	2027264	256
1185.320	queue	W	2595840	1024
1185.747	queue	W	2596864	1024
1186.174	queue	W	2597888	1024
1186.602	queue	W	2598912	1024
1187.059	queue	W	2599936	1024
1187.487	queue	W	2600960	1024
1187.914	queue	W	2601984	1024
1188.433	queue	R	2027520	256
1191.943	queue	R	2027776	256
1192.339	queue	W	2603008	1024
1192.767	queue	W	2604032	1024
1193.713	queue	W	2605056	1024
1194.171	queue	W	2606080	1024
1194.567	queue	W	2607104	1024
1195.422	queue	R	2028032	256
1198.932	queue	R	2028288	256
1199.115	queue	W	2608128	1024
1199.298	queue	W	2609152	368
1202.442	queue	R	2028544	256
1206.043	queue	R	2028800	256
1209.583	queue	R	2029056	256
1213.154	queue	R	2029312	256
1216.695	queue	R	2029568	256
1220.266	queue	R	2029824	256
1223.806	queue	R	2030080	256
1227.377	queue	R	2030336	256
1230.856	queue	R	2030592	256
1234.396	queue	R	2030848	256
1237.906	queue	R	2031104	256
1240.378	queue	W	2609520	1024
1240.775	queue	W	2610544	1024
1241.447	queue	R	2031360	256
1241.660	queue	W	2611568	1024
1242.088	queue	W	2612592	1024
1242.515	queue	W	2613616	1024
1242.912	queue	W	2614640	1024
1243.308	queue	W	2615664	1024
1243.766	queue	W	2616688	1024
1244.163	queue	W	2617712	1024
1244.957	queue	R	2031616	256
1245.048	queue	W	2618736	1024
1245.445	queue	W	2619760	1024
1246.025	queue	W	2620784	656
1246.421	queue	R	2621960	8
1248.405	queue	R	2031872	256
1251.824	queue	R	2032128	256
1255.272	queue	R	2032384	256
1258.721	queue	R	2032640	256
1262.139	queue	R	2032896	256
1265.588	queue	R	2033152	256
1269.007	queue	R	2033408	256
1272.425	queue	R	2033664	256
1278.865	queue	W	2637824	1024
1279.292	queue	W	2638848	1024
1279.719	queue	W	2639872	1024
1280.208	queue	W	2640896	1024
1280.360	queue	W	2641920	368
1296.994	queue	R	2033920	256
1297.391	queue	R	2034176	256
1300.839	queue	R	2034432	256
1304.258	queue	R	2034688	256
1307.706	queue	R	2034944	256
1311.125	queue	R	2035200	256
1314.573	queue	R	2035456	256
1317.992	queue	R	2035712	256
1321.441	queue	R	2035968	256
1324.859	queue	R	2036224	256
1328.308	queue	R	2036480	256
1331.756	queue	R	2036736	256
1335.205	queue	R	2036992	256
1338.624	queue	R	2037248	256
1342.072	queue	R	2037504	256
1345.491	queue	R	2037760	256
1348.909	queue	R	2038016	256
1352.358	queue	R	2038272	256
1355.807	queue	R	2038528	256
1359.255	queue	R	2038784	256
1362.674	queue	R	2039040	256
1397.070	queue	R	2039296	256
1397.436	queue	R	2039552	256
1400.885	queue	R	2039808	256
1404.303	queue	R	2040064	256
1407.722	queue	R	2040320	256
1410.163	queue	WS	1845424	8
1410.194	queue	WS	1845432	8
1410.194	queue	WS	1845440	8
1410.224	queue	WS	1845448	8
1410.224	queue	WS	1845456	8
1410.255	queue	WS	1845464	8
1410.255	queue	WS	1845472	8
1410.255	queue	WS	1845480	8
1410.285	queue	WS	1845488	8
1410.285	queue	WS	1845496	8
1410.285	queue	WS	1845504	8
1410.316	queue	WS	1845512	8
1410.316	queue	WS	1845520	8
1410.346	queue	WS	1845528	8
1411.170	queue	R	2040576	256
1414.589	queue	R	2040832	256
1418.038	queue	R	2041088	256
1421.486	queue	R	2041344	256
1424.905	queue	R	2041600	256
1428.353	queue	R	2041856	256
1431.833	queue	R	2042112	256
1435.251	queue	R	2042368	256
1438.700	queue	R	2042624	256
1442.118	queue	R	2042880	256
1445.567	queue	R	2043136	256
1448.985	queue	R	2043392	256
1452.434	queue	R	2043648	256
1455.852	queue	R	2043904	256
1459.301	queue	R	2044160	256
1462.719	queue	R	2044416	256
1477.033	queue	R	2044672	256
1477.430	queue	R	2044928	256
1480.848	queue	R	2045184	256
1484.328	queue	R	2045440	256
1487.716	queue	R	2045696	256
1491.164	queue	R	2045952	256
1494.613	queue	R	2046208	256
1498.031	queue	R	2046464	256
1501.450	queue	R	2046720	256
1504.899	queue	R	2046976	256
1508.317	queue	R	2047232	256
1511.766	queue	R	2047488	256
1515.214	queue	R	2047744	256
1518.633	queue	R	2048000	256
1522.081	queue	R	2048256	256
1525.652	queue	R	2048512	256
1529.132	queue	R	2048768	256
1532.580	queue	R	2049024	256
1536.060	queue	R	2049280	256
1539.509	queue	R	2049536	256
1542.957	queue	R	2049792	256
1557.088	queue	R	2050048	256
1557.455	queue	R	2050304	256
1560.934	queue	R	2050560	256
1564.383	queue	R	2050816	256
1567.832	queue	R	2051072	256
1571.311	queue	R	2051328	256
1574.790	queue	R	2051584	256
1578.239	queue	R	2051840	256
1581.688	queue	R	2052096	256
1585.137	queue	R	2052352	256
1588.616	queue	R	2052608	256
1592.065	queue	R	2052864	256
1595.514	queue	R	2053120	256
1598.962	queue	R	2053376	256
1602.411	queue	R	2053632	256
1605.890	queue	R	2053888	256
1609.339	queue	R	2054144	256
1612.819	queue	R	2054400	256
1616.267	queue	R	2054656	256
1619.716	queue	R	2054912	256
1623.165	queue	R	2055168	256
1630.032	issue	R	2054912	512
1636.991	queue	R	2055424	256
1637.387	queue	R	2055680	256
1640.867	queue	R	2055936	256
1644.316	queue	R	2056192	256
1647.795	queue	R	2056448	256
1651.244	queue	R	2056704	256
1654.693	queue	R	2056960	256
1658.141	queue	R	2057216	256
1661.621	queue	R	2057472	256
1665.069	queue	R	2057728	256
1668.518	queue	R	2057984	256
1671.998	queue	R	2058240	256
1675.446	queue	R	2058496	256
1678.895	queue	R	2058752	256
1682.344	queue	R	2059008	256
1685.823	queue	R	2059264	256
1689.272	queue	R	2059520	256
1692.721	queue	R	2059776	256
1696.200	queue	R	2060032	256
1699.649	queue	R	2060288	256
1703.098	queue	R	2060544	256
1727.087	queue	R	2060800	256
1727.484	queue	R	2061056	256
1730.993	queue	R	2061312	256
1734.503	queue	R	2061568	256
1738.013	queue	R	2061824	256
1741.523	queue	R	2062080	256
1745.033	queue	R	2062336	256
1748.543	queue	R	2062592	256
1752.052	queue	R	2062848	256
1755.562	queue	R	2063104	256
1759.042	queue	R	2063360	256
1762.552	queue	R	2063616	256
1766.061	queue	R	2063872	256
1769.571	queue	R	2064128	256
1773.081	queue	R	2064384	256
1776.591	queue	R	2064640	256
1780.162	queue	R	2064896	256
1783.580	queue	R	2065152	256
1787.029	queue	R	2065408	256
1790.508	queue	R	2065664	256
1807.050	queue	R	2065920	256
1807.447	queue	R	2066176	256
1810.926	queue	R	2066432	256
1814.375	queue	R	2066688	256
1817.793	queue	R	2066944	256
1821.242	queue	R	2067200	256
1824.691	queue	R	2067456	256
1828.140	queue	R	2067712	256
1831.619	queue	R	2067968	256
1835.159	queue	R	2068224	256
1838.639	queue	R	2068480	256
1842.088	queue	R	2068736	256
1845.536	queue	R	2068992	256
1848.985	queue	R	2069248	256
1852.434	queue	R	2069504	256
1855.883	queue	R	2069760	256
1859.362	queue	R	2070016	256
1862.811	queue	R	2070272	256
1866.260	queue	R	2070528	256
1869.739	queue	R	2070784	256
1873.157	queue	R	2071040	256
1897.085	queue	R	2071296	256
1897.513	queue	R	2071552	256
1900.992	queue	R	2071808	256
1904.502	queue	R	2072064	256
1908.012	queue	R	2072320	256
1911.552	queue	R	2072576	256
1915.031	queue	R	2072832	256
1918.572	queue	R	2073088	256
1922.051	queue	R	2073344	256
1925.561	queue	R	2073600	256
1928.979	queue	R	2073856	256
1932.428	queue	R	2074112	256
1935.877	queue	R	2074368	256
1939.356	queue	R	2074624	256
1942.774	queue	R	2074880	256
1946.254	queue	R	2075136	256
1949.702	queue	R	2075392	256
1953.151	queue	R	2075648	256
1956.631	queue	R	2075904	256
1960.171	queue	R	2076160	256
1963.650	queue	R	2076416	256
1977.110	queue	R	2076672	256
1977.476	queue	R	2076928	256
1981.016	queue	R	2077184	256
1984.496	queue	R	2077440	256
1987.975	queue	R	2077696	256
1991.485	queue	R	2077952	256
1994.995	queue	R	2078208	256
1998.474	queue	R	2078464	256
2001.984	queue	R	2078720	256
2005.494	queue	R	2078976	256
2009.004	queue	R	2079232	256
2012.513	queue	R	2079488	256
2016.023	queue	R	2079744	256
2019.533	queue	R	2080000	256
2023.012	queue	R	2080256	256
2026.492	queue	R	2080512	256
2030.002	queue	R	2080768	256
2033.389	queue	R	2081024	256
2036.838	queue	R	2081280	256
2040.287	queue	R	2081536	256
2057.104	queue	R	2081792	256
2057.470	queue	R	2082048	256
2061.010	queue	R	2082304	256
2064.490	queue	R	2082560	256
2068.030	queue	R	2082816	256
2071.509	queue	R	2083072	256
2075.050	queue	R	2083328	256
2078.559	queue	R	2083584	256
2082.039	queue	R	2083840	256
2085.518	queue	R	2084096	256
2088.997	queue	R	2084352	256
2092.416	queue	R	2084608	256
2095.864	queue	R	2084864	256
2099.313	queue	R	2085120	256
2102.762	queue	R	2085376	256
2106.211	queue	R	2085632	256
2109.660	queue	R	2085888	256
2113.139	queue	R	2086144	256
2116.588	queue	R	2086400	256
2120.067	queue	R	2086656	256
2123.485	queue	R	2086912	256
2137.098	queue	R	2087168	256
2137.464	queue	R	2087424	256
2140.974	queue	R	2087680	256
2144.483	queue	R	2087936	256
2148.024	queue	R	2088192	256
2151.503	queue	R	2088448	256
2155.043	queue	R	2088704	256
2158.492	queue	R	2088960	256
2161.941	queue	R	2089216	256
2165.420	queue	R	2089472	256
2168.839	queue	R	2089728	256
2172.318	queue	R	2089984	256
2175.736	queue	R	2090240	256
2179.216	queue	R	2090496	256
2182.664	queue	R	2090752	256
2186.144	queue	R	2091008	256
2189.593	queue	R	2091264	256
2193.041	queue	R	2091520	256
2196.490	queue	R	2091776	256
2199.939	queue	R	2092032	256
2203.418	queue	R	2092288	256
2217.091	queue	R	2092544	256
2217.458	queue	R	2092800	256
2220.998	queue	R	2093056	256
2224.508	queue	R	2093312	256
2227.987	queue	R	2093568	256
2231.497	queue	R	2093824	256
2235.037	queue	R	2094080	256
2238.547	queue	R	2094336	256
2242.088	queue	R	2094592	256
2245.597	queue	R	2094848	256
2249.107	queue	R	2095104	256
2252.526	queue	R	2095360	256
2255.974	queue	R	2095616	256
2259.423	queue	R	2095872	256
2262.841	queue	R	2096128	256
2266.321	queue	R	2096384	256
2269.770	queue	R	2096640	256
2273.218	queue	R	2096896	256
2276.698	queue	R	2113536	256
2280.177	queue	R	2113792	256
2283.717	queue	R	2114048	256
2297.055	queue	R	2114304	256
2297.421	queue	R	2114560	256
2300.961	queue	R	2114816	256
2304.471	queue	R	2115072	256
2307.981	queue	R	2115328	256
2311.430	queue	R	2115584	256
2314.879	queue	R	2115840	256
2318.297	queue	R	2116096	256
2321.746	queue	R	2116352	256
2325.195	queue	R	2116608	256
2328.643	queue	R	2116864	256
2332.123	queue	R	2117120	256
2335.602	queue	R	2117376	256
2339.142	queue	R	2117632	256
2342.591	queue	R	2117888	256
2346.040	queue	R	2118144	256
2349.489	queue	R	2118400	256
2352.938	queue	R	2118656	256
2356.386	queue	R	2118912	256
2359.866	queue	R	2119168	256
2363.315	queue	R	2119424	256
2377.140	queue	R	2119680	256
2377.537	queue	R	2119936	256
2381.047	queue	R	2120192	256
2384.587	queue	R	2120448	256
2388.128	queue	R	2120704	256
2391.607	queue	R	2120960	256
2395.056	queue	R	2121216	256
2398.505	queue	R	2121472	256
2401.953	queue	R	2121728	256
2405.402	queue	R	2121984	256
2408.851	queue	R	2122240	256
2412.300	queue	R	2122496	256
2415.749	queue	R	2122752	256
2419.228	queue	R	2123008	256
2422.677	queue	R	2123264	256
2426.125	queue	R	2123520	256
2429.574	queue	R	2123776	256
2433.054	queue	R	2124032	256
2436.502	queue	R	2124288	256
2439.982	queue	R	2124544	256
2443.430	queue	R	2124800	256
2457.073	queue	R	2125056	256
2457.439	queue	R	2125312	256
2460.919	queue	R	2125568	256
2464.367	queue	R	2125824	256
2467.786	queue	R	2126080	256
2471.265	queue	R	2126336	256
2474.714	queue	R	2126592	256
2478.163	queue	R	2126848	256
2481.611	queue	R	2127104	256
2485.091	queue	R	2127360	256
2488.540	queue	R	2127616	256
2491.988	queue	R	2127872	256
2495.437	queue	R	2128128	256
2498.917	queue	R	2128384	256
2502.365	queue	R	2128640	256
2505.814	queue	R	2128896	256
2509.263	queue	R	2129152	256
2512.742	queue	R	2129408	256
2516.191	queue	R	2129664	256
2519.670	queue	R	2129920	256
2523.119	queue	R	2130176	256
2537.006	queue	R	2130432	256
2537.372	queue	R	2130688	256
2540.852	queue	R	2130944	256
2544.331	queue	R	2131200	256
2547.780	queue	R	2131456	256
2551.228	queue	R	2131712	256
2554.708	queue	R	2131968	256
2558.157	queue	R	2132224	256
2561.605	queue	R	2132480	256
2565.085	queue	R	2132736	256
2568.564	queue	R	2132992	256
2571.982	queue	R	2133248	256
2575.492	queue	R	2133504	256
2578.910	queue	R	2133760	256
2582.359	queue	R	2134016	256
2585.839	queue	R	2134272	256
2589.287	queue	R	2134528	256
2592.767	queue	R	2134784	256
2596.185	queue	R	2135040	256
2599.634	queue	R	2135296	256
2603.113	queue	R	2135552	256
2626.766	cmplt	R	2135296	512
2628.201	queue	R	2135808	256
2628.292	issue	R	2135808	256
2628.811	queue	R	2136064	256
2631.711	cmplt	R	2135808	256
2631.802	issue	R	2136064	256
2632.352	queue	R	2136320	256
2635.221	cmplt	R	2136064	256
2635.343	issue	R	2136320	256
2635.922	queue	R	2136576	256
2638.791	cmplt	R	2136320	256
2638.883	issue	R	2136576	256
2639.463	queue	R	2136832	256
2642.271	cmplt	R	2136576	256
2642.362	issue	R	2136832	256
2642.881	queue	R	2137088	256
2645.781	cmplt	R	2136832	256
2645.872	issue	R	2137088	256
2646.391	queue	R	2137344	256
2649.596	queue	R	2137600	256
2653.044	queue	R	2137856	256
2656.493	queue	R	2138112	256
2659.973	queue	R	2138368	256
2663.391	queue	R	2138624	256
2666.809	queue	R	2138880	256
2670.288	queue	R	2139136	256
2673.768	queue	R	2139392	256
2677.217	queue	R	2139648	256
2680.696	queue	R	2139904	256
2684.175	queue	R	2140160	256
2687.624	queue	R	2140416	256
2691.073	queue	R	2140672	256
2717.107	queue	R	2140928	256
2717.503	queue	R	2141184	256
2721.013	queue	R	2141440	256
2724.523	queue	R	2141696	256
2728.033	queue	R	2141952	256
2731.482	queue	R	2142208	256
2734.931	queue	R	2142464	256
2738.379	queue	R	2142720	256
2741.828	queue	R	2142976	256
2745.277	queue	R	2143232	256
2748.726	queue	R	2143488	256
2752.205	queue	R	2143744	256
2755.654	queue	R	2144000	256
2759.103	queue	R	2144256	256
2762.552	queue	R	2144512	256
2766.031	queue	R	2144768	256
2769.480	queue	R	2145024	256
2772.928	queue	R	2145280	256
2776.408	queue	R	2145536	256
2779.857	queue	R	2145792	256
2783.305	queue	R	2146048	256
2797.101	queue	R	2146304	256
2797.467	queue	R	2146560	256
2800.946	queue	R	2146816	256
2804.364	queue	R	2147072	256
2807.813	queue	R	2147328	256
2811.262	queue	R	2147584	256
2814.711	queue	R	2147840	256
2818.160	queue	R	2148096	256
2821.639	queue	R	2148352	256
2825.088	queue	R	2148608	256
2828.537	queue	R	2148864	256
2832.016	queue	R	2149120	256
2835.465	queue	R	2149376	256
2838.944	queue	R	2149632	256
2842.393	queue	R	2149888	256
2845.842	queue	R	2150144	256
2849.290	queue	R	2150400	256
2852.739	queue	R	2150656	256
2856.219	queue	R	2150912	256
2859.667	queue	R	2151168	256
2863.116	queue	R	2151424	256
2877.003	queue	R	2151680	256
2877.369	queue	R	2151936	256
2880.848	queue	R	2152192	256
2884.297	queue	R	2152448	256
2887.746	queue	R	2152704	256
2891.225	queue	R	2152960	256
2894.674	queue	R	2153216	256
2898.154	queue	R	2153472	256
2901.602	queue	R	2153728	256
2905.082	queue	R	2153984	256
2908.500	queue	R	2154240	256
2911.979	queue	R	2154496	256
2915.428	queue	R	2154752	256
2918.877	queue	R	2155008	256
2922.356	queue	R	2155264	256
2925.805	queue	R	2155520	256
2929.254	queue	R	2155776	256
2932.733	queue	R	2156032	256
2936.182	queue	R	2156288	256
2939.661	queue	R	2156544	256
2943.110	queue	R	2156800	256
2977.171	queue	R	2157056	256
2977.537	queue	R	2157312	256
2981.077	queue	R	2157568	256
2984.587	queue	R	2157824	256
2988.097	queue	R	2158080	256
2991.515	queue	R	2158336	256
2994.964	queue	R	2158592	256
2998.413	queue	R	2158848	256
3001.862	queue	R	2159104	256
3005.280	queue	R	2159360	256
3008.759	queue	R	2159616	256
3012.208	queue	R	2159872	256
3015.687	queue	R	2160128	256
3019.136	queue	R	2160384	256
3022.585	queue	R	2160640	256
3026.034	queue	R	2160896	256
3029.483	queue	R	2161152	256
3032.962	queue	R	2161408	256
3036.441	queue	R	2161664	256
3039.890	queue	R	2161920	256
3043.339	queue	R	2162176	256
3057.043	queue	R	2162432	256
3057.439	queue	R	2162688	256
3060.949	queue	R	2162944	256
3064.459	queue	R	2163200	256
3067.938	queue	R	2163456	256
3071.448	queue	R	2163712	256
3074.958	queue	R	2163968	256
3078.468	queue	R	2164224	256
3081.978	queue	R	2164480	256
3085.488	queue	R	2164736	256
3088.997	queue	R	2164992	256
3092.507	queue	R	2165248	256
3096.017	queue	R	2165504	256
3099.527	queue	R	2165760	256
3103.037	queue	R	2166016	256
3106.547	queue	R	2166272	256
3110.056	queue	R	2166528	256
3113.536	queue	R	2166784	256
3116.985	queue	R	2167040	256
3120.433	queue	R	2167296	256
3137.128	queue	R	2167552	256
3137.494	queue	R	2167808	256
3141.004	queue	R	2168064	256
3144.514	queue	R	2168320	256
3148.024	queue	R	2168576	256
3152.236	queue	R	2168832	256
3155.715	queue	R	2169088	256
3159.255	queue	R	2169344	256
3162.765	queue	R	2169600	256
3166.275	queue	R	2169856	256
3169.785	queue	R	2170112	256
3173.325	queue	R	2170368	256
3176.835	queue	R	2170624	256
3180.345	queue	R	2170880	256
3183.885	queue	R	2171136	256
3187.395	queue	R	2171392	256
3190.874	queue	R	2171648	256
3194.415	queue	R	2171904	256
3197.864	queue	R	2172160	256
3201.587	queue	R	2172416	256
3213.948	queue	R	987240	8
3260.797	queue	R	987152	8
3260.858	queue	R	987176	8
3260.858	queue	R	987232	8
3261.590	queue	R	1098664	8
3262.597	queue	R	1087552	8
3322.204	queue	R	1087488	16
3322.234	queue	R	1087536	16
3331.116	queue	R	988672	8
3403.144	queue	R	988624	48
3404.212	queue	R	1016248	24
3405.158	queue	R	1092648	8
3405.890	queue	R	1092496	40
3405.921	queue	R	1092592	8
3405.921	queue	R	1092624	24
3406.714	queue	R	988704	8
3407.996	queue	R	988688	16
3409.248	queue	R	1092384	112
3413.093	queue	R	988416	40
3413.124	queue	R	988512	8
3419.228	queue	R	1001896	8
3420.632	queue	R	1001848	16
3420.662	queue	R	1001880	16
3495.559	queue	R	1062664	8
3496.231	queue	R	1062528	136
3498.367	queue	R	1096392	8
3499.741	queue	R	1096312	80
3505.570	queue	R	1062248	8
3505.600	queue	R	1062264	16
3505.631	queue	R	1062288	88
3511.949	queue	R	1035096	8
3583.824	queue	R	1034960	136
3587.242	queue	R	1034872	88
3590.111	queue	R	1098656	8
3672.455	queue	R	974352	8
3699.344	queue	R	2203136	256
3699.710	queue	R	2203392	256
3699.771	issue	R	2203136	512
3706.302	cmplt	R	2203136	512
3706.760	queue	R	2203648	256
3707.127	queue	R	2203904	256
3707.188	issue	R	2203648	512
3713.719	cmplt	R	2203648	512
3714.116	queue	R	2204160	256
3714.482	queue	R	2204416	256
3714.543	issue	R	2204160	512
3720.983	cmplt	R	2204160	512
3721.441	queue	R	2204672	256
3721.807	queue	R	2204928	256
3721.868	issue	R	2204672	512
3728.338	cmplt	R	2204672	512
3728.796	queue	R	2205184	256
3729.162	queue	R	2205440	256
3729.223	issue	R	2205184	512
3735.724	cmplt	R	2205184	512
3736.182	queue	R	2205696	256
3736.548	queue	R	2205952	256
3736.609	issue	R	2205696	512
3743.110	cmplt	R	2205696	512
3743.232	issue	R	974352	8
3743.720	queue	R	2206208	256
3744.087	queue	R	2206464	256
3744.117	cmplt	R	974352	8
3744.544	queue	R	1087320	8
3744.606	issue	R	1087320	8
3745.033	cmplt	R	1087320	8
3745.582	queue	R	1087280	8
3745.582	queue	R	1087312	8
3745.643	issue	R	1087312	8
3745.735	issue	R	1087280	8
3746.009	cmplt	R	1087312	8
3746.223	cmplt	R	1087280	8
3746.467	queue	R	1087328	8
3746.498	queue	R	1087344	8
3746.559	issue	R	1087328	8
3746.620	issue	R	1087344	8
3746.895	cmplt	R	1087328	8
3747.139	cmplt	R	1087344	8
3747.566	queue	R	974288	8
3747.597	queue	R	974312	8
3747.597	queue	R	974344	8
3747.688	issue	R	974288	8
3747.749	issue	R	974312	8
3748.146	cmplt	R	974288	8
3748.207	issue	R	974344	8
3748.451	cmplt	R	974312	8
3748.695	cmplt	R	974344	8
3750.038	issue	R	2206208	512
3756.661	cmplt	R	2206208	512
3757.088	queue	R	2206720	256
3757.485	queue	R	2206976	256
3757.546	issue	R	2206720	512
3764.016	cmplt	R	2206720	512
3764.474	queue	R	2207232	256
3764.841	queue	R	2207488	256
3764.902	issue	R	2207232	512
3771.372	cmplt	R	2207232	512
3771.799	queue	R	2207744	256
3772.165	queue	R	2208000	256
3772.196	issue	R	2207744	512
3778.636	cmplt	R	2207744	512
3779.063	queue	R	2208256	256
3779.460	queue	R	2208512	256
3779.490	issue	R	2208256	512
3785.961	cmplt	R	2208256	512
3786.388	queue	R	2208768	256
3786.754	queue	R	2209024	256
3786.785	issue	R	2208768	512
3793.255	cmplt	R	2208768	512
3793.682	queue	R	2209280	256
3794.049	queue	R	2209536	256
3794.110	issue	R	2209280	512
3800.549	cmplt	R	2209280	512
3800.977	queue	R	2209792	256
3801.343	queue	R	2210048	256
3801.404	issue	R	2209792	512
3807.844	cmplt	R	2209792	512
3808.271	queue	R	2210304	256
3808.637	queue	R	2210560	256
3808.698	issue	R	2210304	512
3815.169	cmplt	R	2210304	512
3815.596	queue	R	2210816	256
3815.962	queue	R	2211072	256
3815.993	issue	R	2210816	512
3822.463	cmplt	R	2210816	512
3822.616	issue	W	1835696	8
3822.646	issue	W	2523136	1024
3823.501	queue	R	2211328	256
3823.867	queue	R	2211584	256
3824.081	cmplt	W	1835696	8
3824.172	queue	R	1916928	8
3845.872	cmplt	W	2523136	1024
3846.269	issue	R	2211328	512
3852.831	cmplt	R	2211328	512
3853.228	queue	R	2211840	256
3853.594	queue	R	2212096	256
3853.655	issue	R	2211840	512
3860.186	cmplt	R	2211840	512
3860.613	queue	R	2212352	256
3860.949	queue	R	2212608	256
3861.010	issue	R	2212352	512
3867.481	cmplt	R	2212352	512
3867.877	queue	R	2212864	256
3868.244	queue	R	2213120	256
3868.305	issue	R	2212864	512
3874.775	cmplt	R	2212864	512
3875.172	queue	R	2213376	256
3875.538	queue	R	2213632	256
3875.599	issue	R	2213376	512
3882.039	cmplt	R	2213376	512
3882.466	queue	R	2213888	256
3882.832	queue	R	2214144	256
3882.893	issue	R	2213888	512
3889.333	cmplt	R	2213888	512
3889.730	queue	R	2214400	256
3890.157	issue	R	2214400	256
3890.920	queue	R	2214656	256
3893.911	cmplt	R	2214400	256
3894.308	queue	R	2214912	256
3894.369	issue	R	2214656	512
3900.809	cmplt	R	2214656	512
3901.206	queue	R	2215168	256
3901.572	queue	R	2215424	256
3901.633	issue	R	2215168	512
3908.073	cmplt	R	2215168	512
3908.500	queue	R	2215680	256
3908.866	queue	R	2215936	256
3908.927	issue	R	2215680	512
3915.367	cmplt	R	2215680	512
3915.764	queue	R	2216192	256
3916.130	queue	R	2216448	256
3916.191	issue	R	2216192	512
3922.661	cmplt	R	2216192	512
3922.783	issue	R	1916928	8
3923.241	queue	R	2216704	256
3923.608	queue	R	2216960	256
3923.638	cmplt	R	1916928	8
3930.078	issue	W	2524160	1024
3930.597	issue	W	2525184	1024
3962.246	cmplt	W	2524160	1024
3962.582	issue	W	2526208	1024
3993.194	cmplt	W	2525184	1024
4024.325	cmplt	W	2526208	1024
4024.722	issue	R	2216704	512
4031.283	cmplt	R	2216704	512
4031.680	queue	R	2217216	256
4032.046	queue	R	2217472	256
4032.107	issue	R	2217216	512
4038.578	cmplt	R	2217216	512
4038.975	queue	R	2217728	256
4039.341	queue	R	2217984	256
4039.402	issue	R	2217728	512
4045.872	cmplt	R	2217728	512
4046.269	queue	R	2218240	256
4046.635	queue	R	2218496	256
4046.696	issue	R	2218240	512
4053.166	cmplt	R	2218240	512
4053.563	queue	R	2218752	256
4053.929	queue	R	2219008	256
4053.991	issue	R	2218752	512
4060.430	cmplt	R	2218752	512
4060.858	queue	R	2219264	256
4061.193	queue	R	2219520	256
4061.254	issue	R	2219264	512
4067.725	cmplt	R	2219264	512
4068.121	queue	R	2219776	256
4068.488	queue	R	2220032	256
4068.549	issue	R	2219776	512
4070.075	queue	WS	1916928	8
4075.019	cmplt	R	2219776	512
4075.416	queue	R	2220288	256
4075.782	queue	R	2220544	256
4075.843	issue	R	2220288	512
4082.374	cmplt	R	2220288	512
4082.802	queue	R	2220800	256
4083.534	issue	R	2220800	256
4086.953	cmplt	R	2220800	256
4090.157	queue	R	2221056	256
4090.523	queue	R	2221312	256
4090.584	issue	W	2527232	1024
4091.164	issue	W	2528256	1024
4122.539	cmplt	W	2527232	1024
4122.875	issue	W	2529280	1024
4153.548	cmplt	W	2528256	1024
4184.557	cmplt	W	2529280	1024
4184.892	issue	WS	1916928	8
4186.327	cmplt	WS	1916928	8
4187.090	queue	WS	1916928	8
4187.151	issue	WS	1916928	8
4188.067	cmplt	WS	1916928	8
4188.524	queue	RM	2626096	8
4188.616	issue	RM	2626096	8
4189.013	cmplt	RM	2626096	8
4189.104	queue	R	2626104	8
4189.165	issue	R	2626104	8
4189.470	cmplt	R	2626104	8
4190.081	issue	R	2221056	512
4196.948	cmplt	R	2221056	512
4197.406	queue	R	2221568	256
4197.803	queue	R	2221824	256
4197.864	issue	R	2221568	512
4200.305	queue	R	1912920	8
4205.372	cmplt	R	2221568	512
4205.829	queue	R	2222080	256
4206.196	queue	R	2222336	256
4206.257	issue	R	2222080	512
4212.727	cmplt	R	2222080	512
4213.093	queue	R	2222592	256
4213.459	queue	R	2222848	256
4213.521	issue	R	2222592	512
4219.991	cmplt	R	2222592	512
4220.357	queue	R	2223104	256
4220.449	issue	R	2223104	256
4220.723	queue	R	2223360	256
4223.897	cmplt	R	2223104	256
4223.989	issue	R	2223360	256
4224.264	queue	R	2223616	256
4227.407	cmplt	R	2223360	256
4227.499	issue	R	2223616	256
4227.774	queue	R	2223872	256
4230.948	cmplt	R	2223616	256
4231.039	issue	R	2223872	256
4231.314	queue	R	2224128	256
4234.427	cmplt	R	2223872	256
4234.519	issue	R	2224128	256
4234.824	queue	R	2224384	256
4237.906	cmplt	R	2224128	256
4237.998	issue	R	2224384	256
4238.273	queue	R	2224640	256
4241.355	cmplt	R	2224384	256
4241.447	issue	R	2224640	256
4241.721	queue	R	2224896	256
4244.834	cmplt	R	2224640	256
4244.895	issue	R	2224896	256
4245.201	queue	R	2225152	256
4248.283	cmplt	R	2224896	256
4248.375	issue	R	2225152	256
4248.649	queue	R	2225408	256
4251.732	cmplt	R	2225152	256
4251.824	issue	R	2225408	256
4252.129	queue	R	2225664	256
4255.211	cmplt	R	2225408	256
4255.272	issue	R	2225664	256
4255.578	queue	R	2225920	256
4258.660	cmplt	R	2225664	256
4258.752	issue	R	2225920	256
4259.026	queue	R	2226176	256
4262.109	cmplt	R	2225920	256
4262.231	issue	R	1912920	8
4262.506	queue	R	2226432	256
4262.567	cmplt	R	1912920	8
4270.044	issue	R	2226176	512
4276.515	cmplt	R	2226176	512
4276.911	queue	R	2226688	256
4277.003	issue	R	2226688	256
4277.308	queue	R	2226944	256
4280.391	cmplt	R	2226688	256
4280.482	issue	R	2226944	256
4280.757	queue	R	2227200	256
4283.870	cmplt	R	2226944	256
4283.931	issue	R	2227200	256
4284.236	queue	R	2227456	256
4287.319	cmplt	R	2227200	256
4287.410	issue	R	2227456	256
4287.685	queue	R	2227712	256
4290.768	cmplt	R	2227456	256
4290.890	issue	R	2227712	256
4291.164	queue	R	2227968	256
4294.247	cmplt	R	2227712	256
4294.338	issue	R	2227968	256
4294.613	queue	R	2228224	256
4297.726	cmplt	R	2227968	256
4297.818	issue	R	2228224	256
4298.092	queue	R	2228480	256
4301.175	cmplt	R	2228224	256
4301.267	issue	R	2228480	256
4301.541	queue	R	2228736	256
4304.624	cmplt	R	2228480	256
4304.715	issue	R	2228736	256
4304.990	queue	R	2228992	256
4308.103	cmplt	R	2228736	256
4308.195	issue	R	2228992	256
4308.469	queue	R	2229248	256
4311.552	cmplt	R	2228992	256
4311.644	issue	R	2229248	256
4311.949	queue	R	2229504	256
4315.031	cmplt	R	2229248	256
4315.123	issue	R	2229504	256
4315.398	queue	R	2229760	256
4318.511	cmplt	R	2229504	256
4318.572	issue	R	2229760	256
4318.877	queue	R	2230016	256
4321.959	cmplt	R	2229760	256
4322.051	issue	R	2230016	256
4322.326	queue	R	2230272	256
4325.439	cmplt	R	2230016	256
4325.530	issue	R	2230272	256
4325.805	queue	R	2230528	256
4328.888	cmplt	R	2230272	256
4328.979	issue	R	2230528	256
4329.254	queue	R	2230784	256
4332.336	cmplt	R	2230528	256
4332.428	issue	R	2230784	256
4332.733	queue	R	2231040	256
4335.816	cmplt	R	2230784	256
4335.907	issue	R	2231040	256
4336.182	queue	R	2231296	256
4339.264	cmplt	R	2231040	256
4339.356	issue	R	2231296	256
4339.661	queue	R	2231552	256
4342.744	cmplt	R	2231296	256
4342.866	issue	R	2231552	256
4343.110	queue	R	2231808	256
4346.223	cmplt	R	2231552	256
4346.315	issue	R	2231808	256
4346.589	queue	R	2232064	256
4349.702	cmplt	R	2231808	256
4349.794	issue	R	2232064	256
4350.099	queue	R	2232320	256
4353.151	cmplt	R	2232064	256
4353.243	issue	R	2232320	256
4353.548	queue	R	2232576	256
4356.600	cmplt	R	2232320	256
4356.692	issue	R	2232576	256
4357.027	queue	R	2232832	256
4360.079	cmplt	R	2232576	256
4360.171	issue	R	2232832	256
4360.476	queue	R	2233088	256
4363.528	cmplt	R	2232832	256
4363.620	issue	R	2233088	256
4363.925	queue	R	2233344	256
4367.007	cmplt	R	2233088	256
4367.099	issue	R	2233344	256
4367.374	queue	R	2233600	256
4370.456	cmplt	R	2233344	256
4370.639	issue	R	2233600	256
4370.853	queue	R	2233856	256
4373.997	cmplt	R	2233600	256
4374.088	issue	R	2233856	256
4374.363	queue	R	2234112	256
4377.445	cmplt	R	2233856	256
4377.537	issue	R	2234112	256
4377.842	queue	R	2234368	256
4380.894	cmplt	R	2234112	256
4380.986	issue	R	2234368	256
4381.291	queue	R	2234624	256
4384.374	cmplt	R	2234368	256
4384.465	issue	R	2234624	256
4384.740	queue	R	2234880	256
4387.822	cmplt	R	2234624	256
4387.914	issue	R	2234880	256
4388.219	queue	R	2235136	256
4391.302	cmplt	R	2234880	256
4391.363	issue	R	2235136	256
4391.668	queue	R	2235392	256
4394.750	cmplt	R	2235136	256
4394.842	issue	R	2235392	256
4395.117	queue	R	2235648	256
4398.199	cmplt	R	2235392	256
4398.291	issue	R	2235648	256
4398.596	queue	R	2235904	256
4401.648	cmplt	R	2235648	256
4401.740	issue	R	2235904	256
4402.045	queue	R	2236160	256
4405.127	cmplt	R	2235904	256
4405.188	issue	R	2236160	256
4405.494	queue	R	2236416	256
4408.576	cmplt	R	2236160	256
4408.668	issue	R	2236416	256
4408.942	queue	R	2236672	256
4412.025	cmplt	R	2236416	256
4412.178	issue	W	2530304	1024
4412.513	queue	R	2236928	256
4412.727	issue	W	2531328	1024
4437.174	queue	W	2531328	1024
4437.845	queue	W	2531328	1024
4444.407	cmplt	W	2530304	1024
4444.712	issue	W	2532352	1024
4475.324	cmplt	W	2531328	1024
4506.333	cmplt	W	2532352	1024
4506.699	issue	R	2236672	512
4513.322	cmplt	R	2236672	512
4513.688	queue	R	2237184	256
4513.810	issue	R	2237184	256
4514.085	queue	R	2237440	256
4517.259	cmplt	R	2237184	256
4517.381	issue	R	2237440	256
4517.656	queue	R	2237696	256
4520.769	cmplt	R	2237440	256
4520.891	issue	R	2237696	256
4521.166	queue	R	2237952	256
4524.309	cmplt	R	2237696	256
4524.432	issue	R	2237952	256
4524.676	queue	R	2238208	256
4527.819	cmplt	R	2237952	256
4527.911	issue	R	2238208	256
4528.186	queue	R	2238464	256
4531.329	cmplt	R	2238208	256
4531.421	issue	R	2238464	256
4531.726	queue	R	2238720	256
4534.808	cmplt	R	2238464	256
4534.900	issue	R	2238720	256
4535.205	queue	R	2238976	256
4538.288	cmplt	R	2238720	256
4538.379	issue	R	2238976	256
4538.654	queue	R	2239232	256
4541.737	cmplt	R	2238976	256
4541.828	issue	R	2239232	256
4542.133	queue	R	2239488	256
4545.185	cmplt	R	2239232	256
4545.307	issue	R	2239488	256
4545.582	queue	R	2239744	256
4548.665	cmplt	R	2239488	256
4548.756	issue	R	2239744	256
4549.031	queue	R	2240000	256
4552.114	cmplt	R	2239744	256
4552.205	issue	R	2240000	256
4552.510	queue	R	2240256	256
4555.562	cmplt	R	2240000	256
4555.654	issue	R	2240256	256
4555.959	queue	R	2240512	256
4559.042	cmplt	R	2240256	256
4559.133	issue	R	2240512	256
4559.408	queue	R	2240768	256
4562.490	cmplt	R	2240512	256
4562.582	issue	R	2240768	256
4562.887	queue	R	2241024	256
4565.939	cmplt	R	2240768	256
4566.031	issue	R	2241024	256
4566.336	queue	R	2241280	256
4569.419	cmplt	R	2241024	256
4569.510	issue	R	2241280	256
4569.785	queue	R	2241536	256
4572.867	cmplt	R	2241280	256
4572.959	issue	R	2241536	256
4573.264	queue	R	2241792	256
4576.316	cmplt	R	2241536	256
4576.408	issue	R	2241792	256
4576.713	queue	R	2242048	256
4579.796	cmplt	R	2241792	256
4579.887	issue	R	2242048	256
4580.192	queue	R	2242304	256
4583.305	cmplt	R	2242048	256
4583.397	issue	R	2242304	256
4583.672	queue	R	2242560	256
4586.785	cmplt	R	2242304	256
4586.876	issue	R	2242560	256
4587.151	queue	R	2242816	256
4590.233	cmplt	R	2242560	256
4590.325	issue	R	2242816	256
4590.630	queue	R	2243072	256
4593.682	cmplt	R	2242816	256
4593.804	issue	R	2243072	256
4594.079	queue	R	2243328	256
4597.162	cmplt	R	2243072	256
4597.253	issue	R	2243328	256
4597.528	queue	R	2243584	256
4600.610	cmplt	R	2243328	256
4600.702	issue	R	2243584	256
4601.007	queue	R	2243840	256
4604.059	cmplt	R	2243584	256
4604.151	issue	R	2243840	256
4604.456	queue	R	2244096	256
4607.539	cmplt	R	2243840	256
4607.630	issue	R	2244096	256
4607.905	queue	R	2244352	256
4610.987	cmplt	R	2244096	256
4611.079	issue	R	2244352	256
4611.384	queue	R	2244608	256
4614.467	cmplt	R	2244352	256
4614.558	issue	R	2244608	256
4614.833	queue	R	2244864	256
4617.885	cmplt	R	2244608	256
4617.976	issue	R	2244864	256
4618.282	queue	R	2245120	256
4621.334	cmplt	R	2244864	256
4621.425	issue	R	2245120	256
4621.731	queue	R	2245376	256
4624.813	cmplt	R	2245120	256
4624.905	issue	R	2245376	256
4625.210	queue	R	2245632	256
4628.262	cmplt	R	2245376	256
4628.353	issue	R	2245632	256
4628.659	queue	R	2245888	256
4631.741	cmplt	R	2245632	256
4631.833	issue	R	2245888	256
4632.138	queue	R	2246144	256
4635.190	cmplt	R	2245888	256
4635.282	issue	R	2246144	256
4635.587	queue	R	2246400	256
4638.669	cmplt	R	2246144	256
4638.730	issue	R	2246400	256
4639.036	queue	R	2246656	256
4642.118	cmplt	R	2246400	256
4642.210	issue	R	2246656	256
4642.515	queue	R	2246912	256
4645.567	cmplt	R	2246656	256
4645.658	issue	R	2246912	256
4645.964	queue	R	2247168	256
4649.046	cmplt	R	2246912	256
4649.138	issue	R	2247168	256
4649.412	queue	R	2247424	256
4652.495	cmplt	R	2247168	256
4652.617	issue	W	2533376	1024
4652.983	queue	R	2247680	256
4653.197	issue	W	2534400	1024
4684.419	cmplt	W	2533376	1024
4684.725	issue	W	2535424	1024
4715.245	cmplt	W	2534400	1024
4746.071	cmplt	W	2535424	1024
4746.406	issue	R	2247424	512
4752.846	cmplt	R	2247424	512
4753.212	queue	R	2247936	256
4753.304	issue	R	2247936	256
4753.609	queue	R	2248192	256
4756.692	cmplt	R	2247936	256
4756.783	issue	R	2248192	256
4757.058	queue	R	2248448	256
4760.140	cmplt	R	2248192	256
4760.232	issue	R	2248448	256
4760.537	queue	R	2248704	256
4763.589	cmplt	R	2248448	256
4763.681	issue	R	2248704	256
4763.986	queue	R	2248960	256
4767.069	cmplt	R	2248704	256
4767.160	issue	R	2248960	256
4767.435	queue	R	2249216	256
4770.517	cmplt	R	2248960	256
4770.609	issue	R	2249216	256
4770.914	queue	R	2249472	256
4773.966	cmplt	R	2249216	256
4774.058	issue	R	2249472	256
4774.363	queue	R	2249728	256
4777.415	cmplt	R	2249472	256
4777.506	issue	R	2249728	256
4777.812	queue	R	2249984	256
4780.894	cmplt	R	2249728	256
4780.986	issue	R	2249984	256
4781.291	queue	R	2250240	256
4784.343	cmplt	R	2249984	256
4784.435	issue	R	2250240	256
4784.740	queue	R	2250496	256
4787.792	cmplt	R	2250240	256
4787.883	issue	R	2250496	256
4788.189	queue	R	2250752	256
4791.271	cmplt	R	2250496	256
4791.363	issue	R	2250752	256
4791.668	queue	R	2251008	256
4794.720	cmplt	R	2250752	256
4794.812	issue	R	2251008	256
4795.117	queue	R	2251264	256
4798.199	cmplt	R	2251008	256
4798.291	issue	R	2251264	256
4798.566	queue	R	2251520	256
4801.648	cmplt	R	2251264	256
4801.740	issue	R	2251520	256
4802.014	queue	R	2251776	256
4805.097	cmplt	R	2251520	256
4805.188	issue	R	2251776	256
4805.494	queue	R	2252032	256
4808.576	cmplt	R	2251776	256
4808.668	issue	R	2252032	256
4808.973	queue	R	2252288	256
4812.025	cmplt	R	2252032	256
4812.117	issue	R	2252288	256
4812.422	queue	R	2252544	256
4815.474	cmplt	R	2252288	256
4815.565	issue	R	2252544	256
4815.901	queue	R	2252800	256
4818.953	cmplt	R	2252544	256
4819.045	issue	R	2252800	256
4819.350	queue	R	2253056	256
4822.402	cmplt	R	2252800	256
4822.555	issue	W	2536448	1024
4822.890	queue	R	2253312	256
4823.134	issue	W	2537472	1024
4854.418	cmplt	W	2536448	1024
4854.754	issue	W	2538496	1024
4885.335	cmplt	W	2537472	1024
4917.626	cmplt	W	2538496	1024
4917.961	issue	R	2253056	512
4924.371	cmplt	R	2253056	512
4924.767	queue	R	2253568	256
4924.859	issue	R	2253568	256
4925.134	queue	R	2253824	256
4928.216	cmplt	R	2253568	256
4928.338	issue	R	2253824	256
4928.613	queue	R	2254080	256
4931.695	cmplt	R	2253824	256
4931.787	issue	R	2254080	256
4932.062	queue	R	2254336	256
4935.144	cmplt	R	2254080	256
4935.236	issue	R	2254336	256
4935.541	queue	R	2254592	256
4938.593	cmplt	R	2254336	256
4938.685	issue	R	2254592	256
4938.990	queue	R	2254848	256
4942.072	cmplt	R	2254592	256
4942.133	issue	R	2254848	256
4942.439	queue	R	2255104	256
4945.521	cmplt	R	2254848	256
4945.613	issue	R	2255104	256
4945.887	queue	R	2255360	256
4948.970	cmplt	R	2255104	256
4949.061	issue	R	2255360	256
4949.367	queue	R	2255616	256
4952.449	cmplt	R	2255360	256
4952.510	issue	R	2255616	256
4952.816	queue	R	2255872	256
4955.898	cmplt	R	2255616	256
4955.990	issue	R	2255872	256
4956.264	queue	R	2256128	256
4959.347	cmplt	R	2255872	256
4959.438	issue	R	2256128	256
4959.744	queue	R	2256384	256
4962.796	cmplt	R	2256128	256
4962.887	issue	R	2256384	256
4963.192	queue	R	2256640	256
4966.275	cmplt	R	2256384	256
4966.367	issue	R	2256640	256
4966.641	queue	R	2256896	256
4969.724	cmplt	R	2256640	256
4969.815	issue	R	2256896	256
4970.151	queue	R	2257152	256
4973.234	cmplt	R	2256896	256
4973.325	issue	R	2257152	256
4973.600	queue	R	2257408	256
4976.682	cmplt	R	2257152	256
4976.774	issue	R	2257408	256
4977.079	queue	R	2257664	256
4980.131	cmplt	R	2257408	256
4980.223	issue	R	2257664	256
4980.528	queue	R	2257920	256
4983.611	cmplt	R	2257664	256
4983.702	issue	R	2257920	256
4983.977	queue	R	2258176	256
4987.059	cmplt	R	2257920	256
4987.151	issue	R	2258176	256
4987.456	queue	R	2258432	256
4990.508	cmplt	R	2258176	256
4990.630	issue	W	2539520	1024
4990.996	queue	R	2258688	256
4991.210	issue	W	2540544	1024
5013.307	cmplt	W	2539520	1024
5013.643	issue	W	2541568	1024
5044.651	cmplt	W	2540544	1024
5075.355	cmplt	W	2541568	1024
5075.691	issue	R	2258432	512
5082.252	cmplt	R	2258432	512
5082.619	queue	R	2258944	256
5082.710	issue	R	2258944	256
5083.015	queue	R	2259200	256
5086.098	cmplt	R	2258944	256
5086.190	issue	R	2259200	256
5086.495	queue	R	2259456	256
5089.547	cmplt	R	2259200	256
5089.638	issue	R	2259456	256
5089.913	queue	R	2259712	256
5092.996	cmplt	R	2259456	256
5093.087	issue	R	2259712	256
5093.392	queue	R	2259968	256
5096.475	cmplt	R	2259712	256
5096.566	issue	R	2259968	256
5096.841	queue	R	2260224	256
5099.924	cmplt	R	2259968	256
5100.046	issue	R	2260224	256
5100.320	queue	R	2260480	256
5103.403	cmplt	R	2260224	256
5103.495	issue	R	2260480	256
5103.769	queue	R	2260736	256
5106.852	cmplt	R	2260480	256
5106.943	issue	R	2260736	256
5107.249	queue	R	2260992	256
5110.331	cmplt	R	2260736	256
5110.423	issue	R	2260992	256
5110.697	queue	R	2261248	256
5113.749	cmplt	R	2260992	256
5113.841	issue	R	2261248	256
5114.116	queue	R	2261504	256
5117.198	cmplt	R	2261248	256
5117.290	issue	R	2261504	256
5117.595	queue	R	2261760	256
5120.678	cmplt	R	2261504	256
5120.739	issue	R	2261760	256
5121.044	queue	R	2262016	256
5124.126	cmplt	R	2261760	256
5124.218	issue	R	2262016	256
5124.493	queue	R	2262272	256
5127.575	cmplt	R	2262016	256
5127.667	issue	R	2262272	256
5127.972	queue	R	2262528	256
5131.054	cmplt	R	2262272	256
5131.116	issue	R	2262528	256
5131.421	queue	R	2262784	256
5134.503	cmplt	R	2262528	256
5134.595	issue	R	2262784	256
5134.870	queue	R	2263040	256
5137.952	cmplt	R	2262784	256
5138.044	issue	R	2263040	256
5138.349	queue	R	2263296	256
5141.401	cmplt	R	2263040	256
5141.492	issue	R	2263296	256
5141.798	queue	R	2263552	256
5144.880	cmplt	R	2263296	256
5144.972	issue	R	2263552	256
5145.246	queue	R	2263808	256
5148.329	cmplt	R	2263552	256
5148.421	issue	R	2263808	256
5148.726	queue	R	2264064	256
5151.808	cmplt	R	2263808	256
5151.930	issue	W	2542592	1024
5152.266	queue	R	2264320	256
5152.480	issue	W	2543616	1024
5183.946	cmplt	W	2542592	1024
5184.282	issue	W	2544640	1024
5215.169	cmplt	W	2543616	1024
5246.116	cmplt	W	2544640	1024
5246.452	issue	R	2264064	512
5252.892	cmplt	R	2264064	512
5253.258	queue	R	2264576	256
5253.350	issue	R	2264576	256
5253.655	queue	R	2264832	256
5256.737	cmplt	R	2264576	256
5256.829	issue	R	2264832	256
5257.104	queue	R	2265088	256
5260.186	cmplt	R	2264832	256
5260.278	issue	R	2265088	256
5260.552	queue	R	2265344	256
5263.635	cmplt	R	2265088	256
5263.727	issue	R	2265344	256
5264.062	queue	R	2265600	256
5267.114	cmplt	R	2265344	256
5267.206	issue	R	2265600	256
5267.481	queue	R	2265856	256
5270.563	cmplt	R	2265600	256
5270.655	issue	R	2265856	256
5270.960	queue	R	2266112	256
5274.012	cmplt	R	2265856	256
5274.103	issue	R	2266112	256
5274.378	queue	R	2266368	256
5277.491	cmplt	R	2266112	256
5277.583	issue	R	2266368	256
5277.888	queue	R	2266624	256
5280.940	cmplt	R	2266368	256
5281.032	issue	R	2266624	256
5281.337	queue	R	2266880	256
5284.389	cmplt	R	2266624	256
5284.480	issue	R	2266880	256
5284.786	queue	R	2267136	256
5287.868	cmplt	R	2266880	256
5287.960	issue	R	2267136	256
5288.234	queue	R	2267392	256
5291.317	cmplt	R	2267136	256
5291.409	issue	R	2267392	256
5291.714	queue	R	2267648	256
5294.796	cmplt	R	2267392	256
5294.857	issue	R	2267648	256
5295.163	queue	R	2267904	256
5298.245	cmplt	R	2267648	256
5298.337	issue	R	2267904	256
5298.611	queue	R	2268160	256
5301.694	cmplt	R	2267904	256
5301.785	issue	R	2268160	256
5302.060	queue	R	2268416	256
5305.143	cmplt	R	2268160	256
5305.234	issue	R	2268416	256
5305.539	queue	R	2268672	256
5308.622	cmplt	R	2268416	256
5308.714	issue	R	2268672	256
5308.988	queue	R	2268928	256
5312.071	cmplt	R	2268672	256
5312.162	issue	R	2268928	256
5312.437	queue	R	2269184	256
5315.520	cmplt	R	2268928	256
5315.611	issue	R	2269184	256
5315.916	queue	R	2269440	256
5318.968	cmplt	R	2269184	256
5319.060	issue	R	2269440	256
5319.365	queue	R	2269696	256
5322.448	cmplt	R	2269440	256
5322.570	issue	W	2545664	1024
5322.936	queue	R	2269952	256
5323.119	issue	W	2546688	1024
5359.835	cmplt	W	2545664	1024
5360.171	issue	W	2547712	1024
5390.752	cmplt	W	2546688	1024
5421.761	cmplt	W	2547712	1024
5422.066	issue	R	2269696	512
5428.506	cmplt	R	2269696	512
5428.903	queue	R	2270208	256
5428.994	issue	R	2270208	256
5429.269	queue	R	2270464	256
5432.352	cmplt	R	2270208	256
5432.443	issue	R	2270464	256
5432.748	queue	R	2270720	256
5435.800	cmplt	R	2270464	256
5435.892	issue	R	2270720	256
5436.197	queue	R	2270976	256
5439.249	cmplt	R	2270720	256
5439.341	issue	R	2270976	256
5439.646	queue	R	2271232	256
5442.729	cmplt	R	2270976	256
5442.820	issue	R	2271232	256
5443.095	queue	R	2271488	256
5446.177	cmplt	R	2271232	256
5446.269	issue	R	2271488	256
5446.574	queue	R	2271744	256
5449.657	cmplt	R	2271488	256
5449.748	issue	R	2271744	256
5450.053	queue	R	2272000	256
5453.105	cmplt	R	2271744	256
5453.197	issue	R	2272000	256
5453.502	queue	R	2272256	256
5456.554	cmplt	R	2272000	256
5456.646	issue	R	2272256	256
5456.951	queue	R	2272512	256
5460.064	cmplt	R	2272256	256
5460.156	issue	R	2272512	256
5460.430	queue	R	2272768	256
5463.513	cmplt	R	2272512	256
5463.604	issue	R	2272768	256
5463.879	queue	R	2273024	256
5466.962	cmplt	R	2272768	256
5467.053	issue	R	2273024	256
5467.358	queue	R	2273280	256
5470.441	cmplt	R	2273024	256
5470.533	issue	R	2273280	256
5470.807	queue	R	2273536	256
5473.890	cmplt	R	2273280	256
5473.981	issue	R	2273536	256
5474.287	queue	R	2273792	256
5477.339	cmplt	R	2273536	256
5477.430	issue	R	2273792	256
5477.735	queue	R	2274048	256
5480.787	cmplt	R	2273792	256
5480.879	issue	R	2274048	256
5481.184	queue	R	2274304	256
5484.267	cmplt	R	2274048	256
5484.358	issue	R	2274304	256
5484.633	queue	R	2274560	256
5487.716	cmplt	R	2274304	256
5487.807	issue	R	2274560	256
5488.082	queue	R	2274816	256
5491.164	cmplt	R	2274560	256
5491.286	issue	W	2548736	1024
5491.653	queue	R	2275072	256
5491.866	issue	W	2549760	1024
5523.150	cmplt	W	2548736	1024
5523.485	issue	W	2550784	1024
5554.036	cmplt	W	2549760	1024
5584.831	cmplt	W	2550784	1024
5585.167	issue	R	2274816	512
5591.607	cmplt	R	2274816	512
5591.973	queue	R	2275328	256
5592.065	issue	R	2275328	256
5592.370	queue	R	2275584	256
5595.422	cmplt	R	2275328	256
5595.514	issue	R	2275584	256
5595.819	queue	R	2275840	256
5598.901	cmplt	R	2275584	256
5598.993	issue	R	2275840	256
5599.268	queue	R	2276096	256
5602.350	cmplt	R	2275840	256
5602.442	issue	R	2276096	256
5602.747	queue	R	2276352	256
5605.799	cmplt	R	2276096	256
5605.890	issue	R	2276352	256
5606.196	queue	R	2276608	256
5609.278	cmplt	R	2276352	256
5609.370	issue	R	2276608	256
5609.644	queue	R	2276864	256
5612.727	cmplt	R	2276608	256
5612.819	issue	R	2276864	256
5613.093	queue	R	2277120	256
5616.176	cmplt	R	2276864	256
5616.267	issue	R	2277120	256
5616.573	queue	R	2277376	256
5619.625	cmplt	R	2277120	256
5619.716	issue	R	2277376	256
5620.052	queue	R	2277632	256
5623.073	cmplt	R	2277376	256
5623.165	issue	R	2277632	256
5623.440	queue	R	2277888	256
5626.522	cmplt	R	2277632	256
5626.614	issue	R	2277888	256
5626.919	queue	R	2278144	256
5630.032	cmplt	R	2277888	256
5630.124	issue	R	2278144	256
5630.398	queue	R	2278400	256
5633.481	cmplt	R	2278144	256
5633.572	issue	R	2278400	256
5633.847	queue	R	2278656	256
5636.930	cmplt	R	2278400	256
5637.021	issue	R	2278656	256
5637.326	queue	R	2278912	256
5640.378	cmplt	R	2278656	256
5640.470	issue	R	2278912	256
5640.775	queue	R	2279168	256
5643.858	cmplt	R	2278912	256
5643.949	issue	R	2279168	256
5644.224	queue	R	2279424	256
5647.307	cmplt	R	2279168	256
5647.398	issue	R	2279424	256
5647.703	queue	R	2279680	256
5650.755	cmplt	R	2279424	256
5650.847	issue	R	2279680	256
5651.152	queue	R	2279936	256
5654.235	cmplt	R	2279680	256
5654.326	issue	R	2279936	256
5654.631	queue	R	2280192	256
5657.684	cmplt	R	2279936	256
5657.775	issue	R	2280192	256
5658.080	queue	R	2280448	256
5661.132	cmplt	R	2280192	256
5661.285	issue	W	2551808	1024
5661.621	queue	R	2280704	256
5661.834	issue	W	2552832	1024
5693.087	cmplt	W	2551808	1024
5693.423	issue	W	2553856	1024
5724.126	cmplt	W	2552832	1024
5755.013	cmplt	W	2553856	1024
5755.318	issue	R	2280448	512
5761.758	cmplt	R	2280448	512
5762.155	queue	R	2280960	256
5762.246	issue	R	2280960	256
5762.521	queue	R	2281216	256
5765.604	cmplt	R	2280960	256
5765.695	issue	R	2281216	256
5766.000	queue	R	2281472	256
5769.052	cmplt	R	2281216	256
5769.144	issue	R	2281472	256
5769.449	queue	R	2281728	256
5772.501	cmplt	R	2281472	256
5772.593	issue	R	2281728	256
5772.898	queue	R	2281984	256
5775.980	cmplt	R	2281728	256
5776.072	issue	R	2281984	256
5776.377	queue	R	2282240	256
5779.429	cmplt	R	2281984	256
5779.521	issue	R	2282240	256
5779.796	queue	R	2282496	256
5782.878	cmplt	R	2282240	256
5782.970	issue	R	2282496	256
5783.275	queue	R	2282752	256
5786.357	cmplt	R	2282496	256
5786.449	issue	R	2282752	256
5786.724	queue	R	2283008	256
5789.806	cmplt	R	2282752	256
5789.898	issue	R	2283008	256
5790.203	queue	R	2283264	256
5793.286	cmplt	R	2283008	256
5793.377	issue	R	2283264	256
5793.652	queue	R	2283520	256
5796.734	cmplt	R	2283264	256
5796.826	issue	R	2283520	256
5797.131	queue	R	2283776	256
5800.183	cmplt	R	2283520	256
5800.275	issue	R	2283776	256
5800.580	queue	R	2284032	256
5803.632	cmplt	R	2283776	256
5803.723	issue	R	2284032	256
5804.029	queue	R	2284288	256
5807.111	cmplt	R	2284032	256
5807.203	issue	R	2284288	256
5807.477	queue	R	2284544	256
5810.560	cmplt	R	2284288	256
5810.652	issue	R	2284544	256
5810.957	queue	R	2284800	256
5814.009	cmplt	R	2284544	256
5814.131	issue	R	2284800	256
5814.406	queue	R	2285056	256
5817.488	cmplt	R	2284800	256
5817.580	issue	R	2285056	256
5817.854	queue	R	2285312	256
5820.937	cmplt	R	2285056	256
5821.029	issue	R	2285312	256
5821.364	queue	R	2285568	256
5824.386	cmplt	R	2285312	256
5824.477	issue	R	2285568	256
5824.783	queue	R	2285824	256
5827.865	cmplt	R	2285568	256
5827.957	issue	R	2285824	256
5828.231	queue	R	2286080	256
5831.314	cmplt	R	2285824	256
5831.436	issue	W	2554880	1024
5831.772	queue	R	2286336	256
5832.107	issue	W	2555904	1024
5865.008	cmplt	W	2554880	1024
5865.344	issue	W	2556928	1024
5886.251	cmplt	W	2555904	1024
5886.556	issue	W	2557952	1024
5917.381	cmplt	W	2556928	1024
5948.176	cmplt	W	2557952	1024
5948.512	issue	R	2286080	512
5954.952	cmplt	R	2286080	512
5955.318	queue	R	2286592	256
5955.410	issue	R	2286592	256
5955.684	queue	R	2286848	256
5958.797	cmplt	R	2286592	256
5958.889	issue	R	2286848	256
5959.164	queue	R	2287104	256
5962.246	cmplt	R	2286848	256
5962.338	issue	R	2287104	256
5962.643	queue	R	2287360	256
5965.695	cmplt	R	2287104	256
5965.787	issue	R	2287360	256
5966.092	queue	R	2287616	256
5969.174	cmplt	R	2287360	256
5969.235	issue	R	2287616	256
5969.541	queue	R	2287872	256
5972.623	cmplt	R	2287616	256
5972.715	issue	R	2287872	256
5973.020	queue	R	2288128	256
5976.072	cmplt	R	2287872	256
5976.164	issue	R	2288128	256
5976.438	queue	R	2288384	256
5979.521	cmplt	R	2288128	256
5979.612	issue	R	2288384	256
5979.918	queue	R	2288640	256
5983.000	cmplt	R	2288384	256
5983.092	issue	R	2288640	256
5983.366	queue	R	2288896	256
5986.449	cmplt	R	2288640	256
5986.541	issue	R	2288896	256
5986.846	queue	R	2289152	256
5989.898	cmplt	R	2288896	256
5990.020	issue	R	2289152	256
5990.295	queue	R	2289408	256
5993.377	cmplt	R	2289152	256
5993.469	issue	R	2289408	256
5993.774	queue	R	2289664	256
5996.856	cmplt	R	2289408	256
5996.948	issue	R	2289664	256
5997.223	queue	R	2289920	256
6000.305	cmplt	R	2289664	256
6000.397	issue	R	2289920	256
6000.702	queue	R	2290176	256
6003.754	cmplt	R	2289920	256
6003.846	issue	R	2290176	256
6004.151	queue	R	2290432	256
6007.233	cmplt	R	2290176	256
6007.325	issue	R	2290432	256
6007.600	queue	R	2290688	256
6010.682	cmplt	R	2290432	256
6010.774	issue	R	2290688	256
6011.079	queue	R	2290944	256
6011.872	queue	R	2290944	256
6020.113	cmplt	R	2290688	256
6020.296	issue	W	2558976	1024
6020.632	queue	R	2291200	256
6052.251	cmplt	W	2558976	1024
6052.587	issue	W	2560000	1024
6084.480	cmplt	W	2560000	1024
6084.847	issue	R	2290944	512
6091.286	cmplt	R	2290944	512
6091.683	queue	R	2291456	256
6091.775	issue	R	2291456	256
6092.080	queue	R	2291712	256
6095.193	cmplt	R	2291456	256
6095.285	issue	R	2291712	256
6095.590	queue	R	2291968	256
6098.672	cmplt	R	2291712	256
6098.733	issue	R	2291968	256
6099.069	queue	R	2292224	256
6102.091	cmplt	R	2291968	256
6102.182	issue	R	2292224	256
6102.487	queue	R	2292480	256
6105.570	cmplt	R	2292224	256
6105.662	issue	R	2292480	256
6105.967	queue	R	2292736	256
6109.019	cmplt	R	2292480	256
6109.110	issue	R	2292736	256
6109.416	queue	R	2292992	256
6112.498	cmplt	R	2292736	256
6112.590	issue	R	2292992	256
6112.895	queue	R	2293248	256
6115.947	cmplt	R	2292992	256
6116.038	issue	R	2293248	256
6116.344	queue	R	2293504	256
6119.396	cmplt	R	2293248	256
6119.487	issue	R	2293504	256
6119.792	queue	R	2293760	256
6122.875	cmplt	R	2293504	256
6122.967	issue	R	2293760	256
6123.241	queue	R	2294016	256
6126.415	cmplt	R	2293760	256
6126.507	issue	R	2294016	256
6126.782	queue	R	2294272	256
6129.834	cmplt	R	2294016	256
6129.956	issue	R	2294272	256
6130.261	queue	R	2294528	256
6133.313	cmplt	R	2294272	256
6133.405	issue	R	2294528	256
6133.679	queue	R	2294784	256
6136.731	cmplt	R	2294528	256
6136.823	issue	R	2294784	256
6137.128	queue	R	2295040	256
6140.180	cmplt	R	2294784	256
6140.272	issue	R	2295040	256
6140.577	queue	R	2295296	256
6143.629	cmplt	R	2295040	256
6143.720	issue	R	2295296	256
6144.026	queue	R	2295552	256
6147.078	cmplt	R	2295296	256
6147.169	issue	R	2295552	256
6147.474	queue	R	2295808	256
6150.526	cmplt	R	2295552	256
6150.618	issue	R	2295808	256
6150.893	queue	R	2296064	256
6153.945	cmplt	R	2295808	256
6154.036	issue	R	2296064	256
6154.342	queue	R	2296320	256
6157.394	cmplt	R	2296064	256
6157.455	issue	R	2296320	256
6157.760	queue	R	2296576	256
6160.812	cmplt	R	2296320	256
6160.934	issue	W	2561024	1024
6161.300	queue	R	2296832	256
6161.483	issue	W	2562048	1024
6193.011	cmplt	W	2561024	1024
6193.316	issue	W	2563072	1024
6223.897	cmplt	W	2562048	1024
6254.723	cmplt	W	2563072	1024
6255.059	issue	R	2296576	512
6261.468	cmplt	R	2296576	512
6261.865	queue	R	2297088	256
6261.956	issue	R	2297088	256
6262.262	queue	R	2297344	256
6265.314	cmplt	R	2297088	256
6265.405	issue	R	2297344	256
6265.710	queue	R	2297600	256
6268.762	cmplt	R	2297344	256
6268.854	issue	R	2297600	256
6269.129	queue	R	2297856	256
6272.181	cmplt	R	2297600	256
6272.272	issue	R	2297856	256
6272.547	queue	R	2298112	256
6275.599	cmplt	R	2297856	256
6275.691	issue	R	2298112	256
6276.026	queue	R	2298368	256
6279.048	cmplt	R	2298112	256
6279.139	issue	R	2298368	256
6279.445	queue	R	2298624	256
6282.466	cmplt	R	2298368	256
6282.558	issue	R	2298624	256
6282.863	queue	R	2298880	256
6285.915	cmplt	R	2298624	256
6286.006	issue	R	2298880	256
6286.281	queue	R	2299136	256
6289.364	cmplt	R	2298880	256
6289.425	issue	R	2299136	256
6289.730	queue	R	2299392	256
6292.782	cmplt	R	2299136	256
6292.873	issue	R	2299392	256
6293.148	queue	R	2299648	256
6296.200	cmplt	R	2299392	256
6296.292	issue	R	2299648	256
6296.597	queue	R	2299904	256
6299.649	cmplt	R	2299648	256
6299.741	issue	R	2299904	256
6300.046	queue	R	2300160	256
6303.067	cmplt	R	2299904	256
6303.159	issue	R	2300160	256
6303.464	queue	R	2300416	256
6306.516	cmplt	R	2300160	256
6306.608	issue	R	2300416	256
6306.882	queue	R	2300672	256
6309.934	cmplt	R	2300416	256
6310.087	issue	R	2300672	256
6310.331	queue	R	2300928	256
6313.414	cmplt	R	2300672	256
6313.505	issue	R	2300928	256
6313.780	queue	R	2301184	256
6316.832	cmplt	R	2300928	256
6316.924	issue	R	2301184	256
6317.229	queue	R	2301440	256
6320.281	cmplt	R	2301184	256
6320.342	issue	R	2301440	256
6320.647	queue	R	2301696	256
6323.699	cmplt	R	2301440	256
6323.791	issue	R	2301696	256
6324.096	queue	R	2301952	256
6327.117	cmplt	R	2301696	256
6327.209	issue	R	2301952	256
6327.514	queue	R	2302208	256
6330.566	cmplt	R	2301952	256
6330.688	issue	W	2564096	1024
6331.024	queue	R	2302464	256
6331.268	issue	W	2565120	1024
6362.918	cmplt	W	2564096	1024
6363.223	issue	W	2566144	1024
6394.140	cmplt	W	2565120	1024
6425.088	cmplt	W	2566144	1024
6425.423	issue	R	2302208	512
6431.833	cmplt	R	2302208	512
6432.199	queue	R	2302720	256
6432.291	issue	R	2302720	256
6432.596	queue	R	2302976	256
6435.648	cmplt	R	2302720	256
6435.739	issue	R	2302976	256
6436.045	queue	R	2303232	256
6439.097	cmplt	R	2302976	256
6439.158	issue	R	2303232	256
6439.463	queue	R	2303488	256
6442.515	cmplt	R	2303232	256
6442.606	issue	R	2303488	256
6442.912	queue	R	2303744	256
6445.964	cmplt	R	2303488	256
6446.055	issue	R	2303744	256
6446.330	queue	R	2304000	256
6449.412	cmplt	R	2303744	256
6449.474	issue	R	2304000	256
6449.779	queue	R	2304256	256
6452.831	cmplt	R	2304000	256
6452.922	issue	R	2304256	256
6453.228	queue	R	2304512	256
6456.280	cmplt	R	2304256	256
6456.371	issue	R	2304512	256
6456.646	queue	R	2304768	256
6459.698	cmplt	R	2304512	256
6459.789	issue	R	2304768	256
6460.125	queue	R	2305024	256
6463.177	cmplt	R	2304768	256
6463.269	issue	R	2305024	256
6463.543	queue	R	2305280	256
6466.595	cmplt	R	2305024	256
6466.687	issue	R	2305280	256
6466.992	queue	R	2305536	256
6470.075	cmplt	R	2305280	256
6470.166	issue	R	2305536	256
6470.472	queue	R	2305792	256
6473.524	cmplt	R	2305536	256
6473.615	issue	R	2305792	256
6473.920	queue	R	2306048	256
6476.972	cmplt	R	2305792	256
6477.064	issue	R	2306048	256
6477.339	queue	R	2306304	256
6480.391	cmplt	R	2306048	256
6480.482	issue	R	2306304	256
6480.787	queue	R	2306560	256
6483.839	cmplt	R	2306304	256
6483.931	issue	R	2306560	256
6484.206	queue	R	2306816	256
6487.258	cmplt	R	2306560	256
6487.349	issue	R	2306816	256
6487.655	queue	R	2307072	256
6490.707	cmplt	R	2306816	256
6490.798	issue	R	2307072	256
6491.073	queue	R	2307328	256
6494.125	cmplt	R	2307072	256
6494.216	issue	R	2307328	256
6494.522	queue	R	2307584	256
6497.574	cmplt	R	2307328	256
6497.665	issue	R	2307584	256
6497.940	queue	R	2307840	256
6500.992	cmplt	R	2307584	256
6501.114	issue	W	2567168	1024
6501.480	queue	R	2308096	256
6501.694	issue	W	2568192	368
6533.405	cmplt	W	2567168	1024
6533.740	issue	W	2568560	1024
6559.286	cmplt	W	2568192	368
6559.408	issue	W	2569584	1024
6585.716	cmplt	W	2568560	1024
6613.612	cmplt	W	2569584	1024
6613.948	issue	R	2307840	512
6620.357	cmplt	R	2307840	512
6620.754	queue	R	2308352	256
6620.845	issue	R	2308352	256
6621.151	queue	R	2308608	256
6624.203	cmplt	R	2308352	256
6624.294	issue	R	2308608	256
6624.569	queue	R	2308864	256
6627.621	cmplt	R	2308608	256
6627.712	issue	R	2308864	256
6628.018	queue	R	2309120	256
6631.070	cmplt	R	2308864	256
6631.161	issue	R	2309120	256
6631.467	queue	R	2309376	256
6634.488	cmplt	R	2309120	256
6634.580	issue	R	2309376	256
6634.885	queue	R	2309632	256
6637.937	cmplt	R	2309376	256
6638.028	issue	R	2309632	256
6638.334	queue	R	2309888	256
6641.386	cmplt	R	2309632	256
6641.477	issue	R	2309888	256
6641.782	queue	R	2310144	256
6644.834	cmplt	R	2309888	256
6644.926	issue	R	2310144	256
6645.201	queue	R	2310400	256
6648.253	cmplt	R	2310144	256
6648.344	issue	R	2310400	256
6648.649	queue	R	2310656	256
6651.702	cmplt	R	2310400	256
6651.793	issue	R	2310656	256
6652.098	queue	R	2310912	256
6655.120	cmplt	R	2310656	256
6655.211	issue	R	2310912	256
6655.517	queue	R	2311168	256
6658.569	cmplt	R	2310912	256
6658.660	issue	R	2311168	256
6658.965	queue	R	2311424	256
6661.987	cmplt	R	2311168	256
6662.078	issue	R	2311424	256
6662.414	queue	R	2311680	256
6665.466	cmplt	R	2311424	256
6665.558	issue	R	2311680	256
6665.832	queue	R	2311936	256
6668.884	cmplt	R	2311680	256
6668.976	issue	R	2311936	256
6669.281	queue	R	2312192	256
6672.333	cmplt	R	2311936	256
6672.425	issue	R	2312192	256
6672.730	queue	R	2312448	256
6675.782	cmplt	R	2312192	256
6675.874	issue	R	2312448	256
6676.148	queue	R	2312704	256
6679.200	cmplt	R	2312448	256
6679.292	issue	R	2312704	256
6679.597	queue	R	2312960	256
6682.649	cmplt	R	2312704	256
6682.741	issue	R	2312960	256
6683.046	queue	R	2313216	256
6686.098	cmplt	R	2312960	256
6686.159	issue	R	2313216	256
6686.464	queue	R	2313472	256
6689.516	cmplt	R	2313216	256
6689.608	issue	R	2313472	256
6689.882	queue	R	2313728	256
6692.935	cmplt	R	2313472	256
6693.087	issue	W	2570608	1024
6693.423	queue	R	2313984	256
6723.485	cmplt	W	2570608	1024
6723.821	issue	W	2571632	656
6751.625	cmplt	W	2571632	656
6751.900	issue	R	2313728	512
6758.309	cmplt	R	2313728	512
6758.675	queue	R	2314240	256
6758.767	issue	R	2314240	256
6759.042	queue	R	2314496	256
6762.124	cmplt	R	2314240	256
6762.216	issue	R	2314496	256
6762.490	queue	R	2314752	256
6765.542	cmplt	R	2314496	256
6765.634	issue	R	2314752	256
6765.939	queue	R	2315008	256
6768.991	cmplt	R	2314752	256
6769.083	issue	R	2315008	256
6769.388	queue	R	2315264	256
6772.410	cmplt	R	2315008	256
6772.501	issue	R	2315264	256
6772.806	queue	R	2315520	256
6775.858	cmplt	R	2315264	256
6775.950	issue	R	2315520	256
6776.225	queue	R	2315776	256
6779.277	cmplt	R	2315520	256
6779.368	issue	R	2315776	256
6779.673	queue	R	2316032	256
6782.725	cmplt	R	2315776	256
6782.817	issue	R	2316032	256
6783.122	queue	R	2316288	256
6786.174	cmplt	R	2316032	256
6786.235	issue	R	2316288	256
6786.541	queue	R	2316544	256
6789.593	cmplt	R	2316288	256
6789.684	issue	R	2316544	256
6789.989	queue	R	2316800	256
6793.011	cmplt	R	2316544	256
6793.102	issue	R	2316800	256
6793.408	queue	R	2317056	256
6796.460	cmplt	R	2316800	256
6796.551	issue	R	2317056	256
6796.826	queue	R	2317312	256
6799.878	cmplt	R	2317056	256
6800.000	issue	R	2317312	256
6800.305	queue	R	2317568	256
6803.357	cmplt	R	2317312	256
6803.449	issue	R	2317568	256
6803.723	queue	R	2317824	256
6806.776	cmplt	R	2317568	256
6806.867	issue	R	2317824	256
6807.172	queue	R	2318080	256
6810.224	cmplt	R	2317824	256
6810.285	issue	R	2318080	256
6810.621	queue	R	2318336	256
6813.643	cmplt	R	2318080	256
6813.734	issue	R	2318336	256
6814.009	queue	R	2318592	256
6817.061	cmplt	R	2318336	256
6817.152	issue	R	2318592	256
6817.458	queue	R	2318848	256
6820.510	cmplt	R	2318592	256
6820.632	issue	W	2572288	1024
6820.998	queue	R	2319104	256
6821.212	issue	W	2573312	1024
6853.441	cmplt	W	2572288	1024
6853.746	issue	W	2574336	1024
6878.468	cmplt	W	2573312	1024
6878.743	issue	W	2575360	1024
6903.464	cmplt	W	2574336	1024
6928.399	cmplt	W	2575360	1024
6928.704	issue	R	2318848	512
6935.114	cmplt	R	2318848	512
6935.510	queue	R	2319360	256
6935.602	issue	R	2319360	256
6935.877	queue	R	2319616	256
6938.929	cmplt	R	2319360	256
6939.051	issue	R	2319616	256
6939.325	queue	R	2319872	256
6942.378	cmplt	R	2319616	256
6942.469	issue	R	2319872	256
6942.774	queue	R	2320128	256
6945.796	cmplt	R	2319872	256
6945.887	issue	R	2320128	256
6946.193	queue	R	2320384	256
6949.245	cmplt	R	2320128	256
6949.336	issue	R	2320384	256
6949.641	queue	R	2320640	256
6952.693	cmplt	R	2320384	256
6952.785	issue	R	2320640	256
6953.060	queue	R	2320896	256
6956.112	cmplt	R	2320640	256
6956.203	issue	R	2320896	256
6956.508	queue	R	2321152	256
6959.561	cmplt	R	2320896	256
6959.652	issue	R	2321152	256
6959.927	queue	R	2321408	256
6962.979	cmplt	R	2321152	256
6963.070	issue	R	2321408	256
6963.345	queue	R	2321664	256
6966.428	cmplt	R	2321408	256
6966.489	issue	R	2321664	256
6966.794	queue	R	2321920	256
6969.846	cmplt	R	2321664	256
6969.937	issue	R	2321920	256
6970.243	queue	R	2322176	256
6973.325	cmplt	R	2321920	256
6973.417	issue	R	2322176	256
6973.691	queue	R	2322432	256
6976.743	cmplt	R	2322176	256
6976.835	issue	R	2322432	256
6977.140	queue	R	2322688	256
6980.192	cmplt	R	2322432	256
6980.284	issue	R	2322688	256
6980.589	queue	R	2322944	256
6983.611	cmplt	R	2322688	256
6983.702	issue	R	2322944	256
6984.007	queue	R	2323200	256
6987.059	cmplt	R	2322944	256
6987.151	issue	R	2323200	256
6987.426	queue	R	2323456	256
6990.508	cmplt	R	2323200	256
6990.600	issue	R	2323456	256
6990.874	queue	R	2323712	256
6993.926	cmplt	R	2323456	256
6994.018	issue	R	2323712	256
6994.323	queue	R	2323968	256
6997.375	cmplt	R	2323712	256
6997.467	issue	R	2323968	256
6997.741	queue	R	2324224	256
7000.794	cmplt	R	2323968	256
7000.916	issue	W	2576384	1024
7001.282	queue	R	2324480	256
7026.736	cmplt	W	2576384	1024
7027.072	issue	W	2577408	1024
7052.953	cmplt	W	2577408	1024
7053.319	issue	R	2324224	512
7059.728	cmplt	R	2324224	512
7060.064	issue	W	2578432	1024
7060.156	queue	R	2324736	256
7060.644	queue	R	2324992	256
7085.854	cmplt	W	2578432	1024
7086.190	issue	R	2324736	512
7092.629	cmplt	R	2324736	512
7092.996	queue	R	2325248	256
7093.087	issue	R	2325248	256
7093.362	queue	R	2325504	256
7096.444	cmplt	R	2325248	256
7096.536	issue	R	2325504	256
7096.811	queue	R	2325760	256
7099.863	cmplt	R	2325504	256
7099.954	issue	R	2325760	256
7100.290	queue	R	2326016	256
7103.311	cmplt	R	2325760	256
7103.403	issue	R	2326016	256
7103.708	queue	R	2326272	256
7106.760	cmplt	R	2326016	256
7106.852	issue	R	2326272	256
7107.157	queue	R	2326528	256
7110.179	cmplt	R	2326272	256
7110.270	issue	R	2326528	256
7110.575	queue	R	2326784	256
7113.627	cmplt	R	2326528	256
7113.719	issue	R	2326784	256
7113.994	queue	R	2327040	256
7117.046	cmplt	R	2326784	256
7117.137	issue	R	2327040	256
7117.442	queue	R	2327296	256
7120.494	cmplt	R	2327040	256
7120.586	issue	R	2327296	256
7120.861	queue	R	2327552	256
7123.943	cmplt	R	2327296	256
7124.035	issue	R	2327552	256
7124.309	queue	R	2327808	256
7127.362	cmplt	R	2327552	256
7127.453	issue	R	2327808	256
7127.728	queue	R	2328064	256
7130.810	cmplt	R	2327808	256
7130.902	issue	R	2328064	256
7131.207	queue	R	2328320	256
7134.259	cmplt	R	2328064	256
7134.351	issue	R	2328320	256
7134.625	queue	R	2328576	256
7137.677	cmplt	R	2328320	256
7137.769	issue	R	2328576	256
7138.074	queue	R	2328832	256
7141.096	cmplt	R	2328576	256
7141.187	issue	R	2328832	256
7141.492	queue	R	2329088	256
7144.544	cmplt	R	2328832	256
7144.636	issue	R	2329088	256
7144.941	queue	R	2329344	256
7147.963	cmplt	R	2329088	256
7148.054	issue	R	2329344	256
7148.360	queue	R	2329600	256
7151.412	cmplt	R	2329344	256
7151.503	issue	R	2329600	256
7151.778	queue	R	2329856	256
7154.860	cmplt	R	2329600	256
7154.921	issue	R	2329856	256
7155.227	queue	R	2330112	256
7158.279	cmplt	R	2329856	256
7158.370	issue	R	2330112	256
7158.675	queue	R	2330368	256
7161.727	cmplt	R	2330112	256
7161.850	issue	W	2579456	1024
7162.216	queue	R	2330624	256
7162.429	issue	W	2580480	1024
7187.822	cmplt	W	2579456	1024
7188.128	issue	W	2581504	1024
7212.819	cmplt	W	2580480	1024
7237.601	cmplt	W	2581504	1024
7237.906	issue	R	2330368	512
7244.316	cmplt	R	2330368	512
7244.682	queue	R	2330880	256
7244.773	issue	R	2330880	256
7245.109	queue	R	2331136	256
7248.131	cmplt	R	2330880	256
7248.222	issue	R	2331136	256
7248.527	queue	R	2331392	256
7251.549	cmplt	R	2331136	256
7251.640	issue	R	2331392	256
7251.946	queue	R	2331648	256
7254.998	cmplt	R	2331392	256
7255.089	issue	R	2331648	256
7255.394	queue	R	2331904	256
7258.447	cmplt	R	2331648	256
7258.538	issue	R	2331904	256
7258.813	queue	R	2332160	256
7261.865	cmplt	R	2331904	256
7261.956	issue	R	2332160	256
7262.262	queue	R	2332416	256
7265.314	cmplt	R	2332160	256
7265.405	issue	R	2332416	256
7265.710	queue	R	2332672	256
7268.762	cmplt	R	2332416	256
7268.854	issue	R	2332672	256
7269.129	queue	R	2332928	256
7272.181	cmplt	R	2332672	256
7272.272	issue	R	2332928	256
7272.577	queue	R	2333184	256
7275.629	cmplt	R	2332928	256
7275.721	issue	R	2333184	256
7275.996	queue	R	2333440	256
7279.048	cmplt	R	2333184	256
7279.139	issue	R	2333440	256
7279.445	queue	R	2333696	256
7282.466	cmplt	R	2333440	256
7282.558	issue	R	2333696	256
7282.863	queue	R	2333952	256
7285.915	cmplt	R	2333696	256
7286.006	issue	R	2333952	256
7286.281	queue	R	2334208	256
7289.333	cmplt	R	2333952	256
7289.425	issue	R	2334208	256
7289.730	queue	R	2334464	256
7292.782	cmplt	R	2334208	256
7292.873	issue	R	2334464	256
7293.179	queue	R	2334720	256
7296.200	cmplt	R	2334464	256
7296.292	issue	R	2334720	256
7296.597	queue	R	2334976	256
7299.649	cmplt	R	2334720	256
7299.741	issue	R	2334976	256
7300.046	queue	R	2335232	256
7303.067	cmplt	R	2334976	256
7303.159	issue	R	2335232	256
7303.464	queue	R	2335488	256
7306.516	cmplt	R	2335232	256
7306.608	issue	R	2335488	256
7306.882	queue	R	2335744	256
7309.934	cmplt	R	2335488	256
7310.087	issue	W	2582528	1024
7310.423	queue	R	2336000	256
7310.636	issue	W	2583552	1024
7335.938	cmplt	W	2582528	1024
7336.243	issue	W	2584576	1024
7360.903	cmplt	W	2583552	1024
7385.778	cmplt	W	2584576	1024
7386.113	issue	R	2335744	512
7392.523	cmplt	R	2335744	512
7392.889	queue	R	2336256	256
7392.980	issue	R	2336256	256
7393.286	queue	R	2336512	256
7396.338	cmplt	R	2336256	256
7396.429	issue	R	2336512	256
7396.704	queue	R	2336768	256
7399.756	cmplt	R	2336512	256
7399.847	issue	R	2336768	256
7400.336	queue	R	2337024	256
7403.205	cmplt	R	2336768	256
7403.296	issue	R	2337024	256
7403.601	queue	R	2337280	256
7406.653	cmplt	R	2337024	256
7406.745	issue	R	2337280	256
7407.020	queue	R	2337536	256
7410.102	cmplt	R	2337280	256
7410.194	issue	R	2337536	256
7410.499	queue	R	2337792	256
7413.551	cmplt	R	2337536	256
7413.612	issue	R	2337792	256
7413.917	queue	R	2338048	256
7416.969	cmplt	R	2337792	256
7417.061	issue	R	2338048	256
7417.366	queue	R	2338304	256
7420.418	cmplt	R	2338048	256
7420.479	issue	R	2338304	256
7420.784	queue	R	2338560	256
7423.836	cmplt	R	2338304	256
7423.928	issue	R	2338560	256
7424.233	queue	R	2338816	256
7427.255	cmplt	R	2338560	256
7427.346	issue	R	2338816	256
7427.651	queue	R	2339072	256
7430.703	cmplt	R	2338816	256
7430.795	issue	R	2339072	256
7431.100	queue	R	2339328	256
7434.152	cmplt	R	2339072	256
7434.244	issue	R	2339328	256
7434.519	queue	R	2339584	256
7437.571	cmplt	R	2339328	256
7437.662	issue	R	2339584	256
7437.967	queue	R	2339840	256
7441.019	cmplt	R	2339584	256
7441.111	issue	R	2339840	256
7441.416	queue	R	2340096	256
7444.468	cmplt	R	2339840	256
7444.560	issue	R	2340096	256
7444.834	queue	R	2340352	256
7447.978	cmplt	R	2340096	256
7448.039	issue	R	2340352	256
7448.344	queue	R	2340608	256
7451.396	cmplt	R	2340352	256
7451.488	issue	R	2340608	256
7451.793	queue	R	2340864	256
7454.815	cmplt	R	2340608	256
7454.906	issue	R	2340864	256
7455.211	queue	R	2341120	256
7458.263	cmplt	R	2340864	256
7458.355	issue	R	2341120	256
7458.630	queue	R	2341376	256
7461.682	cmplt	R	2341120	256
7461.834	issue	W	2585600	1024
7462.170	queue	R	2341632	256
7462.353	issue	W	2586624	1024
7487.655	cmplt	W	2585600	1024
7487.960	issue	W	2587648	1024
7525.408	cmplt	W	2586624	1024
7550.343	cmplt	W	2587648	1024
7550.710	issue	R	2341376	512
7557.119	cmplt	R	2341376	512
7557.485	queue	R	2341888	256
7557.577	issue	R	2341888	256
7557.882	queue	R	2342144	256
7560.934	cmplt	R	2341888	256
7561.025	issue	R	2342144	256
7561.300	queue	R	2342400	256
7564.352	cmplt	R	2342144	256
7564.444	issue	R	2342400	256
7564.749	queue	R	2342656	256
7567.801	cmplt	R	2342400	256
7567.893	issue	R	2342656	256
7568.198	queue	R	2342912	256
7571.219	cmplt	R	2342656	256
7571.311	issue	R	2342912	256
7571.616	queue	R	2343168	256
7574.668	cmplt	R	2342912	256
7574.760	issue	R	2343168	256
7575.065	queue	R	2343424	256
7578.086	cmplt	R	2343168	256
7578.178	issue	R	2343424	256
7578.483	queue	R	2343680	256
7581.535	cmplt	R	2343424	256
7581.627	issue	R	2343680	256
7581.901	queue	R	2343936	256
7584.953	cmplt	R	2343680	256
7585.045	issue	R	2343936	256
7585.350	queue	R	2344192	256
7588.402	cmplt	R	2343936	256
7588.494	issue	R	2344192	256
7588.799	queue	R	2344448	256
7591.851	cmplt	R	2344192	256
7591.943	issue	R	2344448	256
7592.217	queue	R	2344704	256
7595.269	cmplt	R	2344448	256
7595.391	issue	R	2344704	256
7595.666	queue	R	2344960	256
7598.718	cmplt	R	2344704	256
7598.810	issue	R	2344960	256
7599.115	queue	R	2345216	256
7602.136	cmplt	R	2344960	256
7602.228	issue	R	2345216	256
7602.533	queue	R	2345472	256
7605.585	cmplt	R	2345216	256
7605.677	issue	R	2345472	256
7605.951	queue	R	2345728	256
7609.034	cmplt	R	2345472	256
7609.126	issue	R	2345728	256
7609.400	queue	R	2345984	256
7612.452	cmplt	R	2345728	256
7612.544	issue	R	2345984	256
7612.849	queue	R	2346240	256
7615.901	cmplt	R	2345984	256
7615.993	issue	R	2346240	256
7616.267	queue	R	2346496	256
7619.319	cmplt	R	2346240	256
7619.411	issue	R	2346496	256
7619.686	queue	R	2346752	256
7622.738	cmplt	R	2346496	256
7622.890	issue	W	2588672	1024
7623.226	queue	R	2347008	256
7623.440	issue	W	2589696	1024
7655.608	cmplt	W	2588672	1024
7655.913	issue	W	2590720	1024
7680.696	cmplt	W	2589696	1024
7705.753	cmplt	W	2590720	1024
7706.058	issue	R	2346752	512
7712.468	cmplt	R	2346752	512
7712.834	queue	R	2347264	256
7712.925	issue	R	2347264	256
7713.231	queue	R	2347520	256
7716.283	cmplt	R	2347264	256
7716.374	issue	R	2347520	256
7716.679	queue	R	2347776	256
7719.731	cmplt	R	2347520	256
7719.792	issue	R	2347776	256
7720.128	queue	R	2348032	256
7723.180	cmplt	R	2347776	256
7723.272	issue	R	2348032	256
7723.577	queue	R	2348288	256
7726.629	cmplt	R	2348032	256
7726.721	issue	R	2348288	256
7727.026	queue	R	2348544	256
7730.078	cmplt	R	2348288	256
7730.169	issue	R	2348544	256
7730.475	queue	R	2348800	256
7733.527	cmplt	R	2348544	256
7733.618	issue	R	2348800	256
7733.893	queue	R	2349056	256
7736.945	cmplt	R	2348800	256
7737.036	issue	R	2349056	256
7737.311	queue	R	2349312	256
7740.394	cmplt	R	2349056	256
7740.455	issue	R	2349312	256
7740.760	queue	R	2349568	256
7743.812	cmplt	R	2349312	256
7743.904	issue	R	2349568	256
7744.209	queue	R	2349824	256
7747.261	cmplt	R	2349568	256
7747.352	issue	R	2349824	256
7747.627	queue	R	2350080	256
7750.679	cmplt	R	2349824	256
7750.771	issue	R	2350080	256
7751.076	queue	R	2350336	256
7754.128	cmplt	R	2350080	256
7754.189	issue	R	2350336	256
7754.525	queue	R	2350592	256
7757.546	cmplt	R	2350336	256
7757.638	issue	R	2350592	256
7757.943	queue	R	2350848	256
7760.995	cmplt	R	2350592	256
7761.087	issue	R	2350848	256
7761.392	queue	R	2351104	256
7764.413	cmplt	R	2350848	256
7764.505	issue	R	2351104	256
7764.810	queue	R	2351360	256
7767.862	cmplt	R	2351104	256
7767.954	issue	R	2351360	256
7768.228	queue	R	2351616	256
7771.280	cmplt	R	2351360	256
7771.372	issue	R	2351616	256
7771.677	queue	R	2351872	256
7774.729	cmplt	R	2351616	256
7774.821	issue	R	2351872	256
7775.095	queue	R	2352128	256
7778.147	cmplt	R	2351872	256
7778.239	issue	R	2352128	256
7778.544	queue	R	2352384	256
7781.596	cmplt	R	2352128	256
7781.718	issue	W	2591744	1024
7782.085	queue	R	2352640	256
7782.268	issue	W	2592768	1024
7807.722	cmplt	W	2591744	1024
7808.027	issue	W	2593792	1024
7832.809	cmplt	W	2592768	1024
7857.897	cmplt	W	2593792	1024
7858.233	issue	R	2352384	512
7864.642	cmplt	R	2352384	512
7865.008	queue	R	2352896	256
7865.100	issue	R	2352896	256
7865.405	queue	R	2353152	256
7868.457	cmplt	R	2352896	256
7868.549	issue	R	2353152	256
7868.854	queue	R	2353408	256
7871.875	cmplt	R	2353152	256
7871.967	issue	R	2353408	256
7872.272	queue	R	2353664	256
7875.324	cmplt	R	2353408	256
7875.416	issue	R	2353664	256
7875.691	queue	R	2353920	256
7878.743	cmplt	R	2353664	256
7878.834	issue	R	2353920	256
7879.139	queue	R	2354176	256
7882.191	cmplt	R	2353920	256
7882.283	issue	R	2354176	256
7882.588	queue	R	2354432	256
7885.610	cmplt	R	2354176	256
7885.701	issue	R	2354432	256
7886.006	queue	R	2354688	256
7889.058	cmplt	R	2354432	256
7889.150	issue	R	2354688	256
7889.425	queue	R	2354944	256
7892.477	cmplt	R	2354688	256
7892.568	issue	R	2354944	256
7892.873	queue	R	2355200	256
7895.926	cmplt	R	2354944	256
7896.017	issue	R	2355200	256
7896.292	queue	R	2355456	256
7899.344	cmplt	R	2355200	256
7899.435	issue	R	2355456	256
7899.741	queue	R	2355712	256
7902.793	cmplt	R	2355456	256
7902.884	issue	R	2355712	256
7903.159	queue	R	2355968	256
7906.211	cmplt	R	2355712	256
7906.302	issue	R	2355968	256
7906.608	queue	R	2356224	256
7909.660	cmplt	R	2355968	256
7909.751	issue	R	2356224	256
7910.056	queue	R	2356480	256
7913.108	cmplt	R	2356224	256
7913.170	issue	R	2356480	256
7913.475	queue	R	2356736	256
7916.527	cmplt	R	2356480	256
7916.618	issue	R	2356736	256
7916.893	queue	R	2356992	256
7920.006	cmplt	R	2356736	256
7920.098	issue	R	2356992	256
7920.403	queue	R	2357248	256
7923.455	cmplt	R	2356992	256
7923.546	issue	R	2357248	256
7923.821	queue	R	2357504	256
7926.873	cmplt	R	2357248	256
7926.965	issue	R	2357504	256
7927.300	queue	R	2357760	256
7930.322	cmplt	R	2357504	256
7930.444	issue	W	2594816	1024
7930.810	queue	R	2358016	256
7931.024	issue	W	2595840	1024
7956.478	cmplt	W	2594816	1024
7956.783	issue	W	2596864	1024
7981.474	cmplt	W	2595840	1024
8006.501	cmplt	W	2596864	1024
8006.837	issue	R	2357760	512
8013.246	cmplt	R	2357760	512
8013.612	queue	R	2358272	256
8013.704	issue	R	2358272	256
8014.009	queue	R	2358528	256
8017.061	cmplt	R	2358272	256
8017.152	issue	R	2358528	256
8017.458	queue	R	2358784	256
8020.510	cmplt	R	2358528	256
8020.571	issue	R	2358784	256
8020.876	queue	R	2359040	256
8023.928	cmplt	R	2358784	256
8024.020	issue	R	2359040	256
8024.325	queue	R	2375680	256
8027.377	cmplt	R	2359040	256
8027.468	issue	R	2375680	256
8027.743	queue	R	2375936	256
8030.917	cmplt	R	2375680	256
8031.009	issue	R	2375936	256
8031.314	queue	R	2376192	256
8034.366	cmplt	R	2375936	256
8034.458	issue	R	2376192	256
8034.763	queue	R	2376448	256
8037.845	cmplt	R	2376192	256
8037.937	issue	R	2376448	256
8038.212	queue	R	2376704	256
8041.294	cmplt	R	2376448	256
8041.386	issue	R	2376704	256
8041.691	queue	R	2376960	256
8044.743	cmplt	R	2376704	256
8044.834	issue	R	2376960	256
8045.140	queue	R	2377216	256
8048.222	cmplt	R	2376960	256
8048.314	issue	R	2377216	256
8048.588	queue	R	2377472	256
8051.671	cmplt	R	2377216	256
8051.763	issue	R	2377472	256
8052.068	queue	R	2377728	256
8055.150	cmplt	R	2377472	256
8055.242	issue	R	2377728	256
8055.517	queue	R	2377984	256
8058.599	cmplt	R	2377728	256
8058.691	issue	R	2377984	256
8058.965	queue	R	2378240	256
8062.048	cmplt	R	2377984	256
8062.139	issue	R	2378240	256
8062.445	queue	R	2378496	256
8065.497	cmplt	R	2378240	256
8065.588	issue	R	2378496	256
8065.893	queue	R	2378752	256
8068.976	cmplt	R	2378496	256
8069.068	issue	R	2378752	256
8069.342	queue	R	2379008	256
8072.425	cmplt	R	2378752	256
8072.516	issue	R	2379008	256
8072.822	queue	R	2379264	256
8075.874	cmplt	R	2379008	256
8075.965	issue	R	2379264	256
8076.270	queue	R	2379520	256
8079.353	cmplt	R	2379264	256
8079.445	issue	R	2379520	256
8079.719	queue	R	2379776	256
8082.802	cmplt	R	2379520	256
8082.924	issue	W	2597888	1024
8083.290	queue	R	2380032	256
8083.504	issue	W	2598912	1024
8108.958	cmplt	W	2597888	1024
8109.293	issue	W	2599936	1024
8134.137	cmplt	W	2598912	1024
8159.194	cmplt	W	2599936	1024
8159.530	issue	R	2379776	512
8165.939	cmplt	R	2379776	512
8166.367	queue	R	2380288	256
8166.458	issue	R	2380288	256
8166.733	queue	R	2380544	256
8169.815	cmplt	R	2380288	256
8169.907	issue	R	2380544	256
8170.243	queue	R	2380800	256
8173.325	cmplt	R	2380544	256
8173.417	issue	R	2380800	256
8173.722	queue	R	2381056	256
8176.774	cmplt	R	2380800	256
8176.866	issue	R	2381056	256
8177.171	queue	R	2381312	256
8180.253	cmplt	R	2381056	256
8180.345	issue	R	2381312	256
8180.620	queue	R	2381568	256
8183.702	cmplt	R	2381312	256
8183.794	issue	R	2381568	256
8184.099	queue	R	2381824	256
8187.181	cmplt	R	2381568	256
8187.242	issue	R	2381824	256
8187.548	queue	R	2382080	256
8190.630	cmplt	R	2381824	256
8190.722	issue	R	2382080	256
8191.027	queue	R	2382336	256
8194.079	cmplt	R	2382080	256
8194.171	issue	R	2382336	256
8194.476	queue	R	2382592	256
8197.558	cmplt	R	2382336	256
8197.650	issue	R	2382592	256
8197.925	queue	R	2382848	256
8201.007	cmplt	R	2382592	256
8201.099	issue	R	2382848	256
8201.373	queue	R	2383104	256
8204.456	cmplt	R	2382848	256
8204.548	issue	R	2383104	256
8204.853	queue	R	2383360	256
8207.905	cmplt	R	2383104	256
8207.996	issue	R	2383360	256
8208.302	queue	R	2383616	256
8211.384	cmplt	R	2383360	256
8211.476	issue	R	2383616	256
8211.750	queue	R	2383872	256
8214.833	cmplt	R	2383616	256
8214.924	issue	R	2383872	256
8215.230	queue	R	2384128	256
8218.282	cmplt	R	2383872	256
8218.373	issue	R	2384128	256
8218.678	queue	R	2384384	256
8221.761	cmplt	R	2384128	256
8221.853	issue	R	2384384	256
8222.127	queue	R	2384640	256
8225.210	cmplt	R	2384384	256
8225.301	issue	R	2384640	256
8225.607	queue	R	2384896	256
8228.659	cmplt	R	2384640	256
8228.750	issue	R	2384896	256
8229.055	queue	R	2385152	256
8232.138	cmplt	R	2384896	256
8232.260	issue	W	2600960	1024
8232.626	queue	R	2385408	256
8232.809	issue	W	2601984	1024
8258.263	cmplt	W	2600960	1024
8258.569	issue	W	2603008	1024
8283.473	cmplt	W	2601984	1024
8308.500	cmplt	W	2603008	1024
8308.836	issue	R	2385152	512
8315.275	cmplt	R	2385152	512
8315.642	queue	R	2385664	256
8315.733	issue	R	2385664	256
8316.008	queue	R	2385920	256
8319.090	cmplt	R	2385664	256
8319.182	issue	R	2385920	256
8319.487	queue	R	2386176	256
8322.570	cmplt	R	2385920	256
8322.631	issue	R	2386176	256
8322.936	queue	R	2386432	256
8326.019	cmplt	R	2386176	256
8326.110	issue	R	2386432	256
8326.385	queue	R	2386688	256
8329.467	cmplt	R	2386432	256
8329.559	issue	R	2386688	256
8329.864	queue	R	2386944	256
8332.916	cmplt	R	2386688	256
8333.008	issue	R	2386944	256
8333.313	queue	R	2387200	256
8336.396	cmplt	R	2386944	256
8336.487	issue	R	2387200	256
8336.762	queue	R	2387456	256
8339.844	cmplt	R	2387200	256
8339.936	issue	R	2387456	256
8340.241	queue	R	2387712	256
8343.324	cmplt	R	2387456	256
8343.415	issue	R	2387712	256
8343.720	queue	R	2387968	256
8346.772	cmplt	R	2387712	256
8346.864	issue	R	2387968	256
8347.169	queue	R	2388224	256
8350.252	cmplt	R	2387968	256
8350.343	issue	R	2388224	256
8350.649	queue	R	2388480	256
8353.701	cmplt	R	2388224	256
8353.792	issue	R	2388480	256
8354.097	queue	R	2388736	256
8357.180	cmplt	R	2388480	256
8357.241	issue	R	2388736	256
8357.546	queue	R	2388992	256
8360.629	cmplt	R	2388736	256
8360.720	issue	R	2388992	256
8360.995	queue	R	2389248	256
8364.078	cmplt	R	2388992	256
8364.169	issue	R	2389248	256
8364.474	queue	R	2389504	256
8367.526	cmplt	R	2389248	256
8367.618	issue	R	2389504	256
8367.923	queue	R	2389760	256
8371.006	cmplt	R	2389504	256
8371.067	issue	R	2389760	256
8371.372	queue	R	2390016	256
8374.454	cmplt	R	2389760	256
8374.546	issue	R	2390016	256
8374.851	queue	R	2390272	256
8377.903	cmplt	R	2390016	256
8377.995	issue	R	2390272	256
8378.300	queue	R	2390528	256
8381.383	cmplt	R	2390272	256
8381.505	issue	W	2604032	1024
8381.871	queue	R	2390784	256
8382.054	issue	W	2605056	1024
8407.447	cmplt	W	2604032	1024
8407.783	issue	W	2606080	1024
8439.280	cmplt	W	2605056	1024
8464.123	cmplt	W	2606080	1024
8464.429	issue	R	2390528	512
8470.868	cmplt	R	2390528	512
8471.265	queue	R	2391040	256
8471.357	issue	R	2391040	256
8471.662	queue	R	2391296	256
8474.714	cmplt	R	2391040	256
8474.805	issue	R	2391296	256
8475.111	queue	R	2391552	256
8478.193	cmplt	R	2391296	256
8478.254	issue	R	2391552	256
8478.559	queue	R	2391808	256
8481.642	cmplt	R	2391552	256
8481.734	issue	R	2391808	256
8482.008	queue	R	2392064	256
8485.091	cmplt	R	2391808	256
8485.182	issue	R	2392064	256
8485.457	queue	R	2392320	256
8488.509	cmplt	R	2392064	256
8488.601	issue	R	2392320	256
8488.906	queue	R	2392576	256
8491.958	cmplt	R	2392320	256
8492.049	issue	R	2392576	256
8492.355	queue	R	2392832	256
8495.437	cmplt	R	2392576	256
8495.529	issue	R	2392832	256
8495.803	queue	R	2393088	256
8498.886	cmplt	R	2392832	256
8498.978	issue	R	2393088	256
8499.283	queue	R	2393344	256
8502.335	cmplt	R	2393088	256
8502.426	issue	R	2393344	256
8502.762	queue	R	2393600	256
8505.784	cmplt	R	2393344	256
8505.875	issue	R	2393600	256
8506.180	queue	R	2393856	256
8509.263	cmplt	R	2393600	256
8509.354	issue	R	2393856	256
8509.629	queue	R	2394112	256
8512.712	cmplt	R	2393856	256
8512.803	issue	R	2394112	256
8513.108	queue	R	2394368	256
8516.161	cmplt	R	2394112	256
8516.252	issue	R	2394368	256
8516.557	queue	R	2394624	256
8519.640	cmplt	R	2394368	256
8519.701	issue	R	2394624	256
8520.037	queue	R	2394880	256
8523.089	cmplt	R	2394624	256
8523.180	issue	R	2394880	256
8523.455	queue	R	2395136	256
8526.537	cmplt	R	2394880	256
8526.629	issue	R	2395136	256
8526.934	queue	R	2395392	256
8530.017	cmplt	R	2395136	256
8530.108	issue	R	2395392	256
8530.414	queue	R	2395648	256
8533.466	cmplt	R	2395392	256
8533.557	issue	R	2395648	256
8533.862	queue	R	2395904	256
8536.945	cmplt	R	2395648	256
8537.036	issue	R	2395904	256
8537.311	queue	R	2396160	256
8540.394	cmplt	R	2395904	256
8540.516	issue	W	2607104	1024
8540.882	queue	R	2396416	256
8541.096	issue	W	2608128	1024
8566.428	cmplt	W	2607104	1024
8566.763	issue	W	2609152	368
8591.302	cmplt	W	2608128	1024
8604.822	cmplt	W	2609152	368
8605.005	issue	R	2396160	512
8611.445	cmplt	R	2396160	512
8611.811	queue	R	2396672	256
8611.903	issue	R	2396672	256
8612.208	queue	R	2396928	256
8615.291	cmplt	R	2396672	256
8615.382	issue	R	2396928	256
8615.657	queue	R	2397184	256
8618.740	cmplt	R	2396928	256
8618.831	issue	R	2397184	256
8619.136	queue	R	2397440	256
8622.188	cmplt	R	2397184	256
8622.280	issue	R	2397440	256
8622.585	queue	R	2397696	256
8625.668	cmplt	R	2397440	256
8625.759	issue	R	2397696	256
8626.034	queue	R	2397952	256
8629.116	cmplt	R	2397696	256
8629.208	issue	R	2397952	256
8629.513	queue	R	2398208	256
8632.596	cmplt	R	2397952	256
8632.657	issue	R	2398208	256
8632.962	queue	R	2398464	256
8636.045	cmplt	R	2398208	256
8636.136	issue	R	2398464	256
8636.441	queue	R	2398720	256
8639.493	cmplt	R	2398464	256
8639.585	issue	R	2398720	256
8639.890	queue	R	2398976	256
8642.973	cmplt	R	2398720	256
8643.064	issue	R	2398976	256
8643.369	queue	R	2399232	256
8646.421	cmplt	R	2398976	256
8646.513	issue	R	2399232	256
8646.818	queue	R	2399488	256
8649.901	cmplt	R	2399232	256
8650.023	issue	R	2399488	256
8650.298	queue	R	2399744	256
8653.380	cmplt	R	2399488	256
8653.472	issue	R	2399744	256
8653.777	queue	R	2400000	256
8656.829	cmplt	R	2399744	256
8656.920	issue	R	2400000	256
8657.256	queue	R	2400256	256
8660.278	cmplt	R	2400000	256
8660.369	issue	R	2400256	256
8660.674	queue	R	2400512	256
8663.757	cmplt	R	2400256	256
8663.849	issue	R	2400512	256
8664.123	queue	R	2400768	256
8667.206	cmplt	R	2400512	256
8667.297	issue	R	2400768	256
8667.603	queue	R	2401024	256
8670.655	cmplt	R	2400768	256
8670.746	issue	R	2401024	256
8671.051	queue	R	2401280	256
8674.134	cmplt	R	2401024	256
8674.226	issue	R	2401280	256
8674.500	queue	R	2401536	256
8677.583	cmplt	R	2401280	256
8677.674	issue	R	2401536	256
8677.980	queue	R	2401792	256
8681.032	cmplt	R	2401536	256
8681.184	issue	W	2609520	1024
8681.520	queue	R	2402048	256
8681.734	issue	W	2610544	1024
8711.247	cmplt	W	2609520	1024
8711.552	issue	W	2611568	1024
8738.776	cmplt	W	2610544	1024
8739.081	issue	W	2612592	1024
8764.932	cmplt	W	2611568	1024
8789.623	cmplt	W	2612592	1024
8789.959	issue	R	2401792	512
8796.399	cmplt	R	2401792	512
8796.765	queue	R	2402304	256
8796.856	issue	R	2402304	256
8797.162	queue	R	2402560	256
8800.244	cmplt	R	2402304	256
8800.336	issue	R	2402560	256
8800.641	queue	R	2402816	256
8803.693	cmplt	R	2402560	256
8803.785	issue	R	2402816	256
8804.090	queue	R	2403072	256
8807.172	cmplt	R	2402816	256
8807.233	issue	R	2403072	256
8807.539	queue	R	2403328	256
8810.621	cmplt	R	2403072	256
8810.713	issue	R	2403328	256
8810.987	queue	R	2403584	256
8814.070	cmplt	R	2403328	256
8814.161	issue	R	2403584	256
8814.467	queue	R	2403840	256
8817.519	cmplt	R	2403584	256
8817.610	issue	R	2403840	256
8817.915	queue	R	2404096	256
8820.967	cmplt	R	2403840	256
8821.059	issue	R	2404096	256
8821.364	queue	R	2404352	256
8824.447	cmplt	R	2404096	256
8824.538	issue	R	2404352	256
8824.813	queue	R	2404608	256
8827.896	cmplt	R	2404352	256
8827.987	issue	R	2404608	256
8828.292	queue	R	2404864	256
8831.344	cmplt	R	2404608	256
8831.436	issue	R	2404864	256
8831.741	queue	R	2405120	256
8834.824	cmplt	R	2404864	256
8834.915	issue	R	2405120	256
8835.221	queue	R	2405376	256
8838.273	cmplt	R	2405120	256
8838.364	issue	R	2405376	256
8838.669	queue	R	2405632	256
8841.752	cmplt	R	2405376	256
8841.843	issue	R	2405632	256
8842.118	queue	R	2405888	256
8845.201	cmplt	R	2405632	256
8845.292	issue	R	2405888	256
8845.567	queue	R	2406144	256
8848.649	cmplt	R	2405888	256
8848.741	issue	R	2406144	256
8849.046	queue	R	2406400	256
8852.098	cmplt	R	2406144	256
8852.190	issue	R	2406400	256
8852.495	queue	R	2406656	256
8855.578	cmplt	R	2406400	256
8855.669	issue	R	2406656	256
8855.974	queue	R	2406912	256
8859.026	cmplt	R	2406656	256
8859.118	issue	R	2406912	256
8859.393	queue	R	2407168	256
8862.475	cmplt	R	2406912	256
8862.628	issue	W	2613616	1024
8862.964	queue	R	2407424	256
8889.730	cmplt	W	2613616	1024
8890.127	issue	W	2614640	1024
8919.060	cmplt	W	2614640	1024
8919.396	issue	R	2407168	512
8925.805	cmplt	R	2407168	512
8926.202	queue	R	2407680	256
8926.293	issue	R	2407680	256
8926.568	queue	R	2407936	256
8929.651	cmplt	R	2407680	256
8929.742	issue	R	2407936	256
8930.078	queue	R	2408192	256
8933.130	cmplt	R	2407936	256
8933.191	issue	R	2408192	256
8933.496	queue	R	2408448	256
8936.579	cmplt	R	2408192	256
8936.670	issue	R	2408448	256
8936.975	queue	R	2408704	256
8940.027	cmplt	R	2408448	256
8940.119	issue	R	2408704	256
8940.424	queue	R	2408960	256
8943.507	cmplt	R	2408704	256
8943.568	issue	R	2408960	256
8943.873	queue	R	2409216	256
8946.956	cmplt	R	2408960	256
8947.047	issue	R	2409216	256
8947.322	queue	R	2409472	256
8950.496	cmplt	R	2409216	256
8950.588	issue	R	2409472	256
8950.893	queue	R	2409728	256
8953.945	cmplt	R	2409472	256
8954.036	issue	R	2409728	256
8954.342	queue	R	2409984	256
8957.424	cmplt	R	2409728	256
8957.516	issue	R	2409984	256
8957.790	queue	R	2410240	256
8960.873	cmplt	R	2409984	256
8960.964	issue	R	2410240	256
8961.270	queue	R	2410496	256
8964.322	cmplt	R	2410240	256
8964.413	issue	R	2410496	256
8964.718	queue	R	2410752	256
8967.801	cmplt	R	2410496	256
8967.893	issue	R	2410752	256
8968.167	queue	R	2411008	256
8971.250	cmplt	R	2410752	256
8971.341	issue	R	2411008	256
8971.616	queue	R	2411264	256
8974.699	cmplt	R	2411008	256
8974.790	issue	R	2411264	256
8975.095	queue	R	2411520	256
8978.178	cmplt	R	2411264	256
8978.239	issue	R	2411520	256
8978.544	queue	R	2411776	256
8981.627	cmplt	R	2411520	256
8981.718	issue	R	2411776	256
8981.993	queue	R	2412032	256
8985.076	cmplt	R	2411776	256
8985.167	issue	R	2412032	256
8985.472	queue	R	2412288	256
8988.524	cmplt	R	2412032	256
8988.616	issue	R	2412288	256
8988.921	queue	R	2412544	256
8991.973	cmplt	R	2412288	256
8992.126	issue	W	2615664	1024
8992.461	queue	R	2412800	256
8992.675	issue	W	2616688	1024
9022.432	cmplt	W	2615664	1024
9022.738	issue	W	2617712	1024
9053.655	cmplt	W	2616688	1024
9082.863	cmplt	W	2617712	1024
9083.199	issue	R	2412544	512
9089.699	cmplt	R	2412544	512
9090.066	issue	W	2618736	1024
9090.218	queue	R	2413056	256
9090.646	queue	R	2413312	256
9118.389	cmplt	W	2618736	1024
9118.724	issue	R	2413056	512
9125.164	cmplt	R	2413056	512
9125.561	queue	R	2413568	256
9125.652	issue	R	2413568	256
9125.958	queue	R	2413824	256
9129.071	cmplt	R	2413568	256
9129.162	issue	R	2413824	256
9129.437	queue	R	2414080	256
9132.519	cmplt	R	2413824	256
9132.611	issue	R	2414080	256
9132.916	queue	R	2414336	256
9135.999	cmplt	R	2414080	256
9136.090	issue	R	2414336	256
9136.365	queue	R	2414592	256
9139.448	cmplt	R	2414336	256
9139.539	issue	R	2414592	256
9139.844	queue	R	2414848	256
9142.927	cmplt	R	2414592	256
9143.018	issue	R	2414848	256
9143.324	queue	R	2415104	256
9146.406	cmplt	R	2414848	256
9146.498	issue	R	2415104	256
9146.772	queue	R	2415360	256
9149.855	cmplt	R	2415104	256
9149.947	issue	R	2415360	256
9150.252	queue	R	2415616	256
9153.304	cmplt	R	2415360	256
9153.395	issue	R	2415616	256
9153.701	queue	R	2415872	256
9156.783	cmplt	R	2415616	256
9156.875	issue	R	2415872	256
9157.149	queue	R	2416128	256
9160.232	cmplt	R	2415872	256
9160.324	issue	R	2416128	256
9160.598	queue	R	2416384	256
9163.681	cmplt	R	2416128	256
9163.772	issue	R	2416384	256
9164.078	queue	R	2416640	256
9167.160	cmplt	R	2416384	256
9167.221	issue	R	2416640	256
9167.526	queue	R	2416896	256
9170.609	cmplt	R	2416640	256
9170.700	issue	R	2416896	256
9171.006	queue	R	2417152	256
9174.058	cmplt	R	2416896	256
9174.149	issue	R	2417152	256
9174.454	queue	R	2417408	256
9185.411	cmplt	R	2417152	256
9185.503	issue	R	2417408	256
9185.808	queue	R	2417664	256
9188.860	cmplt	R	2417408	256
9188.952	issue	R	2417664	256
9189.257	queue	R	2417920	256
9192.339	cmplt	R	2417664	256
9192.461	issue	W	2619760	1024
9192.828	queue	R	2418176	256
9193.041	issue	W	2620784	656
9219.319	cmplt	W	2619760	1024
9219.625	issue	W	2637824	1024
9237.357	cmplt	W	2620784	656
9237.571	issue	W	2638848	1024
9268.366	cmplt	W	2637824	1024
9298.611	cmplt	W	2638848	1024
9298.947	issue	R	2417920	512
9305.478	cmplt	R	2417920	512
9305.875	queue	R	2418432	256
9305.967	issue	R	2418432	256
9306.272	queue	R	2418688	256
9309.354	cmplt	R	2418432	256
9309.446	issue	R	2418688	256
9309.721	queue	R	2418944	256
9312.803	cmplt	R	2418688	256
9312.895	issue	R	2418944	256
9313.170	queue	R	2419200	256
9316.252	cmplt	R	2418944	256
9316.344	issue	R	2419200	256
9316.649	queue	R	2419456	256
9319.701	cmplt	R	2419200	256
9319.792	issue	R	2419456	256
9320.159	queue	R	2419712	256
9323.211	cmplt	R	2419456	256
9323.302	issue	R	2419712	256
9323.608	queue	R	2419968	256
9326.690	cmplt	R	2419712	256
9326.751	issue	R	2419968	256
9327.056	queue	R	2420224	256
9330.139	cmplt	R	2419968	256
9330.230	issue	R	2420224	256
9330.536	queue	R	2420480	256
9333.588	cmplt	R	2420224	256
9333.679	issue	R	2420480	256
9333.984	queue	R	2420736	256
9337.036	cmplt	R	2420480	256
9337.159	issue	R	2420736	256
9337.433	queue	R	2420992	256
9340.516	cmplt	R	2420736	256
9340.607	issue	R	2420992	256
9340.913	queue	R	2421248	256
9343.995	cmplt	R	2420992	256
9344.056	issue	R	2421248	256
9344.361	queue	R	2421504	256
9347.444	cmplt	R	2421248	256
9347.535	issue	R	2421504	256
9347.810	queue	R	2421760	256
9350.893	cmplt	R	2421504	256
9351.076	issue	R	2421760	256
9351.289	queue	R	2422016	256
9354.433	cmplt	R	2421760	256
9354.525	issue	R	2422016	256
9354.830	queue	R	2422272	256
9357.882	cmplt	R	2422016	256
9357.973	issue	R	2422272	256
9358.279	queue	R	2422528	256
9361.361	cmplt	R	2422272	256
9361.453	issue	R	2422528	256
9361.727	queue	R	2422784	256
9364.810	cmplt	R	2422528	256
9364.902	issue	R	2422784	256
9365.207	queue	R	2423040	256
9368.259	cmplt	R	2422784	256
9368.350	issue	R	2423040	256
9368.656	queue	R	2423296	256
9371.708	cmplt	R	2423040	256
9371.830	issue	W	2639872	1024
9372.196	queue	R	2423552	256
9402.838	cmplt	W	2639872	1024
9403.205	issue	W	2640896	1024
9441.294	cmplt	W	2640896	1024
9441.691	issue	R	2423296	512
9448.192	cmplt	R	2423296	512
9448.619	queue	R	2423808	256
9448.955	queue	R	2424064	256
9449.046	issue	R	2423808	512
9455.517	cmplt	R	2423808	512
9455.944	queue	R	2424320	256
9456.310	queue	R	2424576	256
9456.371	issue	R	2424320	512
9463.635	cmplt	R	2424320	512
9464.062	queue	R	2424832	256
9464.398	queue	R	2425088	256
9464.459	issue	R	2424832	512
9471.631	cmplt	R	2424832	512
9472.089	queue	R	2425344	256
9472.455	queue	R	2425600	256
9472.577	issue	R	2425344	512
9479.750	cmplt	R	2425344	512
9480.482	queue	R	2425856	256
9480.848	queue	R	2426112	256
9480.971	issue	R	2425856	512
9487.471	cmplt	R	2425856	512
9487.899	queue	R	2426368	256
9487.960	issue	R	2426368	256
9488.265	queue	R	2426624	256
9491.531	cmplt	R	2426368	256
9491.622	issue	R	2426624	256
9491.927	queue	R	2426880	256
9497.604	cmplt	R	2426624	256
9498.062	queue	R	2427136	256
9498.123	issue	R	2426880	512
9504.654	cmplt	R	2426880	512
9505.051	queue	R	2427392	256
9505.143	issue	R	2427392	256
9505.417	queue	R	2427648	256
9508.591	cmplt	R	2427392	256
9508.683	issue	R	2427648	256
9508.958	queue	R	2427904	256
9512.101	cmplt	R	2427648	256
9512.193	issue	R	2427904	256
9512.468	queue	R	2428160	256
9515.642	cmplt	R	2427904	256
9515.733	issue	R	2428160	256
9516.008	queue	R	2428416	256
9519.152	cmplt	R	2428160	256
9519.243	issue	R	2428416	256
9519.518	queue	R	2428672	256
9522.661	cmplt	R	2428416	256
9522.753	issue	R	2428672	256
9523.058	queue	R	2428928	256
9526.202	cmplt	R	2428672	256
9526.293	issue	R	2428928	256
9526.568	queue	R	2429184	256
9529.712	cmplt	R	2428928	256
9529.803	issue	R	2429184	256
9533.252	cmplt	R	2429184	256
9535.877	queue	R	2429440	256
9535.968	issue	R	2429440	256
9536.273	queue	R	2429696	256
9539.356	cmplt	R	2429440	256
9539.448	issue	R	2429696	256
9539.753	queue	R	2429952	256
9542.835	cmplt	R	2429696	256
9542.927	issue	R	2429952	256
9543.202	queue	R	2430208	256
9546.284	cmplt	R	2429952	256
9546.376	issue	R	2430208	256
9546.681	queue	R	2430464	256
9549.763	cmplt	R	2430208	256
9549.825	issue	R	2430464	256
9550.160	queue	R	2430720	256
9553.273	cmplt	R	2430464	256
9553.365	issue	R	2430720	256
9553.640	queue	R	2430976	256
9556.753	cmplt	R	2430720	256
9556.844	issue	R	2430976	256
9557.119	queue	R	2431232	256
9560.201	cmplt	R	2430976	256
9560.293	issue	R	2431232	256
9560.568	queue	R	2431488	256
9563.650	cmplt	R	2431232	256
9563.742	issue	R	2431488	256
9564.047	queue	R	2431744	256
9567.130	cmplt	R	2431488	256
9567.191	issue	R	2431744	256
9567.496	queue	R	2432000	256
9570.578	cmplt	R	2431744	256
9570.670	issue	R	2432000	256
9570.945	queue	R	2432256	256
9574.027	cmplt	R	2432000	256
9574.119	issue	R	2432256	256
9574.393	queue	R	2432512	256
9577.476	cmplt	R	2432256	256
9577.568	issue	R	2432512	256
9577.873	queue	R	2432768	256
9580.955	cmplt	R	2432512	256
9581.047	issue	R	2432768	256
9581.352	queue	R	2433024	256
9584.404	cmplt	R	2432768	256
9584.496	issue	R	2433024	256
9584.801	queue	R	2433280	256
9587.883	cmplt	R	2433024	256
9587.944	issue	R	2433280	256
9588.250	queue	R	2433536	256
9591.332	cmplt	R	2433280	256
9591.424	issue	R	2433536	256
9591.698	queue	R	2433792	256
9594.781	cmplt	R	2433536	256
9594.873	issue	R	2433792	256
9595.178	queue	R	2434048	256
9598.260	cmplt	R	2433792	256
9598.352	issue	R	2434048	256
9598.627	queue	R	2434304	256
9601.709	cmplt	R	2434048	256
9601.801	issue	R	2434304	256
9602.106	queue	R	2434560	256
9605.188	cmplt	R	2434304	256
9605.280	issue	R	2434560	256
9605.555	queue	R	2434816	256
9608.637	cmplt	R	2434560	256
9608.729	issue	R	2434816	256
9609.034	queue	R	2435072	256
9612.117	cmplt	R	2434816	256
9612.208	issue	R	2435072	256
9612.483	queue	R	2435328	256
9615.596	cmplt	R	2435072	256
9615.687	issue	R	2435328	256
9615.962	queue	R	2435584	256
9619.045	cmplt	R	2435328	256
9619.136	issue	R	2435584	256
9619.411	queue	R	2435840	256
9622.494	cmplt	R	2435584	256
9622.646	issue	W	2641920	368
9622.890	queue	R	2436096	256
9643.553	cmplt	W	2641920	368
9643.736	issue	R	2435840	512
9643.827	queue	WS	1845536	8
9643.980	queue	W	2642288	72
9650.237	cmplt	R	2435840	512
9650.725	queue	R	2436352	256
9651.122	queue	R	2436608	256
9651.152	issue	WS	1845536	8
9651.213	issue	R	2436352	512
9660.217	cmplt	WS	1845536	8
9661.163	queue	WS	1845544	8
9661.193	queue	WS	1845552	8
9661.224	queue	WS	1845560	8
9661.224	queue	WS	1845568	8
9661.254	queue	WS	1845576	8
9661.254	queue	WS	1845584	8
9661.254	queue	WS	1845592	8
9666.595	cmplt	R	2436352	512
9667.053	queue	R	2436864	256
9667.450	queue	R	2437120	256
9667.481	issue	R	2436864	512
9674.134	cmplt	R	2436864	512
9674.561	queue	R	2437376	256
9674.958	queue	R	2437632	256
9675.019	issue	R	2437376	512
9681.642	cmplt	R	2437376	512
9682.100	queue	R	2437888	256
9682.466	queue	R	2438144	256
9682.527	issue	R	2437888	512
9689.181	cmplt	R	2437888	512
9689.638	queue	R	2438400	256
9690.066	queue	R	2438656	256
9690.066	issue	R	2438400	256
9690.310	issue	R	2438656	256
9693.575	cmplt	R	2438400	256
9693.942	queue	R	2438912	256
9696.719	cmplt	R	2438656	256
9696.780	issue	R	2438912	256
9697.116	queue	R	2439168	256
9700.229	cmplt	R	2438912	256
9700.320	issue	R	2439168	256
9700.656	queue	R	2439424	256
9703.769	cmplt	R	2439168	256
9703.861	issue	R	2439424	256
9704.197	queue	R	2439680	256
9707.340	cmplt	R	2439424	256
9707.432	issue	R	2439680	256
9707.737	queue	R	2439936	256
9710.881	cmplt	R	2439680	256
9710.972	issue	R	2439936	256
9711.308	queue	R	2440192	256
9714.451	cmplt	R	2439936	256
9714.543	issue	R	2440192	256
9714.879	queue	R	2440448	256
9718.022	cmplt	R	2440192	256
9718.144	issue	R	2440448	256
9718.450	queue	R	2440704	256
9721.593	cmplt	R	2440448	256
9721.715	issue	WS	1845544	56
9721.990	queue	R	2440960	256
9727.850	cmplt	WS	1845544	56
9730.047	issue	W	2642288	72
9732.703	cmplt	W	2642288	72
9732.855	queue	WS	1845600	8
9740.089	issue	WS	1845600	8
9740.150	issue	R	2440704	512
9741.645	cmplt	WS	1845600	8
9748.024	cmplt	R	2440704	512
9748.451	queue	R	2441216	256
9748.543	issue	R	2441216	256
9748.909	queue	R	2441472	256
9751.961	cmplt	R	2441216	256
9752.052	issue	R	2441472	256
9752.419	queue	R	2441728	256
9755.501	cmplt	R	2441472	256
9755.593	issue	R	2441728	256
9755.929	queue	R	2441984	256
9759.011	cmplt	R	2441728	256
9759.133	issue	R	2441984	256
9759.469	queue	R	2442240	256
9762.582	cmplt	R	2441984	256
9762.674	issue	R	2442240	256
9763.009	queue	R	2442496	256
9766.122	cmplt	R	2442240	256
9766.214	issue	R	2442496	256
9766.580	queue	R	2442752	256
9769.663	cmplt	R	2442496	256
9769.785	issue	R	2442752	256
9770.151	queue	R	2443008	256
9770.212	queue	R	2443008	256
9773.661	cmplt	R	2442752	256
9773.783	issue	R	2443008	256
9774.088	queue	R	2443264	256
9777.201	cmplt	R	2443008	256
9777.323	issue	R	2443264	256
9777.659	queue	R	2443520	256
9780.925	cmplt	R	2443264	256
9781.016	issue	R	2443520	256
9781.535	queue	R	2443776	256
9784.862	cmplt	R	2443520	256
9784.953	issue	R	2443776	256
9785.472	queue	R	2444032	256
9788.677	cmplt	R	2443776	256
9788.799	issue	R	2444032	256
9789.074	queue	R	2444288	256
9795.483	cmplt	R	2444032	256
9795.605	issue	R	2444288	256
9795.910	queue	R	2444544	256
9799.084	cmplt	R	2444288	256
9799.176	issue	R	2444544	256
9799.481	queue	R	2444800	256
9802.655	cmplt	R	2444544	256
9802.777	issue	R	2444800	256
9803.083	queue	R	2445056	256
9806.257	cmplt	R	2444800	256
9806.348	issue	R	2445056	256
9806.653	queue	R	2445312	256
9809.797	cmplt	R	2445056	256
9809.919	issue	R	2445312	256
9810.255	queue	R	2445568	256
9813.490	cmplt	R	2445312	256
9813.612	issue	R	2445568	256
9813.887	queue	R	2445824	256
9817.061	cmplt	R	2445568	256
9817.183	issue	R	2445824	256
9817.458	queue	R	2446080	256
9820.662	cmplt	R	2445824	256
9820.754	issue	R	2446080	256
9821.029	queue	R	2446336	256
9824.172	cmplt	R	2446080	256
9824.294	issue	R	2446336	256
9824.599	queue	R	2446592	256
9827.743	cmplt	R	2446336	256
9827.865	issue	R	2446592	256
9828.140	queue	R	2446848	256
9831.314	cmplt	R	2446592	256
9831.405	issue	R	2446848	256
9831.711	queue	R	2447104	256
9834.824	cmplt	R	2446848	256
9834.946	issue	R	2447104	256
9835.221	queue	R	2447360	256
9838.364	cmplt	R	2447104	256
9838.486	issue	R	2447360	256
9838.761	queue	R	2447616	256
9841.904	cmplt	R	2447360	256
9842.088	issue	R	2447616	256
9842.332	queue	R	2447872	256
9845.506	cmplt	R	2447616	256
9845.628	issue	R	2447872	256
9845.903	queue	R	2448128	256
9849.107	cmplt	R	2447872	256
9849.199	issue	R	2448128	256
9849.504	queue	R	2448384	256
9852.617	cmplt	R	2448128	256
9852.709	issue	R	2448384	256
9853.014	queue	R	2448640	256
9856.157	cmplt	R	2448384	256
9856.249	issue	R	2448640	256
9856.554	queue	R	2448896	256
9859.698	cmplt	R	2448640	256
9859.789	issue	R	2448896	256
9860.125	queue	R	2449152	256
9863.269	cmplt	R	2448896	256
9863.391	issue	R	2449152	256
9863.665	queue	R	2449408	256
9866.840	cmplt	R	2449152	256
9866.962	issue	R	2449408	256
9867.236	queue	R	2449664	256
9870.380	cmplt	R	2449408	256
9870.502	issue	R	2449664	256
9870.777	queue	R	2449920	256
9873.981	cmplt	R	2449664	256
9874.073	issue	R	2449920	256
9874.378	queue	R	2450176	256
9877.491	cmplt	R	2449920	256
9877.613	issue	R	2450176	256
9877.888	queue	R	2450432	256
9881.032	cmplt	R	2450176	256
9881.123	issue	R	2450432	256
9881.428	queue	R	2450688	256
9884.572	cmplt	R	2450432	256
9884.694	issue	R	2450688	256
9885.152	queue	W	2642360	1024
9885.579	queue	W	2643384	1024
9885.976	queue	W	2644408	1024
9886.434	queue	W	2645432	1024
9886.861	queue	W	2646456	1024
9887.288	queue	W	2647480	1024
9887.716	queue	W	2648504	1024
9888.112	cmplt	R	2450688	256
9888.204	queue	W	2649528	1024
9888.631	queue	R	2450944	256
9888.692	issue	R	2450944	256
9888.997	queue	R	2451200	256
9892.141	cmplt	R	2450944	256
9892.263	issue	R	2451200	256
9892.538	queue	R	2451456	256
9895.681	cmplt	R	2451200	256
9895.773	issue	R	2451456	256
9896.078	queue	R	2451712	256
9899.222	cmplt	R	2451456	256
9899.344	issue	R	2451712	256
9899.649	queue	R	2451968	256
9902.823	cmplt	R	2451712	256
9902.945	issue	R	2451968	256
9903.220	queue	R	2452224	256
9906.425	cmplt	R	2451968	256
9906.516	issue	R	2452224	256
9906.821	queue	R	2452480	256
9909.995	cmplt	R	2452224	256
9910.118	issue	R	2452480	256
9910.392	queue	R	2452736	256
9913.597	cmplt	R	2452480	256
9913.719	issue	R	2452736	256
9913.994	queue	R	2452992	256
9917.137	cmplt	R	2452736	256
9917.259	issue	R	2452992	256
9917.534	queue	R	2453248	256
9920.678	cmplt	R	2452992	256
9920.800	issue	R	2453248	256
9921.105	queue	R	2453504	256
9921.227	queue	W	1912920	8
9921.318	queue	W	1835696	8
9921.349	queue	W	1872416	8
9921.380	queue	W	2359296	8
9921.410	queue	W	2621968	8
9921.441	queue	W	2621984	8
9921.441	queue	W	2626080	8
9921.471	queue	W	1835008	8
9921.502	queue	W	1835528	8
9921.532	queue	W	1835536	8
9921.532	queue	W	1835544	8
9924.248	cmplt	R	2453248	256
9924.340	issue	R	2453504	256
9924.645	queue	R	2453760	256
9927.636	queue	W	2650552	1024
9927.789	cmplt	R	2453504	256
9927.880	issue	R	2453760	256
9928.186	queue	R	2454016	256
9931.299	cmplt	R	2453760	256
9931.390	issue	R	2454016	256
9931.695	queue	R	2454272	256
9932.092	queue	W	2651576	1024
9932.580	queue	W	2652600	1024
9933.893	queue	W	2653624	584
9934.808	cmplt	R	2454016	256
9934.900	issue	R	2454272	256
9935.205	queue	R	2454528	256
9938.379	cmplt	R	2454272	256
9938.501	issue	R	2454528	256
9938.807	queue	R	2454784	256
9939.905	queue	W	2654208	1024
9940.424	queue	W	2655232	1024
9940.882	queue	W	2656256	1024
9941.309	queue	W	2657280	1024
9941.767	queue	W	2658304	1024
9941.889	cmplt	R	2454528	256
9941.981	issue	W	2621968	8
9942.072	issue	W	2621984	8
9942.255	queue	R	2455040	256
9943.598	cmplt	W	2621968	8
9943.659	issue	W	2626080	8
9944.453	cmplt	W	2621984	8
9944.514	issue	W	2642360	1024
9945.460	cmplt	W	2626080	8
9945.521	issue	W	2643384	1024
9950.374	queue	W	2659328	1024
9950.862	queue	W	2660352	1024
9951.320	queue	W	2661376	1024
9951.930	queue	W	2662400	1024
9952.388	queue	W	2663424	1024
9952.846	queue	W	2664448	1024
9953.273	queue	W	2665472	1024
9953.731	queue	W	2666496	1024
9954.158	queue	W	2667520	1024
9954.616	queue	W	2668544	1024
9955.105	queue	W	2669568	1024
9957.241	queue	W	2670592	1024
9957.638	queue	W	2671616	1024
9958.065	queue	W	2672640	1024
9958.462	queue	W	2673664	1024
9958.889	queue	W	2674688	1024
9959.316	queue	W	2675712	1024
9959.744	queue	W	2676736	1024
9970.212	queue	W	2677760	1024
9970.700	queue	W	2678784	1024
9971.128	queue	W	2679808	1024
9971.586	queue	W	2680832	1024
9972.013	queue	W	2681856	1024
9972.440	queue	W	2682880	1024
9973.081	queue	W	2683904	1024
9973.630	queue	W	2684928	1024
9973.691	cmplt	W	2642360	1024
9973.997	issue	W	2644408	1024
9974.180	queue	W	2685952	1024
9975.156	queue	W	2686976	1024
9975.614	queue	W	2688000	1024
9976.042	queue	W	2689024	1024
9976.438	queue	W	2690048	1024
9976.652	queue	W	2691072	488
10001.526	cmplt	W	2643384	1024
10029.361	cmplt	W	2644408	1024
10029.727	issue	R	2454784	512
10036.441	cmplt	R	2454784	512
10036.838	queue	R	2455296	256
10036.930	issue	R	2455296	256
10037.204	queue	R	2455552	256
10040.378	cmplt	R	2455296	256
10040.501	issue	R	2455552	256
10040.775	queue	R	2455808	256
10043.888	cmplt	R	2455552	256
10044.010	issue	R	2455808	256
10044.316	queue	R	2456064	256
10047.459	cmplt	R	2455808	256
10047.581	issue	R	2456064	256
10047.886	queue	R	2456320	256
10051.000	cmplt	R	2456064	256
10051.122	issue	R	2456320	256
10051.396	queue	R	2456576	256
10054.540	cmplt	R	2456320	256
10054.631	issue	R	2456576	256
10054.967	queue	R	2456832	256
10058.111	cmplt	R	2456576	256
10058.233	issue	R	2456832	256
10058.508	queue	R	2457088	256
10061.712	cmplt	R	2456832	256
10061.804	issue	R	2457088	256
10062.109	queue	R	2457344	256
10065.253	cmplt	R	2457088	256
10065.344	issue	R	2457344	256
10065.741	queue	R	2457600	256
10068.793	cmplt	R	2457344	256
10068.915	issue	R	2457600	256
10069.861	queue	R	2457856	256
10072.455	cmplt	R	2457600	256
10072.577	issue	R	2457856	256
10073.493	queue	R	2458112	256
10075.782	cmplt	R	2457856	256
10075.874	issue	R	2458112	256
10076.759	queue	R	2458368	256
10079.078	cmplt	R	2458112	256
10079.200	issue	R	2458368	256
10079.872	queue	R	2458624	256
10082.436	cmplt	R	2458368	256
10082.527	issue	R	2458624	256
10083.199	queue	R	2458880	256
10085.793	cmplt	R	2458624	256
10085.915	issue	R	2458880	256
10086.128	queue	R	2459136	256
10089.181	cmplt	R	2458880	256
10089.272	issue	R	2459136	256
10089.516	queue	R	2459392	256
10092.538	cmplt	R	2459136	256
10092.629	issue	R	2459392	256
10092.843	queue	R	2459648	256
10095.895	cmplt	R	2459392	256
10095.987	issue	R	2459648	256
10096.200	queue	R	2459904	256
10099.222	cmplt	R	2459648	256
10099.313	issue	R	2459904	256
10099.527	queue	R	2460160	256
10102.518	cmplt	R	2459904	256
10102.640	issue	R	2460160	256
10102.854	queue	R	2460416	256
10105.906	cmplt	R	2460160	256
10105.997	issue	R	2460416	256
10106.211	queue	R	2460672	256
10109.202	queue	W	2691560	1024
10109.263	cmplt	R	2460416	256
10109.354	issue	R	2460672	256
10109.568	queue	R	2460928	256
10109.995	queue	W	2692584	1024
10110.453	queue	W	2693608	1024
10110.850	queue	W	2694632	1024
10111.277	queue	W	2695656	1024
10111.705	queue	W	2696680	1024
10112.132	queue	W	2697704	1024
10112.559	cmplt	R	2460672	256
10112.559	queue	W	2698728	1024
10112.651	issue	R	2460928	256
10112.895	queue	R	2461184	256
10115.855	cmplt	R	2460928	256
10115.947	issue	R	2461184	256
10116.161	queue	R	2461440	256
10116.649	queue	W	2699752	1024
10117.076	queue	W	2700776	1024
10117.503	queue	W	2701800	1024
10118.083	queue	W	2702824	536
10119.182	cmplt	R	2461184	256
10119.243	issue	R	2461440	256
10119.487	queue	R	2461696	256
10122.478	cmplt	R	2461440	256
10122.570	issue	R	2461696	256
10122.783	queue	R	2461952	256
10123.730	queue	W	2703360	1024
10124.157	queue	W	2704384	1024
10124.584	queue	W	2705408	1024
10125.042	queue	W	2706432	1024
10125.652	queue	W	2707456	1024
10125.774	cmplt	R	2461696	256
10125.866	issue	R	2461952	256
10126.080	queue	R	2462208	256
10129.132	cmplt	R	2461952	256
10129.254	issue	R	2462208	256
10129.467	queue	R	2462464	256
10129.773	queue	W	2708480	1024
10130.261	queue	W	2709504	1024
10130.719	queue	W	2710528	1024
10131.146	queue	W	2711552	1024
10131.573	queue	W	2712576	1024
10132.001	queue	W	2713600	1024
10132.458	cmplt	R	2462208	256
10132.458	queue	W	2714624	1024
10132.550	issue	W	2645432	1024
10132.916	queue	R	2462720	256
10133.313	issue	W	2646456	1024
10140.485	queue	W	2715648	1024
10140.913	queue	W	2716672	1024
10141.340	queue	W	2717696	1024
10141.798	queue	W	2718720	1024
10143.507	queue	W	2719744	1024
10143.934	queue	W	2720768	1024
10144.331	queue	W	2721792	1024
10144.728	queue	W	2722816	1024
10145.124	queue	W	2723840	1024
10145.552	queue	W	2724864	1024
10145.979	queue	W	2725888	1024
10146.376	queue	W	2726912	1024
10146.772	queue	W	2727936	1024
10147.352	queue	W	2728960	1024
10147.719	queue	W	2729984	1024
10148.115	queue	W	2731008	1024
10148.329	queue	W	2732032	488
10161.514	cmplt	W	2645432	1024
10161.819	issue	W	2647480	1024
10189.287	cmplt	W	2646456	1024
10189.593	issue	W	2648504	1024
10217.824	cmplt	W	2647480	1024
10245.323	cmplt	W	2648504	1024
10245.689	issue	R	2462464	512
10251.854	cmplt	R	2462464	512
10252.190	queue	R	2462976	256
10252.251	issue	R	2462976	256
10252.465	queue	R	2463232	256
10255.486	cmplt	R	2462976	256
10255.547	issue	R	2463232	256
10255.791	queue	R	2463488	256
10258.752	cmplt	R	2463232	256
10258.813	issue	R	2463488	256
10259.057	queue	R	2463744	256
10262.017	cmplt	R	2463488	256
10262.109	issue	R	2463744	256
10262.292	queue	R	2464000	256
10265.283	cmplt	R	2463744	256
10265.375	issue	R	2464000	256
10265.588	queue	R	2464256	256
10268.610	cmplt	R	2464000	256
10268.701	issue	R	2464256	256
10268.915	queue	R	2464512	256
10271.875	cmplt	R	2464256	256
10271.967	issue	R	2464512	256
10272.181	queue	R	2464768	256
10275.141	cmplt	R	2464512	256
10275.233	issue	R	2464768	256
10275.446	queue	R	2465024	256
10278.437	cmplt	R	2464768	256
10278.529	issue	R	2465024	256
10278.743	queue	R	2465280	256
10281.734	cmplt	R	2465024	256
10281.825	issue	R	2465280	256
10282.039	queue	R	2465536	256
10285.030	cmplt	R	2465280	256
10285.121	issue	R	2465536	256
10285.335	queue	R	2465792	256
10288.326	cmplt	R	2465536	256
10288.418	issue	R	2465792	256
10288.631	queue	R	2466048	256
10291.622	cmplt	R	2465792	256
10291.714	issue	R	2466048	256
10291.927	queue	R	2466304	256
10294.949	cmplt	R	2466048	256
10295.040	issue	R	2466304	256
10295.254	queue	R	2466560	256
10298.306	cmplt	R	2466304	256
10298.398	issue	R	2466560	256
10298.611	queue	R	2466816	256
10301.633	cmplt	R	2466560	256
10301.755	issue	R	2466816	256
10301.938	queue	R	2467072	256
10305.021	cmplt	R	2466816	256
10305.112	issue	R	2467072	256
10305.326	queue	R	2467328	256
10308.347	cmplt	R	2467072	256
10308.439	issue	R	2467328	256
10308.653	queue	R	2467584	256
10311.705	cmplt	R	2467328	256
10311.827	issue	R	2467584	256
10312.010	queue	R	2467840	256
10315.031	cmplt	R	2467584	256
10315.123	issue	R	2467840	256
10315.336	queue	R	2468096	256
10318.327	cmplt	R	2467840	256
10318.419	issue	R	2468096	256
10318.633	queue	R	2468352	256
10321.685	cmplt	R	2468096	256
10321.746	issue	R	2468352	256
10321.959	queue	R	2468608	256
10324.981	cmplt	R	2468352	256
10325.072	issue	R	2468608	256
10325.286	queue	R	2468864	256
10328.277	cmplt	R	2468608	256
10328.338	issue	R	2468864	256
10328.552	queue	R	2469120	256
10331.604	cmplt	R	2468864	256
10331.695	issue	R	2469120	256
10331.879	queue	R	2469376	256
10334.870	cmplt	R	2469120	256
10334.961	issue	R	2469376	256
10335.175	queue	R	2469632	256
10338.166	cmplt	R	2469376	256
10338.257	issue	R	2469632	256
10338.471	queue	R	2469888	256
10341.431	cmplt	R	2469632	256
10341.523	issue	R	2469888	256
10341.737	queue	R	2470144	256
10344.789	cmplt	R	2469888	256
10344.880	issue	R	2470144	256
10345.094	queue	R	2470400	256
10348.085	cmplt	R	2470144	256
10348.146	issue	R	2470400	256
10348.390	queue	R	2470656	256
10351.412	cmplt	R	2470400	256
10351.564	issue	W	2649528	1024
10352.052	queue	R	2470912	256
10380.284	cmplt	W	2649528	1024
10380.620	issue	W	2650552	1024
10409.492	cmplt	W	2650552	1024
10409.828	issue	W	2651576	1024
10456.768	cmplt	W	2651576	1024
10457.165	issue	R	2470656	512
10463.391	cmplt	R	2470656	512
10463.757	queue	R	2471168	256
10464.062	queue	R	2471424	256
10464.123	issue	R	2471168	512
10470.319	cmplt	R	2471168	512
10470.685	queue	R	2471680	256
10470.960	queue	R	2471936	256
10471.051	issue	R	2471680	512
10477.186	cmplt	R	2471680	512
10477.552	queue	R	2472192	256
10477.857	queue	R	2472448	256
10477.949	issue	R	2472192	512
10484.084	cmplt	R	2472192	512
10484.419	queue	R	2472704	256
10484.725	queue	R	2472960	256
10484.786	issue	R	2472704	512
10490.920	cmplt	R	2472704	512
10491.286	queue	R	2473216	256
10491.561	queue	R	2473472	256
10491.653	issue	R	2473216	512
10497.787	cmplt	R	2473216	512
10498.123	queue	R	2473728	256
10498.428	queue	R	2473984	256
10498.489	issue	R	2473728	512
10504.685	cmplt	R	2473728	512
10505.051	queue	R	2474240	256
10505.356	queue	R	2474496	256
10505.417	issue	R	2474240	512
10511.582	cmplt	R	2474240	512
10511.949	queue	R	2474752	256
10512.223	queue	R	2475008	256
10512.315	issue	R	2474752	512
10518.480	cmplt	R	2474752	512
10518.846	queue	R	2475264	256
10519.152	queue	R	2475520	256
10519.213	issue	R	2475264	512
10525.378	cmplt	R	2475264	512
10525.744	queue	R	2475776	256
10526.019	queue	R	2476032	256
10526.080	issue	R	2475776	512
10532.245	cmplt	R	2475776	512
10532.580	queue	R	2476288	256
10532.886	queue	R	2476544	256
10532.947	issue	R	2476288	512
10539.112	cmplt	R	2476288	512
10539.448	queue	R	2476800	256
10539.753	queue	R	2477056	256
10539.814	issue	R	2476800	512
10545.979	cmplt	R	2476800	512
10546.315	queue	R	2477312	256
10546.620	queue	R	2477568	256
10546.681	issue	R	2477312	512
10552.846	cmplt	R	2477312	512
10553.273	queue	R	2477824	256
10553.579	queue	R	2478080	256
10553.640	issue	R	2477824	512
10559.774	cmplt	R	2477824	512
10560.171	queue	R	2478336	256
10560.446	queue	R	2478592	256
10560.537	issue	W	1912920	8
10562.094	cmplt	W	1912920	8
10562.185	issue	W	2359296	8
10563.711	cmplt	W	2359296	8
10563.772	issue	W	2652600	1024
10592.889	cmplt	W	2652600	1024
10593.224	issue	W	2653624	584
10613.978	cmplt	W	2653624	584
10614.253	issue	R	2478336	512
10620.510	cmplt	R	2478336	512
10620.845	queue	R	2478848	256
10621.151	queue	R	2479104	256
10621.212	issue	R	2478848	512
10627.377	cmplt	R	2478848	512
10627.712	queue	R	2479360	256
10628.018	queue	R	2479616	256
10628.079	issue	R	2479360	512
10634.244	cmplt	R	2479360	512
10634.580	queue	R	2479872	256
10634.885	queue	R	2480128	256
10634.946	issue	R	2479872	512
10641.111	cmplt	R	2479872	512
10641.416	queue	R	2480384	256
10641.721	queue	R	2480640	256
10641.782	issue	R	2480384	512
10647.978	cmplt	R	2480384	512
10648.436	queue	R	2480896	256
10648.833	queue	R	2481152	256
10648.924	issue	R	2480896	512
10655.089	cmplt	R	2480896	512
10655.425	queue	R	2481408	256
10655.761	queue	R	2481664	256
10655.822	issue	R	2481408	512
10661.956	cmplt	R	2481408	512
10662.323	queue	R	2481920	256
10662.628	queue	R	2482176	256
10662.689	issue	R	2481920	512
10668.823	cmplt	R	2481920	512
10669.159	queue	R	2482432	256
10669.464	queue	R	2482688	256
10669.525	issue	R	2482432	512
10675.660	cmplt	R	2482432	512
10675.996	queue	R	2482944	256
10676.270	queue	R	2483200	256
10676.331	issue	R	2482944	512
10682.466	cmplt	R	2482944	512
10682.802	queue	R	2483456	256
10683.107	queue	R	2483712	256
10683.168	issue	R	2483456	512
10689.303	cmplt	R	2483456	512
10689.638	queue	R	2483968	256
10689.974	queue	R	2484224	256
10690.035	issue	R	2483968	512
10696.170	cmplt	R	2483968	512
10696.505	queue	R	2484480	256
10696.780	queue	R	2484736	256
10696.841	issue	R	2484480	512
10702.976	cmplt	R	2484480	512
10703.342	queue	R	2484992	256
10703.617	queue	R	2485248	256
10703.678	issue	R	2484992	512
10709.843	cmplt	R	2484992	512
10710.240	queue	R	2485504	256
10710.545	queue	R	2485760	256
10710.606	issue	R	2485504	512
10716.740	cmplt	R	2485504	512
10717.107	queue	R	2486016	256
10717.381	queue	R	2486272	256
10717.442	issue	R	2486016	512
10723.577	cmplt	R	2486016	512
10723.913	queue	R	2486528	256
10724.218	queue	R	2486784	256
10724.279	issue	R	2486528	512
10730.414	cmplt	R	2486528	512
10730.749	queue	R	2487040	256
10731.054	queue	R	2487296	256
10731.116	issue	R	2487040	512
10737.250	cmplt	R	2487040	512
10737.616	queue	R	2487552	256
10737.891	queue	R	2487808	256
10737.952	issue	R	2487552	512
10744.087	cmplt	R	2487552	512
10744.453	queue	R	2488064	256
10744.758	queue	R	2488320	256
10744.789	issue	R	2488064	512
10750.923	cmplt	R	2488064	512
10751.289	queue	R	2488576	256
10751.625	queue	R	2488832	256
10751.686	issue	R	2488576	512
10757.821	cmplt	R	2488576	512
10758.187	queue	R	2489088	256
10758.492	queue	R	2489344	256
10758.523	issue	R	2489088	512
10764.657	cmplt	R	2489088	512
10765.054	queue	R	2489600	256
10765.329	queue	R	2489856	256
10765.390	issue	R	2489600	512
10771.524	cmplt	R	2489600	512
10771.891	queue	R	2490112	256
10772.165	queue	R	2490368	256
10772.196	issue	R	2490112	512
10778.392	cmplt	R	2490112	512
10778.758	queue	R	2490624	256
10778.849	issue	R	2490624	256
10779.216	queue	R	2490880	256
10782.024	cmplt	R	2490624	256
10782.115	issue	R	2490880	256
10782.481	queue	R	2491136	256
10785.320	cmplt	R	2490880	256
10785.411	issue	R	2491136	256
10785.747	queue	R	2491392	256
10788.585	cmplt	R	2491136	256
10788.677	issue	R	2491392	256
10789.013	queue	R	2491648	256
10791.851	cmplt	R	2491392	256
10791.943	issue	R	2491648	256
10792.309	queue	R	2491904	256
10795.147	cmplt	R	2491648	256
10795.239	issue	R	2491904	256
10795.575	queue	R	2492160	256
10798.413	cmplt	R	2491904	256
10798.505	issue	R	2492160	256
10798.871	queue	R	2492416	256
10801.709	cmplt	R	2492160	256
10801.801	issue	R	2492416	256
10802.136	queue	R	2492672	256
10804.975	cmplt	R	2492416	256
10805.066	issue	R	2492672	256
10805.433	queue	R	2492928	256
10808.271	cmplt	R	2492672	256
10808.363	issue	R	2492928	256
10808.698	queue	R	2493184	256
10811.537	cmplt	R	2492928	256
10811.659	issue	W	1835696	8
10811.720	issue	W	1835528	24
10813.154	cmplt	W	1835696	8
10813.215	issue	W	1835008	8
10813.398	queue	R	2493440	256
10816.450	cmplt	W	1835528	24
10816.512	issue	W	1872416	8
10817.305	cmplt	W	1835008	8
10817.366	issue	W	2654208	1024
10818.251	cmplt	W	1872416	8
10818.312	issue	W	2655232	1024
10850.053	cmplt	W	2654208	1024
10881.032	cmplt	W	2655232	1024
10881.367	issue	R	2493184	512
10887.624	cmplt	R	2493184	512
10887.990	queue	R	2493696	256
10888.265	queue	R	2493952	256
10888.326	issue	R	2493696	512
10894.491	cmplt	R	2493696	512
10894.857	queue	R	2494208	256
10895.132	queue	R	2494464	256
10895.193	issue	R	2494208	512
10901.358	cmplt	R	2494208	512
10901.724	queue	R	2494720	256
10902.030	queue	R	2494976	256
10902.091	issue	R	2494720	512
10908.225	cmplt	R	2494720	512
10908.561	queue	R	2495232	256
10908.897	queue	R	2495488	256
10908.958	issue	R	2495232	512
10915.092	cmplt	R	2495232	512
10915.428	queue	R	2495744	256
10915.733	queue	R	2496000	256
10915.794	issue	R	2495744	512
10921.929	cmplt	R	2495744	512
10922.265	queue	R	2496256	256
10922.570	queue	R	2496512	256
10922.631	issue	R	2496256	512
10928.765	cmplt	R	2496256	512
10929.132	queue	R	2496768	256
10929.406	queue	R	2497024	256
10929.467	issue	R	2496768	512
10935.602	cmplt	R	2496768	512
10935.938	queue	R	2497280	256
10936.243	queue	R	2497536	256
10936.304	issue	R	2497280	512
10942.439	cmplt	R	2497280	512
10942.774	queue	R	2497792	256
10943.080	queue	R	2498048	256
10943.141	issue	R	2497792	512
10949.275	cmplt	R	2497792	512
10949.611	queue	R	2498304	256
10949.886	queue	R	2498560	256
10949.977	issue	R	2498304	512
10956.112	cmplt	R	2498304	512
10956.478	queue	R	2498816	256
10956.753	queue	R	2499072	256
10956.814	issue	R	2498816	512
10962.979	cmplt	R	2498816	512
10963.315	queue	R	2499328	256
10963.589	queue	R	2499584	256
10963.650	issue	R	2499328	512
10969.785	cmplt	R	2499328	512
10970.090	issue	W	2656256	1024
10970.639	issue	W	2657280	1024
10971.280	queue	R	2499840	256
10971.586	queue	R	2500096	256
11002.106	cmplt	W	2656256	1024
11035.159	cmplt	W	2657280	1024
11035.495	issue	R	2499840	512
11049.474	cmplt	R	2499840	512
11049.840	queue	R	2500352	256
11050.175	queue	R	2500608	256
11050.237	issue	R	2500352	512
11057.775	cmplt	R	2500352	512
11058.569	queue	R	2500864	256
11058.874	queue	R	2501120	256
11058.935	issue	R	2500864	512
11065.130	cmplt	R	2500864	512
11065.497	queue	R	2501376	256
11065.802	queue	R	2501632	256
11065.832	issue	R	2501376	512
11071.998	cmplt	R	2501376	512
11072.364	queue	R	2501888	256
11072.700	queue	R	2502144	256
11072.730	issue	R	2501888	512
11078.865	cmplt	R	2501888	512
11079.261	queue	R	2502400	256
11079.536	queue	R	2502656	256
11079.597	issue	R	2502400	512
11085.732	cmplt	R	2502400	512
11086.098	queue	R	2502912	256
11086.403	queue	R	2503168	256
11086.434	issue	R	2502912	512
11092.599	cmplt	R	2502912	512
11092.965	queue	R	2503424	256
11093.270	queue	R	2503680	256
11093.301	issue	R	2503424	512
11099.435	cmplt	R	2503424	512
11099.802	queue	R	2503936	256
11099.893	issue	R	2503936	256
11100.259	queue	R	2504192	256
11103.067	cmplt	R	2503936	256
11103.159	issue	R	2504192	256
11103.525	queue	R	2504448	256
11106.363	cmplt	R	2504192	256
11106.455	issue	R	2504448	256
11106.852	queue	R	2504704	256
11109.660	cmplt	R	2504448	256
11109.751	issue	R	2504704	256
11110.148	queue	R	2504960	256
11112.956	cmplt	R	2504704	256
11113.047	issue	R	2504960	256
11113.414	queue	R	2505216	256
11116.222	cmplt	R	2504960	256
11116.313	issue	R	2505216	256
11116.679	queue	R	2505472	256
11119.518	cmplt	R	2505216	256
11119.609	issue	R	2505472	256
11120.037	queue	R	2505728	256
11122.814	cmplt	R	2505472	256
11122.906	issue	R	2505728	256
11123.272	queue	R	2505984	256
11126.080	cmplt	R	2505728	256
11126.171	issue	R	2505984	256
11126.507	queue	R	2506240	256
11129.345	cmplt	R	2505984	256
11129.437	issue	R	2506240	256
11129.803	queue	R	2506496	256
11132.611	cmplt	R	2506240	256
11132.703	issue	R	2506496	256
11133.069	queue	R	2506752	256
11135.907	cmplt	R	2506496	256
11135.999	issue	R	2506752	256
11136.335	queue	R	2507008	256
11139.173	cmplt	R	2506752	256
11139.264	issue	R	2507008	256
11139.631	queue	R	2507264	256
11142.439	cmplt	R	2507008	256
11142.561	issue	W	2658304	1024
11143.263	issue	W	2659328	1024
11143.965	queue	R	2507520	256
11174.699	cmplt	W	2658304	1024
11174.973	issue	W	2660352	1024
11205.799	cmplt	W	2659328	1024
11206.104	issue	W	2661376	1024
11236.747	cmplt	W	2660352	1024
11267.511	cmplt	W	2661376	1024
11267.816	issue	R	2507264	512
11273.981	cmplt	R	2507264	512
11274.378	queue	R	2507776	256
11274.653	queue	R	2508032	256
11274.714	issue	R	2507776	512
11280.879	cmplt	R	2507776	512
11281.276	queue	R	2508288	256
11281.581	queue	R	2508544	256
11281.642	issue	R	2508288	512
11287.807	cmplt	R	2508288	512
11288.173	queue	R	2508800	256
11288.479	queue	R	2509056	256
11288.540	issue	R	2508800	512
11294.705	cmplt	R	2508800	512
11295.101	queue	R	2509312	256
11295.407	queue	R	2509568	256
11295.437	issue	R	2509312	512
11301.633	cmplt	R	2509312	512
11302.030	queue	R	2509824	256
11302.335	queue	R	2510080	256
11302.365	issue	R	2509824	512
11308.530	cmplt	R	2509824	512
11308.897	queue	R	2510336	256
11309.202	queue	R	2510592	256
11309.232	issue	R	2510336	512
11315.428	cmplt	R	2510336	512
11315.794	queue	R	2510848	256
11316.099	queue	R	2511104	256
11316.130	issue	R	2510848	512
11322.295	cmplt	R	2510848	512
11322.692	queue	R	2511360	256
11322.997	queue	R	2511616	256
11323.028	issue	R	2511360	512
11329.223	cmplt	R	2511360	512
11329.620	queue	R	2511872	256
11329.895	queue	R	2512128	256
11329.956	issue	R	2511872	512
11336.151	cmplt	R	2511872	512
11336.548	queue	R	2512384	256
11336.853	queue	R	2512640	256
11336.884	issue	R	2512384	512
11343.049	cmplt	R	2512384	512
11343.476	queue	R	2512896	256
11343.537	issue	R	2512896	256
11343.904	queue	R	2513152	256
11346.772	cmplt	R	2512896	256
11346.864	issue	R	2513152	256
11347.230	queue	R	2513408	256
11350.069	cmplt	R	2513152	256
11350.160	issue	R	2513408	256
11350.526	queue	R	2513664	256
11353.395	cmplt	R	2513408	256
11353.487	issue	R	2513664	256
11353.853	queue	R	2513920	256
11356.692	cmplt	R	2513664	256
11356.814	issue	R	2513920	256
11357.180	queue	R	2514176	256
11360.049	cmplt	R	2513920	256
11360.140	issue	R	2514176	256
11360.537	queue	R	2514432	256
11363.376	cmplt	R	2514176	256
11363.498	issue	R	2514432	256
11363.864	queue	R	2514688	256
11366.702	cmplt	R	2514432	256
11366.794	issue	R	2514688	256
11367.191	queue	R	2514944	256
11370.060	cmplt	R	2514688	256
11370.182	issue	W	2662400	1024
11371.036	queue	R	2515200	256
11401.923	cmplt	W	2662400	1024
11402.259	issue	W	2663424	1024
11433.786	cmplt	W	2663424	1024
11434.091	issue	W	2664448	1024
11465.863	cmplt	W	2664448	1024
11466.199	issue	R	2514944	512
11472.364	cmplt	R	2514944	512
11472.730	queue	R	2515456	256
11473.005	queue	R	2515712	256
11473.096	issue	R	2515456	512
11479.261	cmplt	R	2515456	512
11479.628	queue	R	2515968	256
11479.902	queue	R	2516224	256
11479.963	issue	R	2515968	512
11486.159	cmplt	R	2515968	512
11486.495	queue	R	2516480	256
11486.800	queue	R	2516736	256
11486.861	issue	R	2516480	512
11493.026	cmplt	R	2516480	512
11493.392	queue	R	2516992	256
11493.667	queue	R	2517248	256
11493.728	issue	R	2516992	512
11499.893	cmplt	R	2516992	512
11500.290	queue	R	2517504	256
11500.595	queue	R	2517760	256
11500.656	issue	R	2517504	512
11506.852	cmplt	R	2517504	512
11507.249	queue	R	2518016	256
11507.554	queue	R	2518272	256
11507.615	issue	R	2518016	512
11513.780	cmplt	R	2518016	512
11514.146	queue	R	2518528	256
11514.451	queue	R	2518784	256
11514.512	issue	R	2518528	512
11520.647	cmplt	R	2518528	512
11521.013	queue	R	2519040	256
11521.288	queue	R	2519296	256
11521.349	issue	R	2519040	512
11527.514	cmplt	R	2519040	512
11527.941	queue	R	2519552	256
11528.216	queue	R	2519808	256
11528.277	issue	R	2519552	512
11534.442	cmplt	R	2519552	512
11534.839	queue	R	2520064	256
11535.114	queue	R	2520320	256
11535.175	issue	R	2520064	512
11541.340	cmplt	R	2520064	512
11541.737	queue	R	2520576	256
11542.011	queue	R	2520832	256
11542.072	issue	R	2520576	512
11548.268	cmplt	R	2520576	512
11548.634	queue	R	2521088	256
11548.939	queue	R	2521344	256
11549.000	issue	R	2521088	512
11555.166	cmplt	R	2521088	512
11555.562	queue	R	2521600	256
11555.868	queue	R	2521856	256
11555.898	issue	R	2521600	512
11562.063	cmplt	R	2521600	512
11562.460	queue	R	2522112	256
11562.735	queue	R	2522368	256
11562.796	issue	R	2522112	512
11568.961	cmplt	R	2522112	512
11569.327	queue	R	2522624	256
11569.632	queue	R	2522880	256
11569.663	issue	R	2522624	512
11575.858	cmplt	R	2522624	512
11576.011	issue	W	2665472	1024
11576.560	issue	W	2666496	1024
11577.262	queue	R	2367488	256
11577.537	queue	R	2367744	256
11608.118	cmplt	W	2665472	1024
11638.791	cmplt	W	2666496	1024
11639.127	issue	R	2367488	512
11645.384	cmplt	R	2367488	512
11645.750	queue	R	2368000	256
11646.025	queue	R	2368256	256
11646.086	issue	R	2368000	512
11652.220	cmplt	R	2368000	512
11652.587	queue	R	2368512	256
11652.861	queue	R	2368768	256
11652.953	issue	R	2368512	512
11659.057	cmplt	R	2368512	512
11659.423	queue	R	2369024	256
11659.698	queue	R	2369280	256
11659.759	issue	R	2369024	512
11665.893	cmplt	R	2369024	512
11666.290	queue	R	2369536	256
11666.565	queue	R	2369792	256
11666.626	issue	R	2369536	512
11672.761	cmplt	R	2369536	512
11673.127	queue	R	2370048	256
11673.432	queue	R	2370304	256
11673.463	issue	R	2370048	512
11679.597	cmplt	R	2370048	512
11680.055	issue	W	2667520	1024
11680.635	issue	W	2668544	1024
11681.123	queue	R	2370560	256
11681.459	queue	R	2370816	256
11718.755	cmplt	W	2667520	1024
11749.825	cmplt	W	2668544	1024
11750.191	issue	R	2370560	512
11756.325	cmplt	R	2370560	512
11756.692	queue	R	2371072	256
11756.997	queue	R	2371328	256
11757.058	issue	R	2371072	512
11763.162	cmplt	R	2371072	512
11764.566	issue	W	2669568	1024
11765.115	issue	W	2670592	1024
11796.612	cmplt	W	2669568	1024
11796.917	issue	W	2671616	1024
11827.621	cmplt	W	2670592	1024
11827.926	issue	W	2672640	1024
11858.508	cmplt	W	2671616	1024
11858.813	issue	W	2673664	1024
11869.525	queue	WS	1916928	8
11889.608	cmplt	W	2672640	1024
11920.494	cmplt	W	2673664	1024
11920.800	issue	WS	1916928	8
11922.234	cmplt	WS	1916928	8
11922.844	queue	WS	1916928	8
11922.875	issue	WS	1916928	8
11923.791	cmplt	WS	1916928	8
11930.047	issue	W	2674688	1024
11930.566	issue	W	2675712	1024
11938.410	queue	WS	2675712	1024
11962.460	cmplt	W	2674688	1024
11993.255	cmplt	W	2675712	1024
11993.560	issue	W	2676736	1024
11994.079	issue	W	2677760	1024
11999.206	queue	W	2732520	1024
11999.603	queue	W	2733544	1024
12000.061	queue	WS	1912920	8
12000.214	queue	W	2734568	1024
12001.251	queue	W	2735592	536
12003.022	queue	W	2736128	1024
12003.418	queue	W	2737152	1024
12003.815	queue	W	2738176	1024
12004.212	queue	W	2739200	1024
12004.609	queue	W	2740224	1024
12005.005	queue	W	2741248	1024
12005.433	queue	W	2742272	1024
12005.829	queue	W	2743296	1024
12006.226	queue	W	2744320	1024
12006.623	queue	W	2745344	1024
12007.020	queue	W	2746368	1024
12007.416	queue	W	2747392	1024
12007.813	queue	W	2748416	1024
12008.210	queue	W	2749440	1024
12008.637	queue	W	2750464	1024
12009.034	queue	W	2751488	1024
12010.835	queue	W	2752512	1024
12011.262	queue	W	2753536	1024
12011.659	queue	W	2754560	1024
12012.056	queue	W	2755584	1024
12012.452	queue	W	2756608	1024
12012.880	queue	W	2757632	1024
12013.276	queue	W	2758656	1024
12013.734	queue	W	2759680	1024
12014.131	queue	W	2760704	1024
12014.528	queue	W	2761728	1024
12014.924	queue	W	2762752	1024
12015.321	queue	W	2763776	1024
12015.718	queue	W	2764800	1024
12016.115	queue	W	2765824	1024
12016.512	queue	W	2766848	1024
12016.908	queue	W	2767872	1024
12017.641	queue	W	2768896	1024
12018.038	queue	W	2769920	1024
12018.434	queue	W	2770944	1024
12018.587	queue	W	2771968	336
12025.240	cmplt	W	2676736	1024
12056.219	cmplt	W	2677760	1024
12056.554	issue	WS	1912920	8
12057.928	cmplt	WS	1912920	8
12060.095	issue	W	2678784	1024
12060.644	issue	W	2679808	1024
12060.827	queue	WS	1845608	8
12060.858	queue	WS	1845616	8
12060.888	queue	WS	1845624	8
12060.919	queue	WS	1845632	8
12060.919	queue	WS	1845640	8
12060.949	queue	WS	1845648	8
12060.980	queue	WS	1845656	8
12092.294	cmplt	W	2678784	1024
12123.058	cmplt	W	2679808	1024
12123.424	issue	WS	1845608	56
12125.530	cmplt	WS	1845608	56
12130.047	issue	W	2680832	1024
12130.566	issue	W	2681856	1024
12162.277	cmplt	W	2680832	1024
12162.582	issue	W	2682880	1024
12193.255	cmplt	W	2681856	1024
12193.591	issue	W	2683904	1024
12224.294	cmplt	W	2682880	1024
12224.630	issue	W	2684928	1024
12267.450	cmplt	W	2683904	1024
12267.755	issue	W	2685952	1024
12298.550	cmplt	W	2684928	1024
12298.886	issue	W	2686976	1024
12329.803	cmplt	W	2685952	1024
12330.139	issue	W	2688000	1024
12360.934	cmplt	W	2686976	1024
12361.270	issue	W	2689024	1024
12391.790	cmplt	W	2688000	1024
12392.126	issue	W	2690048	1024
12422.890	cmplt	W	2689024	1024
12423.226	issue	W	2691072	488
12453.777	cmplt	W	2690048	1024
12454.113	issue	W	2691560	1024
12477.125	cmplt	W	2691072	488
12477.308	issue	W	2692584	1024
12506.669	cmplt	W	2691560	1024
12507.004	issue	W	2693608	1024
12536.029	cmplt	W	2692584	1024
12536.365	issue	W	2694632	1024
12565.298	cmplt	W	2693608	1024
12565.604	issue	W	2695656	1024
12594.537	cmplt	W	2694632	1024
12594.903	issue	W	2696680	1024
12624.050	cmplt	W	2695656	1024
12624.355	issue	W	2697704	1024
12653.716	cmplt	W	2696680	1024
12654.021	issue	W	2698728	1024
12683.168	cmplt	W	2697704	1024
12683.504	issue	W	2699752	1024
12712.651	cmplt	W	2698728	1024
12712.956	issue	W	2700776	1024
12741.828	cmplt	W	2699752	1024
12742.133	issue	W	2701800	1024
12781.840	cmplt	W	2700776	1024
12782.176	issue	W	2702824	536
12810.957	cmplt	W	2701800	1024
12811.262	issue	W	2703360	1024
12832.657	cmplt	W	2702824	536
12832.870	issue	W	2704384	1024
12854.509	cmplt	W	2703360	1024
12854.845	issue	W	2705408	1024
12885.610	cmplt	W	2704384	1024
12885.915	issue	W	2706432	1024
12916.496	cmplt	W	2705408	1024
12916.832	issue	W	2707456	1024
12947.505	cmplt	W	2706432	1024
12947.841	issue	W	2708480	1024
12978.575	cmplt	W	2707456	1024
12978.910	issue	W	2709504	1024
13009.797	cmplt	W	2708480	1024
13010.163	issue	W	2710528	1024
13040.623	cmplt	W	2709504	1024
13040.958	issue	W	2711552	1024
13071.479	cmplt	W	2710528	1024
13071.814	issue	W	2712576	1024
13102.304	cmplt	W	2711552	1024
13102.640	issue	W	2713600	1024
13133.344	cmplt	W	2712576	1024
13133.649	issue	W	2714624	1024
13164.169	cmplt	W	2713600	1024
13164.474	issue	W	2715648	1024
13195.086	cmplt	W	2714624	1024
13195.422	issue	W	2716672	1024
13225.851	cmplt	W	2715648	1024
13226.309	issue	W	2717696	1024
13256.920	cmplt	W	2716672	1024
13257.256	issue	W	2718720	1024
13301.145	cmplt	W	2717696	1024
13301.480	issue	W	2719744	1024
13333.801	cmplt	W	2718720	1024
13334.137	issue	W	2720768	1024
13355.013	cmplt	W	2719744	1024
13355.318	issue	W	2721792	1024
13386.266	cmplt	W	2720768	1024
13386.602	issue	W	2722816	1024
13417.580	cmplt	W	2721792	1024
13417.915	issue	W	2723840	1024
13448.588	cmplt	W	2722816	1024
13448.924	issue	W	2724864	1024
13479.597	cmplt	W	2723840	1024
13479.933	issue	W	2725888	1024
13510.392	cmplt	W	2724864	1024
13510.728	issue	W	2726912	1024
13541.553	cmplt	W	2725888	1024
13541.889	issue	W	2727936	1024
13572.593	cmplt	W	2726912	1024
13572.928	issue	W	2728960	1024
13603.479	cmplt	W	2727936	1024
13603.815	issue	W	2729984	1024
13634.580	cmplt	W	2728960	1024
13634.915	issue	W	2731008	1024
13665.832	cmplt	W	2729984	1024
13666.168	issue	W	2732032	488
13696.719	cmplt	W	2731008	1024
13697.024	issue	W	2732520	1024
13735.968	cmplt	W	2732032	488
13736.151	issue	W	2733544	1024
13765.634	cmplt	W	2732520	1024
13766.000	issue	W	2734568	1024
13795.544	cmplt	W	2733544	1024
13795.849	issue	W	2735592	536
13825.118	cmplt	W	2734568	1024
13825.454	issue	W	2736128	1024
13848.344	cmplt	W	2735592	536
13848.527	issue	W	2737152	1024
13869.464	cmplt	W	2736128	1024
13869.800	issue	W	2738176	1024
13900.809	cmplt	W	2737152	1024
13901.175	issue	W	2739200	1024
13932.184	cmplt	W	2738176	1024
13932.550	issue	W	2740224	1024
13963.559	cmplt	W	2739200	1024
13963.925	issue	W	2741248	1024
13994.781	cmplt	W	2740224	1024
13995.178	issue	W	2742272	1024
14025.973	cmplt	W	2741248	1024
14026.309	issue	W	2743296	1024
14057.256	cmplt	W	2742272	1024
14057.622	issue	W	2744320	1024
14088.295	cmplt	W	2743296	1024
14088.692	issue	W	2745344	1024
14119.274	cmplt	W	2744320	1024
14119.640	issue	W	2746368	1024
14150.221	cmplt	W	2745344	1024
14150.618	issue	W	2747392	1024
14181.169	cmplt	W	2746368	1024
14181.535	issue	W	2748416	1024
14212.300	cmplt	W	2747392	1024
14212.635	issue	W	2749440	1024
14243.736	cmplt	W	2748416	1024
14244.102	issue	W	2750464	1024
14274.989	cmplt	W	2749440	1024
14275.324	issue	W	2751488	1024
14306.425	cmplt	W	2750464	1024
14306.760	issue	W	2752512	1024
14352.388	cmplt	W	2751488	1024
14352.754	issue	W	2753536	1024
14373.905	cmplt	W	2752512	1024
14374.241	issue	W	2754560	1024
14405.311	cmplt	W	2753536	1024
14405.646	issue	W	2755584	1024
14436.960	cmplt	W	2754560	1024
14437.326	issue	W	2756608	1024
14468.244	cmplt	W	2755584	1024
14468.610	issue	W	2757632	1024
14499.130	cmplt	W	2756608	1024
14499.557	issue	W	2758656	1024
14530.200	cmplt	W	2757632	1024
14530.688	issue	W	2759680	1024
14561.209	cmplt	W	2758656	1024
14561.666	issue	W	2760704	1024
14592.278	cmplt	W	2759680	1024
14592.706	issue	W	2761728	1024
14623.592	cmplt	W	2760704	1024
14623.989	issue	W	2762752	1024
14654.815	cmplt	W	2761728	1024
14655.211	issue	W	2763776	1024
14686.190	cmplt	W	2762752	1024
14686.525	issue	W	2764800	1024
14717.748	cmplt	W	2763776	1024
14718.114	issue	W	2765824	1024
14749.000	cmplt	W	2764800	1024
14749.336	issue	W	2766848	1024
14780.528	cmplt	W	2765824	1024
14780.894	issue	W	2767872	1024
14812.208	cmplt	W	2766848	1024
14812.574	issue	W	2768896	1024
14845.628	cmplt	W	2767872	1024
14845.933	issue	W	2769920	1024
14866.656	cmplt	W	2768896	1024
14867.023	issue	W	2770944	1024
14898.154	cmplt	W	2769920	1024
14898.489	issue	W	2771968	336
14929.376	cmplt	W	2770944	1024
14947.108	cmplt	W	2771968	336
14950.038	queue	WS	1845664	8
14960.049	issue	WS	1845664	8
14961.514	cmplt	WS	1845664	8
15131.787	queue	W	2772304	1024
15132.214	queue	W	2773328	1024
15132.611	queue	W	2774352	1024
15133.038	queue	W	2775376	1024
15133.435	issue	W	2772304	1024
15133.435	queue	W	2776400	1024
15133.649	issue	W	2773328	1024
15133.862	queue	W	2777424	1024
15134.259	queue	W	2778448	1024
15134.686	queue	W	2779472	1024
15135.083	queue	W	2780496	1024
15135.510	queue	W	2781520	1024
15135.907	queue	W	2782544	1024
15136.365	queue	W	2783568	1024
15136.914	queue	W	2784592	688
15138.959	queue	W	2785280	1024
15139.387	queue	W	2786304	1024
15139.814	queue	W	2787328	1024
15150.313	queue	W	2788352	1024
15150.740	queue	W	2789376	1024
15151.167	queue	W	2790400	1024
15151.625	queue	W	2791424	1024
15152.083	queue	W	2792448	1024
15152.693	queue	W	2793472	1024
15153.121	queue	W	2794496	1024
15153.548	queue	W	2795520	1024
15154.036	queue	W	2796544	1024
15154.433	queue	W	2797568	1024
15154.860	queue	W	2798592	1024
15155.288	queue	W	2799616	1024
15155.715	queue	W	2800640	1024
15157.333	queue	W	2801664	1024
15157.729	queue	W	2802688	1024
15158.126	queue	W	2803712	1024
15158.584	queue	W	2804736	1024
15159.011	queue	W	2805760	1024
15159.408	queue	W	2806784	1024
15159.835	queue	W	2807808	1024
15162.033	cmplt	W	2772304	1024
15162.338	issue	W	2774352	1024
15170.365	queue	W	2808832	1024
15170.823	queue	W	2809856	1024
15171.250	queue	W	2810880	1024
15171.677	queue	W	2811904	1024
15171.860	queue	W	2812928	384
15191.058	cmplt	W	2773328	1024
15191.363	issue	W	2775376	1024
15222.249	cmplt	W	2774352	1024
15222.585	issue	W	2776400	1024
15251.488	cmplt	W	2775376	1024
15251.793	issue	W	2777424	1024
15279.658	cmplt	W	2776400	1024
15279.963	issue	W	2778448	1024
15281.550	queue	W	1835696	8
15281.611	queue	W	2621984	8
15286.983	queue	W	2813312	1024
15287.410	queue	W	2814336	1024
15287.807	queue	W	2815360	1024
15288.234	queue	W	2816384	1024
15289.272	queue	W	2817408	640
15301.236	queue	W	2818048	1024
15301.846	queue	W	2819072	1024
15302.274	queue	W	2820096	1024
15302.701	queue	W	2821120	1024
15303.128	queue	W	2822144	1024
15303.556	queue	W	2823168	1024
15303.983	queue	W	2824192	1024
15304.380	queue	W	2825216	1024
15304.868	queue	W	2826240	1024
15305.265	queue	W	2827264	1024
15305.356	cmplt	W	2777424	1024
15305.692	issue	W	2779472	1024
15305.692	queue	W	2828288	1024
15306.119	queue	W	2829312	1024
15306.516	queue	W	2830336	1024
15306.974	queue	W	2831360	1024
15307.371	queue	W	2832384	1024
15307.798	queue	W	2833408	1024
15309.873	queue	W	2834432	1024
15320.372	queue	W	2835456	1024
15320.800	queue	W	2836480	1024
15321.227	queue	W	2837504	1024
15321.654	queue	W	2838528	1024
15322.081	queue	W	2839552	1024
15322.478	queue	W	2840576	1024
15323.089	queue	W	2841600	1024
15323.485	queue	W	2842624	1024
15323.913	queue	W	2843648	1024
15324.340	queue	W	2844672	1024
15324.767	queue	W	2845696	1024
15325.195	queue	W	2846720	1024
15325.622	queue	W	2847744	1024
15326.049	queue	W	2848768	1024
15326.446	queue	W	2849792	1024
15327.331	queue	W	2850816	1024
15327.758	queue	W	2851840	1024
15328.216	queue	W	2852864	1024
15328.430	queue	W	2853888	384
15330.383	cmplt	W	2778448	1024
15330.688	issue	W	2780496	1024
15356.051	cmplt	W	2779472	1024
15356.356	issue	W	2781520	1024
15384.129	cmplt	W	2780496	1024
15384.435	issue	W	2782544	1024
15413.185	cmplt	W	2781520	1024
15413.490	issue	W	2783568	1024
15444.682	cmplt	W	2782544	1024
15444.987	issue	W	2784592	688
15474.256	cmplt	W	2783568	1024
15474.592	issue	W	2785280	1024
15498.001	cmplt	W	2784592	688
15498.215	issue	W	2786304	1024
15520.067	cmplt	W	2785280	1024
15520.372	issue	W	2787328	1024
15551.656	cmplt	W	2786304	1024
15551.991	issue	W	2788352	1024
15582.725	cmplt	W	2787328	1024
15583.031	issue	W	2789376	1024
15613.948	cmplt	W	2788352	1024
15614.253	issue	W	2790400	1024
15650.603	cmplt	W	2789376	1024
15650.939	issue	W	2791424	1024
15681.795	cmplt	W	2790400	1024
15682.100	issue	W	2792448	1024
15712.895	cmplt	W	2791424	1024
15713.170	issue	W	2793472	1024
15743.995	cmplt	W	2792448	1024
15744.300	issue	W	2794496	1024
15775.217	cmplt	W	2793472	1024
15775.492	issue	W	2795520	1024
15806.409	cmplt	W	2794496	1024
15806.684	issue	W	2796544	1024
15837.387	cmplt	W	2795520	1024
15837.693	issue	W	2797568	1024
15868.488	cmplt	W	2796544	1024
15868.762	issue	W	2798592	1024
15899.588	cmplt	W	2797568	1024
15899.863	issue	W	2799616	1024
15930.658	cmplt	W	2798592	1024
15930.963	issue	W	2800640	1024
15935.541	queue	W	2854272	1024
15935.968	queue	W	2855296	1024
15936.396	queue	W	2856320	1024
15936.792	queue	W	2857344	1024
15937.189	queue	W	2858368	1024
15937.586	queue	W	2859392	1024
15938.013	queue	W	2860416	1024
15938.410	queue	W	2861440	1024
15938.837	queue	W	2862464	1024
15939.234	queue	W	2863488	1024
15939.661	queue	W	2864512	1024
15950.099	queue	W	2865536	1024
15950.710	queue	W	2866560	640
15952.693	queue	W	2867200	1024
15953.090	queue	W	2868224	1024
15953.487	queue	W	2869248	1024
15953.884	queue	W	2870272	1024
15954.280	queue	W	2871296	1024
15954.677	queue	W	2872320	1024
15955.074	queue	W	2873344	1024
15955.440	queue	W	2874368	1024
15955.837	queue	W	2875392	1024
15956.234	queue	W	2876416	1024
15956.631	queue	W	2877440	1024
15957.027	queue	W	2878464	1024
15957.424	queue	W	2879488	1024
15957.851	queue	W	2880512	1024
15958.218	queue	W	2881536	1024
15958.614	queue	W	2882560	1024
15959.683	queue	R	2883584	8
15961.697	cmplt	W	2799616	1024
15994.323	cmplt	W	2800640	1024
15994.628	issue	R	2883584	8
15995.086	cmplt	R	2883584	8
16000.092	issue	W	2801664	1024
16000.336	issue	W	2802688	1024
16009.461	queue	W	2899968	1024
16009.919	queue	W	2900992	1024
16010.530	queue	W	2902016	1024
16010.957	queue	W	2903040	1024
16011.384	queue	W	2904064	1024
16011.781	queue	W	2905088	1024
16012.208	queue	W	2906112	1024
16012.635	queue	W	2907136	1024
16013.063	queue	W	2908160	1024
16013.459	queue	W	2909184	1024
16013.856	queue	W	2910208	1024
16014.100	queue	W	2911232	512
16021.364	cmplt	W	2801664	1024
16021.639	issue	W	2803712	1024
16052.403	cmplt	W	2802688	1024
16052.678	issue	W	2804736	1024
16083.473	cmplt	W	2803712	1024
16083.809	issue	W	2805760	1024
16114.635	cmplt	W	2804736	1024
16114.940	issue	W	2806784	1024
16145.735	cmplt	W	2805760	1024
16146.009	issue	W	2807808	1024
16176.652	cmplt	W	2806784	1024
16176.957	issue	W	2808832	1024
16207.447	cmplt	W	2807808	1024
16207.752	issue	W	2809856	1024
16238.547	cmplt	W	2808832	1024
16238.822	issue	W	2810880	1024
16269.678	cmplt	W	2809856	1024
16270.014	issue	W	2811904	1024
16300.656	cmplt	W	2810880	1024
16300.931	issue	W	2812928	384
16331.482	cmplt	W	2811904	1024
16331.787	issue	W	2813312	1024
16354.403	cmplt	W	2812928	384
16354.586	issue	W	1835696	8
16379.368	cmplt	W	2813312	1024
16379.704	issue	W	2621984	8
16381.047	cmplt	W	1835696	8
16381.077	issue	W	2814336	1024
16382.481	cmplt	W	2621984	8
16382.512	issue	W	2815360	1024
16407.935	cmplt	W	2814336	1024
16408.240	issue	W	2816384	1024
16440.134	cmplt	W	2815360	1024
16440.470	issue	W	2817408	640
16465.130	cmplt	W	2816384	1024
16465.405	issue	W	2818048	1024
16484.511	cmplt	W	2817408	640
16484.694	issue	W	2819072	1024
16505.692	cmplt	W	2818048	1024
16505.997	issue	W	2820096	1024
16536.762	cmplt	W	2819072	1024
16537.067	issue	W	2821120	1024
16567.862	cmplt	W	2820096	1024
16568.137	issue	W	2822144	1024
16599.115	cmplt	W	2821120	1024
16599.420	issue	W	2823168	1024
16630.124	cmplt	W	2822144	1024
16630.398	issue	W	2824192	1024
16661.102	cmplt	W	2823168	1024
16661.376	issue	W	2825216	1024
16691.927	cmplt	W	2824192	1024
16692.233	issue	W	2826240	1024
16736.212	cmplt	W	2825216	1024
16736.487	issue	W	2827264	1024
16767.435	cmplt	W	2826240	1024
16767.740	issue	W	2828288	1024
16798.413	cmplt	W	2827264	1024
16798.718	issue	W	2829312	1024
16829.574	cmplt	W	2828288	1024
16829.879	issue	W	2830336	1024
16860.552	cmplt	W	2829312	1024
16860.858	issue	W	2831360	1024
16873.371	queue	WS	1916928	8
16891.744	cmplt	W	2830336	1024
16922.967	cmplt	W	2831360	1024
16923.302	issue	WS	1916928	8
16924.828	cmplt	WS	1916928	8
16925.408	queue	WS	1916928	8
16925.469	issue	WS	1916928	8
16926.324	cmplt	WS	1916928	8
16930.169	issue	W	2832384	1024
16930.353	issue	W	2833408	1024
16941.279	queue	WS	2833408	1024
16961.850	cmplt	W	2832384	1024
16994.689	cmplt	W	2833408	1024
16995.025	issue	W	2834432	1024
16995.208	issue	W	2835456	1024
16995.208	queue	WS	1912920	8
17016.359	cmplt	W	2834432	1024
17047.398	cmplt	W	2835456	1024
17047.734	issue	WS	1912920	8
17049.107	cmplt	WS	1912920	8
17060.003	issue	W	2836480	1024
17060.186	issue	W	2837504	1024
17061.712	queue	WS	1845672	8
17061.743	queue	WS	1845680	8
17061.743	queue	WS	1845688	8
17061.773	queue	WS	1845696	8
17061.773	queue	WS	1845704	8
17061.773	queue	WS	1845712	8
17061.804	queue	WS	1845720	8
17061.804	queue	WS	1845728	8
17091.714	cmplt	W	2836480	1024
17122.570	cmplt	W	2837504	1024
17122.875	issue	WS	1845672	64
17125.225	cmplt	WS	1845672	64
17130.047	issue	W	2838528	1024
17130.230	issue	W	2839552	1024
17161.605	cmplt	W	2838528	1024
17161.911	issue	W	2840576	1024
17192.980	cmplt	W	2839552	1024
17193.255	issue	W	2841600	1024
17224.355	cmplt	W	2840576	1024
17224.660	issue	W	2842624	1024
17255.761	cmplt	W	2841600	1024
17256.035	issue	W	2843648	1024
17287.075	cmplt	W	2842624	1024
17287.380	issue	W	2844672	1024
17318.572	cmplt	W	2843648	1024
17318.877	issue	W	2845696	1024
17349.916	cmplt	W	2844672	1024
17350.221	issue	W	2846720	1024
17381.322	cmplt	W	2845696	1024
17381.627	issue	W	2847744	1024
17412.666	cmplt	W	2846720	1024
17412.971	issue	W	2848768	1024
17444.132	cmplt	W	2847744	1024
17444.438	issue	W	2849792	1024
17475.691	cmplt	W	2848768	1024
17475.996	issue	W	2850816	1024
17508.927	cmplt	W	2849792	1024
17509.232	issue	W	2851840	1024
17530.322	cmplt	W	2850816	1024
17530.627	issue	W	2852864	1024
17561.636	cmplt	W	2851840	1024
17561.941	issue	W	2853888	384
17592.858	cmplt	W	2852864	1024
17593.163	issue	W	2854272	1024
17616.176	cmplt	W	2853888	384
17616.328	issue	W	2855296	1024
17641.447	cmplt	W	2854272	1024
17641.752	issue	W	2856320	1024
17666.779	cmplt	W	2855296	1024
17667.084	issue	W	2857344	1024
17692.110	cmplt	W	2856320	1024
17692.416	issue	W	2858368	1024
17717.351	cmplt	W	2857344	1024
17717.687	issue	W	2859392	1024
17742.774	cmplt	W	2858368	1024
17743.080	issue	W	2860416	1024
17768.198	cmplt	W	2859392	1024
17768.503	issue	W	2861440	1024
17793.530	cmplt	W	2860416	1024
17793.865	issue	W	2862464	1024
17818.953	cmplt	W	2861440	1024
17819.258	issue	W	2863488	1024
17844.377	cmplt	W	2862464	1024
17844.682	issue	W	2864512	1024
17869.800	cmplt	W	2863488	1024
17870.166	issue	W	2865536	1024
17908.347	cmplt	W	2864512	1024
17908.653	issue	W	2866560	640
17933.801	cmplt	W	2865536	1024
17934.107	issue	W	2867200	1024
17953.456	cmplt	W	2866560	640
17953.701	issue	W	2868224	1024
17983.488	cmplt	W	2867200	1024
17983.794	issue	W	2869248	1024
18014.345	cmplt	W	2868224	1024
18014.650	issue	W	2870272	1024
18038.059	cmplt	W	2869248	1024
18038.395	issue	W	2871296	1024
18067.206	cmplt	W	2870272	1024
18067.511	issue	W	2872320	1024
18096.597	cmplt	W	2871296	1024
18096.902	issue	W	2873344	1024
18125.927	cmplt	W	2872320	1024
18126.263	issue	W	2874368	1024
18155.318	cmplt	W	2873344	1024
18155.623	issue	W	2875392	1024
18184.648	cmplt	W	2874368	1024
18184.953	issue	W	2876416	1024
18213.948	cmplt	W	2875392	1024
18214.284	issue	W	2877440	1024
18243.247	cmplt	W	2876416	1024
18243.583	issue	W	2878464	1024
18272.547	cmplt	W	2877440	1024
18272.852	issue	W	2879488	1024
18301.908	cmplt	W	2878464	1024
18302.243	issue	W	2880512	1024
18331.360	cmplt	W	2879488	1024
18331.665	issue	W	2881536	1024
18360.781	cmplt	W	2880512	1024
18361.087	issue	W	2882560	1024
18390.111	cmplt	W	2881536	1024
18390.447	issue	W	2899968	1024
18419.747	cmplt	W	2882560	1024
18420.082	issue	W	2900992	1024
18449.138	cmplt	W	2899968	1024
18449.474	issue	W	2902016	1024
18480.085	cmplt	W	2900992	1024
18480.421	issue	W	2903040	1024
18503.922	cmplt	W	2902016	1024
18504.258	issue	W	2904064	1024
18532.916	cmplt	W	2903040	1024
18533.252	issue	W	2905088	1024
18562.063	cmplt	W	2904064	1024
18562.368	issue	W	2906112	1024
18591.149	cmplt	W	2905088	1024
18591.454	issue	W	2907136	1024
18620.357	cmplt	W	2906112	1024
18620.662	issue	W	2908160	1024
18649.321	cmplt	W	2907136	1024
18649.657	issue	W	2909184	1024
18678.529	cmplt	W	2908160	1024
18678.834	issue	W	2910208	1024
18707.615	cmplt	W	2909184	1024
18707.920	issue	W	2911232	512
18737.006	cmplt	W	2910208	1024
18758.340	cmplt	W	2911232	512
18758.584	queue	WS	1845736	8
18759.103	queue	W	2911744	1024
18759.530	queue	W	2912768	1024
18760.018	queue	W	2913792	1024
18760.507	queue	W	2914816	1024
18761.697	queue	W	2915840	512
18763.589	queue	W	2916352	1024
18764.047	queue	W	2917376	1024
18764.474	queue	W	2918400	1024
18764.963	queue	W	2919424	1024
18765.390	queue	W	2920448	1024
18765.848	queue	W	2921472	1024
18766.275	queue	W	2922496	1024
18766.733	queue	W	2923520	1024
18767.191	queue	W	2924544	1024
18767.679	queue	W	2925568	1024
18768.137	queue	W	2926592	1024
18768.595	queue	W	2927616	1024
18769.052	queue	W	2928640	1024
18769.510	queue	W	2929664	1024
18769.998	issue	WS	1845736	8
18769.998	queue	W	2930688	1024
18770.090	issue	W	2911744	1024
18770.456	queue	W	2931712	1024
18771.647	cmplt	WS	1845736	8
18771.708	issue	W	2912768	1024
18772.867	queue	W	2932736	1024
18773.295	queue	W	2933760	1024
18773.691	queue	W	2934784	1024
18774.088	queue	W	2935808	1024
18774.485	queue	W	2936832	1024
18774.882	queue	W	2937856	1024
18775.278	queue	W	2938880	1024
18775.736	queue	W	2939904	1024
18776.133	queue	W	2940928	1024
18776.530	queue	W	2941952	1024
18776.927	queue	W	2942976	1024
18777.323	queue	W	2944000	1024
18777.751	queue	W	2945024	1024
18778.147	queue	W	2946048	1024
18778.544	queue	W	2947072	1024
18778.941	queue	W	2948096	1024
18780.528	queue	W	2949120	1024
18782.725	queue	W	2950144	1024
18784.953	queue	W	2951168	1024
18788.189	queue	WS	1845744	8
18788.219	queue	WS	1845752	8
18788.219	queue	WS	1845760	8
18788.219	queue	WS	1845768	8
18788.250	queue	WS	1845776	8
18788.311	queue	W	2952192	888
18790.050	queue	W	2953080	1024
18790.722	queue	W	2954104	1024
18791.149	queue	W	2955128	1024
18791.607	queue	W	2956152	1024
18792.034	queue	W	2957176	1024
18792.461	queue	W	2958200	1024
18792.889	queue	W	2959224	1024
18792.980	queue	W	2960248	96
18793.530	queue	W	2960344	928
18793.865	queue	W	2961272	488
18794.079	queue	W	2961760	104
18794.171	queue	W	2961864	32
18794.262	queue	W	2961896	24
18794.384	queue	W	2961920	24
18794.506	queue	W	2961944	24
18794.659	queue	W	2961968	24
18794.781	queue	W	2961992	40
18794.903	queue	W	2962032	32
18795.025	queue	W	2962064	24
18795.117	queue	W	2962088	32
18795.239	queue	W	2962120	24
18795.361	queue	W	2962144	32
18795.605	queue	W	2962176	24
18795.758	queue	W	2962200	88
18795.880	queue	W	2962288	32
18796.032	queue	W	2962320	40
18796.154	queue	W	2962360	32
18796.277	queue	W	2962392	32
18796.399	queue	W	2962424	16
18796.551	queue	W	2962440	32
18796.673	queue	W	2962472	48
18796.765	queue	W	2962520	24
18796.856	queue	W	2962544	24
18796.978	queue	W	2962568	24
18797.070	queue	W	2962592	24
18797.192	queue	W	2962616	24
18797.314	queue	W	2962640	24
18797.436	queue	W	2962664	24
18797.528	queue	W	2962688	24
18797.650	queue	W	2962712	24
18797.772	queue	W	2962736	24
18797.864	queue	W	2962760	24
18797.986	queue	W	2962784	16
18798.321	queue	W	2962800	32
18798.443	queue	W	2962832	112
18798.566	queue	W	2962944	32
18798.688	queue	W	2962976	24
18798.779	queue	W	2963000	24
18798.901	queue	W	2963024	24
18799.023	queue	W	2963048	24
18799.115	queue	W	2963072	24
18799.237	queue	W	2963096	24
18799.359	queue	W	2963120	24
18799.451	queue	W	2963144	24
18799.573	queue	W	2963168	32
18799.725	queue	W	2963200	24
18799.847	queue	W	2963224	32
18799.939	queue	W	2963256	32
18800.702	cmplt	W	2911744	1024
18801.099	queue	W	2963288	24
18801.221	queue	W	2963312	32
18801.373	queue	W	2963344	32
18801.495	queue	W	2963376	24
18801.618	queue	W	2963400	24
18801.740	queue	W	2963424	24
18801.862	queue	W	2963448	16
18802.167	queue	W	2963464	24
18802.320	queue	W	2963488	88
18802.472	queue	W	2963576	32
18802.564	queue	W	2963608	24
18802.686	queue	W	2963632	32
18802.808	queue	W	2963664	24
18802.960	queue	W	2963688	24
18803.083	queue	W	2963712	24
18803.235	queue	W	2963736	24
18803.357	queue	W	2963760	32
18803.449	queue	W	2963792	24
18803.571	queue	W	2963816	32
18803.693	queue	W	2963848	24
18803.815	queue	W	2963872	32
18803.937	queue	W	2963904	24
18804.059	queue	W	2963928	24
18804.120	queue	W	2963952	16
18804.242	queue	W	2963968	16
18804.364	queue	W	2963984	32
18804.486	queue	W	2964016	24
18804.609	queue	W	2964040	24
18804.914	queue	W	2964064	24
18805.097	queue	W	2964088	88
18805.188	queue	W	2964176	40
18805.341	queue	W	2964216	32
18805.433	queue	W	2964248	24
18805.585	queue	W	2964272	24
18805.707	queue	W	2964296	32
18805.829	queue	W	2964328	24
18805.982	queue	W	2964352	32
18806.104	queue	W	2964384	24
18806.226	queue	W	2964408	16
18806.348	queue	W	2964424	24
18806.470	queue	W	2964448	24
18806.592	queue	W	2964472	24
18806.745	queue	W	2964496	24
18806.867	queue	W	2964520	24
18806.989	queue	W	2964544	24
18807.111	queue	W	2964568	24
18807.233	queue	W	2964592	24
18807.386	queue	W	2964616	24
18807.508	queue	W	2964640	32
18807.813	queue	W	2964672	24
18807.966	queue	W	2964696	88
18808.088	queue	W	2964784	32
18808.179	queue	W	2964816	32
18808.302	queue	W	2964848	32
18808.424	queue	W	2964880	24
18808.546	queue	W	2964904	24
18808.668	queue	W	2964928	24
18808.790	queue	W	2964952	24
18808.881	queue	W	2964976	24
18809.034	queue	W	2965000	32
18809.156	queue	W	2965032	24
18809.278	queue	W	2965056	24
18809.431	queue	W	2965080	24
18809.583	queue	W	2965104	32
18809.705	queue	W	2965136	32
18809.797	queue	W	2965168	32
18809.950	queue	W	2965200	32
18810.011	queue	W	2965232	16
18810.133	queue	W	2965248	16
18810.224	queue	W	2965264	24
18810.530	queue	W	2965288	32
18810.682	queue	W	2965320	88
18810.835	queue	W	2965408	48
18810.957	queue	W	2965456	32
18811.079	queue	W	2965488	16
18811.231	queue	W	2965504	40
18811.323	queue	W	2965544	24
18811.445	queue	W	2965568	24
18811.537	queue	W	2965592	24
18811.659	queue	W	2965616	24
18811.781	queue	W	2965640	24
18811.872	queue	W	2965664	24
18811.995	queue	W	2965688	24
18812.086	queue	W	2965712	24
18812.208	queue	W	2965736	24
18812.330	queue	W	2965760	24
18812.422	queue	W	2965784	24
18812.544	queue	W	2965808	24
18812.666	queue	W	2965832	24
18812.788	queue	W	2965856	32
18812.880	queue	W	2965888	24
18813.185	queue	W	2965912	24
18813.337	queue	W	2965936	88
18813.459	queue	W	2966024	40
18813.612	queue	W	2966064	24
18813.734	queue	W	2966088	40
18813.856	queue	W	2966128	32
18813.978	queue	W	2966160	32
18814.070	queue	W	2966192	24
18814.192	queue	W	2966216	24
18814.314	queue	W	2966240	24
18814.406	queue	W	2966264	16
18814.528	queue	W	2966280	24
18814.619	queue	W	2966304	24
18814.741	queue	W	2966328	24
18814.894	queue	W	2966352	32
18814.986	queue	W	2966384	24
18815.108	queue	W	2966408	24
18815.230	queue	W	2966432	24
18815.321	queue	W	2966456	24
18815.443	queue	W	2966480	24
18815.504	queue	W	2966504	16
18815.810	queue	W	2966520	24
18815.962	queue	W	2966544	88
18816.084	queue	W	2966632	40
18816.206	queue	W	2966672	32
18816.328	queue	W	2966704	32
18816.389	queue	W	2966736	24
18816.512	queue	W	2966760	24
18816.634	queue	W	2966784	24
18816.756	queue	W	2966808	24
18816.847	queue	W	2966832	24
18816.969	queue	W	2966856	24
18817.061	queue	W	2966880	24
18817.183	queue	W	2966904	16
18817.305	queue	W	2966920	32
18817.427	queue	W	2966952	24
18817.549	queue	W	2966976	32
18817.671	queue	W	2967008	32
18817.793	queue	W	2967040	24
18817.915	queue	W	2967064	24
18818.038	queue	W	2967088	24
18818.160	queue	W	2967112	32
18818.434	queue	W	2967144	24
18818.617	queue	W	2967168	88
18818.740	queue	W	2967256	40
18818.831	queue	W	2967296	24
18818.953	queue	W	2967320	32
18819.075	queue	W	2967352	24
18819.228	queue	W	2967376	32
18819.350	queue	W	2967408	32
18819.472	queue	W	2967440	32
18819.564	queue	W	2967472	24
18819.686	queue	W	2967496	24
18819.808	queue	W	2967520	24
18819.930	queue	W	2967544	16
18820.052	queue	W	2967560	32
18820.174	queue	W	2967592	24
18820.296	queue	W	2967616	32
18820.418	queue	W	2967648	24
18820.540	queue	W	2967672	24
18820.662	queue	W	2967696	24
18820.784	queue	W	2967720	24
18820.876	queue	W	2967744	16
18821.029	queue	W	2967760	32
18821.120	queue	W	2967792	16
18821.242	queue	W	2967808	32
18821.364	queue	W	2967840	24
18821.517	queue	W	2967864	24
18821.639	queue	W	2967888	40
18821.761	queue	W	2967928	24
18821.883	queue	W	2967952	32
18822.005	queue	W	2967984	24
18822.127	queue	W	2968008	24
18822.249	queue	W	2968032	24
18822.341	queue	W	2968056	16
18822.463	queue	W	2968072	32
18822.585	queue	W	2968104	24
18822.707	queue	W	2968128	32
18822.829	queue	W	2968160	24
18822.951	queue	W	2968184	32
18823.073	queue	W	2968216	24
18823.195	queue	W	2968240	24
18823.318	queue	W	2968264	32
18823.440	queue	W	2968296	24
18823.562	queue	W	2968320	24
18823.684	queue	W	2968344	24
18823.806	queue	W	2968368	24
18823.958	queue	W	2968392	32
18824.050	queue	W	2968424	32
18824.172	queue	W	2968456	24
18824.325	queue	W	2968480	24
18824.447	queue	W	2968504	24
18824.569	queue	W	2968528	24
18824.660	queue	W	2968552	24
18824.783	queue	W	2968576	32
18824.905	queue	W	2968608	24
18825.027	queue	W	2968632	24
18825.149	queue	W	2968656	24
18825.271	queue	W	2968680	24
18825.423	queue	W	2968704	24
18825.546	queue	W	2968728	32
18825.637	queue	W	2968760	24
18825.759	queue	W	2968784	24
18825.881	queue	W	2968808	24
18826.003	queue	W	2968832	24
18826.125	queue	W	2968856	24
18826.248	queue	W	2968880	24
18826.370	queue	W	2968904	32
18826.492	queue	W	2968936	24
18826.614	queue	W	2968960	32
18826.736	queue	W	2968992	16
18826.858	queue	W	2969008	32
18826.980	queue	W	2969040	24
18827.072	queue	W	2969064	24
18827.194	queue	W	2969088	32
18827.346	queue	W	2969120	24
18827.438	queue	W	2969144	32
18827.560	queue	W	2969176	24
18827.682	queue	W	2969200	24
18827.804	queue	W	2969224	24
18827.926	queue	W	2969248	24
18828.048	queue	W	2969272	24
18828.170	queue	W	2969296	24
18828.262	queue	W	2969320	24
18828.384	queue	W	2969344	24
18828.506	queue	W	2969368	24
18828.628	queue	W	2969392	24
18828.781	queue	W	2969416	32
18828.903	queue	W	2969448	16
18828.964	queue	W	2969464	16
18829.422	cmplt	W	2912768	1024
18829.818	issue	WS	1845744	40
18834.030	cmplt	WS	1845744	40
18840.073	issue	W	2913792	1024
18840.287	issue	W	2914816	1024
18869.403	cmplt	W	2913792	1024
18869.739	issue	W	2915840	512
18898.520	cmplt	W	2914816	1024
18898.886	issue	W	2916352	1024
18919.640	cmplt	W	2915840	512
18919.854	issue	W	2917376	1024
18948.573	cmplt	W	2916352	1024
18948.909	issue	W	2918400	1024
18957.760	queue	W	2969480	1024
18958.187	queue	W	2970504	1024
18958.614	queue	W	2971528	1024
18959.011	queue	W	2972552	1024
18959.408	queue	W	2973576	1024
18959.866	queue	W	2974600	1024
18960.324	queue	W	2975624	1024
18960.751	queue	W	2976648	1024
18979.094	cmplt	W	2917376	1024
18979.460	issue	W	2919424	1024
19002.503	cmplt	W	2918400	1024
19002.869	issue	W	2920448	1024
19031.650	cmplt	W	2919424	1024
19031.985	issue	W	2921472	1024
19067.938	cmplt	W	2920448	1024
19068.274	issue	W	2922496	1024
19097.329	cmplt	W	2921472	1024
19097.696	issue	W	2923520	1024
19126.202	cmplt	W	2922496	1024
19126.568	issue	W	2924544	1024
19155.074	cmplt	W	2923520	1024
19155.440	issue	W	2925568	1024
19183.824	cmplt	W	2924544	1024
19184.221	issue	W	2926592	1024
19213.032	cmplt	W	2925568	1024
19213.429	issue	W	2927616	1024
19235.678	queue	W	1835696	8
19235.709	queue	W	2621960	8
19235.739	queue	W	2621976	8
19241.508	queue	W	2977672	1024
19241.935	queue	W	2978696	1024
19242.332	queue	W	2979720	1024
19242.362	cmplt	W	2926592	1024
19242.637	issue	W	2928640	1024
19242.973	queue	W	2980744	1024
19243.827	queue	W	2981768	120
19260.674	queue	W	2981888	1024
19261.163	queue	W	2982912	1024
19261.621	queue	W	2983936	1024
19262.048	queue	W	2984960	1024
19262.475	queue	W	2985984	1024
19262.902	queue	W	2987008	1024
19263.360	queue	W	2988032	1024
19263.757	queue	W	2989056	1024
19264.184	queue	W	2990080	1024
19264.612	queue	W	2991104	1024
19265.069	queue	W	2992128	1024
19265.497	queue	W	2993152	1024
19265.924	queue	W	2994176	1024
19266.351	queue	W	2995200	1024
19266.809	queue	W	2996224	1024
19267.206	queue	W	2997248	1024
19269.281	queue	W	2998272	1024
19269.678	queue	W	2999296	1024
19270.136	queue	W	3000320	1024
19270.533	queue	W	3001344	1024
19270.929	queue	W	3002368	1024
19271.326	queue	W	3003392	1024
19271.448	cmplt	W	2927616	1024
19271.753	queue	W	3004416	1024
19271.784	issue	W	2929664	1024
19272.211	queue	W	3005440	1024
19272.638	queue	W	3006464	1024
19273.096	queue	W	3007488	1024
19273.524	queue	W	3008512	1024
19273.951	queue	W	3009536	1024
19274.378	queue	W	3010560	1024
19274.836	queue	W	3011584	1024
19275.263	queue	W	3012608	1024
19275.721	queue	W	3013632	1024
19276.789	queue	W	3014656	1024
19277.217	queue	W	3015680	1024
19277.644	queue	W	3016704	1024
19278.071	queue	W	3017728	1024
19278.498	queue	W	3018752	1024
19278.651	queue	W	3019776	264
19300.443	cmplt	W	2928640	1024
19300.748	issue	W	2930688	1024
19329.498	cmplt	W	2929664	1024
19329.803	issue	W	2931712	1024
19359.011	cmplt	W	2930688	1024
19359.347	issue	W	2932736	1024
19388.433	cmplt	W	2931712	1024
19388.738	issue	W	2933760	1024
19417.519	cmplt	W	2932736	1024
19417.824	issue	W	2934784	1024
19448.344	cmplt	W	2933760	1024
19448.649	issue	W	2935808	1024
19472.211	cmplt	W	2934784	1024
19472.516	issue	W	2936832	1024
19508.164	cmplt	W	2935808	1024
19510.148	issue	W	2937856	1024
19537.281	cmplt	W	2936832	1024
19537.586	issue	W	2938880	1024
19566.336	cmplt	W	2937856	1024
19566.641	issue	W	2939904	1024
19595.452	cmplt	W	2938880	1024
19595.788	issue	W	2940928	1024
19624.935	cmplt	W	2939904	1024
19625.301	issue	W	2941952	1024
19654.418	cmplt	W	2940928	1024
19654.784	issue	W	2942976	1024
19683.534	cmplt	W	2941952	1024
19683.931	issue	W	2944000	1024
19712.651	cmplt	W	2942976	1024
19713.017	issue	W	2945024	1024
19741.981	cmplt	W	2944000	1024
19742.347	issue	W	2946048	1024
19771.250	cmplt	W	2945024	1024
19771.616	issue	W	2947072	1024
19800.885	cmplt	W	2946048	1024
19801.221	issue	W	2948096	1024
19830.459	cmplt	W	2947072	1024
19830.795	issue	W	2949120	1024
19859.637	cmplt	W	2948096	1024
19860.125	issue	W	2950144	1024
19889.181	cmplt	W	2949120	1024
19889.608	issue	W	2951168	1024
19918.175	cmplt	W	2950144	1024
19918.602	issue	W	2952192	888
19947.078	cmplt	W	2951168	1024
19947.474	issue	W	2953080	1024
19975.736	cmplt	W	2952192	888
19976.103	issue	W	2954104	1024
20007.661	cmplt	W	2953080	1024
20007.996	issue	W	2955128	1024
20034.396	cmplt	W	2954104	1024
20034.763	issue	W	2956152	1024
20060.919	cmplt	W	2955128	1024
20061.254	issue	W	2957176	1024
20090.157	cmplt	W	2956152	1024
20090.646	issue	W	2958200	1024
20116.466	cmplt	W	2957176	1024
20116.832	issue	W	2959224	1024
20142.805	cmplt	W	2958200	1024
20143.141	issue	W	2960248	1024
20169.602	cmplt	W	2959224	1024
20169.907	issue	W	2961272	1016
20169.907	queue	WS	1845784	8
20209.278	cmplt	W	2960248	1024
20248.863	cmplt	W	2961272	1016
20249.199	issue	WS	1845784	8
20249.260	issue	W	2962288	1024
20250.786	cmplt	WS	1845784	8
20250.816	issue	W	2963312	1016
20265.161	queue	W	2963312	1016
20279.261	cmplt	W	2962288	1024
20279.658	issue	W	2964328	992
20308.042	cmplt	W	2963312	1016
20308.469	issue	W	2965320	1008
20339.631	cmplt	W	2964328	992
20340.058	issue	W	2966328	1024
20369.083	cmplt	W	2965320	1008
20369.480	issue	W	2967352	1016
20398.504	cmplt	W	2966328	1024
20398.871	issue	W	2968368	1024
20403.510	queue	W	3020040	1024
20403.937	queue	W	3021064	1024
20404.364	queue	W	3022088	1024
20404.761	queue	W	3023112	1024
20405.188	queue	W	3024136	1024
20405.585	queue	W	3025160	1024
20406.013	queue	W	3026184	1024
20406.409	queue	W	3027208	1024
20406.837	queue	W	3028232	1024
20407.264	queue	W	3029256	1024
20407.966	queue	W	3030280	760
20409.950	queue	W	3031040	1024
20410.438	queue	W	3032064	1024
20411.018	queue	W	3033088	1024
20411.445	queue	W	3034112	1024
20411.872	queue	W	3035136	1024
20412.330	queue	W	3036160	1024
20412.758	queue	W	3037184	1024
20413.185	queue	W	3038208	1024
20413.612	queue	W	3039232	1024
20414.100	queue	W	3040256	1024
20414.589	queue	W	3041280	1024
20415.016	queue	W	3042304	1024
20415.413	queue	W	3043328	1024
20415.871	queue	W	3044352	1024
20416.267	queue	W	3045376	1024
20416.695	queue	W	3046400	1024
20418.770	queue	W	3047424	1024
20419.197	queue	W	3048448	1024
20419.594	queue	W	3049472	1024
20419.808	queue	W	3049472	1024
20420.632	queue	W	3050496	1024
20421.059	queue	W	3051520	1024
20421.486	queue	W	3052544	1024
20421.914	queue	W	3053568	1024
20422.463	queue	W	3054592	1024
20422.860	queue	W	3055616	1024
20423.318	queue	W	3056640	1024
20423.714	queue	W	3057664	1024
20424.142	queue	W	3058688	1024
20424.538	queue	W	3059712	1024
20424.966	queue	W	3060736	1024
20425.393	queue	W	3061760	1024
20425.790	queue	W	3062784	1024
20426.431	queue	W	3063808	1024
20426.827	queue	W	3064832	912
20427.621	cmplt	W	2967352	1016
20428.018	issue	W	2969392	88
20455.059	cmplt	W	2968368	1024
20455.486	issue	W	2969480	1024
20457.958	cmplt	W	2969392	88
20458.050	issue	W	2970504	1024
20487.380	cmplt	W	2969480	1024
20487.655	issue	W	2971528	1024
20517.046	cmplt	W	2970504	1024
20517.351	issue	W	2972552	1024
20546.956	cmplt	W	2971528	1024
20547.230	issue	W	2973576	1024
20576.438	cmplt	W	2972552	1024
20576.713	issue	W	2974600	1024
20605.951	cmplt	W	2973576	1024
20606.257	issue	W	2975624	1024
20635.404	cmplt	W	2974600	1024
20635.678	issue	W	2976648	1024
20665.192	cmplt	W	2975624	1024
20665.466	issue	W	2977672	1024
20695.040	cmplt	W	2976648	1024
20695.315	issue	W	1835696	8
20731.329	cmplt	W	2977672	1024
20731.604	issue	W	2621960	8
20732.977	cmplt	W	1835696	8
20733.038	issue	W	2621976	8
20734.473	cmplt	W	2621960	8
20734.534	issue	W	2978696	1024
20735.388	cmplt	W	2621976	8
20735.449	issue	W	2979720	1024
20765.390	cmplt	W	2978696	1024
20765.695	issue	W	2980744	1024
20794.964	cmplt	W	2979720	1024
20795.269	issue	W	2981768	120
20824.355	cmplt	W	2980744	1024
20824.660	issue	W	2981888	1024
20833.633	cmplt	W	2981768	120
20833.725	issue	W	2982912	1024
20859.393	cmplt	W	2981888	1024
20859.698	issue	W	2983936	1024
20884.938	cmplt	W	2982912	1024
20885.274	issue	W	2984960	1024
20910.636	cmplt	W	2983936	1024
20910.942	issue	W	2985984	1024
20936.151	cmplt	W	2984960	1024
20936.487	issue	W	2987008	1024
20961.788	cmplt	W	2985984	1024
20962.124	issue	W	2988032	1024
20987.426	cmplt	W	2987008	1024
20987.731	issue	W	2989056	1024
21013.063	cmplt	W	2988032	1024
21013.368	issue	W	2990080	1024
21038.700	cmplt	W	2989056	1024
21039.005	issue	W	2991104	1024
21064.306	cmplt	W	2990080	1024
21064.612	issue	W	2992128	1024
21090.249	cmplt	W	2991104	1024
21090.523	issue	W	2993152	1024
21115.916	cmplt	W	2992128	1024
21116.252	issue	W	2994176	1024
21141.584	cmplt	W	2993152	1024
21141.889	issue	W	2995200	1024
21180.925	cmplt	W	2994176	1024
21181.230	issue	W	2996224	1024
21206.501	cmplt	W	2995200	1024
21206.806	issue	W	2997248	1024
21232.199	cmplt	W	2996224	1024
21232.504	issue	W	2998272	1024
21257.928	cmplt	W	2997248	1024
21258.233	issue	W	2999296	1024
21283.473	cmplt	W	2998272	1024
21283.748	issue	W	3000320	1024
21309.141	cmplt	W	2999296	1024
21309.446	issue	W	3001344	1024
21334.717	cmplt	W	3000320	1024
21335.022	issue	W	3002368	1024
21360.324	cmplt	W	3001344	1024
21360.598	issue	W	3003392	1024
21398.871	cmplt	W	3002368	1024
21399.176	issue	W	3004416	1024
21424.569	cmplt	W	3003392	1024
21424.996	issue	W	3005440	1024
21450.237	cmplt	W	3004416	1024
21450.572	issue	W	3006464	1024
21476.209	cmplt	W	3005440	1024
21476.576	issue	W	3007488	1024
21502.243	cmplt	W	3006464	1024
21502.518	issue	W	3008512	1024
21528.094	cmplt	W	3007488	1024
21528.369	issue	W	3009536	1024
21554.006	cmplt	W	3008512	1024
21554.311	issue	W	3010560	1024
21580.040	cmplt	W	3009536	1024
21580.375	issue	W	3011584	1024
21619.716	cmplt	W	3010560	1024
21619.991	issue	W	3012608	1024
21645.384	cmplt	W	3011584	1024
21645.658	issue	W	3013632	1024
21671.082	cmplt	W	3012608	1024
21671.387	issue	W	3014656	1024
21696.780	cmplt	W	3013632	1024
21697.085	issue	W	3015680	1024
21722.417	cmplt	W	3014656	1024
21722.722	issue	W	3016704	1024
21747.963	cmplt	W	3015680	1024
21748.268	issue	W	3017728	1024
21773.508	cmplt	W	3016704	1024
21773.814	issue	W	3018752	1024
21799.451	cmplt	W	3017728	1024
21799.756	issue	W	3019776	264
21825.362	cmplt	W	3018752	1024
21825.668	issue	W	3020040	1024
21837.235	cmplt	W	3019776	264
21837.357	issue	W	3021064	1024
21863.238	cmplt	W	3020040	1024
21863.513	issue	W	3022088	1024
21889.791	cmplt	W	3021064	1024
21890.127	issue	W	3023112	1024
21916.069	cmplt	W	3022088	1024
21916.374	issue	W	3024136	1024
21941.950	cmplt	W	3023112	1024
21942.225	issue	W	3025160	1024
21967.801	cmplt	W	3024136	1024
21968.106	issue	W	3026184	1024
21993.804	cmplt	W	3025160	1024
21994.079	issue	W	3027208	1024
22019.777	cmplt	W	3026184	1024
22020.082	issue	W	3028232	1024
22053.960	cmplt	W	3027208	1024
22054.296	issue	W	3029256	1024
22079.750	cmplt	W	3028232	1024
22080.085	issue	W	3030280	760
22106.058	cmplt	W	3029256	1024
22106.333	issue	W	3031040	1024
22127.911	cmplt	W	3030280	760
22128.155	issue	W	3032064	1024
22149.580	cmplt	W	3031040	1024
22149.855	issue	W	3033088	1024
22180.497	cmplt	W	3032064	1024
22180.803	issue	W	3034112	1024
22211.170	cmplt	W	3033088	1024
22211.445	issue	W	3035136	1024
22242.179	cmplt	W	3034112	1024
22242.454	issue	W	3036160	1024
22272.974	cmplt	W	3035136	1024
22273.279	issue	W	3037184	1024
22303.708	cmplt	W	3036160	1024
22304.013	issue	W	3038208	1024
22334.686	cmplt	W	3037184	1024
22334.961	issue	W	3039232	1024
22365.604	cmplt	W	3038208	1024
22365.909	issue	W	3040256	1024
22396.551	cmplt	W	3039232	1024
22396.856	issue	W	3041280	1024
22427.499	cmplt	W	3040256	1024
22427.804	issue	W	3042304	1024
22458.477	cmplt	W	3041280	1024
22458.782	issue	W	3043328	1024
22489.455	cmplt	W	3042304	1024
22489.760	issue	W	3044352	1024
22520.464	cmplt	W	3043328	1024
22520.769	issue	W	3045376	1024
22551.656	cmplt	W	3044352	1024
22551.961	issue	W	3046400	1024
22596.154	cmplt	W	3045376	1024
22596.490	issue	W	3047424	1024
22612.391	queue	WS	1916928	8
22628.872	cmplt	W	3046400	1024
22649.840	cmplt	W	3047424	1024
22650.206	issue	WS	1916928	8
22651.732	cmplt	WS	1916928	8
22652.312	queue	WS	1916928	8
22652.342	issue	WS	1916928	8
22653.197	cmplt	WS	1916928	8
22660.034	issue	W	3048448	1024
22660.461	issue	W	3049472	1024
22667.969	queue	WS	3049472	1024
22692.049	cmplt	W	3048448	1024
22722.783	cmplt	W	3049472	1024
22723.089	issue	W	3050496	1024
22723.241	issue	W	3051520	1024
22723.272	queue	WS	1912920	8
22754.219	cmplt	W	3050496	1024
22785.381	cmplt	W	3051520	1024
22785.686	issue	WS	1912920	8
22786.998	cmplt	WS	1912920	8
22787.853	queue	WS	1845792	8
22787.853	queue	WS	1845800	8
22787.883	queue	WS	1845808	8
22787.883	queue	WS	1845816	8
22787.914	queue	WS	1845824	8
22787.914	queue	WS	1845832	8
22787.914	queue	WS	1845840	8
22788.005	issue	WS	1845792	56
22794.689	cmplt	WS	1845792	56
22800.031	issue	W	3052544	1024
22800.214	issue	W	3053568	1024
22831.924	cmplt	W	3052544	1024
22832.291	issue	W	3054592	1024
22863.421	cmplt	W	3053568	1024
22863.757	issue	W	3055616	1024
22894.857	cmplt	W	3054592	1024
22895.193	issue	W	3056640	1024
22926.629	cmplt	W	3055616	1024
22926.965	issue	W	3057664	1024
22958.340	cmplt	W	3056640	1024
22958.675	issue	W	3058688	1024
22989.654	cmplt	W	3057664	1024
22990.020	issue	W	3059712	1024
23020.967	cmplt	W	3058688	1024
23021.303	issue	W	3060736	1024
23052.281	cmplt	W	3059712	1024
23052.587	issue	W	3061760	1024
23083.412	cmplt	W	3060736	1024
23083.748	issue	W	3062784	1024
23114.635	cmplt	W	3061760	1024
23114.940	issue	W	3063808	1024
23147.352	cmplt	W	3062784	1024
23147.658	issue	W	3064832	912
23168.350	cmplt	W	3063808	1024
23204.456	cmplt	W	3064832	912
23204.792	queue	WS	1845848	8
23204.883	issue	WS	1845848	8
23206.257	cmplt	WS	1845848	8
23206.501	queue	WS	1845856	8
23206.531	queue	WS	1845864	8
23206.623	issue	WS	1845856	16
23207.508	cmplt	WS	1845856	16
23207.569	queue	WS	1845872	8
23207.630	issue	WS	1845872	8
23208.515	cmplt	WS	1845872	8
23218.740	queue	R	1979888	72
23218.831	issue	R	1979888	72
23220.052	cmplt	R	1979888	72
23230.673	queue	WS	1979960	72
23230.765	issue	WS	1979960	72
23231.070	queue	RM	2626112	8
23237.387	cmplt	WS	1979960	72
23237.479	issue	RM	2626112	8
23237.540	queue	WS	1845880	8
23237.540	queue	WS	1845888	8
23237.571	queue	WS	1845896	8
23237.571	queue	WS	1845904	8
23237.571	queue	WS	1845912	8
23237.601	queue	WS	1845920	8
23237.601	queue	WS	1845928	8
23237.906	cmplt	RM	2626112	8
23240.043	issue	WS	1845880	56
23243.858	cmplt	WS	1845880	56
23243.980	queue	WS	1845936	8
23244.010	issue	WS	1845936	8
23244.957	cmplt	WS	1845936	8
25420.082	queue	W	1835696	8
25420.113	queue	W	1835704	8
25420.143	queue	W	2883584	8
25420.266	issue	W	1835696	16
25423.989	issue	W	2883584	8
25424.905	cmplt	W	1835696	16
25426.400	cmplt	W	2883584	8
25427.224	queue	W	3065744	1024
25427.316	issue	W	3065744	1024
25427.682	queue	W	3066768	1024
25427.774	queue	W	3067792	112
25452.800	cmplt	W	3065744	1024
25453.136	issue	W	3066768	1024
25453.350	issue	W	3067792	112
25478.834	cmplt	W	3066768	1024
25485.182	cmplt	W	3067792	112
26893.972	queue	WS	1916928	8
26894.094	issue	WS	1916928	8
26899.588	cmplt	WS	1916928	8
26900.382	queue	WS	1916928	8
26900.443	issue	WS	1916928	8
26901.358	cmplt	WS	1916928	8
26917.534	queue	WS	1912920	8
26917.656	issue	WS	1912920	8
26918.511	cmplt	WS	1912920	8
26918.694	queue	WS	1845944	8
26918.724	queue	WS	1845952	8
26918.724	queue	WS	1845960	8
26918.755	queue	WS	1845968	8
26918.755	queue	WS	1845976	8
26918.755	queue	WS	1845984	8
26918.785	queue	WS	1845992	8
26918.785	queue	WS	1846000	8
26918.785	queue	WS	1846008	8
26918.816	queue	WS	1846016	8
26918.816	queue	WS	1846024	8
26920.037	issue	WS	1845944	88
26922.875	cmplt	WS	1845944	88
26922.997	queue	WS	1846032	8
26923.058	issue	WS	1846032	8
26923.882	cmplt	WS	1846032	8
26924.126	queue	WS	1846040	8
26924.157	queue	WS	1846048	8
26924.187	issue	WS	1846040	16
26925.347	cmplt	WS	1846040	16
26925.408	queue	WS	1846056	8
26925.469	issue	WS	1846056	8
26926.415	cmplt	WS	1846056	8
26950.343	queue	WS	1980032	72
26950.465	issue	WS	1980032	72
26953.151	cmplt	WS	1980032	72
26953.395	queue	WS	1846064	8
26953.426	queue	WS	1846072	8
26953.426	queue	WS	1846080	8
26953.426	queue	WS	1846088	8
26953.456	queue	WS	1846096	8
26953.456	queue	WS	1846104	8
26953.487	queue	WS	1846112	8
26960.049	issue	WS	1846064	56
26962.307	cmplt	WS	1846064	56
26962.460	queue	WS	1846120	8
26962.521	issue	WS	1846120	8
26963.406	cmplt	WS	1846120	8
31900.076	queue	W	2883584	8
31900.168	queue	W	1835696	8
31900.198	queue	W	1835704	8
31900.320	issue	W	1835696	16
31904.044	issue	W	2883584	8
31904.960	cmplt	W	1835696	16
31906.363	cmplt	W	2883584	8
31923.302	queue	WS	1916928	8
31923.424	issue	WS	1916928	8
31924.889	cmplt	WS	1916928	8
31925.652	queue	WS	1916928	8
31925.713	issue	WS	1916928	8
31926.629	cmplt	WS	1916928	8
31942.866	queue	WS	1912920	8
31942.927	issue	WS	1912920	8
31943.873	cmplt	WS	1912920	8
31944.148	queue	WS	1846128	8
31944.178	queue	WS	1846136	8
31944.178	queue	WS	1846144	8
31944.178	queue	WS	1846152	8
31944.209	queue	WS	1846160	8
31944.209	queue	WS	1846168	8
31944.209	queue	WS	1846176	8
31944.239	queue	WS	1846184	8
31944.239	queue	WS	1846192	8
31950.038	issue	WS	1846128	72
31955.074	cmplt	WS	1846128	72
31955.196	queue	WS	1846200	8
31955.257	issue	WS	1846200	8
31956.112	cmplt	WS	1846200	8
31956.386	queue	WS	1846208	8
31956.417	queue	WS	1846216	8
31956.447	issue	WS	1846208	16
31957.424	cmplt	WS	1846208	16
31957.485	queue	WS	1846224	8
31957.546	issue	WS	1846224	8
31958.492	cmplt	WS	1846224	8
31982.634	queue	WS	2633800	72
31982.725	issue	WS	2633800	72
31989.409	cmplt	WS	2633800	72
31989.715	queue	WS	1846232	8
31989.745	queue	WS	1846240	8
31989.745	queue	WS	1846248	8
31989.776	queue	WS	1846256	8
31989.776	queue	WS	1846264	8
31989.776	queue	WS	1846272	8
31989.806	queue	WS	1846280	8
31990.050	issue	WS	1846232	56
31994.659	cmplt	WS	1846232	56
31994.781	queue	WS	1846288	8
31994.873	issue	WS	1846288	8
31995.758	cmplt	WS	1846288	8
36900.107	queue	W	1835696	8
36900.137	queue	W	2621960	8
36900.259	issue	W	1835696	8
36904.380	issue	W	2621960	8
36905.234	cmplt	W	1835696	8
36906.547	cmplt	W	2621960	8
36937.311	queue	WS	1916928	8
36937.433	issue	WS	1916928	8
36938.898	cmplt	WS	1916928	8
36939.631	queue	WS	1916928	8
36939.692	issue	WS	1916928	8
36940.546	cmplt	WS	1916928	8
36956.722	queue	WS	1912920	8
36956.814	issue	WS	1912920	8
36957.729	cmplt	WS	1912920	8
36957.943	queue	WS	1846296	8
36957.943	queue	WS	1846304	8
36957.973	queue	WS	1846312	8
36957.973	queue	WS	1846320	8
36957.973	queue	WS	1846328	8
36958.004	queue	WS	1846336	8
36958.004	queue	WS	1846344	8
36958.034	queue	WS	1846352	8
36958.034	queue	WS	1846360	8
36960.049	issue	WS	1846296	72
36966.641	cmplt	WS	1846296	72
36966.763	queue	WS	1846368	8
36966.824	issue	WS	1846368	8
36967.648	cmplt	WS	1846368	8
36967.923	queue	WS	1846376	8
36967.923	queue	WS	1846384	8
36967.984	issue	WS	1846376	16
36969.693	cmplt	WS	1846376	16
36969.754	queue	WS	1846392	8
36969.846	issue	WS	1846392	8
36970.670	cmplt	WS	1846392	8
36994.659	queue	WS	1980104	72
36994.750	issue	WS	1980104	72
36997.192	cmplt	WS	1980104	72
36997.436	queue	WS	1846400	8
36997.467	queue	WS	1846408	8
36997.467	queue	WS	1846416	8
36997.467	queue	WS	1846424	8
36997.497	queue	WS	1846432	8
36997.497	queue	WS	1846440	8
36997.528	queue	WS	1846448	8
37000.092	issue	WS	1846400	56
37002.503	cmplt	WS	1846400	56
37002.655	queue	WS	1846456	8
37002.716	issue	WS	1846456	8
37003.632	cmplt	WS	1846456	8
41940.089	queue	W	1835528	8
41940.150	queue	W	1835696	8
41940.241	issue	W	1835696	8
41944.331	issue	W	1835528	8
41945.216	cmplt	W	1835696	8
41946.132	cmplt	W	1835528	8
41964.352	queue	WS	1916928	8
41964.474	issue	WS	1916928	8
41965.542	cmplt	WS	1916928	8
41966.275	queue	WS	1916928	8
41966.306	issue	WS	1916928	8
41967.160	cmplt	WS	1916928	8
41983.397	queue	WS	1912920	8
41983.458	issue	WS	1912920	8
41984.313	cmplt	WS	1912920	8
41984.587	queue	WS	1846464	8
41984.587	queue	WS	1846472	8
41984.618	queue	WS	1846480	8
41984.618	queue	WS	1846488	8
41984.648	queue	WS	1846496	8
41984.648	queue	WS	1846504	8
41984.648	queue	WS	1846512	8
41984.679	queue	WS	1846520	8
41984.679	queue	WS	1846528	8
41990.050	issue	WS	1846464	72
41992.584	cmplt	WS	1846464	72
41992.675	queue	WS	1846536	8
41992.736	issue	WS	1846536	8
41993.560	cmplt	WS	1846536	8
41993.835	queue	WS	1846544	8
41993.865	queue	WS	1846552	8
41993.926	issue	WS	1846544	16
41994.873	cmplt	WS	1846544	16
41994.934	queue	WS	1846560	8
41994.995	issue	WS	1846560	8
41995.941	cmplt	WS	1846560	8
42020.052	queue	WS	2633872	72
42020.143	issue	WS	2633872	72
42027.041	cmplt	WS	2633872	72
42027.285	queue	WS	1846568	8
42027.316	queue	WS	1846576	8
42027.346	queue	WS	1846584	8
42027.346	queue	WS	1846592	8
42027.346	queue	WS	1846600	8
42027.377	queue	WS	1846608	8
42027.377	queue	WS	1846616	8
42030.032	issue	WS	1846568	56
42036.441	cmplt	WS	1846568	56
42036.563	queue	WS	1846624	8
42036.655	issue	WS	1846624	8
42037.479	cmplt	WS	1846624	8
46716.038	queue	WS	1916928	8
46716.130	issue	WS	1916928	8
46721.166	cmplt	WS	1916928	8
46721.898	queue	WS	1916928	8
46721.929	issue	WS	1916928	8
46722.844	cmplt	WS	1916928	8
46739.570	queue	WS	1912920	8
46739.661	issue	WS	1912920	8
46740.607	cmplt	WS	1912920	8
46740.821	queue	WS	1846632	8
46740.821	queue	WS	1846640	8
46740.852	queue	WS	1846648	8
46740.852	queue	WS	1846656	8
46740.882	queue	WS	1846664	8
46740.882	queue	WS	1846672	8
46740.882	queue	WS	1846680	8
46740.913	queue	WS	1846688	8
46740.913	queue	WS	1846696	8
46750.038	issue	WS	1846632	72
46756.753	cmplt	WS	1846632	72
46756.875	queue	WS	1846704	8
46756.936	issue	WS	1846704	8
46757.821	cmplt	WS	1846704	8
46758.065	queue	WS	1846712	8
46758.096	queue	WS	1846720	8
46758.126	issue	WS	1846712	16
46759.255	cmplt	WS	1846712	16
46759.316	queue	WS	1846728	8
46759.377	issue	WS	1846728	8
46760.201	cmplt	WS	1846728	8
46784.618	queue	WS	1980176	72
46784.709	issue	WS	1980176	72
46791.332	cmplt	WS	1980176	72
46791.607	queue	WS	1846736	8
46791.637	queue	WS	1846744	8
46791.637	queue	WS	1846752	8
46791.637	queue	WS	1846760	8
46791.668	queue	WS	1846768	8
46791.668	queue	WS	1846776	8
46791.698	queue	WS	1846784	8
46800.061	issue	WS	1846736	56
46802.716	cmplt	WS	1846736	56
46802.869	queue	WS	1846792	8
46802.930	issue	WS	1846792	8
46803.815	cmplt	WS	1846792	8
46940.150	queue	W	1835528	8
46940.180	queue	W	1835696	8
46940.302	issue	W	1835696	8
46940.394	issue	W	1835528	8
46941.187	cmplt	W	1835696	8
46942.072	cmplt	W	1835528	8
52014.833	queue	WS	1916928	8
52014.894	queue	WS	1846800	8
52014.924	issue	WS	1916928	8
52014.924	queue	WS	1846808	8
52014.924	queue	WS	1846816	8
52014.924	queue	WS	1846824	8
52014.955	queue	WS	1846832	8
52014.955	queue	WS	1846840	8
52014.985	queue	WS	1846848	8
52014.985	queue	WS	1846856	8
52014.985	queue	WS	1846864	8
52061.834	issue	WS	1846800	72
52062.872	cmplt	WS	1916928	8
52065.466	cmplt	WS	1846800	72
52065.588	queue	WS	1846872	8
52065.649	issue	WS	1846872	8
52066.077	queue	WS	1916928	8
52066.504	cmplt	WS	1846872	8
52066.565	issue	WS	1916928	8
52067.633	cmplt	WS	1916928	8
52083.900	queue	WS	1912920	8
52083.992	issue	WS	1912920	8
52084.938	cmplt	WS	1912920	8
52085.091	queue	WS	1846880	8
52085.121	queue	WS	1846888	8
52085.121	queue	WS	1846896	8
52090.005	issue	WS	1846880	24
52091.897	cmplt	WS	1846880	24
52091.958	queue	WS	1846904	8
52092.019	issue	WS	1846904	8
52092.904	cmplt	WS	1846904	8
52093.118	queue	WS	1846912	8
52093.118	queue	WS	1846920	8
52093.179	issue	WS	1846912	16
52094.155	cmplt	WS	1846912	16
52094.216	queue	WS	1846928	8
52094.277	issue	WS	1846928	8
52095.224	cmplt	WS	1846928	8
52119.304	queue	WS	1980248	72
52119.396	issue	WS	1980248	72
52125.988	cmplt	WS	1980248	72
52126.263	queue	WS	1846936	8
52126.263	queue	WS	1846944	8
52126.293	queue	WS	1846952	8
52126.293	queue	WS	1846960	8
52126.324	queue	WS	1846968	8
52126.324	queue	WS	1846976	8
52126.324	queue	WS	1846984	8
52130.047	issue	WS	1846936	56
52134.015	cmplt	WS	1846936	56
52134.168	queue	WS	1846992	8
52134.229	issue	WS	1846992	8
52135.175	cmplt	WS	1846992	8
56960.140	queue	W	1835696	8
56960.171	queue	W	2621960	8
56960.262	issue	W	1835696	8
56964.383	issue	W	2621960	8
56965.237	cmplt	W	1835696	8
56966.733	cmplt	W	2621960	8
57038.028	queue	WS	1916928	8
57038.150	issue	WS	1916928	8
57039.615	cmplt	WS	1916928	8
57040.378	queue	WS	1916928	8
57040.439	issue	WS	1916928	8
57041.294	cmplt	WS	1916928	8
57057.470	queue	WS	1912920	8
57057.561	issue	WS	1912920	8
57058.508	cmplt	WS	1912920	8
57058.691	queue	WS	1847000	8
57058.721	queue	WS	1847008	8
57058.721	queue	WS	1847016	8
57058.752	queue	WS	1847024	8
57058.752	queue	WS	1847032	8
57058.782	queue	WS	1847040	8
57058.782	queue	WS	1847048	8
57058.782	queue	WS	1847056	8
57058.813	queue	WS	1847064	8
57060.034	issue	WS	1847000	72
57066.748	cmplt	WS	1847000	72
57066.870	queue	WS	1847072	8
57066.931	issue	WS	1847072	8
57067.786	cmplt	WS	1847072	8
57068.030	queue	WS	1847080	8
57068.060	queue	WS	1847088	8
57068.121	issue	WS	1847080	16
57069.739	cmplt	WS	1847080	16
57069.831	queue	WS	1847096	8
57069.892	issue	WS	1847096	8
57070.716	cmplt	WS	1847096	8
57094.705	queue	WS	1980320	72
57094.796	issue	WS	1980320	72
57097.146	cmplt	WS	1980320	72
57097.421	queue	WS	1847104	8
57097.421	queue	WS	1847112	8
57097.452	queue	WS	1847120	8
57097.452	queue	WS	1847128	8
57097.452	queue	WS	1847136	8
57097.482	queue	WS	1847144	8
57097.482	queue	WS	1847152	8
57100.046	issue	WS	1847104	56
57103.800	cmplt	WS	1847104	56
57103.952	queue	WS	1847160	8
57104.013	issue	WS	1847160	8
57104.899	cmplt	WS	1847160	8
62040.104	queue	W	1835696	8
62040.226	issue	W	1835696	8
62045.170	cmplt	W	1835696	8
62068.427	queue	WS	1916928	8
62068.518	issue	WS	1916928	8
62069.556	cmplt	WS	1916928	8
62070.349	queue	WS	1916928	8
62070.410	issue	WS	1916928	8
62071.265	cmplt	WS	1916928	8
62087.441	queue	WS	1912920	8
62087.563	issue	WS	1912920	8
62088.448	cmplt	WS	1912920	8
62088.631	queue	WS	1847168	8
62088.631	queue	WS	1847176	8
62088.662	queue	WS	1847184	8
62088.662	queue	WS	1847192	8
62088.662	queue	WS	1847200	8
62088.692	queue	WS	1847208	8
62088.692	queue	WS	1847216	8
62088.723	queue	WS	1847224	8
62088.723	queue	WS	1847232	8
62090.035	issue	WS	1847168	72
62092.690	cmplt	WS	1847168	72
62092.812	queue	WS	1847240	8
62092.873	issue	WS	1847240	8
62093.698	cmplt	WS	1847240	8
62093.942	queue	WS	1847248	8
62093.972	queue	WS	1847256	8
62094.003	issue	WS	1847248	16
62094.918	cmplt	WS	1847248	16
62094.979	queue	WS	1847264	8
62095.040	issue	WS	1847264	8
62095.987	cmplt	WS	1847264	8
62119.853	queue	WS	1980392	72
62120.006	issue	WS	1980392	72
62122.570	cmplt	WS	1980392	72
62122.844	queue	WS	1847272	8
62122.875	queue	WS	1847280	8
62122.875	queue	WS	1847288	8
62122.875	queue	WS	1847296	8
62122.906	queue	WS	1847304	8
62122.906	queue	WS	1847312	8
62122.936	queue	WS	1847320	8
62130.047	issue	WS	1847272	56
62134.595	cmplt	WS	1847272	56
62134.747	queue	WS	1847328	8
62134.808	issue	WS	1847328	8
62135.755	cmplt	WS	1847328	8
66812.574	queue	WS	1916928	8
66812.666	issue	WS	1916928	8
66817.732	cmplt	WS	1916928	8
66818.465	queue	WS	1916928	8
66818.526	issue	WS	1916928	8
66819.441	cmplt	WS	1916928	8
66835.648	queue	WS	1912920	8
66835.739	issue	WS	1912920	8
66836.624	cmplt	WS	1912920	8
66836.808	queue	WS	1847336	8
66836.838	queue	WS	1847344	8
66836.838	queue	WS	1847352	8
66836.838	queue	WS	1847360	8
66836.869	queue	WS	1847368	8
66836.869	queue	WS	1847376	8
66836.899	queue	WS	1847384	8
66836.899	queue	WS	1847392	8
66836.899	queue	WS	1847400	8
66840.043	issue	WS	1847336	72
66846.788	cmplt	WS	1847336	72
66846.910	queue	WS	1847408	8
66846.971	issue	WS	1847408	8
66847.825	cmplt	WS	1847408	8
66848.070	queue	WS	1847416	8
66848.070	queue	WS	1847424	8
66848.131	issue	WS	1847416	16
66849.687	cmplt	WS	1847416	16
66849.779	queue	WS	1847432	8
66849.840	issue	WS	1847432	8
66850.664	cmplt	WS	1847432	8
66874.683	queue	WS	1980464	72
66874.775	issue	WS	1980464	72
66881.337	cmplt	WS	1980464	72
66881.642	queue	WS	1847440	8
66881.673	queue	WS	1847448	8
66881.673	queue	WS	1847456	8
66881.673	queue	WS	1847464	8
66881.703	queue	WS	1847472	8
66881.703	queue	WS	1847480	8
66881.703	queue	WS	1847488	8
66890.035	issue	WS	1847440	56
66894.522	cmplt	WS	1847440	56
66894.644	queue	WS	1847496	8
66894.705	issue	WS	1847496	8
66895.620	cmplt	WS	1847496	8
67040.043	queue	W	1835696	8
67040.256	issue	W	1835696	8
67041.080	cmplt	W	1835696	8
72121.410	queue	WS	1916928	8
72121.471	queue	WS	1847504	8
72121.471	queue	WS	1847512	8
72121.502	issue	WS	1916928	8
72121.502	queue	WS	1847520	8
72121.502	queue	WS	1847528	8
72121.532	queue	WS	1847536	8
72121.532	queue	WS	1847544	8
72121.532	queue	WS	1847552	8
72121.563	queue	WS	1847560	8
72121.563	queue	WS	1847568	8
72168.472	issue	WS	1847504	72
72169.480	cmplt	WS	1916928	8
72172.196	cmplt	WS	1847504	72
72172.318	queue	WS	1847576	8
72172.379	issue	WS	1847576	8
72172.806	queue	WS	1916928	8
72173.264	cmplt	WS	1847576	8
72173.325	issue	WS	1916928	8
72174.332	cmplt	WS	1916928	8
72190.539	queue	WS	1912920	8
72190.630	issue	WS	1912920	8
72191.576	cmplt	WS	1912920	8
72191.698	queue	WS	1847584	8
72191.729	queue	WS	1847592	8
72191.759	queue	WS	1847600	8
72200.031	issue	WS	1847584	24
72201.984	cmplt	WS	1847584	24
72202.075	queue	WS	1847608	8
72202.136	issue	WS	1847608	8
72203.052	cmplt	WS	1847608	8
72203.266	queue	WS	1847616	8
72203.296	queue	WS	1847624	8
72203.327	issue	WS	1847616	16
72204.242	cmplt	WS	1847616	16
72204.303	queue	WS	1847632	8
72204.364	issue	WS	1847632	8
72205.188	cmplt	WS	1847632	8
72229.757	queue	WS	1980536	72
72229.849	issue	WS	1980536	72
72236.472	cmplt	WS	1980536	72
72236.747	queue	WS	1847640	8
72236.777	queue	WS	1847648	8
72236.777	queue	WS	1847656	8
72236.808	queue	WS	1847664	8
72236.808	queue	WS	1847672	8
72236.808	queue	WS	1847680	8
72236.838	queue	WS	1847688	8
72240.043	issue	WS	1847640	56
72242.362	cmplt	WS	1847640	56
72242.515	queue	WS	1847696	8
72242.545	issue	WS	1847696	8
72243.430	cmplt	WS	1847696	8
77040.104	queue	W	1835696	8
77040.226	issue	W	1835696	8
77045.109	cmplt	W	1835696	8
77138.868	queue	WS	1916928	8
77138.990	issue	WS	1916928	8
77140.027	cmplt	WS	1916928	8
77140.821	queue	WS	1916928	8
77140.852	issue	WS	1916928	8
77141.706	cmplt	WS	1916928	8
77157.851	queue	WS	1912920	8
77157.973	issue	WS	1912920	8
77158.889	cmplt	WS	1912920	8
77159.072	queue	WS	1847704	8
77159.072	queue	WS	1847712	8
77159.103	queue	WS	1847720	8
77159.103	queue	WS	1847728	8
77159.133	queue	WS	1847736	8
77159.133	queue	WS	1847744	8
77159.133	queue	WS	1847752	8
77159.164	queue	WS	1847760	8
77159.164	queue	WS	1847768	8
77160.049	issue	WS	1847704	72
77166.824	cmplt	WS	1847704	72
77166.946	queue	WS	1847776	8
77167.007	issue	WS	1847776	8
77167.923	cmplt	WS	1847776	8
77168.167	queue	WS	1847784	8
77168.167	queue	WS	1847792	8
77168.228	issue	WS	1847784	16
77169.724	cmplt	WS	1847784	16
77169.785	queue	WS	1847800	8
77169.846	issue	WS	1847800	8
77170.792	cmplt	WS	1847800	8
77194.812	queue	WS	1980608	72
77194.903	issue	WS	1980608	72
77197.589	cmplt	WS	1980608	72
77197.833	queue	WS	1847808	8
77197.864	queue	WS	1847816	8
77197.864	queue	WS	1847824	8
77197.894	queue	WS	1847832	8
77197.894	queue	WS	1847840	8
77197.894	queue	WS	1847848	8
77197.925	queue	WS	1847856	8
77200.061	issue	WS	1847808	56
77206.684	cmplt	WS	1847808	56
77206.837	queue	WS	1847864	8
77206.898	issue	WS	1847864	8
77207.844	cmplt	WS	1847864	8
82140.119	queue	W	1835696	8
82140.272	issue	W	1835696	8
82145.185	cmplt	W	1835696	8
82175.462	queue	WS	1916928	8
82175.584	issue	WS	1916928	8
82176.652	cmplt	WS	1916928	8
82177.354	queue	WS	1916928	8
82177.415	issue	WS	1916928	8
82178.239	cmplt	WS	1916928	8
82194.506	queue	WS	1912920	8
82194.598	issue	WS	1912920	8
82195.452	cmplt	WS	1912920	8
82195.636	queue	WS	1847872	8
82195.666	queue	WS	1847880	8
82195.666	queue	WS	1847888	8
82195.697	queue	WS	1847896	8
82195.697	queue	WS	1847904	8
82195.697	queue	WS	1847912	8
82195.727	queue	WS	1847920	8
82195.727	queue	WS	1847928	8
82195.727	queue	WS	1847936	8
82200.061	issue	WS	1847872	72
82202.625	cmplt	WS	1847872	72
82202.747	queue	WS	1847944	8
82202.777	issue	WS	1847944	8
82203.693	cmplt	WS	1847944	8
82203.937	queue	WS	1847952	8
82203.968	queue	WS	1847960	8
82203.998	issue	WS	1847952	16
82204.944	cmplt	WS	1847952	16
82205.005	queue	WS	1847968	8
82205.066	issue	WS	1847968	8
82205.921	cmplt	WS	1847968	8
82230.276	queue	WS	1980680	72
82230.368	issue	WS	1980680	72
82232.840	cmplt	WS	1980680	72
82233.084	queue	WS	1847976	8
82233.115	queue	WS	1847984	8
82233.115	queue	WS	1847992	8
82233.115	queue	WS	1848000	8
82233.145	queue	WS	1848008	8
82233.145	queue	WS	1848016	8
82233.176	queue	WS	1848024	8
82240.043	issue	WS	1847976	56
82242.271	cmplt	WS	1847976	56
82242.454	queue	WS	1848032	8
82242.484	issue	WS	1848032	8
82243.369	cmplt	WS	1848032	8
86209.553	queue	WS	1916928	8
86209.644	issue	WS	1916928	8
86215.291	cmplt	WS	1916928	8
86216.023	queue	WS	1916928	8
86216.084	issue	WS	1916928	8
86217.030	cmplt	WS	1916928	8
86234.061	queue	WS	1912920	8
86234.152	issue	WS	1912920	8
86235.037	cmplt	WS	1912920	8
86235.221	queue	WS	1848040	8
86235.221	queue	WS	1848048	8
86235.251	queue	WS	1848056	8
86235.251	queue	WS	1848064	8
86235.282	queue	WS	1848072	8
86235.282	queue	WS	1848080	8
86235.282	queue	WS	1848088	8
86235.312	queue	WS	1848096	8
86235.312	queue	WS	1848104	8
86240.043	issue	WS	1848040	72
86258.599	cmplt	WS	1848040	72
86258.721	queue	WS	1848112	8
86258.782	issue	WS	1848112	8
86259.698	cmplt	WS	1848112	8
86259.942	queue	WS	1848120	8
86259.973	queue	WS	1848128	8
86260.064	issue	WS	1848120	16
86261.468	cmplt	WS	1848120	16
86261.529	queue	WS	1848136	8
86261.590	issue	WS	1848136	8
86262.506	cmplt	WS	1848136	8
86286.739	queue	WS	1980752	72
86286.830	issue	WS	1980752	72
86293.545	cmplt	WS	1980752	72
86293.820	queue	WS	1848144	8
86293.820	queue	WS	1848152	8
86293.850	queue	WS	1848160	8
86293.850	queue	WS	1848168	8
86293.881	queue	WS	1848176	8
86293.881	queue	WS	1848184	8
86293.881	queue	WS	1848192	8
86300.046	issue	WS	1848144	56
86304.013	cmplt	WS	1848144	56
86304.136	queue	WS	1848200	8
86304.227	issue	WS	1848200	8
86305.082	cmplt	WS	1848200	8
87140.088	queue	W	1835696	8
87140.241	issue	W	1835696	8
87145.094	cmplt	W	1835696	8
91226.370	queue	WS	1916928	8
91226.492	issue	WS	1916928	8
91231.192	cmplt	WS	1916928	8
91231.924	queue	WS	1916928	8
91231.985	issue	WS	1916928	8
91232.901	cmplt	WS	1916928	8
91249.138	queue	WS	1912920	8
91249.229	issue	WS	1912920	8
91250.175	cmplt	WS	1912920	8
91250.359	queue	WS	1848208	8
91250.389	queue	WS	1848216	8
91250.420	queue	WS	1848224	8
91250.420	queue	WS	1848232	8
91250.420	queue	WS	1848240	8
91250.450	queue	WS	1848248	8
91250.450	queue	WS	1848256	8
91250.450	queue	WS	1848264	8
91250.481	queue	WS	1848272	8
91260.003	issue	WS	1848208	72
91264.673	cmplt	WS	1848208	72
91264.764	queue	WS	1848280	8
91264.856	issue	WS	1848280	8
91265.802	cmplt	WS	1848280	8
91266.046	queue	WS	1848288	8
91266.077	queue	WS	1848296	8
91266.138	issue	WS	1848288	16
91267.023	cmplt	WS	1848288	16
91267.084	queue	WS	1848304	8
91267.175	issue	WS	1848304	8
91268.060	cmplt	WS	1848304	8
91292.294	queue	WS	1980824	72
91292.385	issue	WS	1980824	72
91299.100	cmplt	WS	1980824	72
91299.374	queue	WS	1848312	8
91299.405	queue	WS	1848320	8
91299.405	queue	WS	1848328	8
91299.405	queue	WS	1848336	8
91299.435	queue	WS	1848344	8
91299.435	queue	WS	1848352	8
91299.435	queue	WS	1848360	8
91300.046	issue	WS	1848312	56
91302.335	cmplt	WS	1848312	56
91302.487	queue	WS	1848368	8
91302.548	issue	WS	1848368	8
91303.403	cmplt	WS	1848368	8
96248.436	queue	WS	1916928	8
96248.527	issue	WS	1916928	8
96253.655	cmplt	WS	1916928	8
96254.448	queue	WS	1916928	8
96254.479	issue	WS	1916928	8
96255.333	cmplt	WS	1916928	8
96271.875	queue	WS	1912920	8
96271.967	issue	WS	1912920	8
96272.913	cmplt	WS	1912920	8
96273.096	queue	WS	1848376	8
96273.127	queue	WS	1848384	8
96273.127	queue	WS	1848392	8
96273.157	queue	WS	1848400	8
96273.157	queue	WS	1848408	8
96273.188	queue	WS	1848416	8
96273.188	queue	WS	1848424	8
96273.188	queue	WS	1848432	8
96273.218	queue	WS	1848440	8
96280.055	issue	WS	1848376	72
96282.527	cmplt	WS	1848376	72
96282.649	queue	WS	1848448	8
96282.710	issue	WS	1848448	8
96283.626	cmplt	WS	1848448	8
96283.870	queue	WS	1848456	8
96283.900	queue	WS	1848464	8
96283.962	issue	WS	1848456	16
96285.518	cmplt	WS	1848456	16
96285.579	queue	WS	1848472	8
96285.671	issue	WS	1848472	8
96286.556	cmplt	WS	1848472	8
96310.758	queue	WS	1980896	72
96310.850	issue	WS	1980896	72
96313.597	cmplt	WS	1980896	72
96313.841	queue	WS	1848480	8
96313.871	queue	WS	1848488	8
96313.902	queue	WS	1848496	8
96313.902	queue	WS	1848504	8
96313.902	queue	WS	1848512	8
96313.933	queue	WS	1848520	8
96313.933	queue	WS	1848528	8
96320.037	issue	WS	1848480	56
96326.782	cmplt	WS	1848480	56
96326.934	queue	WS	1848536	8
96327.026	issue	WS	1848536	8
96327.941	cmplt	WS	1848536	8
97140.119	queue	W	1835696	8
97140.241	issue	W	1835696	8
97145.002	cmplt	W	1835696	8
101269.312	queue	WS	1916928	8
101269.434	issue	WS	1916928	8
101274.134	cmplt	WS	1916928	8
101274.866	queue	WS	1916928	8
101274.928	issue	WS	1916928	8
101275.782	cmplt	WS	1916928	8
101292.019	queue	WS	1912920	8
101292.110	issue	WS	1912920	8
101292.996	cmplt	WS	1912920	8
101293.179	queue	WS	1848544	8
101293.179	queue	WS	1848552	8
101293.209	queue	WS	1848560	8
101293.209	queue	WS	1848568	8
101293.240	queue	WS	1848576	8
101293.240	queue	WS	1848584	8
101293.240	queue	WS	1848592	8
101293.270	queue	WS	1848600	8
101293.270	queue	WS	1848608	8
101300.046	issue	WS	1848544	72
101307.279	cmplt	WS	1848544	72
101307.401	queue	WS	1848616	8
101307.462	issue	WS	1848616	8
101308.286	cmplt	WS	1848616	8
101308.530	queue	WS	1848624	8
101308.561	queue	WS	1848632	8
101308.622	issue	WS	1848624	16
101309.568	cmplt	WS	1848624	16
101309.660	queue	WS	1848640	8
101309.721	issue	WS	1848640	8
101310.545	cmplt	WS	1848640	8
101334.717	queue	WS	1980968	72
101334.808	issue	WS	1980968	72
101337.494	cmplt	WS	1980968	72
101337.738	queue	WS	1848648	8
101337.769	queue	WS	1848656	8
101337.799	queue	WS	1848664	8
101337.799	queue	WS	1848672	8
101337.799	queue	WS	1848680	8
101337.830	queue	WS	1848688	8
101337.830	queue	WS	1848696	8
101340.058	issue	WS	1848648	56
101342.255	cmplt	WS	1848648	56
101342.408	queue	WS	1848704	8
101342.469	issue	WS	1848704	8
101343.324	cmplt	WS	1848704	8
106290.951	queue	WS	1916928	8
106291.042	issue	WS	1916928	8
106296.170	cmplt	WS	1916928	8
106296.902	queue	WS	1916928	8
106296.933	issue	WS	1916928	8
106297.848	cmplt	WS	1916928	8
106313.963	queue	WS	1912920	8
106314.085	issue	WS	1912920	8
106314.970	cmplt	WS	1912920	8
106315.123	queue	WS	1848712	8
106315.153	queue	WS	1848720	8
106315.153	queue	WS	1848728	8
106315.184	queue	WS	1848736	8
106315.184	queue	WS	1848744	8
106315.214	queue	WS	1848752	8
106315.214	queue	WS	1848760	8
106315.214	queue	WS	1848768	8
106315.245	queue	WS	1848776	8
106320.037	issue	WS	1848712	72
106322.509	cmplt	WS	1848712	72
106322.631	queue	WS	1848784	8
106322.692	issue	WS	1848784	8
106323.516	cmplt	WS	1848784	8
106323.760	queue	WS	1848792	8
106323.760	queue	WS	1848800	8
106323.821	issue	WS	1848792	16
106325.195	cmplt	WS	1848792	16
106325.286	queue	WS	1848808	8
106325.347	issue	WS	1848808	8
106326.263	cmplt	WS	1848808	8
106350.313	queue	WS	1981040	72
106350.404	issue	WS	1981040	72
106357.149	cmplt	WS	1981040	72
106357.424	queue	WS	1848816	8
106357.424	queue	WS	1848824	8
106357.455	queue	WS	1848832	8
106357.455	queue	WS	1848840	8
106357.485	queue	WS	1848848	8
106357.485	queue	WS	1848856	8
106357.485	queue	WS	1848864	8
106370.060	issue	WS	1848816	56
106374.088	cmplt	WS	1848816	56
106374.210	queue	WS	1848872	8
106374.271	issue	WS	1848872	8
106375.156	cmplt	WS	1848872	8
107140.119	queue	W	1835696	8
107140.241	issue	W	1835696	8
107145.063	cmplt	W	1835696	8
111303.495	queue	WS	1916928	8
111303.617	issue	WS	1916928	8
111308.744	cmplt	WS	1916928	8
111309.477	queue	WS	1916928	8
111309.507	issue	WS	1916928	8
111310.423	cmplt	WS	1916928	8
111326.904	queue	WS	1912920	8
111326.995	issue	WS	1912920	8
111327.941	cmplt	WS	1912920	8
111328.155	queue	WS	1848880	8
111328.155	queue	WS	1848888	8
111328.186	queue	WS	1848896	8
111328.186	queue	WS	1848904	8
111328.186	queue	WS	1848912	8
111328.216	queue	WS	1848920	8
111328.216	queue	WS	1848928	8
111328.216	queue	WS	1848936	8
111328.247	queue	WS	1848944	8
111330.047	issue	WS	1848880	72
111336.914	cmplt	WS	1848880	72
111337.036	queue	WS	1848952	8
111337.098	issue	WS	1848952	8
111337.922	cmplt	WS	1848952	8
111338.166	queue	WS	1848960	8
111338.196	queue	WS	1848968	8
111338.257	issue	WS	1848960	16
111339.142	cmplt	WS	1848960	16
111339.234	queue	WS	1848976	8
111339.295	issue	WS	1848976	8
111340.241	cmplt	WS	1848976	8
111364.596	queue	WS	1981112	72
111364.688	issue	WS	1981112	72
111371.250	cmplt	WS	1981112	72
111371.524	queue	WS	1848984	8
111371.555	queue	WS	1848992	8
111371.586	queue	WS	1849000	8
111371.586	queue	WS	1849008	8
111371.586	queue	WS	1849016	8
111371.616	queue	WS	1849024	8
111371.616	queue	WS	1849032	8
111380.040	issue	WS	1848984	56
111383.794	cmplt	WS	1848984	56
111383.977	queue	WS	1849040	8
111384.007	issue	WS	1849040	8
111384.892	cmplt	WS	1849040	8
114368.045	queue	RM	1910368	8
114368.259	issue	RM	1910368	8
114372.684	cmplt	RM	1910368	8
114551.808	queue	R	898160	8
114551.839	queue	R	898200	8
114551.930	issue	R	898160	8
114551.991	issue	R	898200	8
114552.419	cmplt	R	898160	8
114552.693	cmplt	R	898200	8
114556.783	queue	R	1060536	8
114556.875	issue	R	1060536	8
114557.333	cmplt	R	1060536	8
114557.790	queue	R	1060408	24
114557.821	queue	R	1060472	64
114557.882	issue	R	1060472	64
114557.943	issue	R	1060408	24
114558.889	cmplt	R	1060472	64
114559.133	queue	R	1075120	8
114559.347	cmplt	R	1060408	24
114559.408	issue	R	1075120	8
114559.835	cmplt	R	1075120	8
114560.262	queue	R	1075184	32
114560.324	issue	R	1075184	32
114560.934	cmplt	R	1075184	32
114563.314	queue	R	1075088	8
114563.376	issue	R	1075088	8
114563.711	cmplt	R	1075088	8
114564.108	queue	R	1075176	8
114564.169	issue	R	1075176	8
114564.505	cmplt	R	1075176	8
114564.841	queue	R	1075152	8
114564.902	issue	R	1075152	8
114565.237	cmplt	R	1075152	8
114565.512	queue	R	1075128	16
114565.573	issue	R	1075128	16
114566.000	cmplt	R	1075128	16
114566.397	queue	R	1060384	8
114566.458	issue	R	1060384	8
114566.855	cmplt	R	1060384	8
114567.191	queue	R	1060344	40
114567.252	issue	R	1060344	40
114567.954	cmplt	R	1060344	40
114568.198	queue	R	1028896	8
114568.259	issue	R	1028896	8
114568.564	cmplt	R	1028896	8
114568.900	queue	R	1028880	8
114568.961	issue	R	1028880	8
114569.266	cmplt	R	1028880	8
114653.472	queue	R	914976	8
114653.563	issue	R	914976	8
114654.052	cmplt	R	914976	8
116333.160	queue	WS	1916928	8
116333.282	issue	WS	1916928	8
116338.318	cmplt	WS	1916928	8
116339.051	queue	WS	1916928	8
116339.112	issue	WS	1916928	8
116339.966	cmplt	WS	1916928	8
116356.631	queue	WS	1912920	8
116356.753	issue	WS	1912920	8
116357.699	cmplt	WS	1912920	8
116357.943	queue	WS	1849048	8
116357.943	queue	WS	1849056	8
116357.973	queue	WS	1849064	8
116357.973	queue	WS	1849072	8
116357.973	queue	WS	1849080	8
116358.004	queue	WS	1849088	8
116358.004	queue	WS	1849096	8
116358.034	queue	WS	1849104	8
116358.034	queue	WS	1849112	8
116358.034	queue	WS	1849120	8
116358.065	queue	WS	1849128	8
116358.065	queue	WS	1849136	8
116360.049	issue	WS	1849048	96
116363.284	cmplt	WS	1849048	96
116363.437	queue	WS	1849144	8
116363.467	issue	WS	1849144	8
116364.413	cmplt	WS	1849144	8
116364.657	queue	WS	1849152	8
116364.688	queue	WS	1849160	8
116364.718	issue	WS	1849152	16
116365.634	cmplt	WS	1849152	16
116365.695	queue	WS	1849168	8
116365.756	issue	WS	1849168	8
116366.641	cmplt	WS	1849168	8
116390.630	queue	WS	1981184	72
116390.722	issue	WS	1981184	72
116393.072	cmplt	WS	1981184	72
116393.316	queue	WS	1849176	8
116393.347	queue	WS	1849184	8
116393.347	queue	WS	1849192	8
116393.377	queue	WS	1849200	8
116393.377	queue	WS	1849208	8
116393.377	queue	WS	1849216	8
116393.408	queue	WS	1849224	8
116400.214	issue	WS	1849176	56
116402.533	cmplt	WS	1849176	56
116402.686	queue	WS	1849232	8
116402.747	issue	WS	1849232	8
116403.601	cmplt	WS	1849232	8
117140.119	queue	W	1835536	8
117140.150	queue	W	1835640	8
117140.180	queue	W	1835696	8
117140.180	queue	W	1910368	8
117140.333	issue	W	1835696	8
117144.331	issue	W	1835640	8
117145.216	cmplt	W	1835696	8
117145.277	issue	W	1835536	8
117146.101	cmplt	W	1835640	8
117146.162	issue	W	1910368	8
117146.986	cmplt	W	1835536	8
117148.054	cmplt	W	1910368	8
121363.284	queue	WS	1916928	8
121363.406	issue	WS	1916928	8
121368.289	cmplt	WS	1916928	8
121369.052	queue	WS	1916928	8
121369.113	issue	WS	1916928	8
121370.029	cmplt	WS	1916928	8
121386.632	queue	WS	1912920	8
121386.724	issue	WS	1912920	8
121387.670	cmplt	WS	1912920	8
121387.853	queue	WS	1849240	8
121387.883	queue	WS	1849248	8
121387.914	queue	WS	1849256	8
121387.914	queue	WS	1849264	8
121387.914	queue	WS	1849272	8
121387.944	queue	WS	1849280	8
121387.944	queue	WS	1849288	8
121387.944	queue	WS	1849296	8
121387.975	queue	WS	1849304	8
121390.081	issue	WS	1849240	72
121396.765	cmplt	WS	1849240	72
121396.887	queue	WS	1849312	8
121396.948	issue	WS	1849312	8
121397.803	cmplt	WS	1849312	8
121398.047	queue	WS	1849320	8
121398.077	queue	WS	1849328	8
121398.138	issue	WS	1849320	16
121399.756	cmplt	WS	1849320	16
121399.817	queue	WS	1849336	8
121399.878	issue	WS	1849336	8
121400.732	cmplt	WS	1849336	8
121424.844	queue	WS	1981256	72
121424.935	issue	WS	1981256	72
121427.377	cmplt	WS	1981256	72
121427.651	queue	WS	1849344	8
121427.651	queue	WS	1849352	8
121427.682	queue	WS	1849360	8
121427.682	queue	WS	1849368	8
121427.712	queue	WS	1849376	8
121427.712	queue	WS	1849384	8
121427.712	queue	WS	1849392	8
121430.063	issue	WS	1849344	56
121436.685	cmplt	WS	1849344	56
121436.838	queue	WS	1849400	8
121436.899	issue	WS	1849400	8
121437.815	cmplt	WS	1849400	8
126372.349	queue	WS	1916928	8
126372.440	issue	WS	1916928	8
126377.506	cmplt	WS	1916928	8
126378.239	queue	WS	1916928	8
126378.300	issue	WS	1916928	8
126379.155	cmplt	WS	1916928	8
126395.239	queue	WS	1912920	8
126395.330	issue	WS	1912920	8
126396.215	cmplt	WS	1912920	8
126396.399	queue	WS	1849408	8
126396.399	queue	WS	1849416	8
126396.429	queue	WS	1849424	8
126396.429	queue	WS	1849432	8
126396.460	queue	WS	1849440	8
126396.460	queue	WS	1849448	8
126396.460	queue	WS	1849456	8
126396.490	queue	WS	1849464	8
126396.490	queue	WS	1849472	8
126400.061	issue	WS	1849408	72
126402.716	cmplt	WS	1849408	72
126402.838	queue	WS	1849480	8
126402.899	issue	WS	1849480	8
126403.785	cmplt	WS	1849480	8
126404.029	queue	WS	1849488	8
126404.029	queue	WS	1849496	8
126404.090	issue	WS	1849488	16
126404.975	cmplt	WS	1849488	16
126405.036	queue	WS	1849504	8
126405.097	issue	WS	1849504	8
126405.921	cmplt	WS	1849504	8
126430.612	queue	WS	1981328	72
126430.703	issue	WS	1981328	72
126437.357	cmplt	WS	1981328	72
126437.632	queue	WS	1849512	8
126437.632	queue	WS	1849520	8
126437.662	queue	WS	1849528	8
126437.662	queue	WS	1849536	8
126437.693	queue	WS	1849544	8
126437.693	queue	WS	1849552	8
126437.693	queue	WS	1849560	8
126440.043	issue	WS	1849512	56
126442.301	cmplt	WS	1849512	56
126442.454	queue	WS	1849568	8
126442.515	issue	WS	1849568	8
126443.430	cmplt	WS	1849568	8
127140.119	queue	W	1835696	8
127140.211	issue	W	1835696	8
127145.124	cmplt	W	1835696	8
131399.023	queue	WS	1916928	8
131399.145	issue	WS	1916928	8
131404.273	cmplt	WS	1916928	8
131405.036	queue	WS	1916928	8
131405.066	issue	WS	1916928	8
131405.982	cmplt	WS	1916928	8
131422.249	queue	WS	1912920	8
131422.341	issue	WS	1912920	8
131423.195	cmplt	WS	1912920	8
131423.440	queue	WS	1849576	8
131423.470	queue	WS	1849584	8
131423.470	queue	WS	1849592	8
131423.501	queue	WS	1849600	8
131423.501	queue	WS	1849608	8
131423.531	queue	WS	1849616	8
131423.531	queue	WS	1849624	8
131423.531	queue	WS	1849632	8
131423.562	queue	WS	1849640	8
131430.002	issue	WS	1849576	72
131437.174	cmplt	WS	1849576	72
131437.296	queue	WS	1849648	8
131437.357	issue	WS	1849648	8
131438.181	cmplt	WS	1849648	8
131438.456	queue	WS	1849656	8
131438.486	queue	WS	1849664	8
131438.517	issue	WS	1849656	16
131439.982	cmplt	WS	1849656	16
131440.073	queue	WS	1849672	8
131440.134	issue	WS	1849672	8
131440.989	cmplt	WS	1849672	8
131465.008	queue	WS	2633944	72
131465.100	issue	WS	2633944	72
131467.572	cmplt	WS	2633944	72
131467.816	queue	WS	1849680	8
131467.847	queue	WS	1849688	8
131467.877	queue	WS	1849696	8
131467.877	queue	WS	1849704	8
131467.877	queue	WS	1849712	8
131467.908	queue	WS	1849720	8
131467.908	queue	WS	1849728	8
131470.044	issue	WS	1849680	56
131474.103	cmplt	WS	1849680	56
131474.256	queue	WS	1849736	8
131474.317	issue	WS	1849736	8
131475.202	cmplt	WS	1849736	8
136415.077	queue	WS	1916928	8
136415.169	issue	WS	1916928	8
136419.899	cmplt	WS	1916928	8
136420.693	queue	WS	1916928	8
136420.754	issue	WS	1916928	8
136421.700	cmplt	WS	1916928	8
136438.303	queue	WS	1912920	8
136438.395	issue	WS	1912920	8
136439.341	cmplt	WS	1912920	8
136439.554	queue	WS	1849744	8
136439.554	queue	WS	1849752	8
136439.585	queue	WS	1849760	8
136439.585	queue	WS	1849768	8
136439.615	queue	WS	1849776	8
136439.615	queue	WS	1849784	8
136439.615	queue	WS	1849792	8
136439.646	queue	WS	1849800	8
136439.646	queue	WS	1849808	8
136440.043	issue	WS	1849744	72
136443.827	cmplt	WS	1849744	72
136443.949	queue	WS	1849816	8
136444.010	issue	WS	1849816	8
136444.895	cmplt	WS	1849816	8
136445.140	queue	WS	1849824	8
136445.140	queue	WS	1849832	8
136445.201	issue	WS	1849824	16
136446.147	cmplt	WS	1849824	16
136446.238	queue	WS	1849840	8
136446.299	issue	WS	1849840	8
136447.184	cmplt	WS	1849840	8
136471.204	queue	WS	1981400	72
136471.296	issue	WS	1981400	72
136478.010	cmplt	WS	1981400	72
136478.285	queue	WS	1849848	8
136478.285	queue	WS	1849856	8
136478.315	queue	WS	1849864	8
136478.315	queue	WS	1849872	8
136478.346	queue	WS	1849880	8
136478.346	queue	WS	1849888	8
136478.346	queue	WS	1849896	8
136480.055	issue	WS	1849848	56
136482.283	cmplt	WS	1849848	56
136482.436	queue	WS	1849904	8
136482.497	issue	WS	1849904	8
136483.382	cmplt	WS	1849904	8
137140.058	queue	W	1835696	8
137140.180	queue	W	1835528	8
137140.272	issue	W	1835696	8
137144.270	issue	W	1835528	8
137145.155	cmplt	W	1835696	8
137145.979	cmplt	W	1835528	8
141432.535	queue	WS	1916928	8
141432.657	issue	WS	1916928	8
141437.693	cmplt	WS	1916928	8
141438.425	queue	WS	1916928	8
141438.486	issue	WS	1916928	8
141439.310	cmplt	WS	1916928	8
141455.883	queue	WS	1912920	8
141456.005	issue	WS	1912920	8
141456.951	cmplt	WS	1912920	8
141457.134	queue	WS	1849912	8
141457.134	queue	WS	1849920	8
141457.165	queue	WS	1849928	8
141457.165	queue	WS	1849936	8
141457.195	queue	WS	1849944	8
141457.195	queue	WS	1849952	8
141457.195	queue	WS	1849960	8
141457.226	queue	WS	1849968	8
141457.226	queue	WS	1849976	8
141460.034	issue	WS	1849912	72
141462.475	cmplt	WS	1849912	72
141462.597	queue	WS	1849984	8
141462.658	issue	WS	1849984	8
141463.574	cmplt	WS	1849984	8
141463.818	queue	WS	1849992	8
141463.849	queue	WS	1850000	8
141463.910	issue	WS	1849992	16
141465.069	cmplt	WS	1849992	16
141465.130	queue	WS	1850008	8
141465.191	issue	WS	1850008	8
141466.077	cmplt	WS	1850008	8
141490.066	queue	WS	1981472	72
141490.157	issue	WS	1981472	72
141492.568	cmplt	WS	1981472	72
141492.812	queue	WS	1850016	8
141492.843	queue	WS	1850024	8
141492.843	queue	WS	1850032	8
141492.843	queue	WS	1850040	8
141492.873	queue	WS	1850048	8
141492.873	queue	WS	1850056	8
141492.873	queue	WS	1850064	8
141500.046	issue	WS	1850016	56
141506.730	cmplt	WS	1850016	56
141506.913	queue	WS	1850072	8
141506.943	issue	WS	1850072	8
141507.920	cmplt	WS	1850072	8
146451.366	queue	WS	1916928	8
146451.457	issue	WS	1916928	8
146456.585	cmplt	WS	1916928	8
146457.317	queue	WS	1916928	8
146457.378	issue	WS	1916928	8
146458.233	cmplt	WS	1916928	8
146474.561	queue	WS	1912920	8
146474.653	issue	WS	1912920	8
146475.507	cmplt	WS	1912920	8
146475.752	queue	WS	1850080	8
146475.782	queue	WS	1850088	8
146475.782	queue	WS	1850096	8
146475.813	queue	WS	1850104	8
146475.813	queue	WS	1850112	8
146475.813	queue	WS	1850120	8
146475.843	queue	WS	1850128	8
146475.843	queue	WS	1850136	8
146475.843	queue	WS	1850144	8
146480.055	issue	WS	1850080	72
146486.586	cmplt	WS	1850080	72
146486.708	queue	WS	1850152	8
146486.739	issue	WS	1850152	8
146487.593	cmplt	WS	1850152	8
146487.838	queue	WS	1850160	8
146487.868	queue	WS	1850168	8
146487.899	issue	WS	1850160	16
146488.784	cmplt	WS	1850160	16
146488.845	queue	WS	1850176	8
146488.906	issue	WS	1850176	8
146489.821	cmplt	WS	1850176	8
146513.902	queue	WS	2634016	72
146513.994	issue	WS	2634016	72
146516.130	cmplt	WS	2634016	72
146516.405	queue	WS	1850184	8
146516.405	queue	WS	1850192	8
146516.435	queue	WS	1850200	8
146516.435	queue	WS	1850208	8
146516.466	queue	WS	1850216	8
146516.466	queue	WS	1850224	8
146516.466	queue	WS	1850232	8
146520.037	issue	WS	1850184	56
146521.929	cmplt	WS	1850184	56
146522.112	queue	WS	1850240	8
146522.143	issue	WS	1850240	8
146523.058	cmplt	WS	1850240	8
147140.088	queue	W	1835696	8
147140.119	queue	W	2621960	8
147140.241	issue	W	1835696	8
147144.270	issue	W	2621960	8
147145.063	cmplt	W	1835696	8
147146.406	cmplt	W	2621960	8
151495.529	queue	WS	1916928	8
151495.651	issue	WS	1916928	8
151501.175	cmplt	WS	1916928	8
151501.908	queue	WS	1916928	8
151501.969	issue	WS	1916928	8
151502.884	cmplt	WS	1916928	8
151519.060	queue	WS	1912920	8
151519.152	issue	WS	1912920	8
151520.037	cmplt	WS	1912920	8
151520.220	queue	WS	1850248	8
151520.250	queue	WS	1850256	8
151520.281	queue	WS	1850264	8
151520.281	queue	WS	1850272	8
151520.281	queue	WS	1850280	8
151520.311	queue	WS	1850288	8
151520.311	queue	WS	1850296	8
151520.311	queue	WS	1850304	8
151520.342	queue	WS	1850312	8
151530.047	issue	WS	1850248	72
151532.764	cmplt	WS	1850248	72
151532.886	queue	WS	1850320	8
151532.916	issue	WS	1850320	8
151533.862	cmplt	WS	1850320	8
151534.106	queue	WS	1850328	8
151534.137	queue	WS	1850336	8
151534.198	issue	WS	1850328	16
151535.266	cmplt	WS	1850328	16
151535.327	queue	WS	1850344	8
151535.388	issue	WS	1850344	8
151536.243	cmplt	WS	1850344	8
151560.415	queue	WS	1981544	72
151560.507	issue	WS	1981544	72
151563.192	cmplt	WS	1981544	72
151563.437	queue	WS	1850352	8
151563.467	queue	WS	1850360	8
151563.498	queue	WS	1850368	8
151563.498	queue	WS	1850376	8
151563.528	queue	WS	1850384	8
151563.528	queue	WS	1850392	8
151563.528	queue	WS	1850400	8
151570.059	issue	WS	1850352	56
151574.119	cmplt	WS	1850352	56
151574.302	queue	WS	1850408	8
151574.332	issue	WS	1850408	8
151575.156	cmplt	WS	1850408	8
156509.202	queue	WS	1916928	8
156509.293	issue	WS	1916928	8
156514.360	cmplt	WS	1916928	8
156515.062	queue	WS	1916928	8
156515.123	issue	WS	1916928	8
156516.038	cmplt	WS	1916928	8
156532.703	queue	WS	1912920	8
156532.825	issue	WS	1912920	8
156533.771	cmplt	WS	1912920	8
156533.923	queue	WS	1850416	8
156533.954	queue	WS	1850424	8
156533.984	queue	WS	1850432	8
156533.984	queue	WS	1850440	8
156533.984	queue	WS	1850448	8
156534.015	queue	WS	1850456	8
156534.015	queue	WS	1850464	8
156534.015	queue	WS	1850472	8
156534.045	queue	WS	1850480	8
156540.058	issue	WS	1850416	72
156546.864	cmplt	WS	1850416	72
156546.986	queue	WS	1850488	8
156547.047	issue	WS	1850488	8
156547.993	cmplt	WS	1850488	8
156548.237	queue	WS	1850496	8
156548.237	queue	WS	1850504	8
156548.298	issue	WS	1850496	16
156549.245	cmplt	WS	1850496	16
156549.336	queue	WS	1850512	8
156549.397	issue	WS	1850512	8
156550.221	cmplt	WS	1850512	8
156574.332	queue	WS	1981616	72
156574.424	issue	WS	1981616	72
156581.199	cmplt	WS	1981616	72
156581.474	queue	WS	1850520	8
156581.505	queue	WS	1850528	8
156581.505	queue	WS	1850536	8
156581.505	queue	WS	1850544	8
156581.535	queue	WS	1850552	8
156581.535	queue	WS	1850560	8
156581.535	queue	WS	1850568	8
156590.050	issue	WS	1850520	56
156593.835	cmplt	WS	1850520	56
156593.987	queue	WS	1850576	8
156594.049	issue	WS	1850576	8
156594.964	cmplt	WS	1850576	8
157140.088	queue	W	1835696	8
157140.119	queue	W	2621960	8
157140.241	issue	W	1835696	8
157144.270	issue	W	2621960	8
157145.063	cmplt	W	1835696	8
157146.559	cmplt	W	2621960	8
161534.473	queue	WS	1916928	8
161534.595	issue	WS	1916928	8
161540.058	cmplt	WS	1916928	8
161540.790	queue	WS	1916928	8
161540.852	issue	WS	1916928	8
161541.706	cmplt	WS	1916928	8
161557.882	queue	WS	1912920	8
161557.973	issue	WS	1912920	8
161558.920	cmplt	WS	1912920	8
161559.103	queue	WS	1850584	8
161559.103	queue	WS	1850592	8
161559.133	queue	WS	1850600	8
161559.133	queue	WS	1850608	8
161559.164	queue	WS	1850616	8
161559.164	queue	WS	1850624	8
161559.164	queue	WS	1850632	8
161559.194	queue	WS	1850640	8
161559.194	queue	WS	1850648	8
161560.049	issue	WS	1850584	72
161562.490	cmplt	WS	1850584	72
161562.613	queue	WS	1850656	8
161562.674	issue	WS	1850656	8
161563.589	cmplt	WS	1850656	8
161563.864	queue	WS	1850664	8
161563.864	queue	WS	1850672	8
161563.925	issue	WS	1850664	16
161565.085	cmplt	WS	1850664	16
161565.146	queue	WS	1850680	8
161565.207	issue	WS	1850680	8
161566.061	cmplt	WS	1850680	8
161590.081	queue	WS	1981688	72
161590.172	issue	WS	1981688	72
161596.887	cmplt	WS	1981688	72
161597.131	queue	WS	1850688	8
161597.162	queue	WS	1850696	8
161597.192	queue	WS	1850704	8
161597.192	queue	WS	1850712	8
161597.192	queue	WS	1850720	8
161597.223	queue	WS	1850728	8
161597.223	queue	WS	1850736	8
161600.214	issue	WS	1850688	56
161602.472	cmplt	WS	1850688	56
161602.594	queue	WS	1850744	8
161602.655	issue	WS	1850744	8
161603.571	cmplt	WS	1850744	8
166576.041	queue	WS	1916928	8
166576.133	issue	WS	1916928	8
166581.199	cmplt	WS	1916928	8
166581.993	queue	WS	1916928	8
166582.054	issue	WS	1916928	8
166582.878	cmplt	WS	1916928	8
166599.054	queue	WS	1912920	8
166599.145	issue	WS	1912920	8
166600.031	cmplt	WS	1912920	8
166600.305	queue	WS	1850752	8
166600.336	queue	WS	1850760	8
166600.336	queue	WS	1850768	8
166600.366	queue	WS	1850776	8
166600.366	queue	WS	1850784	8
166600.397	queue	WS	1850792	8
166600.397	queue	WS	1850800	8
166600.397	queue	WS	1850808	8
166600.427	queue	WS	1850816	8
166610.011	issue	WS	1850752	72
166616.786	cmplt	WS	1850752	72
166616.908	queue	WS	1850824	8
166616.969	issue	WS	1850824	8
166617.793	cmplt	WS	1850824	8
166618.038	queue	WS	1850832	8
166618.068	queue	WS	1850840	8
166618.099	issue	WS	1850832	16
166619.014	cmplt	WS	1850832	16
166619.075	queue	WS	1850848	8
166619.136	issue	WS	1850848	8
166620.052	cmplt	WS	1850848	8
166644.132	queue	WS	1981760	72
166644.224	issue	WS	1981760	72
166646.849	cmplt	WS	1981760	72
166647.123	queue	WS	1850856	8
166647.123	queue	WS	1850864	8
166647.154	queue	WS	1850872	8
166647.154	queue	WS	1850880	8
166647.154	queue	WS	1850888	8
166647.184	queue	WS	1850896	8
166647.184	queue	WS	1850904	8
166650.053	issue	WS	1850856	56
166656.737	cmplt	WS	1850856	56
166656.890	queue	WS	1850912	8
166656.951	issue	WS	1850912	8
166657.867	cmplt	WS	1850912	8
167140.088	queue	W	1835696	8
167140.241	issue	W	1835696	8
167145.033	cmplt	W	1835696	8
171297.909	queue	WS	1916928	8
171298.031	issue	WS	1916928	8
171303.067	cmplt	WS	1916928	8
171303.800	queue	WS	1916928	8
171303.861	issue	WS	1916928	8
171304.776	cmplt	WS	1916928	8
171321.349	queue	WS	1912920	8
171321.441	issue	WS	1912920	8
171322.326	cmplt	WS	1912920	8
171322.509	queue	WS	1850920	8
171322.539	queue	WS	1850928	8
171322.570	queue	WS	1850936	8
171322.570	queue	WS	1850944	8
171322.570	queue	WS	1850952	8
171322.600	queue	WS	1850960	8
171322.600	queue	WS	1850968	8
171322.600	queue	WS	1850976	8
171322.631	queue	WS	1850984	8
171330.047	issue	WS	1850920	72
171332.703	cmplt	WS	1850920	72
171332.825	queue	WS	1850992	8
171332.886	issue	WS	1850992	8
171333.771	cmplt	WS	1850992	8
171334.015	queue	WS	1851000	8
171334.045	queue	WS	1851008	8
171334.076	issue	WS	1851000	16
171335.144	cmplt	WS	1851000	16
171335.205	queue	WS	1851016	8
171335.266	issue	WS	1851016	8
171336.090	cmplt	WS	1851016	8
171360.385	queue	WS	1981832	72
171360.476	issue	WS	1981832	72
171362.918	cmplt	WS	1981832	72
171363.192	queue	WS	1851024	8
171363.192	queue	WS	1851032	8
171363.223	queue	WS	1851040	8
171363.223	queue	WS	1851048	8
171363.253	queue	WS	1851056	8
171363.253	queue	WS	1851064	8
171363.253	queue	WS	1851072	8
171370.059	issue	WS	1851024	56
171372.410	cmplt	WS	1851024	56
171372.562	queue	WS	1851080	8
171372.593	issue	WS	1851080	8
171373.478	cmplt	WS	1851080	8
176335.083	queue	WS	1916928	8
176335.175	issue	WS	1916928	8
176340.241	cmplt	WS	1916928	8
176341.004	queue	WS	1916928	8
176341.065	issue	WS	1916928	8
176341.981	cmplt	WS	1916928	8
176358.523	queue	WS	1912920	8
176358.614	issue	WS	1912920	8
176359.560	cmplt	WS	1912920	8
176359.744	queue	WS	1851088	8
176359.774	queue	WS	1851096	8
176359.774	queue	WS	1851104	8
176359.805	queue	WS	1851112	8
176359.805	queue	WS	1851120	8
176359.835	queue	WS	1851128	8
176359.835	queue	WS	1851136	8
176359.835	queue	WS	1851144	8
176359.866	queue	WS	1851152	8
176360.079	issue	WS	1851088	72
176365.115	cmplt	WS	1851088	72
176365.237	queue	WS	1851160	8
176365.298	issue	WS	1851160	8
176366.244	cmplt	WS	1851160	8
176366.489	queue	WS	1851168	8
176366.489	queue	WS	1851176	8
176366.550	issue	WS	1851168	16
176367.496	cmplt	WS	1851168	16
176367.587	queue	WS	1851184	8
176367.648	issue	WS	1851184	8
176368.472	cmplt	WS	1851184	8
176392.553	queue	WS	1981904	72
176392.675	issue	WS	1981904	72
176399.267	cmplt	WS	1981904	72
176399.542	queue	WS	1851192	8
176399.573	queue	WS	1851200	8
176399.573	queue	WS	1851208	8
176399.573	queue	WS	1851216	8
176399.603	queue	WS	1851224	8
176399.603	queue	WS	1851232	8
176399.603	queue	WS	1851240	8
176400.061	issue	WS	1851192	56
176403.907	cmplt	WS	1851192	56
176404.029	queue	WS	1851248	8
176404.090	issue	WS	1851248	8
176405.036	cmplt	WS	1851248	8
177140.119	queue	W	1835696	8
177140.241	issue	W	1835696	8
177145.063	cmplt	W	1835696	8
181441.569	queue	WS	1851256	8
181441.599	queue	WS	1851264	8
181441.630	queue	WS	1851272	8
181441.630	queue	WS	1851280	8
181441.660	queue	WS	1851288	8
181441.660	queue	WS	1851296	8
181441.660	queue	WS	1851304	8
181441.691	queue	WS	1851312	8
181441.691	queue	WS	1851320	8
181441.691	queue	WS	1851328	8
181441.721	queue	WS	1851336	8
181441.721	queue	WS	1851344	8
181441.721	queue	WS	1851352	8
181441.752	queue	WS	1851360	8
181441.752	queue	WS	1851368	8
181441.752	queue	WS	1851376	8
181441.874	issue	WS	1851256	128
181451.915	cmplt	WS	1851256	128
181452.098	queue	WS	1851384	8
181452.159	issue	WS	1851384	8
181453.105	cmplt	WS	1851384	8
181665.863	queue	WS	1916928	8
181665.955	issue	WS	1916928	8
181671.082	cmplt	WS	1916928	8
181671.753	queue	WS	1916928	8
181671.814	issue	WS	1916928	8
181672.700	cmplt	WS	1916928	8
181687.624	queue	WS	1912920	8
181687.716	issue	WS	1912920	8
181688.631	cmplt	WS	1912920	8
181688.753	queue	WS	1851392	8
181688.784	queue	WS	1851400	8
181688.814	queue	WS	1851408	8
181690.035	issue	WS	1851392	24
181692.019	cmplt	WS	1851392	24
181692.110	queue	WS	1851416	8
181692.172	issue	WS	1851416	8
181693.026	cmplt	WS	1851416	8
181693.240	queue	WS	1851424	8
181693.270	queue	WS	1851432	8
181693.301	issue	WS	1851424	16
181694.216	cmplt	WS	1851424	16
181694.277	queue	WS	1851440	8
181694.338	issue	WS	1851440	8
181695.193	cmplt	WS	1851440	8
181716.069	queue	WS	1981976	72
181716.161	issue	WS	1981976	72
181722.936	cmplt	WS	1981976	72
181723.211	queue	WS	1851448	8
181723.211	queue	WS	1851456	8
181723.241	queue	WS	1851464	8
181723.241	queue	WS	1851472	8
181723.241	queue	WS	1851480	8
181723.272	queue	WS	1851488	8
181723.272	queue	WS	1851496	8
181730.047	issue	WS	1851448	56
181732.336	cmplt	WS	1851448	56
181732.489	queue	WS	1851504	8
181732.519	issue	WS	1851504	8
181733.405	cmplt	WS	1851504	8
186559.744	queue	WS	1916928	8
186559.835	issue	WS	1916928	8
186564.932	cmplt	WS	1916928	8
186565.634	queue	WS	1916928	8
186565.665	issue	WS	1916928	8
186566.519	cmplt	WS	1916928	8
186581.993	queue	WS	1912920	8
186582.085	issue	WS	1912920	8
186582.970	cmplt	WS	1912920	8
186583.153	queue	WS	1851512	8
186583.153	queue	WS	1851520	8
186583.183	queue	WS	1851528	8
186583.183	queue	WS	1851536	8
186583.183	queue	WS	1851544	8
186583.214	queue	WS	1851552	8
186583.214	queue	WS	1851560	8
186583.244	queue	WS	1851568	8
186583.244	queue	WS	1851576	8
186590.050	issue	WS	1851512	72
186596.734	cmplt	WS	1851512	72
186596.856	queue	WS	1851584	8
186596.917	issue	WS	1851584	8
186597.864	cmplt	WS	1851584	8
186598.077	queue	WS	1851592	8
186598.108	queue	WS	1851600	8
186598.169	issue	WS	1851592	16
186599.298	cmplt	WS	1851592	16
186599.359	queue	WS	1851608	8
186599.420	issue	WS	1851608	8
186600.244	cmplt	WS	1851608	8
186621.303	queue	WS	1982048	72
186621.425	issue	WS	1982048	72
186623.897	cmplt	WS	1982048	72
186624.142	queue	WS	1851616	8
186624.172	queue	WS	1851624	8
186624.203	queue	WS	1851632	8
186624.203	queue	WS	1851640	8
186624.203	queue	WS	1851648	8
186624.233	queue	WS	1851656	8
186624.233	queue	WS	1851664	8
186630.032	issue	WS	1851616	56
186636.563	cmplt	WS	1851616	56
186636.685	queue	WS	1851672	8
186636.777	issue	WS	1851672	8
186637.723	cmplt	WS	1851672	8
187140.058	queue	W	2883584	8
187140.119	queue	W	1835536	8
187140.150	queue	W	1835544	8
187140.180	queue	W	1835696	8
187140.180	queue	W	1835704	8
187140.211	queue	W	1872416	8
187140.241	queue	W	2097672	8
187140.241	queue	W	2359296	8
187140.272	queue	W	2621960	8
187140.424	issue	W	1872416	8
187144.453	issue	W	2097672	8
187145.338	cmplt	W	1872416	8
187145.399	issue	W	2359296	8
187146.406	cmplt	W	2097672	8
187146.467	issue	W	2621960	8
187147.902	cmplt	W	2359296	8
187147.963	issue	W	2883584	8
187148.909	cmplt	W	2621960	8
187148.970	issue	W	1835536	16
187149.916	cmplt	W	2883584	8
187150.008	issue	W	1835696	16
187151.289	cmplt	W	1835536	16
187152.144	cmplt	W	1835696	16
191529.498	queue	R	893760	8
191529.651	issue	R	893760	8
191534.168	cmplt	R	893760	8
191580.681	queue	WS	1916928	8
191580.772	issue	WS	1916928	8
191581.840	cmplt	WS	1916928	8
191582.481	queue	WS	1916928	8
191582.542	issue	WS	1916928	8
191583.458	cmplt	WS	1916928	8
191605.982	queue	WS	1912920	8
191606.074	issue	WS	1912920	8
191606.928	cmplt	WS	1912920	8
191607.142	queue	WS	1851680	8
191607.142	queue	WS	1851688	8
191607.172	queue	WS	1851696	8
191607.172	queue	WS	1851704	8
191607.203	queue	WS	1851712	8
191607.203	queue	WS	1851720	8
191607.203	queue	WS	1851728	8
191607.233	queue	WS	1851736	8
191607.233	queue	WS	1851744	8
191610.072	issue	WS	1851680	72
191612.727	cmplt	WS	1851680	72
191612.880	queue	WS	1851752	8
191612.941	issue	WS	1851752	8
191613.826	cmplt	WS	1851752	8
191614.131	queue	WS	1851760	8
191614.161	queue	WS	1851768	8
191614.192	issue	WS	1851760	16
191615.108	cmplt	WS	1851760	16
191615.199	queue	WS	1851776	8
191615.230	issue	WS	1851776	8
191616.054	cmplt	WS	1851776	8
191660.583	queue	WS	2634088	72
191660.674	issue	WS	2634088	72
191667.419	cmplt	WS	2634088	72
191667.664	queue	WS	1851784	8
191667.694	queue	WS	1851792	8
191667.694	queue	WS	1851800	8
191667.725	queue	WS	1851808	8
191667.725	queue	WS	1851816	8
191667.755	queue	WS	1851824	8
191667.755	queue	WS	1851832	8
191670.075	issue	WS	1851784	56
191671.998	cmplt	WS	1851784	56
191672.089	queue	WS	1851840	8
191672.150	issue	WS	1851840	8
191673.066	cmplt	WS	1851840	8
191681.795	queue	R	938600	8
191681.886	issue	R	938600	8
191682.344	cmplt	R	938600	8
191682.954	queue	R	938592	8
191683.015	issue	R	938592	8
191683.321	cmplt	R	938592	8
191685.060	queue	R	938568	24
191685.121	issue	R	938568	24
191685.671	cmplt	R	938568	24
191685.945	queue	RM	2626072	8
191686.006	issue	RM	2626072	8
191686.403	cmplt	RM	2626072	8
191686.586	queue	R	2633048	32
191686.647	issue	R	2633048	32
191687.258	cmplt	R	2633048	32
191687.349	queue	R	2633112	8
191687.410	issue	R	2633112	8
191687.716	cmplt	R	2633112	8
191687.899	queue	R	2633080	32
191687.899	queue	R	2633120	8
191687.990	issue	R	2633120	8
191688.021	issue	R	2633080	32
191688.356	cmplt	R	2633120	8
191688.906	cmplt	R	2633080	32
191699.496	queue	R	1015768	24
191699.557	queue	R	1015808	72
191699.588	queue	R	1015904	8
191699.588	queue	R	1015944	8
191699.710	issue	R	1015768	24
191699.802	issue	R	1015808	72
191700.412	cmplt	R	1015768	24
191700.473	issue	R	1015904	8
191701.450	cmplt	R	1015808	72
191701.511	issue	R	1015944	8
191701.724	cmplt	R	1015904	8
191701.938	cmplt	R	1015944	8
191787.456	queue	R	1967272	256
191787.822	issue	R	1967272	256
191791.363	cmplt	R	1967272	256
197012.910	queue	WS	1916928	8
197012.971	issue	WS	1916928	8
197012.971	queue	WS	1851848	8
197013.002	queue	WS	1851856	8
197013.032	queue	WS	1851864	8
197013.032	queue	WS	1851872	8
197013.032	queue	WS	1851880	8
197013.063	queue	WS	1851888	8
197013.063	queue	WS	1851896	8
197013.063	queue	WS	1851904	8
197013.093	queue	WS	1851912	8
197059.973	issue	WS	1851848	72
197060.980	cmplt	WS	1916928	8
197067.725	cmplt	WS	1851848	72
197067.847	queue	WS	1851920	8
197067.908	issue	WS	1851920	8
197068.274	queue	WS	1916928	8
197068.854	cmplt	WS	1851920	8
197068.915	issue	WS	1916928	8
197069.922	cmplt	WS	1916928	8
197084.969	queue	WS	1912920	8
197085.060	issue	WS	1912920	8
197085.976	cmplt	WS	1912920	8
197086.128	queue	WS	1851928	8
197086.128	queue	WS	1851936	8
197086.159	queue	WS	1851944	8
197090.005	issue	WS	1851928	24
197091.775	cmplt	WS	1851928	24
197091.866	queue	WS	1851952	8
197091.927	issue	WS	1851952	8
197092.843	cmplt	WS	1851952	8
197093.026	queue	WS	1851960	8
197093.057	queue	WS	1851968	8
197093.118	issue	WS	1851960	16
197094.430	cmplt	WS	1851960	16
197094.522	queue	WS	1851976	8
197094.583	issue	WS	1851976	8
197095.468	cmplt	WS	1851976	8
197116.527	queue	WS	1982120	72
197116.618	issue	WS	1982120	72
197116.649	queue	R	2626088	8
197116.710	queue	R	2626104	8
197116.740	queue	R	2626120	8
197116.771	queue	R	2626128	8
197116.771	queue	R	2626136	8
197116.801	queue	R	2626144	8
197116.832	queue	R	2626152	8
197116.832	queue	R	2626160	8
197116.832	queue	R	2626168	8
197119.304	cmplt	WS	1982120	72
197119.396	issue	R	2626088	8
197119.457	issue	R	2626104	8
197119.609	queue	WS	1851984	8
197119.640	queue	WS	1851992	8
197119.640	queue	WS	1852000	8
197119.670	queue	WS	1852008	8
197119.670	queue	WS	1852016	8
197119.701	queue	WS	1852024	8
197119.701	queue	WS	1852032	8
197119.853	cmplt	R	2626088	8
197119.884	issue	R	2626120	56
197120.128	cmplt	R	2626104	8
197120.922	cmplt	R	2626120	56
197130.047	issue	WS	1851984	56
197139.356	cmplt	WS	1851984	56
197139.539	queue	WS	1852040	8
197139.570	issue	WS	1852040	8
197140.119	queue	W	1835008	8
197140.180	queue	W	1835696	8
197140.211	queue	W	2621960	8
197140.455	cmplt	WS	1852040	8
197140.516	issue	W	1835696	8
197140.577	issue	W	1835008	8
197141.492	cmplt	W	1835696	8
197141.523	issue	W	2621960	8
197142.378	cmplt	W	1835008	8
197143.873	cmplt	W	2621960	8
201623.195	queue	WS	1916928	8
201623.318	issue	WS	1916928	8
201628.781	cmplt	WS	1916928	8
201629.422	queue	WS	1916928	8
201629.483	issue	WS	1916928	8
201630.337	cmplt	WS	1916928	8
201645.597	queue	WS	1912920	8
201645.689	issue	WS	1912920	8
201646.635	cmplt	WS	1912920	8
201646.818	queue	WS	1852048	8
201646.818	queue	WS	1852056	8
201646.849	queue	WS	1852064	8
201646.849	queue	WS	1852072	8
201646.879	queue	WS	1852080	8
201646.879	queue	WS	1852088	8
201646.879	queue	WS	1852096	8
201646.910	queue	WS	1852104	8
201646.910	queue	WS	1852112	8
201650.053	issue	WS	1852048	72
201653.991	cmplt	WS	1852048	72
201654.113	queue	WS	1852120	8
201654.174	issue	WS	1852120	8
201655.059	cmplt	WS	1852120	8
201655.303	queue	WS	1852128	8
201655.303	queue	WS	1852136	8
201655.364	issue	WS	1852128	16
201656.341	cmplt	WS	1852128	16
201656.402	queue	WS	1852144	8
201656.463	issue	WS	1852144	8
201657.409	cmplt	WS	1852144	8
201678.468	queue	WS	1982192	72
201678.559	issue	WS	1982192	72
201685.335	cmplt	WS	1982192	72
201685.610	queue	WS	1852152	8
201685.640	queue	WS	1852160	8
201685.671	queue	WS	1852168	8
201685.671	queue	WS	1852176	8
201685.671	queue	WS	1852184	8
201685.701	queue	WS	1852192	8
201685.701	queue	WS	1852200	8
201690.035	issue	WS	1852152	56
201692.568	cmplt	WS	1852152	56
201692.721	queue	WS	1852208	8
201692.782	issue	WS	1852208	8
201693.698	cmplt	WS	1852208	8
202140.119	queue	W	1835696	8
202140.150	queue	W	2621960	8
202140.241	issue	W	1835696	8
202144.300	issue	W	2621960	8
202145.155	cmplt	W	1835696	8
202146.650	cmplt	W	2621960	8
206624.966	queue	WS	1916928	8
206625.088	issue	WS	1916928	8
206630.612	cmplt	WS	1916928	8
206631.253	queue	WS	1916928	8
206631.314	issue	WS	1916928	8
206632.168	cmplt	WS	1916928	8
206647.429	queue	WS	1912920	8
206647.520	issue	WS	1912920	8
206648.344	cmplt	WS	1912920	8
206648.619	queue	WS	1852216	8
206648.619	queue	WS	1852224	8
206648.649	queue	WS	1852232	8
206648.649	queue	WS	1852240	8
206648.680	queue	WS	1852248	8
206648.680	queue	WS	1852256	8
206648.680	queue	WS	1852264	8
206648.710	queue	WS	1852272	8
206648.710	queue	WS	1852280	8
206650.053	issue	WS	1852216	72
206652.556	cmplt	WS	1852216	72
206652.678	queue	WS	1852288	8
206652.739	issue	WS	1852288	8
206653.594	cmplt	WS	1852288	8
206653.868	queue	WS	1852296	8
206653.899	queue	WS	1852304	8
206653.960	issue	WS	1852296	16
206655.547	cmplt	WS	1852296	16
206655.639	queue	WS	1852312	8
206655.700	issue	WS	1852312	8
206656.524	cmplt	WS	1852312	8
206677.888	queue	WS	2634160	72
206677.980	issue	WS	2634160	72
206685.060	cmplt	WS	2634160	72
206685.335	queue	WS	1852320	8
206685.365	queue	WS	1852328	8
206685.365	queue	WS	1852336	8
206685.396	queue	WS	1852344	8
206685.396	queue	WS	1852352	8
206685.426	queue	WS	1852360	8
206685.426	queue	WS	1852368	8
206690.066	issue	WS	1852320	56
206696.322	cmplt	WS	1852320	56
206696.475	queue	WS	1852376	8
206696.536	issue	WS	1852376	8
206697.421	cmplt	WS	1852376	8
211647.490	queue	WS	1916928	8
211647.612	issue	WS	1916928	8
211652.312	cmplt	WS	1916928	8
211652.953	queue	WS	1916928	8
211653.014	issue	WS	1916928	8
211653.929	cmplt	WS	1916928	8
211669.159	queue	WS	1912920	8
211669.251	issue	WS	1912920	8
211670.105	cmplt	WS	1912920	8
211670.349	queue	WS	1852384	8
211670.380	queue	WS	1852392	8
211670.380	queue	WS	1852400	8
211670.380	queue	WS	1852408	8
211670.410	queue	WS	1852416	8
211670.410	queue	WS	1852424	8
211670.441	queue	WS	1852432	8
211670.441	queue	WS	1852440	8
211670.441	queue	WS	1852448	8
211680.055	issue	WS	1852384	72
211686.769	cmplt	WS	1852384	72
211686.922	queue	WS	1852456	8
211686.953	issue	WS	1852456	8
211687.868	cmplt	WS	1852456	8
211688.112	queue	WS	1852464	8
211688.112	queue	WS	1852472	8
211688.173	issue	WS	1852464	16
211689.028	cmplt	WS	1852464	16
211689.119	queue	WS	1852480	8
211689.181	issue	WS	1852480	8
211690.035	cmplt	WS	1852480	8
211711.033	queue	WS	2634232	72
211711.125	issue	WS	2634232	72
211713.627	cmplt	WS	2634232	72
211713.871	queue	WS	1852488	8
211713.902	queue	WS	1852496	8
211713.933	queue	WS	1852504	8
211713.933	queue	WS	1852512	8
211713.933	queue	WS	1852520	8
211713.963	queue	WS	1852528	8
211713.963	queue	WS	1852536	8
211720.067	issue	WS	1852488	56
211721.990	cmplt	WS	1852488	56
211722.112	queue	WS	1852544	8
211722.173	issue	WS	1852544	8
211723.089	cmplt	WS	1852544	8
212140.088	queue	W	1835528	8
212140.119	queue	W	1835696	8
212140.241	issue	W	1835696	8
212144.270	issue	W	1835528	8
212145.094	cmplt	W	1835696	8
212145.918	cmplt	W	1835528	8
216681.734	queue	WS	1916928	8
216681.856	issue	WS	1916928	8
216686.891	cmplt	WS	1916928	8
216687.532	queue	WS	1916928	8
216687.593	issue	WS	1916928	8
216688.509	cmplt	WS	1916928	8
216703.830	queue	WS	1912920	8
216703.891	issue	WS	1912920	8
216704.868	cmplt	WS	1912920	8
216705.082	queue	WS	1852552	8
216705.112	queue	WS	1852560	8
216705.143	queue	WS	1852568	8
216705.143	queue	WS	1852576	8
216705.143	queue	WS	1852584	8
216705.173	queue	WS	1852592	8
216705.173	queue	WS	1852600	8
216705.204	queue	WS	1852608	8
216705.204	queue	WS	1852616	8
216710.056	issue	WS	1852552	72
216712.468	cmplt	WS	1852552	72
216712.620	queue	WS	1852624	8
216712.681	issue	WS	1852624	8
216713.566	cmplt	WS	1852624	8
216713.810	queue	WS	1852632	8
216713.841	queue	WS	1852640	8
216713.871	issue	WS	1852632	16
216715.001	cmplt	WS	1852632	16
216715.092	queue	WS	1852648	8
216715.153	issue	WS	1852648	8
216715.977	cmplt	WS	1852648	8
216736.975	queue	WS	2634304	72
216737.067	issue	WS	2634304	72
216739.417	cmplt	WS	2634304	72
216739.692	queue	WS	1852656	8
216739.722	queue	WS	1852664	8
216739.722	queue	WS	1852672	8
216739.722	queue	WS	1852680	8
216739.753	queue	WS	1852688	8
216739.753	queue	WS	1852696	8
216739.783	queue	WS	1852704	8
216740.088	issue	WS	1852656	56
216744.941	cmplt	WS	1852656	56
216745.094	queue	WS	1852712	8
216745.155	issue	WS	1852712	8
216746.040	cmplt	WS	1852712	8
221684.969	queue	WS	1916928	8
221685.060	issue	WS	1916928	8
221701.938	cmplt	WS	1916928	8
221702.579	queue	WS	1916928	8
221702.640	issue	WS	1916928	8
221703.525	cmplt	WS	1916928	8
221718.450	queue	WS	1912920	8
221718.541	issue	WS	1912920	8
221719.487	cmplt	WS	1912920	8
221719.731	queue	WS	1852720	8
221719.731	queue	WS	1852728	8
221719.762	queue	WS	1852736	8
221719.762	queue	WS	1852744	8
221719.792	queue	WS	1852752	8
221719.792	queue	WS	1852760	8
221719.792	queue	WS	1852768	8
221719.823	queue	WS	1852776	8
221719.823	queue	WS	1852784	8
221720.037	issue	WS	1852720	72
221727.026	cmplt	WS	1852720	72
221727.148	queue	WS	1852792	8
221727.209	issue	WS	1852792	8
221728.216	cmplt	WS	1852792	8
221728.460	queue	WS	1852800	8
221728.491	queue	WS	1852808	8
221728.521	issue	WS	1852800	16
221729.467	cmplt	WS	1852800	16
221729.559	queue	WS	1852816	8
221729.620	issue	WS	1852816	8
221730.505	cmplt	WS	1852816	8
221751.473	queue	WS	1982264	72
221751.564	issue	WS	1982264	72
221758.187	cmplt	WS	1982264	72
221758.462	queue	WS	1852824	8
221758.492	queue	WS	1852832	8
221758.492	queue	WS	1852840	8
221758.523	queue	WS	1852848	8
221758.523	queue	WS	1852856	8
221758.523	queue	WS	1852864	8
221758.553	queue	WS	1852872	8
221760.049	issue	WS	1852824	56
221769.663	cmplt	WS	1852824	56
221769.785	queue	WS	1852880	8
221769.876	issue	WS	1852880	8
221770.792	cmplt	WS	1852880	8
222140.027	queue	W	1835696	8
222140.150	queue	W	1835528	8
222140.241	issue	W	1835696	8
222144.300	issue	W	1835528	8
222145.155	cmplt	W	1835696	8
222146.040	cmplt	W	1835528	8

[-- Attachment #3: packing_parallel_read_write.txt --]
[-- Type: text/plain, Size: 208323 bytes --]

3.632	queue	R	1061976	8
4.395	queue	R	1061872	8
4.395	queue	R	1061968	8
4.975	queue	R	1095968	8
5.768	queue	R	1095784	184
8.454	queue	R	1114152	8
9.095	queue	R	1113976	176
11.811	queue	R	1097832	24
12.666	queue	R	1013880	8
13.765	queue	R	1013808	8
13.795	queue	R	1013824	16
13.795	queue	R	1013864	16
16.786	queue	R	1074440	8
17.458	queue	R	1074424	8
18.221	queue	R	985616	8
18.892	queue	R	985552	8
19.380	queue	R	984696	8
19.380	queue	R	984720	8
20.113	queue	R	984744	8
20.723	queue	R	988072	8
21.334	queue	R	987928	144
23.562	queue	R	1013448	8
24.172	queue	R	1013416	8
24.203	queue	R	1013440	8
24.996	queue	R	987472	8
25.027	queue	R	987528	8
25.057	queue	R	987560	16
25.088	queue	R	987592	8
26.461	queue	R	987688	8
26.461	queue	R	987736	32
26.522	queue	R	987800	128
31.100	queue	R	1009080	8
31.772	queue	R	1008944	136
37.265	queue	R	1005728	8
37.296	queue	R	1005744	56
37.326	queue	R	1005808	8
37.357	queue	R	1005824	32
42.790	queue	R	1096072	8
43.522	queue	R	1095984	88
45.048	queue	R	1096128	16
45.781	queue	R	1096120	8
46.330	queue	R	1096088	32
53.929	queue	R	1093688	128
65.253	queue	R	1071600	8
65.924	queue	R	1071512	88
67.908	queue	R	1016400	8
68.579	queue	R	1016320	80
74.439	queue	RM	910544	8
75.141	queue	R	915120	32
76.148	queue	R	915152	8
87.899	queue	R	941384	32
177.354	queue	R	1081368	8
178.178	queue	R	979680	8
178.849	queue	R	979544	136
181.016	queue	R	997200	8
181.688	queue	R	997064	136
183.763	queue	R	996704	144
183.824	queue	R	996856	104
187.883	queue	R	988968	8
187.944	queue	R	988984	112
190.874	queue	R	996960	104
198.108	queue	R	998896	8
198.779	queue	R	998760	136
201.434	queue	R	997568	8
201.495	queue	R	997584	112
205.250	queue	R	978912	128
208.210	queue	R	1081344	8
208.271	issue	R	1081344	8
208.729	cmplt	R	1081344	8
212.696	queue	R	956264	32
212.788	issue	R	956264	32
213.582	cmplt	R	956264	32
213.917	queue	R	956296	32
213.948	queue	R	956344	16
214.009	issue	R	956296	32
214.070	issue	R	956344	16
214.711	cmplt	R	956296	32
215.047	cmplt	R	956344	16
282.558	queue	R	1125224	8
282.649	issue	R	1125224	8
283.504	queue	R	1125000	224
288.906	queue	R	1105000	8
289.547	queue	R	1104864	136
291.927	queue	R	1100008	8
291.958	queue	R	1100024	112
293.972	queue	R	1104728	136
310.118	queue	R	1115880	16
310.179	queue	R	1115928	88
310.942	queue	R	1124184	256
315.886	queue	R	1124440	256
316.405	queue	R	1124696	256
321.624	queue	R	1124952	48
511.369	queue	RM	1178400	8
518.419	queue	R	1179424	8
526.690	queue	R	1179360	64
730.902	queue	R	891456	16
901.419	queue	R	1075072	8
905.570	queue	R	1074936	8
905.600	queue	R	1074952	8
905.631	queue	R	1074968	8
905.662	queue	R	1075032	40
914.879	queue	R	1014768	8
958.797	queue	R	1014720	8
958.828	queue	R	1014736	8
966.397	queue	R	1075296	8
974.363	queue	R	1034528	8
974.393	queue	R	1034544	8
982.298	queue	R	1075232	8
982.329	queue	R	1075248	48
990.905	queue	R	1074768	8
990.935	queue	R	1074800	64
990.966	queue	R	1074872	16
990.996	queue	R	1074912	24
1260.308	queue	R	950096	32
1290.829	queue	R	950128	64
1293.759	queue	R	950192	128
1305.478	queue	R	950624	8
1462.506	queue	WS	1845352	8
1462.536	queue	WS	1845360	8
1462.567	queue	WS	1845368	8
1462.567	queue	WS	1845376	8
1462.567	queue	WS	1845384	8
1462.597	queue	WS	1845392	8
1462.597	queue	WS	1845400	8
1462.597	queue	WS	1845408	8
1462.628	queue	WS	1845416	8
1462.628	queue	WS	1845424	8
1462.658	queue	WS	1845432	8
1462.658	queue	WS	1845440	8
1462.658	queue	WS	1845448	8
1629.177	queue	R	950504	120
1629.239	queue	R	950632	128
1634.793	queue	R	947040	32
1707.340	queue	R	947072	64
1708.927	queue	R	947032	8
1790.356	queue	R	947024	8
1822.829	queue	R	947016	8
1897.452	queue	R	947008	8
1977.140	queue	R	947000	8
2046.452	queue	R	946992	8
2070.075	issue	R	2048000	256
2070.258	issue	R	2048256	256
2116.618	queue	R	946984	8
2199.176	queue	R	946976	8
2281.093	queue	R	946968	8
2354.708	queue	R	946960	8
2434.488	queue	R	946952	8
2517.870	queue	R	955720	8
2580.070	issue	R	2072064	512
2598.169	queue	R	955712	8
2598.199	queue	R	955728	16
2679.292	queue	R	947496	8
2759.042	queue	R	947376	120
2759.103	queue	R	947504	128
2898.978	queue	R	947136	32
3080.330	queue	R	947168	64
3085.488	queue	R	947232	128
3159.408	queue	R	947760	8
3237.723	queue	R	947712	32
3320.220	queue	R	947632	80
3320.250	queue	R	947744	16
3320.311	queue	R	947768	104
3428.994	queue	R	947872	256
3466.016	queue	R	955744	384
3497.818	queue	R	948128	256
3529.132	queue	R	949576	32
3591.790	queue	R	954440	8
3766.916	queue	R	948384	256
3773.112	queue	R	949608	64
3786.327	queue	R	949672	128
3822.432	queue	R	949824	8
3862.475	queue	R	949832	32
3904.868	queue	R	949864	64
3970.121	issue	R	949864	64
3995.086	queue	R	950080	16
4023.379	queue	R	950072	8
4099.527	queue	R	950064	8
4151.106	cmplt	R	2161664	512
4151.534	queue	R	2162176	256
4151.900	queue	R	2162432	256
4151.961	issue	R	2162176	512
4158.462	cmplt	R	2162176	512
4158.889	queue	R	2162688	256
4159.255	queue	R	2162944	256
4159.316	issue	R	2162688	512
4166.641	queue	R	2163200	256
4167.007	queue	R	2163456	256
4172.196	queue	R	950056	8
4252.342	queue	R	950024	32
4256.615	queue	R	2163712	256
4256.982	queue	R	2163968	256
4262.780	queue	R	954248	32
4264.367	queue	R	2164224	256
4264.703	queue	R	2164480	256
4272.120	queue	R	2164736	256
4272.669	queue	R	2164992	256
4285.427	queue	R	954280	64
4299.405	queue	R	950008	16
4373.539	queue	R	2165248	256
4373.905	queue	R	2165504	256
4407.905	queue	R	946944	8
4485.549	queue	R	2165760	256
4486.067	queue	R	2166016	256
4487.014	queue	R	948896	32
4622.738	queue	R	2166272	256
4623.104	queue	R	2166528	256
4694.949	queue	R	2166784	256
4695.376	queue	R	2167040	256
4734.045	queue	R	2167296	256
4734.442	queue	R	2167552	256
4773.051	queue	R	2167808	256
4773.447	queue	R	2168064	256
4812.025	queue	R	2168320	256
4812.422	queue	R	2168576	256
4857.806	queue	R	2168832	256
4858.355	queue	R	2169088	256
4913.139	queue	R	2169344	256
4913.688	queue	R	2169600	256
4968.747	queue	R	2169856	256
4969.297	queue	R	2170112	256
5040.562	queue	R	2170368	256
5041.111	queue	R	2170624	256
5129.071	queue	R	2170880	256
5129.620	queue	R	2171136	256
5217.549	queue	R	2171392	256
5218.099	queue	R	2171648	256
5316.985	queue	R	2171904	256
5317.503	queue	R	2172160	256
5439.066	queue	R	2172416	256
5439.463	queue	R	2172672	256
5471.937	queue	R	2172928	256
5472.364	queue	R	2173184	256
5504.929	queue	R	2173440	256
5505.356	queue	R	2173696	256
5537.769	queue	R	2173952	256
5538.135	queue	R	2174208	256
5551.351	queue	WS	1845456	8
5567.099	queue	R	2174464	256
5567.465	queue	R	2174720	256
5575.431	queue	R	2174976	256
5575.797	queue	R	2175232	256
5579.368	queue	R	2175488	256
5582.878	queue	R	2175744	256
5586.449	queue	R	2176000	256
5589.959	queue	R	2176256	256
5593.469	queue	R	2176512	256
5597.009	queue	R	2176768	256
5600.610	queue	R	2177024	256
5604.151	queue	R	2177280	256
5607.722	queue	R	2177536	256
5672.791	queue	W	2652408	1024
5674.103	queue	W	2653432	776
5675.996	queue	W	2654208	1024
5676.392	queue	W	2655232	1024
5676.850	queue	W	2656256	1024
5677.430	queue	W	2657280	1024
5677.857	queue	W	2658304	1024
5678.285	queue	W	2659328	1024
5678.773	queue	W	2660352	1024
5679.231	queue	W	2661376	1024
5679.658	queue	W	2662400	1024
5690.127	queue	W	2663424	1024
5690.646	queue	W	2664448	1024
5691.195	queue	W	2665472	1024
5691.683	queue	W	2666496	1024
5692.141	queue	W	2667520	1024
5692.599	queue	W	2668544	1024
5693.026	queue	W	2669568	1024
5695.101	queue	W	2670592	1024
5695.559	queue	W	2671616	1024
5695.987	queue	W	2672640	1024
5696.597	queue	W	2673664	1024
5697.024	queue	W	2674688	1024
5697.452	queue	W	2675712	1024
5698.001	queue	W	2676736	1024
5698.489	queue	W	2677760	1024
5698.917	queue	W	2678784	1024
5699.344	queue	W	2679808	1024
5699.863	queue	W	2680832	1024
5710.331	queue	W	2681856	1024
5710.758	queue	W	2682880	1024
5711.216	queue	W	2683904	1024
5711.735	queue	W	2684928	1024
5712.315	queue	W	2685952	1024
5713.414	queue	W	2686976	1024
5713.810	queue	W	2688000	1024
5714.238	queue	W	2689024	1024
5714.696	queue	W	2690048	1024
5715.153	queue	W	2691072	1024
5715.703	queue	W	2692096	1024
5715.947	queue	W	2693120	384
5717.412	queue	W	2693504	1024
5718.053	queue	W	2694528	1024
5718.480	queue	W	2695552	1024
5719.060	queue	W	2696576	1024
5719.487	queue	W	2697600	1024
5719.823	queue	W	2698624	832
5743.110	issue	R	2187264	256
5743.690	queue	R	2187520	256
5746.498	cmplt	R	2187264	256
5746.589	issue	R	2187520	256
5747.169	queue	R	2187776	256
5749.947	cmplt	R	2187520	256
5750.099	issue	R	2187776	256
5750.404	queue	R	2188032	256
5753.487	cmplt	R	2187776	256
5753.609	issue	R	2188032	256
5753.884	queue	R	2188288	256
5757.027	cmplt	R	2188032	256
5757.119	issue	R	2188288	256
5757.424	queue	R	2188544	256
5760.537	cmplt	R	2188288	256
5760.720	issue	W	2652408	1024
5760.751	issue	W	2653432	776
5760.781	issue	W	2654208	1024
5760.995	queue	R	2188800	256
5815.718	cmplt	W	2652408	1024
5816.023	cmplt	W	2653432	776
5816.237	cmplt	W	2654208	1024
5816.573	issue	W	2655232	1024
5816.634	issue	W	2656256	1024
5816.634	issue	W	2657280	1024
5867.175	queue	W	2699456	1024
5867.603	queue	W	2700480	1024
5868.030	queue	W	2701504	1024
5868.671	queue	W	2702528	832
5869.525	queue	W	2703360	1024
5869.922	queue	W	2704384	1024
5870.441	queue	W	2705408	1024
5870.868	queue	W	2706432	1024
5870.960	queue	W	2707456	192
5874.195	cmplt	W	2655232	1024
5874.500	cmplt	W	2656256	1024
5874.805	cmplt	W	2657280	1024
5875.141	issue	R	2188544	512
5881.825	cmplt	R	2188544	512
5882.008	issue	W	2658304	1024
5882.313	queue	R	2189056	256
5882.741	queue	R	2189312	256
5899.405	queue	W	1835536	8
5899.466	queue	W	1835544	8
5899.466	queue	W	1872416	8
5899.496	queue	W	2359296	8
5899.527	queue	W	2621968	8
5899.527	queue	W	2621984	8
5899.557	queue	W	2626080	8
5899.588	queue	W	1835008	8
5905.356	queue	W	2707648	1024
5905.784	queue	W	2708672	1024
5906.211	queue	W	2709696	1024
5906.638	queue	W	2710720	1024
5907.035	queue	W	2711744	1024
5907.462	queue	W	2712768	1024
5907.828	cmplt	W	2658304	1024
5908.042	queue	W	2713792	1024
5908.164	issue	R	2189056	512
5908.653	queue	W	2714816	1024
5909.110	queue	W	2715840	1024
5909.507	queue	W	2716864	1024
5909.934	queue	W	2717888	1024
5914.665	cmplt	R	2189056	512
5914.848	issue	W	2659328	1024
5915.153	queue	R	2189568	256
5915.581	queue	R	2189824	256
5916.313	queue	W	2718912	832
5918.266	queue	W	2719744	1024
5918.694	queue	W	2720768	1024
5919.274	queue	W	2721792	1024
5919.670	queue	W	2722816	1024
5920.128	queue	W	2723840	1024
5920.555	queue	W	2724864	1024
5920.952	queue	W	2725888	1024
5921.349	queue	W	2726912	1024
5921.776	queue	W	2727936	1024
5922.173	queue	W	2728960	1024
5922.600	queue	W	2729984	1024
5923.028	queue	W	2731008	1024
5923.424	queue	W	2732032	1024
5923.852	queue	W	2733056	1024
5924.248	queue	W	2734080	1024
5924.645	queue	W	2735104	1024
5926.537	queue	W	2736128	1024
5926.965	queue	W	2737152	1024
5927.392	queue	W	2738176	1024
5927.789	queue	W	2739200	1024
5928.186	queue	W	2740224	1024
5928.582	queue	W	2741248	1024
5928.979	queue	W	2742272	1024
5929.559	queue	W	2743296	1024
5929.956	queue	W	2744320	1024
5940.760	cmplt	W	2659328	1024
5941.126	issue	R	2189568	512
5947.688	cmplt	R	2189568	512
5947.902	issue	W	2660352	1024
5948.207	queue	R	2190080	256
5948.634	queue	R	2190336	256
5949.092	queue	W	2745344	1024
5949.519	queue	W	2746368	1024
5949.947	queue	W	2747392	1024
5950.404	queue	W	2748416	1024
5950.862	queue	W	2749440	1024
5951.045	queue	W	2750464	384
5973.783	cmplt	W	2660352	1024
5974.149	issue	R	2190080	512
5980.650	cmplt	R	2190080	512
5980.833	issue	W	2661376	1024
5981.138	queue	R	2190592	256
5981.566	queue	R	2190848	256
6012.117	cmplt	W	2661376	1024
6012.452	issue	R	2190592	512
6018.953	cmplt	R	2190592	512
6019.106	issue	W	2662400	1024
6019.472	queue	R	2191104	256
6019.869	queue	R	2191360	256
6045.109	cmplt	W	2662400	1024
6045.445	issue	R	2191104	512
6051.915	cmplt	R	2191104	512
6052.068	issue	W	2663424	1024
6052.434	queue	R	2191616	256
6052.861	queue	R	2191872	256
6062.902	queue	R	2191872	256
6078.010	cmplt	W	2663424	1024
6078.315	issue	R	2191616	512
6084.786	cmplt	R	2191616	512
6084.969	issue	W	2664448	1024
6085.030	issue	W	2665472	1024
6085.274	queue	R	2192128	256
6085.793	queue	R	2192384	256
6127.056	cmplt	W	2664448	1024
6127.362	cmplt	W	2665472	1024
6127.667	issue	R	2192128	512
6134.259	cmplt	R	2192128	512
6134.381	issue	W	2666496	1024
6134.442	issue	W	2667520	1024
6134.747	queue	R	2192640	256
6135.297	queue	R	2192896	256
6176.835	cmplt	W	2666496	1024
6177.110	cmplt	W	2667520	1024
6177.445	issue	R	2192640	512
6183.885	cmplt	R	2192640	512
6184.038	issue	W	2668544	1024
6184.068	issue	W	2669568	1024
6184.099	issue	W	2670592	1024
6184.374	queue	R	2193152	256
6184.892	queue	R	2193408	256
6242.240	cmplt	W	2668544	1024
6242.545	cmplt	W	2669568	1024
6242.820	cmplt	W	2670592	1024
6243.156	issue	R	2193152	512
6249.687	cmplt	R	2193152	512
6249.870	issue	W	2671616	1024
6249.901	issue	W	2672640	1024
6249.931	issue	W	2673664	1024
6250.145	queue	R	2193664	256
6250.694	queue	R	2193920	256
6308.256	cmplt	W	2671616	1024
6308.530	cmplt	W	2672640	1024
6308.775	cmplt	W	2673664	1024
6309.080	issue	R	2193664	512
6315.581	cmplt	R	2193664	512
6315.733	issue	W	2674688	1024
6315.794	issue	W	2675712	1024
6315.825	issue	W	2676736	1024
6315.825	issue	W	2677760	1024
6316.008	queue	R	2194176	256
6316.557	queue	R	2194432	256
6395.544	cmplt	W	2674688	1024
6395.819	cmplt	W	2675712	1024
6396.063	cmplt	W	2676736	1024
6396.307	cmplt	W	2677760	1024
6396.612	issue	R	2194176	512
6403.113	cmplt	R	2194176	512
6403.266	issue	W	2678784	1024
6403.327	issue	W	2679808	1024
6403.357	issue	W	2680832	1024
6403.357	issue	W	2681856	1024
6403.388	issue	W	2682880	1024
6403.479	queue	R	2194688	256
6404.029	queue	R	2194944	256
6493.759	cmplt	W	2678784	1024
6494.064	cmplt	W	2679808	1024
6494.308	cmplt	W	2680832	1024
6494.552	cmplt	W	2681856	1024
6494.796	cmplt	W	2682880	1024
6495.101	issue	R	2194688	512
6501.541	cmplt	R	2194688	512
6501.694	issue	W	2683904	1024
6501.724	issue	W	2684928	1024
6501.755	issue	W	2685952	1024
6501.785	issue	W	2686976	1024
6501.816	issue	W	2688000	1024
6501.846	issue	W	2689024	1024
6501.938	queue	R	2195200	256
6502.487	queue	R	2195456	256
6608.057	cmplt	W	2683904	1024
6608.118	queue	WS	1845464	8
6608.302	cmplt	W	2684928	1024
6608.546	cmplt	W	2685952	1024
6608.790	cmplt	W	2686976	1024
6608.790	queue	WS	1845472	8
6608.790	queue	WS	1845480	8
6608.820	queue	WS	1845488	8
6608.820	queue	WS	1845496	8
6609.034	cmplt	W	2688000	1024
6609.370	cmplt	W	2689024	1024
6609.736	issue	R	2195200	512
6616.359	cmplt	R	2195200	512
6616.481	issue	WS	1845464	40
6616.756	queue	R	2195712	256
6617.122	queue	R	2195968	256
6618.434	cmplt	WS	1845464	40
6618.526	issue	W	2690048	1024
6618.556	issue	W	2691072	1024
6618.587	issue	W	2692096	1024
6618.587	issue	W	2693120	384
6681.550	cmplt	W	2690048	1024
6681.886	cmplt	W	2691072	1024
6682.222	cmplt	W	2692096	1024
6682.527	cmplt	W	2693120	384
6682.741	issue	W	2693504	1024
6682.771	issue	W	2694528	1024
6682.802	issue	W	2695552	1024
6682.802	issue	W	2696576	1024
6682.832	issue	W	2697600	1024
6785.778	cmplt	W	2693504	1024
6786.144	cmplt	W	2694528	1024
6786.449	cmplt	W	2695552	1024
6786.785	cmplt	W	2696576	1024
6787.090	cmplt	W	2697600	1024
6787.487	issue	R	2195712	512
6794.018	cmplt	R	2195712	512
6794.171	issue	W	2698624	832
6794.537	queue	R	2196224	256
6794.903	queue	R	2196480	256
6824.477	cmplt	W	2698624	832
6824.813	issue	R	2196224	512
6831.283	cmplt	R	2196224	512
6831.405	issue	W	2699456	1024
6831.772	queue	R	2196736	256
6832.168	queue	R	2196992	256
6860.247	cmplt	W	2699456	1024
6860.644	issue	R	2196736	512
6867.114	cmplt	R	2196736	512
6867.267	issue	W	2700480	1024
6867.633	queue	R	2197248	256
6868.030	queue	R	2197504	256
6895.956	cmplt	W	2700480	1024
6896.353	issue	R	2197248	512
6902.823	cmplt	R	2197248	512
6902.976	issue	W	2701504	1024
6903.311	queue	R	2197760	256
6903.739	queue	R	2198016	256
6931.543	cmplt	W	2701504	1024
6931.940	issue	R	2197760	512
6938.440	cmplt	R	2197760	512
6938.593	issue	W	2702528	832
6938.959	queue	R	2198272	256
6939.325	queue	R	2198528	256
6964.200	cmplt	W	2702528	832
6964.535	issue	R	2198272	512
6971.006	cmplt	R	2198272	512
6971.158	issue	W	2703360	1024
6971.524	queue	R	2198784	256
6971.921	queue	R	2199040	256
7012.056	cmplt	W	2703360	1024
7012.422	issue	R	2198784	512
7019.045	cmplt	R	2198784	512
7019.197	issue	W	2704384	1024
7019.228	issue	W	2705408	1024
7019.533	queue	R	2199296	256
7020.113	queue	R	2199552	256
7061.621	cmplt	W	2704384	1024
7062.017	cmplt	W	2705408	1024
7062.414	issue	R	2199296	512
7068.946	cmplt	R	2199296	512
7069.129	issue	W	2706432	1024
7069.190	issue	W	2707456	192
7069.403	queue	R	2199808	256
7069.831	queue	R	2200064	256
7098.642	cmplt	W	2706432	1024
7099.039	cmplt	W	2707456	192
7099.191	issue	R	2199808	512
7106.638	cmplt	R	2199808	512
7106.852	issue	W	1835536	16
7106.882	issue	W	1835008	8
7106.913	issue	W	1872416	8
7107.035	queue	R	2200320	256
7107.401	queue	R	2200576	256
7109.812	cmplt	W	1835536	16
7109.843	cmplt	W	1835008	8
7109.873	cmplt	W	1872416	8
7109.934	issue	R	2200320	512
7116.649	cmplt	R	2200320	512
7116.832	issue	W	2359296	8
7116.893	issue	W	2621968	8
7116.924	issue	W	2621984	8
7117.046	queue	R	2200832	256
7117.412	queue	R	2201088	256
7120.189	cmplt	W	2359296	8
7120.250	cmplt	W	2621968	8
7120.250	cmplt	W	2621984	8
7120.342	issue	R	2200832	512
7126.965	cmplt	R	2200832	512
7127.148	issue	W	2626080	8
7127.209	issue	W	2707648	1024
7127.209	issue	W	2708672	1024
7127.423	queue	R	2201344	256
7127.972	queue	R	2201600	256
7175.736	cmplt	W	2626080	8
7175.797	cmplt	W	2707648	1024
7176.164	cmplt	W	2708672	1024
7176.591	issue	R	2201344	512
7183.214	cmplt	R	2201344	512
7183.397	issue	W	2709696	1024
7183.427	issue	W	2710720	1024
7183.458	issue	W	2711744	1024
7183.641	queue	R	2201856	256
7184.190	queue	R	2202112	256
7251.610	cmplt	W	2709696	1024
7252.007	cmplt	W	2710720	1024
7252.373	cmplt	W	2711744	1024
7252.770	issue	R	2201856	512
7259.332	cmplt	R	2201856	512
7259.515	issue	W	2712768	1024
7259.576	issue	W	2713792	1024
7259.576	issue	W	2714816	1024
7259.606	issue	W	2715840	1024
7259.728	queue	R	2202368	256
7260.308	queue	R	2202624	256
7338.410	cmplt	W	2712768	1024
7338.837	cmplt	W	2713792	1024
7339.203	cmplt	W	2714816	1024
7339.600	cmplt	W	2715840	1024
7340.058	issue	R	2202368	512
7346.559	cmplt	R	2202368	512
7346.742	issue	W	2716864	1024
7346.803	issue	W	2717888	1024
7346.803	issue	W	2718912	832
7346.834	issue	W	2719744	1024
7346.864	issue	W	2720768	1024
7346.956	queue	R	2202880	256
7347.505	queue	R	2203136	256
7386.754	queue	R	948984	8
7445.964	cmplt	W	2716864	1024
7446.330	cmplt	W	2717888	1024
7446.635	cmplt	W	2718912	832
7446.879	cmplt	W	2719744	1024
7447.184	cmplt	W	2720768	1024
7447.581	issue	R	2202880	512
7454.113	cmplt	R	2202880	512
7454.204	issue	W	2721792	1024
7454.265	issue	W	2722816	1024
7454.296	issue	W	2723840	1024
7454.326	issue	W	2724864	1024
7454.540	queue	R	2203392	256
7455.089	queue	R	2203648	256
7456.188	issue	R	2203392	512
7529.162	cmplt	W	2721792	1024
7529.498	cmplt	W	2722816	1024
7529.803	cmplt	W	2723840	1024
7530.139	cmplt	W	2724864	1024
7530.475	issue	R	948984	8
7534.168	cmplt	R	2203392	512
7534.351	cmplt	R	948984	8
7534.473	issue	W	2725888	1024
7534.534	queue	R	2203904	256
7534.992	queue	R	2204160	256
7535.327	queue	R	948864	32
7535.358	queue	R	948928	56
7535.419	queue	R	948992	128
7560.964	cmplt	W	2725888	1024
7561.361	issue	R	2203904	512
7561.666	issue	R	948864	32
7568.015	cmplt	R	2203904	512
7568.045	issue	R	948928	56
7568.381	queue	R	2204416	256
7568.564	cmplt	R	948864	32
7568.595	issue	R	948992	128
7568.747	queue	R	2204672	256
7569.388	cmplt	R	948928	56
7569.449	issue	R	2204416	512
7571.067	cmplt	R	948992	128
7577.354	cmplt	R	2204416	512
7577.568	issue	W	2726912	1024
7577.842	queue	R	2204928	256
7578.269	queue	R	2205184	256
7583.580	queue	R	949120	456
7603.998	cmplt	W	2726912	1024
7604.395	issue	R	2204928	512
7604.700	issue	R	949120	456
7610.957	cmplt	R	2204928	512
7611.323	queue	R	2205440	256
7611.689	queue	R	2205696	256
7616.420	cmplt	R	949120	456
7616.512	issue	R	2205440	512
7623.134	cmplt	R	2205440	512
7623.318	issue	W	2727936	1024
7623.623	queue	R	2205952	256
7624.020	queue	R	2206208	256
7638.944	queue	R	946928	16
7649.931	cmplt	W	2727936	1024
7650.328	issue	R	2205952	512
7650.664	issue	R	946928	16
7656.890	cmplt	R	2205952	512
7657.165	cmplt	R	946928	16
7657.256	issue	W	2728960	1024
7657.287	queue	R	2206464	256
7657.745	queue	R	2206720	256
7663.269	queue	R	946920	8
7683.595	cmplt	W	2728960	1024
7684.023	issue	R	2206464	512
7684.358	issue	R	946920	8
7690.707	cmplt	R	2206464	512
7690.890	cmplt	R	946920	8
7690.981	issue	W	2729984	1024
7691.103	queue	R	2206976	256
7691.531	queue	R	2207232	256
7717.381	cmplt	W	2729984	1024
7717.778	issue	R	2206976	512
7724.401	cmplt	R	2206976	512
7724.554	issue	W	2731008	1024
7724.889	queue	R	2207488	256
7725.286	queue	R	2207744	256
7746.040	queue	R	946896	24
7750.801	cmplt	W	2731008	1024
7751.198	issue	R	2207488	512
7757.668	cmplt	R	2207488	512
7757.821	issue	W	2732032	1024
7757.851	issue	W	2733056	1024
7758.126	queue	R	2208000	256
7758.675	queue	R	2208256	256
7800.397	cmplt	W	2732032	1024
7800.732	cmplt	W	2733056	1024
7801.068	issue	R	2208000	512
7807.508	cmplt	R	2208000	512
7807.661	issue	R	946896	24
7807.874	queue	R	2208512	256
7808.241	queue	R	2208768	256
7808.302	cmplt	R	946896	24
7810.102	issue	R	2208512	512
7816.695	cmplt	R	2208512	512
7817.122	queue	R	2209024	256
7817.488	queue	R	2209280	256
7817.549	issue	R	2209024	512
7824.081	cmplt	R	2209024	512
7824.508	queue	R	2209536	256
7824.874	queue	R	2209792	256
7824.935	issue	R	2209536	512
7831.467	cmplt	R	2209536	512
7831.894	queue	R	2210048	256
7832.230	queue	R	2210304	256
7832.291	issue	R	2210048	512
7838.791	cmplt	R	2210048	512
7839.249	queue	R	2210560	256
7839.585	queue	R	2210816	256
7839.646	issue	R	2210560	512
7846.177	cmplt	R	2210560	512
7846.605	queue	R	2211072	256
7846.971	queue	R	2211328	256
7847.032	issue	R	2211072	512
7853.563	cmplt	R	2211072	512
7853.991	queue	R	2211584	256
7854.326	queue	R	2211840	256
7854.387	issue	R	2211584	512
7860.980	cmplt	R	2211584	512
7861.407	queue	R	2212096	256
7861.773	queue	R	2212352	256
7861.834	issue	R	2212096	512
7868.335	cmplt	R	2212096	512
7868.762	queue	R	2212608	256
7869.129	queue	R	2212864	256
7869.190	issue	R	2212608	512
7875.691	cmplt	R	2212608	512
7876.148	queue	R	2213120	256
7876.545	queue	R	2213376	256
7876.606	issue	R	2213120	512
7883.168	cmplt	R	2213120	512
7883.290	issue	W	2734080	1024
7883.321	issue	W	2735104	1024
7883.351	issue	W	2736128	1024
7885.243	queue	R	2213632	256
7885.701	queue	R	2213888	256
7892.507	queue	R	987240	8
7949.061	cmplt	W	2734080	1024
7949.397	cmplt	W	2735104	1024
7949.733	cmplt	W	2736128	1024
7950.130	issue	R	2213632	512
7950.465	issue	R	987240	8
7956.722	cmplt	R	2213632	512
7956.936	cmplt	R	987240	8
7957.027	issue	W	2737152	1024
7957.058	issue	W	2738176	1024
7957.088	issue	W	2739200	1024
7957.088	issue	W	2740224	1024
7957.088	queue	R	2214144	256
7957.607	queue	R	2214400	256
7957.912	queue	R	987152	8
7957.943	queue	R	987176	8
7957.973	queue	R	987232	8
7958.950	issue	R	2214144	512
8031.985	cmplt	W	2737152	1024
8032.321	cmplt	W	2738176	1024
8032.626	cmplt	W	2739200	1024
8032.901	cmplt	W	2740224	1024
8033.267	issue	R	987152	8
8037.082	cmplt	R	2214144	512
8037.143	issue	R	987176	8
8037.357	cmplt	R	987152	8
8037.387	issue	R	987232	8
8037.448	queue	R	2214656	256
8037.662	cmplt	R	987176	8
8037.723	issue	R	2214656	256
8037.876	queue	R	2214912	256
8037.967	cmplt	R	987232	8
8037.998	issue	R	2214912	256
8038.303	queue	R	1098664	8
8041.325	cmplt	R	2214656	256
8041.386	issue	R	1098664	8
8041.691	queue	R	2215168	256
8044.468	cmplt	R	2214912	256
8044.743	cmplt	R	1098664	8
8044.834	queue	R	2215424	256
8044.865	issue	R	2215168	256
8045.048	issue	R	2215424	256
8045.201	queue	R	1087552	8
8048.405	cmplt	R	2215168	256
8048.772	queue	R	2215680	256
8051.488	cmplt	R	2215424	256
8051.579	issue	R	2215680	256
8051.854	queue	R	2215936	256
8054.967	cmplt	R	2215680	256
8055.059	issue	R	2215936	256
8055.333	queue	R	2216192	256
8058.416	cmplt	R	2215936	256
8058.508	issue	R	2216192	256
8058.813	queue	R	2216448	256
8061.865	cmplt	R	2216192	256
8061.956	issue	R	2216448	256
8062.231	queue	R	2216704	256
8065.344	cmplt	R	2216448	256
8065.436	issue	R	2216704	256
8065.710	queue	R	2216960	256
8068.793	cmplt	R	2216704	256
8068.884	issue	R	2216960	256
8069.190	queue	R	2217216	256
8072.242	cmplt	R	2216960	256
8072.333	issue	R	2217216	256
8072.638	queue	R	2217472	256
8075.721	cmplt	R	2217216	256
8075.813	issue	R	2217472	256
8076.087	queue	R	2217728	256
8079.170	cmplt	R	2217472	256
8079.261	issue	R	2217728	256
8079.567	queue	R	2217984	256
8082.649	cmplt	R	2217728	256
8082.741	issue	R	2217984	256
8083.015	queue	R	2218240	256
8086.098	cmplt	R	2217984	256
8086.190	issue	R	2218240	256
8086.495	queue	R	2218496	256
8089.577	cmplt	R	2218240	256
8089.669	issue	R	2218496	256
8089.944	queue	R	2218752	256
8093.026	cmplt	R	2218496	256
8093.118	issue	R	2218752	256
8093.423	queue	R	2219008	256
8096.505	cmplt	R	2218752	256
8096.597	issue	R	2219008	256
8096.872	queue	R	2219264	256
8099.954	cmplt	R	2219008	256
8100.046	issue	R	2219264	256
8100.351	queue	R	2219520	256
8103.403	cmplt	R	2219264	256
8103.495	issue	R	2219520	256
8103.800	queue	R	2219776	256
8106.882	cmplt	R	2219520	256
8106.974	issue	R	2219776	256
8107.249	queue	R	2220032	256
8110.331	cmplt	R	2219776	256
8110.423	issue	R	2220032	256
8110.728	queue	R	2220288	256
8113.810	cmplt	R	2220032	256
8113.902	issue	R	2220288	256
8114.177	queue	R	2220544	256
8117.259	cmplt	R	2220288	256
8117.351	issue	R	2220544	256
8117.626	queue	R	2220800	256
8120.708	cmplt	R	2220544	256
8120.800	issue	R	2220800	256
8121.074	queue	R	2221056	256
8124.187	cmplt	R	2220800	256
8124.279	issue	R	2221056	256
8124.554	queue	R	2221312	256
8127.636	cmplt	R	2221056	256
8127.728	issue	R	2221312	256
8128.033	queue	R	2221568	256
8131.116	cmplt	R	2221312	256
8131.207	issue	R	2221568	256
8131.482	queue	R	2221824	256
8134.564	cmplt	R	2221568	256
8134.656	issue	R	2221824	256
8134.931	queue	R	2222080	256
8138.013	cmplt	R	2221824	256
8138.105	issue	R	2222080	256
8138.379	queue	R	2222336	256
8141.492	cmplt	R	2222080	256
8141.615	issue	W	2741248	1024
8141.676	issue	W	2742272	1024
8141.706	issue	W	2743296	1024
8141.706	issue	W	2744320	1024
8141.859	queue	R	2222592	256
8216.450	cmplt	W	2741248	1024
8216.786	cmplt	W	2742272	1024
8217.122	cmplt	W	2743296	1024
8217.427	cmplt	W	2744320	1024
8217.824	issue	W	2745344	1024
8217.854	issue	W	2746368	1024
8217.885	issue	W	2747392	1024
8217.885	issue	W	2748416	1024
8217.915	issue	W	2749440	1024
8308.805	cmplt	W	2745344	1024
8309.141	cmplt	W	2746368	1024
8309.477	cmplt	W	2747392	1024
8309.751	cmplt	W	2748416	1024
8310.118	cmplt	W	2749440	1024
8310.453	issue	R	1087552	8
8310.881	cmplt	R	1087552	8
8310.972	issue	R	2222336	512
8312.223	queue	R	1087488	16
8312.254	queue	R	1087536	16
8317.564	cmplt	R	2222336	512
8317.748	issue	R	1087488	16
8317.809	issue	R	1087536	16
8317.961	queue	R	2222848	256
8318.327	queue	R	2223104	256
8318.389	cmplt	R	1087488	16
8318.724	cmplt	R	1087536	16
8318.816	issue	R	2222848	512
8325.500	cmplt	R	2222848	512
8325.622	issue	W	2750464	384
8326.232	queue	R	2223360	256
8326.660	queue	R	2223616	256
8326.812	queue	R	988672	8
8340.546	cmplt	W	2750464	384
8340.760	issue	R	2223360	512
8340.760	queue	WS	1845504	8
8341.401	queue	W	2750848	1024
8342.835	queue	W	2751872	640
8347.352	cmplt	R	2223360	512
8347.810	queue	R	2223872	256
8348.207	queue	R	2224128	256
8348.268	issue	WS	1845504	8
8348.298	issue	R	2223872	512
8348.298	queue	R	2223872	512
8348.360	issue	R	2223872	512
8349.947	cmplt	WS	1845504	8
8356.295	cmplt	R	2223872	512
8356.753	queue	R	2224384	256
8357.149	queue	R	2224640	256
8357.241	issue	R	2224384	512
8358.279	queue	W	2752512	1024
8358.797	queue	W	2753536	1024
8359.286	queue	W	2754560	1024
8359.835	queue	W	2755584	1024
8360.354	queue	W	2756608	1024
8360.842	queue	W	2757632	1024
8361.361	queue	W	2758656	1024
8361.880	queue	W	2759680	1024
8362.399	queue	W	2760704	1024
8362.887	queue	W	2761728	1024
8363.376	queue	W	2762752	1024
8363.742	cmplt	R	2224384	512
8364.200	queue	R	2224896	256
8364.596	queue	R	2225152	256
8364.657	issue	R	2224896	512
8365.481	queue	W	2763776	1024
8366.000	queue	W	2764800	1024
8366.489	queue	W	2765824	1024
8366.977	queue	W	2766848	1024
8367.465	queue	W	2767872	1024
8369.663	queue	W	2768896	1024
8370.212	queue	W	2769920	1024
8370.670	queue	W	2770944	1024
8371.189	cmplt	R	2224896	512
8371.311	issue	R	988672	8
8371.830	queue	R	2225408	256
8372.226	queue	R	2225664	256
8372.257	cmplt	R	988672	8
8372.349	issue	W	2750848	1024
8372.532	queue	R	988624	48
8373.264	queue	W	2771968	1024
8373.783	queue	W	2772992	1024
8374.454	queue	W	2774016	1024
8374.973	queue	W	2775040	1024
8375.492	queue	W	2776064	1024
8376.011	queue	W	2777088	1024
8376.499	queue	W	2778112	1024
8377.018	queue	W	2779136	1024
8377.568	queue	W	2780160	1024
8378.086	queue	W	2781184	1024
8378.575	queue	W	2782208	1024
8379.094	queue	W	2783232	1024
8379.612	queue	W	2784256	1024
8380.955	queue	W	2785280	1024
8381.444	queue	W	2786304	1024
8381.901	queue	W	2787328	1024
8382.420	queue	W	2788352	1024
8382.909	queue	W	2789376	1024
8383.397	queue	W	2790400	1024
8383.702	queue	W	2791424	576
8402.625	cmplt	W	2750848	1024
8402.991	issue	R	988624	48
8403.937	cmplt	R	988624	48
8404.029	issue	R	2225408	512
8404.212	queue	R	1016248	24
8410.682	cmplt	R	2225408	512
8410.835	issue	R	1016248	24
8411.293	queue	R	2225920	256
8411.750	queue	R	2226176	256
8411.811	cmplt	R	1016248	24
8411.933	issue	R	2225920	512
8412.361	queue	R	1092648	8
8418.587	cmplt	R	2225920	512
8419.045	queue	R	2226432	256
8419.503	queue	R	2226688	256
8419.564	issue	R	2226432	512
8426.125	cmplt	R	2226432	512
8426.614	queue	R	2226944	256
8427.011	queue	R	2227200	256
8427.072	issue	R	2226944	512
8433.603	cmplt	R	2226944	512
8434.091	queue	R	2227456	256
8434.488	queue	R	2227712	256
8434.549	issue	R	2227456	512
8441.080	cmplt	R	2227456	512
8441.538	queue	R	2227968	256
8441.935	queue	R	2228224	256
8441.996	issue	R	2227968	512
8448.588	cmplt	R	2227968	512
8449.077	queue	R	2228480	256
8449.474	queue	R	2228736	256
8449.535	issue	R	2228480	512
8456.096	cmplt	R	2228480	512
8456.554	queue	R	2228992	256
8456.951	queue	R	2229248	256
8457.043	issue	R	2228992	512
8463.574	cmplt	R	2228992	512
8464.032	queue	R	2229504	256
8464.459	queue	R	2229760	256
8464.520	issue	R	2229504	512
8471.082	cmplt	R	2229504	512
8471.540	queue	R	2230016	256
8471.937	queue	R	2230272	256
8471.998	issue	R	2230016	512
8478.559	cmplt	R	2230016	512
8479.048	queue	R	2230528	256
8479.414	queue	R	2230784	256
8479.475	issue	R	2230528	512
8484.725	queue	W	2792000	1024
8485.152	queue	W	2793024	1024
8485.549	queue	W	2794048	1024
8485.976	cmplt	R	2230528	512
8486.098	queue	W	2795072	1024
8486.403	queue	R	2231040	256
8486.769	queue	R	2231296	256
8486.830	issue	R	2231040	512
8490.066	queue	W	2796096	1024
8490.523	queue	W	2797120	1024
8490.981	queue	W	2798144	1024
8491.409	queue	W	2799168	1024
8491.836	queue	W	2800192	1024
8492.599	queue	W	2801216	448
8493.331	cmplt	R	2231040	512
8493.759	queue	R	2231552	256
8494.125	queue	R	2231808	256
8494.216	issue	R	2231552	512
8494.705	queue	W	2801664	1024
8495.132	queue	W	2802688	1024
8495.559	queue	W	2803712	1024
8495.956	queue	W	2804736	1024
8496.383	queue	W	2805760	1024
8496.780	queue	W	2806784	1024
8497.207	queue	W	2807808	1024
8497.604	queue	W	2808832	1024
8498.031	queue	W	2809856	1024
8498.459	queue	W	2810880	1024
8498.855	queue	W	2811904	1024
8499.252	queue	W	2812928	1024
8499.649	queue	W	2813952	1024
8500.717	cmplt	R	2231552	512
8501.145	queue	R	2232064	256
8501.541	queue	R	2232320	256
8501.602	issue	R	2232064	512
8508.164	cmplt	R	2232064	512
8508.622	queue	R	2232576	256
8509.049	queue	R	2232832	256
8509.110	issue	R	2232576	512
8510.118	queue	W	2814976	1024
8510.606	queue	W	2816000	1024
8511.033	queue	W	2817024	1024
8512.925	queue	W	2818048	1024
8513.353	queue	W	2819072	1024
8513.749	queue	W	2820096	1024
8514.146	queue	W	2821120	1024
8514.512	queue	W	2822144	1024
8514.940	queue	W	2823168	1024
8515.336	queue	W	2824192	1024
8515.642	cmplt	R	2232576	512
8515.916	queue	W	2825216	1024
8516.069	queue	R	2233088	256
8516.435	queue	R	2233344	256
8516.435	queue	W	2826240	1024
8516.496	issue	W	2751872	640
8516.527	issue	W	2752512	1024
8517.137	queue	W	2827264	1024
8517.564	queue	W	2828288	1024
8517.992	queue	W	2829312	1024
8518.389	queue	W	2830336	1024
8518.816	queue	W	2831360	1024
8519.090	queue	W	2832384	640
8564.841	cmplt	W	2751872	640
8565.054	cmplt	W	2752512	1024
8565.390	issue	W	2753536	1024
8565.451	issue	W	2754560	1024
8608.088	cmplt	W	2753536	1024
8608.393	cmplt	W	2754560	1024
8608.698	issue	R	1092648	8
8609.126	cmplt	R	1092648	8
8609.217	issue	R	2233088	512
8609.461	queue	R	1092496	40
8609.492	queue	R	1092592	8
8609.522	queue	R	1092624	24
8615.779	cmplt	R	2233088	512
8616.206	queue	R	2233600	256
8616.573	queue	R	2233856	256
8616.634	issue	R	2233600	512
8623.073	cmplt	R	2233600	512
8623.470	queue	R	2234112	256
8623.836	queue	R	2234368	256
8623.897	issue	R	2234112	512
8630.368	cmplt	R	2234112	512
8630.490	issue	R	1092496	40
8630.581	issue	R	1092592	8
8630.978	queue	R	2234624	256
8631.375	queue	R	2234880	256
8631.467	cmplt	R	1092496	40
8631.497	issue	R	1092624	24
8631.741	cmplt	R	1092592	8
8632.168	cmplt	R	1092624	24
8632.321	issue	R	2234624	512
8632.382	queue	R	988704	8
8638.913	cmplt	R	2234624	512
8639.036	issue	R	988704	8
8639.493	queue	R	2235136	256
8639.860	queue	R	2235392	256
8639.921	cmplt	R	988704	8
8640.043	issue	R	2235136	512
8640.531	queue	R	988688	16
8646.666	cmplt	R	2235136	512
8646.788	issue	R	988688	16
8647.215	queue	R	2235648	256
8647.612	queue	R	2235904	256
8647.642	cmplt	R	988688	16
8647.734	issue	R	2235648	512
8648.772	queue	R	1092384	112
8654.326	cmplt	R	2235648	512
8654.448	issue	R	1092384	112
8654.906	queue	R	2236160	256
8655.272	queue	R	2236416	256
8656.188	cmplt	R	1092384	112
8656.280	issue	R	2236160	512
8658.630	queue	R	988416	40
8658.660	queue	R	988512	8
8662.872	cmplt	R	2236160	512
8662.994	issue	R	988416	40
8663.086	issue	R	988512	8
8663.482	queue	R	2236672	256
8663.879	queue	R	2236928	256
8663.971	cmplt	R	988416	40
8669.251	queue	R	1001896	8
8669.281	cmplt	R	988512	8
8669.373	issue	R	1001896	8
8669.739	cmplt	R	1001896	8
8669.800	issue	R	2236672	512
8670.990	queue	R	1001848	16
8671.021	queue	R	1001880	16
8676.454	cmplt	R	2236672	512
8676.576	issue	R	1001848	16
8676.637	issue	R	1001880	16
8677.003	queue	R	2237184	256
8677.400	queue	R	2237440	256
8677.491	cmplt	R	1001848	16
8677.857	cmplt	R	1001880	16
8677.919	issue	R	2237184	512
8679.597	queue	R	1062664	8
8684.511	cmplt	R	2237184	512
8684.633	issue	R	1062664	8
8685.091	queue	R	2237696	256
8685.457	queue	R	2237952	256
8685.488	cmplt	R	1062664	8
8685.579	issue	R	2237696	512
8686.128	queue	R	1062528	136
8692.172	cmplt	R	2237696	512
8692.263	issue	R	1062528	136
8692.751	queue	R	2238208	256
8693.087	queue	R	2238464	256
8694.277	cmplt	R	1062528	136
8694.369	issue	R	2238208	512
8694.857	queue	R	1096392	8
8700.931	cmplt	R	2238208	512
8701.053	issue	R	1096392	8
8701.511	queue	R	2238720	256
8701.877	queue	R	2238976	256
8701.908	cmplt	R	1096392	8
8701.999	issue	R	2238720	512
8703.220	queue	R	1096312	80
8708.591	cmplt	R	2238720	512
8708.714	issue	R	1096312	80
8709.171	queue	R	2239232	256
8709.538	queue	R	2239488	256
8710.056	cmplt	R	1096312	80
8710.148	issue	R	2239232	512
8714.818	queue	R	1062248	8
8714.879	queue	R	1062264	16
8714.909	queue	R	1062288	88
8716.771	cmplt	R	2239232	512
8716.893	issue	R	1062248	8
8716.954	issue	R	1062264	16
8717.351	queue	R	2239744	256
8717.717	queue	R	2240000	256
8717.809	cmplt	R	1062248	8
8717.839	issue	R	1062288	88
8718.175	cmplt	R	1062264	16
8719.365	cmplt	R	1062288	88
8719.426	issue	R	2239744	512
8724.187	queue	R	1035096	8
8726.019	cmplt	R	2239744	512
8726.141	issue	R	1035096	8
8726.599	queue	R	2240256	256
8726.965	queue	R	2240512	256
8726.995	cmplt	R	1035096	8
8727.087	issue	R	2240256	512
8727.667	queue	R	1034960	136
8733.679	cmplt	R	2240256	512
8733.771	issue	R	1034960	136
8734.229	queue	R	2240768	256
8734.595	queue	R	2241024	256
8735.755	cmplt	R	1034960	136
8735.877	issue	R	2240768	512
8737.555	queue	R	1034872	88
8742.439	cmplt	R	2240768	512
8742.561	issue	R	1034872	88
8743.018	queue	R	2241280	256
8743.354	queue	R	2241536	256
8743.995	cmplt	R	1034872	88
8744.087	issue	R	2241280	512
8745.887	queue	R	1098656	8
8750.679	cmplt	R	2241280	512
8750.771	issue	R	1098656	8
8751.228	queue	R	2241792	256
8751.595	queue	R	2242048	256
8751.625	cmplt	R	1098656	8
8751.717	issue	R	2241792	512
8758.340	cmplt	R	2241792	512
8758.492	issue	W	2755584	1024
8759.347	queue	R	2242304	256
8759.744	queue	R	2242560	256
8761.544	queue	R	974352	8
8784.801	cmplt	W	2755584	1024
8785.137	issue	R	2242304	512
8791.607	cmplt	R	2242304	512
8792.004	queue	R	2242816	256
8792.370	queue	R	2243072	256
8792.431	issue	R	2242816	512
8798.962	cmplt	R	2242816	512
8799.329	queue	R	2243328	256
8799.695	queue	R	2243584	256
8799.756	issue	R	2243328	512
8806.257	cmplt	R	2243328	512
8806.653	queue	R	2243840	256
8807.020	queue	R	2244096	256
8807.081	issue	R	2243840	512
8813.521	cmplt	R	2243840	512
8813.917	queue	R	2244352	256
8814.284	queue	R	2244608	256
8814.345	issue	R	2244352	512
8820.876	cmplt	R	2244352	512
8821.273	queue	R	2244864	256
8821.639	queue	R	2245120	256
8821.700	issue	R	2244864	512
8828.140	cmplt	R	2244864	512
8828.537	queue	R	2245376	256
8828.903	queue	R	2245632	256
8828.964	issue	R	2245376	512
8835.434	cmplt	R	2245376	512
8835.831	queue	R	2245888	256
8836.228	queue	R	2246144	256
8836.289	issue	R	2245888	512
8842.759	cmplt	R	2245888	512
8843.156	queue	R	2246400	256
8843.522	queue	R	2246656	256
8843.583	issue	R	2246400	512
8850.023	cmplt	R	2246400	512
8850.450	queue	R	2246912	256
8850.816	queue	R	2247168	256
8850.877	issue	R	2246912	512
8857.348	cmplt	R	2246912	512
8857.745	queue	R	2247424	256
8858.111	queue	R	2247680	256
8858.172	issue	R	2247424	512
8864.612	cmplt	R	2247424	512
8865.008	queue	R	2247936	256
8865.375	queue	R	2248192	256
8865.436	issue	R	2247936	512
8871.906	cmplt	R	2247936	512
8872.303	queue	R	2248448	256
8872.669	queue	R	2248704	256
8872.730	issue	R	2248448	512
8879.170	cmplt	R	2248448	512
8879.597	queue	R	2248960	256
8879.963	queue	R	2249216	256
8880.055	issue	R	2248960	512
8886.495	cmplt	R	2248960	512
8886.892	queue	R	2249472	256
8887.258	queue	R	2249728	256
8887.319	issue	R	2249472	512
8893.759	cmplt	R	2249472	512
8894.186	queue	R	2249984	256
8894.552	queue	R	2250240	256
8894.644	issue	R	974352	8
8895.071	cmplt	R	974352	8
8895.437	queue	R	1087320	8
8895.529	issue	R	1087320	8
8895.956	cmplt	R	1087320	8
8896.475	queue	R	1087280	8
8896.505	queue	R	1087312	8
8896.566	issue	R	1087312	8
8896.627	issue	R	1087280	8
8896.933	cmplt	R	1087312	8
8897.146	cmplt	R	1087280	8
8897.360	queue	R	1087328	8
8897.391	queue	R	1087344	8
8897.452	issue	R	1087328	8
8897.513	issue	R	1087344	8
8897.818	cmplt	R	1087328	8
8898.062	cmplt	R	1087344	8
8898.459	queue	R	974288	8
8898.489	queue	R	974312	8
8898.489	queue	R	974344	8
8898.581	issue	R	974288	8
8898.642	issue	R	974312	8
8899.069	cmplt	R	974288	8
8899.741	issue	R	974344	8
8899.863	queue	R	1916928	8
8900.046	cmplt	R	974312	8
8900.076	issue	R	1916928	8
8900.320	cmplt	R	974344	8
8900.687	cmplt	R	1916928	8
8900.778	queue	WS	1916928	8
8900.839	issue	WS	1916928	8
8902.213	cmplt	WS	1916928	8
8902.487	issue	W	2756608	1024
8902.823	queue	WS	1916928	8
8929.528	cmplt	W	2756608	1024
8929.834	issue	WS	1916928	8
8931.207	cmplt	WS	1916928	8
8931.482	issue	R	2249984	512
8931.665	queue	RM	2626096	8
8932.001	issue	RM	2626096	8
8938.349	cmplt	R	2249984	512
8938.746	queue	R	2250496	256
8939.112	queue	R	2250752	256
8939.142	cmplt	RM	2626096	8
8939.264	queue	R	2626104	8
8939.325	issue	R	2626104	8
8939.661	cmplt	R	2626104	8
8939.905	issue	R	2250496	512
8946.467	cmplt	R	2250496	512
8946.895	queue	R	2251008	256
8947.261	queue	R	2251264	256
8947.444	issue	R	2251008	512
8951.564	queue	R	1912920	8
8954.006	cmplt	R	2251008	512
8954.403	queue	R	2251520	256
8954.769	queue	R	2251776	256
8954.830	issue	R	1912920	8
8954.952	issue	R	2251520	512
8955.288	cmplt	R	1912920	8
8961.483	cmplt	R	2251520	512
8961.636	issue	W	2757632	1024
8962.521	queue	R	2252032	256
8962.887	queue	R	2252288	256
8963.162	queue	WS	1912920	8
8988.463	cmplt	W	2757632	1024
8988.799	issue	R	2252032	512
8989.104	issue	WS	1912920	8
8995.452	cmplt	R	2252032	512
8995.819	queue	R	2252544	256
8996.246	queue	R	2252800	256
8996.307	issue	R	2252544	512
8996.765	cmplt	WS	1912920	8
9003.907	queue	WS	1845512	8
9003.907	queue	WS	1845520	8
9003.937	queue	WS	1845528	8
9003.937	queue	WS	1845536	8
9003.968	queue	WS	1845544	8
9003.968	queue	WS	1845552	8
9004.212	cmplt	R	2252544	512
9004.609	queue	R	2253056	256
9004.975	queue	R	2253312	256
9005.036	issue	R	2253056	512
9011.506	cmplt	R	2253056	512
9011.903	queue	R	2253568	256
9012.269	queue	R	2253824	256
9012.330	issue	R	2253568	512
9018.770	cmplt	R	2253568	512
9019.167	queue	R	2254080	256
9019.533	queue	R	2254336	256
9019.594	issue	R	2254080	512
9026.034	cmplt	R	2254080	512
9026.431	queue	R	2254592	256
9026.797	queue	R	2254848	256
9026.858	issue	R	2254592	512
9033.328	cmplt	R	2254592	512
9033.725	queue	R	2255104	256
9034.091	queue	R	2255360	256
9034.152	issue	R	2255104	512
9040.623	cmplt	R	2255104	512
9041.019	queue	R	2255616	256
9041.386	queue	R	2255872	256
9041.416	issue	R	2255616	512
9047.886	cmplt	R	2255616	512
9048.283	queue	R	2256128	256
9048.649	queue	R	2256384	256
9048.711	issue	R	2256128	512
9055.181	cmplt	R	2256128	512
9055.547	queue	R	2256640	256
9055.913	queue	R	2256896	256
9055.974	issue	R	2256640	512
9062.445	cmplt	R	2256640	512
9062.841	queue	R	2257152	256
9063.208	queue	R	2257408	256
9063.269	issue	R	2257152	512
9070.227	cmplt	R	2257152	512
9070.410	issue	W	2758656	1024
9070.716	queue	R	2257664	256
9071.143	queue	R	2257920	256
9097.482	cmplt	W	2758656	1024
9097.970	issue	R	2257664	512
9104.624	cmplt	R	2257664	512
9104.807	issue	WS	1845512	48
9105.021	queue	R	2258176	256
9105.387	queue	R	2258432	256
9121.624	cmplt	WS	1845512	48
9121.746	issue	R	2258176	512
9128.369	cmplt	R	2258176	512
9128.521	issue	W	2759680	1024
9128.857	queue	R	2258688	256
9129.315	queue	R	2258944	256
9155.318	cmplt	W	2759680	1024
9155.776	issue	R	2258688	512
9162.429	cmplt	R	2258688	512
9162.552	issue	W	2760704	1024
9163.437	queue	R	2259200	256
9163.833	queue	R	2259456	256
9189.013	cmplt	W	2760704	1024
9189.379	issue	R	2259200	512
9195.880	cmplt	R	2259200	512
9196.246	queue	R	2259712	256
9196.612	queue	R	2259968	256
9196.673	issue	R	2259712	512
9203.144	cmplt	R	2259712	512
9203.510	queue	R	2260224	256
9203.876	queue	R	2260480	256
9203.968	issue	R	2260224	512
9210.438	cmplt	R	2260224	512
9210.804	queue	R	2260736	256
9211.170	queue	R	2260992	256
9211.231	issue	R	2260736	512
9217.763	cmplt	R	2260736	512
9218.160	queue	R	2261248	256
9218.495	queue	R	2261504	256
9218.556	issue	R	2261248	512
9225.027	cmplt	R	2261248	512
9225.423	queue	R	2261760	256
9225.820	queue	R	2262016	256
9225.881	issue	R	2261760	512
9235.984	cmplt	R	2261760	512
9236.411	queue	R	2262272	256
9236.777	queue	R	2262528	256
9236.808	issue	R	2262272	512
9243.278	cmplt	R	2262272	512
9243.675	queue	R	2262784	256
9244.041	queue	R	2263040	256
9244.102	issue	R	2262784	512
9250.572	cmplt	R	2262784	512
9250.969	queue	R	2263296	256
9251.305	queue	R	2263552	256
9251.366	issue	R	2263296	512
9257.836	cmplt	R	2263296	512
9258.233	queue	R	2263808	256
9258.599	queue	R	2264064	256
9258.660	issue	R	2263808	512
9265.100	cmplt	R	2263808	512
9265.497	queue	R	2264320	256
9265.863	queue	R	2264576	256
9265.924	issue	R	2264320	512
9272.394	cmplt	R	2264320	512
9272.791	queue	R	2264832	256
9273.157	queue	R	2265088	256
9273.218	issue	R	2264832	512
9279.658	cmplt	R	2264832	512
9280.085	queue	R	2265344	256
9280.452	queue	R	2265600	256
9280.513	issue	R	2265344	512
9286.983	cmplt	R	2265344	512
9287.380	queue	R	2265856	256
9287.716	queue	R	2266112	256
9287.777	issue	R	2265856	512
9294.247	cmplt	R	2265856	512
9294.674	queue	R	2266368	256
9295.040	queue	R	2266624	256
9295.101	issue	W	2761728	1024
9321.441	cmplt	W	2761728	1024
9321.807	issue	W	2762752	1024
9321.837	issue	W	2763776	1024
9364.322	cmplt	W	2762752	1024
9364.596	cmplt	W	2763776	1024
9364.932	issue	R	2266368	512
9371.372	cmplt	R	2266368	512
9371.738	queue	R	2266880	256
9372.104	queue	R	2267136	256
9372.165	issue	R	2266880	512
9378.636	cmplt	R	2266880	512
9379.002	queue	R	2267392	256
9379.368	queue	R	2267648	256
9379.429	issue	R	2267392	512
9385.900	cmplt	R	2267392	512
9386.296	queue	R	2267904	256
9386.663	queue	R	2268160	256
9386.724	issue	R	2267904	512
9393.194	cmplt	R	2267904	512
9393.591	queue	R	2268416	256
9393.987	queue	R	2268672	256
9394.049	issue	R	2268416	512
9400.488	cmplt	R	2268416	512
9400.885	queue	R	2268928	256
9401.282	queue	R	2269184	256
9401.343	issue	R	2268928	512
9407.783	cmplt	R	2268928	512
9408.179	queue	R	2269440	256
9408.546	queue	R	2269696	256
9408.637	issue	R	2269440	512
9415.077	cmplt	R	2269440	512
9415.474	queue	R	2269952	256
9415.871	queue	R	2270208	256
9415.932	issue	R	2269952	512
9422.402	cmplt	R	2269952	512
9422.799	queue	R	2270464	256
9423.165	queue	R	2270720	256
9423.226	issue	R	2270464	512
9429.696	cmplt	R	2270464	512
9430.124	queue	R	2270976	256
9430.520	queue	R	2271232	256
9430.581	issue	R	2270976	512
9437.021	cmplt	R	2270976	512
9437.448	queue	R	2271488	256
9437.815	queue	R	2271744	256
9437.876	issue	R	2271488	512
9444.316	cmplt	R	2271488	512
9444.743	queue	R	2272000	256
9445.140	queue	R	2272256	256
9445.201	issue	R	2272000	512
9451.671	cmplt	R	2272000	512
9452.098	queue	R	2272512	256
9452.465	queue	R	2272768	256
9452.526	issue	R	2272512	512
9458.965	cmplt	R	2272512	512
9459.393	queue	R	2273024	256
9459.759	queue	R	2273280	256
9459.820	issue	R	2273024	512
9466.321	cmplt	R	2273024	512
9466.718	queue	R	2273536	256
9467.084	queue	R	2273792	256
9467.145	issue	R	2273536	512
9473.615	cmplt	R	2273536	512
9474.165	queue	R	2274048	256
9475.263	queue	R	2274304	256
9475.324	issue	R	2274048	512
9481.642	cmplt	R	2274048	512
9483.443	queue	R	2274560	256
9484.358	issue	R	2274560	256
9487.624	cmplt	R	2274560	256
9487.777	issue	W	2764800	1024
9487.838	issue	W	2765824	1024
9487.868	issue	W	2766848	1024
9490.768	queue	R	2274816	256
9491.836	queue	R	2275072	256
9547.108	cmplt	W	2764800	1024
9547.413	cmplt	W	2765824	1024
9547.780	cmplt	W	2766848	1024
9548.115	issue	R	2274816	512
9554.311	cmplt	R	2274816	512
9554.433	issue	W	2767872	1024
9554.494	issue	W	2768896	1024
9554.494	issue	W	2769920	1024
9554.525	issue	W	2770944	1024
9554.677	queue	R	2275328	256
9555.166	queue	R	2275584	256
9635.953	cmplt	W	2767872	1024
9636.319	cmplt	W	2768896	1024
9636.624	cmplt	W	2769920	1024
9636.960	cmplt	W	2770944	1024
9637.296	issue	R	2275328	512
9643.858	cmplt	R	2275328	512
9644.010	issue	W	2771968	1024
9644.071	issue	W	2772992	1024
9644.102	issue	W	2774016	1024
9644.132	issue	W	2775040	1024
9644.132	issue	W	2776064	1024
9644.255	queue	R	2275840	256
9644.804	queue	R	2276096	256
9735.205	cmplt	W	2771968	1024
9735.541	cmplt	W	2772992	1024
9735.877	cmplt	W	2774016	1024
9736.151	cmplt	W	2775040	1024
9736.487	cmplt	W	2776064	1024
9736.853	issue	R	2275840	512
9743.415	cmplt	R	2275840	512
9743.568	issue	W	2777088	1024
9743.598	issue	W	2778112	1024
9743.629	issue	W	2779136	1024
9743.659	issue	W	2780160	1024
9743.690	issue	W	2781184	1024
9743.690	issue	W	2782208	1024
9743.781	queue	R	2276352	256
9744.300	queue	R	2276608	256
9835.984	queue	R	2276608	256
9845.781	queue	R	2276608	256
9851.122	cmplt	W	2777088	1024
9851.518	cmplt	W	2778112	1024
9851.885	cmplt	W	2779136	1024
9852.251	cmplt	W	2780160	1024
9852.617	cmplt	W	2781184	1024
9853.014	cmplt	W	2782208	1024
9853.441	issue	R	2276352	512
9860.125	cmplt	R	2276352	512
9860.308	issue	W	2783232	1024
9860.613	queue	R	2276864	256
9861.010	queue	R	2277120	256
9886.617	cmplt	W	2783232	1024
9887.075	issue	R	2276864	512
9893.637	cmplt	R	2276864	512
9893.820	issue	W	2784256	1024
9894.674	queue	R	2277376	256
9895.651	queue	R	2277632	256
9920.220	cmplt	W	2784256	1024
9920.678	issue	R	2277376	512
9926.873	cmplt	R	2277376	512
9927.026	issue	W	2785280	1024
9927.911	queue	R	2277888	256
9928.888	queue	R	2278144	256
9949.397	cmplt	W	2785280	1024
9949.855	issue	R	2277888	512
9956.203	cmplt	R	2277888	512
9956.325	issue	W	2786304	1024
9956.966	queue	R	2278400	256
9957.271	queue	R	2278656	256
9988.005	cmplt	W	2786304	1024
9988.463	issue	R	2278400	512
9994.659	cmplt	R	2278400	512
9994.781	issue	W	2787328	1024
9995.056	queue	R	2278912	256
9995.422	queue	R	2279168	256
10026.522	cmplt	W	2787328	1024
10026.980	issue	R	2278912	512
10033.206	cmplt	R	2278912	512
10033.328	issue	W	2788352	1024
10033.603	queue	R	2279424	256
10033.969	queue	R	2279680	256
10065.100	cmplt	W	2788352	1024
10065.588	issue	R	2279424	512
10071.784	cmplt	R	2279424	512
10071.906	issue	W	2789376	1024
10071.937	issue	W	2790400	1024
10072.181	queue	R	2279936	256
10072.669	queue	R	2280192	256
10119.670	cmplt	W	2789376	1024
10120.037	cmplt	W	2790400	1024
10120.433	issue	R	2279936	512
10126.629	cmplt	R	2279936	512
10126.782	issue	W	2791424	576
10126.812	issue	W	2792000	1024
10127.453	queue	R	2280448	256
10127.728	queue	R	2280704	256
10169.083	cmplt	W	2791424	576
10169.297	cmplt	W	2792000	1024
10169.724	issue	R	2280448	512
10175.919	cmplt	R	2280448	512
10176.072	issue	W	2793024	1024
10176.103	issue	W	2794048	1024
10176.133	issue	W	2795072	1024
10176.286	queue	R	2280960	256
10176.774	queue	R	2281216	256
10237.021	cmplt	W	2793024	1024
10237.418	cmplt	W	2794048	1024
10237.784	cmplt	W	2795072	1024
10238.212	issue	R	2280960	512
10244.407	cmplt	R	2280960	512
10244.529	issue	W	2796096	1024
10244.560	issue	W	2797120	1024
10244.590	issue	W	2798144	1024
10244.804	queue	R	2281472	256
10245.323	queue	R	2281728	256
10305.356	cmplt	W	2796096	1024
10305.753	cmplt	W	2797120	1024
10306.119	cmplt	W	2798144	1024
10306.547	issue	R	2281472	512
10312.773	cmplt	R	2281472	512
10312.895	issue	W	2799168	1024
10312.925	issue	W	2800192	1024
10312.925	issue	W	2801216	448
10312.956	issue	W	2801664	1024
10313.170	queue	R	2281984	256
10313.688	queue	R	2282240	256
10386.083	cmplt	W	2799168	1024
10386.479	cmplt	W	2800192	1024
10386.876	cmplt	W	2801216	448
10387.029	cmplt	W	2801664	1024
10387.487	issue	R	2281984	512
10393.682	cmplt	R	2281984	512
10393.835	issue	W	2802688	1024
10393.865	issue	W	2803712	1024
10393.865	issue	W	2804736	1024
10393.896	issue	W	2805760	1024
10393.896	issue	W	2806784	1024
10393.987	queue	R	2282496	256
10394.476	queue	R	2282752	256
10490.523	cmplt	W	2802688	1024
10490.890	cmplt	W	2803712	1024
10491.256	cmplt	W	2804736	1024
10491.622	cmplt	W	2805760	1024
10492.019	cmplt	W	2806784	1024
10492.446	issue	R	2282496	512
10498.642	cmplt	R	2282496	512
10498.764	issue	W	2807808	1024
10498.794	issue	W	2808832	1024
10498.825	issue	W	2809856	1024
10498.855	issue	W	2810880	1024
10498.855	issue	W	2811904	1024
10498.886	issue	W	2812928	1024
10498.947	queue	R	2283008	256
10499.435	queue	R	2283264	256
10611.354	cmplt	W	2807808	1024
10611.750	cmplt	W	2808832	1024
10612.117	cmplt	W	2809856	1024
10612.483	cmplt	W	2810880	1024
10612.880	cmplt	W	2811904	1024
10613.246	cmplt	W	2812928	1024
10613.673	issue	R	2283008	512
10619.808	cmplt	R	2283008	512
10619.930	issue	W	2813952	1024
10620.266	queue	R	2283520	256
10620.601	queue	R	2283776	256
10665.558	cmplt	W	2813952	1024
10666.016	issue	R	2283520	512
10672.150	cmplt	R	2283520	512
10672.272	issue	W	2814976	1024
10672.577	queue	R	2284032	256
10672.913	queue	R	2284288	256
10704.441	cmplt	W	2814976	1024
10704.899	issue	R	2284032	512
10711.094	cmplt	R	2284032	512
10711.216	issue	W	2816000	1024
10711.521	queue	R	2284544	256
10711.857	queue	R	2284800	256
10743.507	cmplt	W	2816000	1024
10743.965	issue	R	2284544	512
10750.130	cmplt	R	2284544	512
10750.252	issue	W	2817024	1024
10750.526	queue	R	2285056	256
10750.893	queue	R	2285312	256
10784.038	cmplt	W	2817024	1024
10784.526	issue	R	2285056	512
10790.661	cmplt	R	2285056	512
10790.813	issue	W	2818048	1024
10791.332	queue	R	2285568	256
10791.637	queue	R	2285824	256
10812.574	cmplt	W	2818048	1024
10813.032	issue	R	2285568	512
10819.197	cmplt	R	2285568	512
10819.319	issue	W	2819072	1024
10819.350	issue	W	2820096	1024
10819.594	queue	R	2286080	256
10820.113	queue	R	2286336	256
10867.267	cmplt	W	2819072	1024
10867.694	cmplt	W	2820096	1024
10868.121	issue	R	2286080	512
10874.256	cmplt	R	2286080	512
10874.378	issue	W	2821120	1024
10874.409	issue	W	2822144	1024
10874.958	queue	R	2286592	256
10875.324	queue	R	2286848	256
10922.265	cmplt	W	2821120	1024
10922.661	cmplt	W	2822144	1024
10923.058	issue	R	2286592	512
10929.254	cmplt	R	2286592	512
10929.376	issue	W	2823168	1024
10929.406	issue	W	2824192	1024
10929.437	issue	W	2825216	1024
10929.651	queue	R	2287104	256
10930.200	queue	R	2287360	256
10993.499	cmplt	W	2823168	1024
10993.865	cmplt	W	2824192	1024
10994.262	cmplt	W	2825216	1024
10994.689	issue	R	2287104	512
11000.855	cmplt	R	2287104	512
11000.977	issue	W	2826240	1024
11001.007	issue	W	2827264	1024
11001.038	issue	W	2828288	1024
11001.282	queue	R	2287616	256
11002.197	queue	R	2287872	256
11064.947	cmplt	W	2826240	1024
11065.375	cmplt	W	2827264	1024
11065.741	cmplt	W	2828288	1024
11066.168	issue	R	2287616	512
11072.425	cmplt	R	2287616	512
11072.547	issue	W	2829312	1024
11072.577	issue	W	2830336	1024
11072.608	issue	W	2831360	1024
11072.608	issue	W	2832384	640
11072.791	queue	R	2288128	256
11073.279	queue	R	2288384	256
11147.780	cmplt	W	2829312	1024
11148.115	cmplt	W	2830336	1024
11148.451	cmplt	W	2831360	1024
11148.787	cmplt	W	2832384	640
11149.061	issue	R	2288128	512
11149.092	queue	WS	1845560	8
11155.227	cmplt	R	2288128	512
11155.318	issue	WS	1845560	8
11155.562	queue	R	2288640	256
11155.837	queue	R	2288896	256
11156.844	cmplt	WS	1845560	8
11156.905	issue	R	2288640	512
11163.223	cmplt	R	2288640	512
11163.528	queue	R	2289152	256
11163.620	issue	R	2289152	256
11163.864	queue	R	2289408	256
11167.099	cmplt	R	2289152	256
11167.191	issue	R	2289408	256
11167.465	queue	R	2289664	256
11170.670	cmplt	R	2289408	256
11170.792	issue	R	2289664	256
11171.067	queue	R	2289920	256
11174.271	cmplt	R	2289664	256
11174.363	issue	R	2289920	256
11174.668	queue	R	2290176	256
11177.873	cmplt	R	2289920	256
11177.964	issue	R	2290176	256
11178.269	queue	R	2290432	256
11181.474	cmplt	R	2290176	256
11181.566	issue	R	2290432	256
11181.871	queue	R	2290688	256
11185.076	cmplt	R	2290432	256
11185.198	issue	R	2290688	256
11185.472	queue	R	2290944	256
11188.677	cmplt	R	2290688	256
11188.799	issue	R	2290944	256
11189.074	queue	R	2291200	256
11192.248	cmplt	R	2290944	256
11192.370	issue	R	2291200	256
11192.645	queue	R	2291456	256
11195.819	cmplt	R	2291200	256
11195.941	issue	R	2291456	256
11196.215	queue	R	2291712	256
11199.420	cmplt	R	2291456	256
11199.512	issue	R	2291712	256
11199.817	queue	R	2291968	256
11202.991	cmplt	R	2291712	256
11203.113	issue	R	2291968	256
11203.388	queue	R	2292224	256
11206.531	cmplt	R	2291968	256
11206.653	issue	R	2292224	256
11206.928	queue	R	2292480	256
11210.102	cmplt	R	2292224	256
11210.224	issue	R	2292480	256
11210.530	queue	R	2292736	256
11213.673	cmplt	R	2292480	256
11213.795	issue	R	2292736	256
11214.070	queue	R	2292992	256
11217.275	cmplt	R	2292736	256
11217.397	issue	R	2292992	256
11217.671	queue	R	2293248	256
11220.784	cmplt	R	2292992	256
11220.906	issue	R	2293248	256
11221.181	queue	R	2293504	256
11221.669	queue	W	1835016	8
11221.669	queue	W	1835696	8
11221.700	queue	W	2621960	8
11221.731	queue	W	2621984	8
11224.325	cmplt	R	2293248	256
11224.447	issue	R	2293504	256
11224.722	queue	R	2293760	256
11227.865	cmplt	R	2293504	256
11227.987	issue	R	2293760	256
11228.262	queue	R	2294016	256
11231.589	cmplt	R	2293760	256
11231.680	issue	R	2294016	256
11231.985	queue	R	2294272	256
11235.098	cmplt	R	2294016	256
11235.190	issue	R	2294272	256
11235.465	queue	R	2294528	256
11238.578	cmplt	R	2294272	256
11238.700	issue	R	2294528	256
11238.975	queue	R	2294784	256
11242.088	cmplt	R	2294528	256
11242.210	issue	R	2294784	256
11242.484	queue	R	2295040	256
11245.597	cmplt	R	2294784	256
11245.720	issue	R	2295040	256
11245.994	queue	R	2295296	256
11249.107	cmplt	R	2295040	256
11249.229	issue	R	2295296	256
11249.504	queue	R	2295552	256
11252.617	cmplt	R	2295296	256
11252.770	issue	W	2621960	8
11252.831	issue	W	2621984	8
11252.861	issue	W	1835016	8
11252.892	issue	W	1835696	8
11253.014	queue	R	2295808	256
11257.134	cmplt	W	2621960	8
11257.165	cmplt	W	2621984	8
11257.195	cmplt	W	1835016	8
11257.226	cmplt	W	1835696	8
11257.287	issue	R	2295552	512
11257.836	queue	W	2833024	1024
11259.118	queue	W	2834048	384
11263.910	cmplt	R	2295552	512
11264.093	issue	W	2833024	1024
11264.154	issue	W	2834048	384
11264.398	queue	R	2296064	256
11264.856	queue	R	2296320	256
11265.497	queue	W	2834432	1024
11265.924	queue	W	2835456	1024
11266.351	queue	W	2836480	1024
11266.809	queue	W	2837504	1024
11267.206	queue	W	2838528	1024
11267.633	queue	W	2839552	1024
11268.060	queue	W	2840576	1024
11268.488	queue	W	2841600	1024
11268.915	queue	W	2842624	1024
11269.312	queue	W	2843648	1024
11269.770	queue	W	2844672	1024
11270.227	queue	W	2845696	1024
11270.685	queue	W	2846720	1024
11271.112	queue	W	2847744	1024
11271.540	queue	W	2848768	1024
11271.967	queue	W	2849792	1024
11274.012	queue	W	2850816	1024
11274.439	queue	W	2851840	1024
11274.866	queue	W	2852864	1024
11275.477	queue	W	2853888	1024
11275.904	queue	W	2854912	1024
11276.301	queue	W	2855936	1024
11276.759	queue	W	2856960	1024
11277.186	queue	W	2857984	1024
11277.613	queue	W	2859008	1024
11278.041	queue	W	2860032	1024
11278.468	queue	W	2861056	1024
11278.895	queue	W	2862080	1024
11279.353	queue	W	2863104	1024
11279.780	queue	W	2864128	1024
11296.444	cmplt	W	2833024	1024
11296.750	cmplt	W	2834048	384
11296.902	issue	R	2296064	512
11300.168	queue	R	2296064	512
11303.556	cmplt	R	2296064	512
11303.739	issue	W	2834432	1024
11303.800	issue	W	2835456	1024
11303.830	issue	W	2836480	1024
11303.830	issue	W	2837504	1024
11303.861	issue	W	2838528	1024
11303.861	issue	W	2839552	1024
11303.952	queue	R	2296576	256
11304.471	queue	R	2296832	256
11304.960	queue	W	2865152	1024
11305.814	queue	W	2866176	1024
11307.065	queue	W	2867200	1024
11307.493	queue	W	2868224	1024
11307.951	queue	W	2869248	1024
11308.378	queue	W	2870272	1024
11308.775	queue	W	2871296	1024
11309.202	queue	W	2872320	1024
11309.538	queue	W	2873344	704
11311.369	queue	W	2874048	1024
11311.857	queue	W	2875072	1024
11312.284	queue	W	2876096	1024
11312.803	queue	W	2877120	1024
11313.200	queue	W	2878144	1024
11313.658	queue	W	2879168	1024
11314.085	queue	W	2880192	1000
11405.402	cmplt	W	2834432	1024
11405.707	cmplt	W	2835456	1024
11405.951	cmplt	W	2836480	1024
11406.196	cmplt	W	2837504	1024
11406.440	cmplt	W	2838528	1024
11406.684	cmplt	W	2839552	1024
11407.020	issue	R	2296576	512
11413.582	cmplt	R	2296576	512
11413.765	issue	W	2840576	1024
11413.826	issue	W	2841600	1024
11413.856	issue	W	2842624	1024
11413.856	issue	W	2843648	1024
11413.887	issue	W	2844672	1024
11413.887	issue	W	2845696	1024
11413.917	issue	W	2846720	1024
11413.917	issue	W	2847744	1024
11413.978	queue	R	2297088	256
11414.497	queue	R	2297344	256
11443.339	queue	W	2881192	1024
11443.766	queue	W	2882216	1024
11444.346	queue	W	2883240	344
11444.834	queue	R	2883584	8
11557.546	cmplt	W	2840576	1024
11557.851	cmplt	W	2841600	1024
11558.096	cmplt	W	2842624	1024
11558.340	cmplt	W	2843648	1024
11558.584	cmplt	W	2844672	1024
11558.828	cmplt	W	2845696	1024
11559.072	cmplt	W	2846720	1024
11559.286	cmplt	W	2847744	1024
11559.591	issue	R	2297088	512
11565.787	cmplt	R	2297088	512
11565.939	issue	W	2848768	1024
11566.244	queue	R	2297600	256
11566.580	queue	R	2297856	256
11598.443	cmplt	W	2848768	1024
11598.779	issue	R	2297600	512
11604.944	cmplt	R	2297600	512
11605.097	issue	R	2883584	8
11605.280	queue	R	2298112	256
11605.524	cmplt	R	2883584	8
11605.616	issue	R	2298112	256
11605.616	queue	R	2298368	256
11605.707	issue	R	2298368	256
11606.318	queue	W	2899968	1024
11606.776	queue	W	2900992	1024
11607.233	queue	W	2902016	1024
11607.661	queue	W	2903040	1024
11608.088	queue	W	2904064	1024
11608.424	queue	W	2905088	680
11609.034	cmplt	R	2298112	256
11609.370	queue	R	2298624	256
11612.117	cmplt	R	2298368	256
11612.208	issue	R	2298624	256
11612.452	queue	R	2298880	256
11615.474	cmplt	R	2298624	256
11615.565	issue	R	2298880	256
11615.779	queue	R	2299136	256
11618.862	cmplt	R	2298880	256
11618.953	issue	R	2299136	256
11619.167	queue	R	2299392	256
11622.219	cmplt	R	2299136	256
11622.310	issue	R	2299392	256
11622.524	queue	R	2299648	256
11625.576	cmplt	R	2299392	256
11625.668	issue	R	2299648	256
11625.881	queue	R	2299904	256
11628.903	cmplt	R	2299648	256
11629.025	issue	R	2299904	256
11629.208	queue	R	2300160	256
11632.260	cmplt	R	2299904	256
11632.352	issue	R	2300160	256
11632.565	queue	R	2300416	256
11635.556	cmplt	R	2300160	256
11635.648	issue	R	2300416	256
11635.861	queue	R	2300672	256
11638.883	cmplt	R	2300416	256
11638.975	issue	R	2300672	256
11639.188	queue	R	2300928	256
11641.935	queue	W	2905768	1024
11642.240	cmplt	R	2300672	256
11642.332	issue	R	2300928	256
11642.545	queue	R	2301184	256
11642.698	queue	W	2906792	1024
11643.125	queue	W	2907816	1024
11643.553	queue	W	2908840	1024
11643.980	queue	W	2909864	1024
11644.407	queue	W	2910888	1024
11644.834	queue	W	2911912	1024
11645.292	queue	W	2912936	1024
11645.536	cmplt	R	2300928	256
11645.628	issue	R	2301184	256
11645.842	queue	R	2301440	256
11648.863	cmplt	R	2301184	256
11648.955	issue	R	2301440	256
11649.168	queue	R	2301696	256
11649.382	queue	W	2913960	1024
11649.840	queue	W	2914984	1024
11652.190	cmplt	R	2301440	256
11652.281	issue	R	2301696	256
11652.495	queue	R	2301952	256
11653.044	queue	W	2916008	344
11654.906	queue	W	2916352	1024
11655.333	queue	W	2917376	1024
11655.517	cmplt	R	2301696	256
11655.608	issue	R	2301952	256
11655.822	queue	R	2302208	256
11658.874	cmplt	R	2301952	256
11658.965	issue	R	2302208	256
11659.179	queue	R	2302464	256
11659.484	queue	W	2918400	1024
11659.942	queue	W	2919424	1024
11660.400	queue	W	2920448	1024
11660.827	queue	W	2921472	1024
11661.285	queue	W	2922496	1024
11661.712	queue	W	2923520	1024
11662.139	queue	W	2924544	1024
11662.170	cmplt	R	2302208	256
11662.262	issue	R	2302464	256
11662.475	queue	R	2302720	256
11665.527	cmplt	R	2302464	256
11665.619	issue	R	2302720	256
11665.832	queue	R	2302976	256
11666.229	queue	W	2925568	1024
11666.687	queue	W	2926592	1024
11667.114	queue	W	2927616	1024
11667.725	queue	W	2928640	1024
11668.152	queue	W	2929664	1024
11668.610	queue	W	2930688	1024
11668.823	cmplt	R	2302720	256
11668.915	issue	R	2302976	256
11669.129	queue	R	2303232	256
11672.120	cmplt	R	2302976	256
11672.242	issue	R	2303232	256
11672.455	queue	R	2303488	256
11672.700	queue	W	2931712	1024
11674.561	queue	W	2932736	1024
11674.989	queue	W	2933760	1024
11675.416	queue	W	2934784	1024
11675.446	cmplt	R	2303232	256
11675.538	issue	R	2303488	256
11675.752	queue	R	2303744	256
11678.773	cmplt	R	2303488	256
11678.865	issue	R	2303744	256
11679.078	queue	R	2304000	256
11679.506	queue	W	2935808	1024
11679.933	queue	W	2936832	1024
11680.391	queue	W	2937856	1024
11680.848	queue	W	2938880	1024
11681.276	queue	W	2939904	1024
11681.703	queue	W	2940928	1024
11682.069	cmplt	R	2303744	256
11682.161	issue	R	2304000	256
11682.374	queue	R	2304256	256
11685.457	cmplt	R	2304000	256
11685.549	issue	R	2304256	256
11685.762	queue	R	2304512	256
11685.823	queue	W	2941952	1024
11686.281	queue	W	2942976	1024
11686.708	queue	W	2944000	1024
11687.136	queue	W	2945024	1024
11687.593	queue	W	2946048	1024
11687.868	queue	W	2947072	704
11688.753	cmplt	R	2304256	256
11688.845	issue	R	2304512	256
11689.058	queue	R	2304768	256
11692.080	cmplt	R	2304512	256
11692.172	issue	R	2304768	256
11692.385	queue	R	2305024	256
11695.437	cmplt	R	2304768	256
11695.529	issue	R	2305024	256
11695.742	queue	R	2305280	256
11698.794	cmplt	R	2305024	256
11698.886	issue	R	2305280	256
11699.100	queue	R	2305536	256
11702.121	cmplt	R	2305280	256
11702.274	issue	R	2305536	256
11702.426	queue	R	2305792	256
11705.509	cmplt	R	2305536	256
11705.600	issue	R	2305792	256
11705.814	queue	R	2306048	256
11708.836	cmplt	R	2305792	256
11708.927	issue	R	2306048	256
11709.141	queue	R	2306304	256
11712.162	cmplt	R	2306048	256
11712.254	issue	R	2306304	256
11712.468	queue	R	2306560	256
11715.550	cmplt	R	2306304	256
11715.642	issue	R	2306560	256
11715.855	queue	R	2306816	256
11718.938	cmplt	R	2306560	256
11719.029	issue	R	2306816	256
11719.243	queue	R	2307072	256
11722.295	cmplt	R	2306816	256
11722.387	issue	R	2307072	256
11722.600	queue	R	2307328	256
11725.652	cmplt	R	2307072	256
11725.744	issue	R	2307328	256
11725.958	queue	R	2307584	256
11728.979	cmplt	R	2307328	256
11729.071	issue	R	2307584	256
11729.315	queue	R	2307840	256
11732.306	cmplt	R	2307584	256
11732.397	issue	R	2307840	256
11732.611	queue	R	2308096	256
11735.602	cmplt	R	2307840	256
11735.694	issue	R	2308096	256
11735.907	queue	R	2308352	256
11738.898	cmplt	R	2308096	256
11738.990	issue	R	2308352	256
11739.234	queue	R	2308608	256
11742.194	cmplt	R	2308352	256
11742.286	issue	R	2308608	256
11742.530	queue	R	2308864	256
11745.521	cmplt	R	2308608	256
11745.582	issue	R	2308864	256
11745.826	queue	R	2309120	256
11748.817	cmplt	R	2308864	256
11748.909	issue	R	2309120	256
11749.153	queue	R	2309376	256
11752.114	cmplt	R	2309120	256
11752.205	issue	R	2309376	256
11752.449	queue	R	2309632	256
11755.410	cmplt	R	2309376	256
11755.501	issue	R	2309632	256
11755.745	queue	R	2309888	256
11758.736	cmplt	R	2309632	256
11758.828	issue	R	2309888	256
11759.042	queue	R	2310144	256
11762.033	cmplt	R	2309888	256
11762.124	issue	R	2310144	256
11762.368	queue	R	2310400	256
11765.329	cmplt	R	2310144	256
11765.420	issue	R	2310400	256
11765.665	queue	R	2310656	256
11768.625	cmplt	R	2310400	256
11768.717	issue	R	2310656	256
11768.961	queue	R	2310912	256
11771.952	cmplt	R	2310656	256
11772.043	issue	R	2310912	256
11772.257	queue	R	2311168	256
11775.248	cmplt	R	2310912	256
11775.340	issue	R	2311168	256
11775.553	queue	R	2311424	256
11778.544	cmplt	R	2311168	256
11778.636	issue	R	2311424	256
11778.849	queue	R	2311680	256
11781.840	cmplt	R	2311424	256
11781.932	issue	R	2311680	256
11782.176	queue	R	2311936	256
11785.137	cmplt	R	2311680	256
11785.228	issue	R	2311936	256
11785.472	queue	R	2312192	256
11788.433	cmplt	R	2311936	256
11788.494	issue	R	2312192	256
11788.738	queue	R	2312448	256
11791.698	cmplt	R	2312192	256
11791.759	issue	R	2312448	256
11792.034	queue	R	2312704	256
11794.964	cmplt	R	2312448	256
11795.056	issue	R	2312704	256
11795.269	queue	R	2312960	256
11798.260	cmplt	R	2312704	256
11798.352	issue	R	2312960	256
11798.596	queue	R	2313216	256
11801.557	cmplt	R	2312960	256
11801.679	issue	W	2849792	1024
11801.709	issue	W	2850816	1024
11801.953	queue	R	2313472	256
11856.615	cmplt	W	2849792	1024
11856.890	cmplt	W	2850816	1024
11857.195	issue	W	2851840	1024
11857.256	issue	W	2852864	1024
11905.204	cmplt	W	2851840	1024
11905.509	cmplt	W	2852864	1024
11905.845	issue	R	2313216	512
11912.040	cmplt	R	2313216	512
11912.162	issue	W	2853888	1024
11912.437	queue	R	2313728	256
11912.803	queue	R	2313984	256
11918.175	queue	WS	1916928	8
11943.812	cmplt	W	2853888	1024
11944.148	issue	R	2313728	512
11950.282	cmplt	R	2313728	512
11950.404	issue	WS	1916928	8
11950.588	queue	R	2314240	256
11950.862	queue	R	2314496	256
11951.991	cmplt	WS	1916928	8
11952.205	issue	W	2854912	1024
11953.182	queue	WS	1916928	8
11984.526	cmplt	W	2854912	1024
11984.892	issue	WS	1916928	8
11986.357	cmplt	WS	1916928	8
11986.602	issue	R	2314240	512
11992.919	cmplt	R	2314240	512
11993.041	issue	W	2855936	1024
11993.347	queue	R	2314752	256
11993.682	queue	R	2315008	256
12000.855	queue	WS	2315008	256
12025.332	cmplt	W	2855936	1024
12025.698	issue	R	2314752	512
12025.881	queue	WS	1912920	8
12031.955	cmplt	R	2314752	512
12032.046	issue	WS	1912920	8
12032.260	queue	R	2315264	256
12032.535	queue	R	2315520	256
12033.572	cmplt	WS	1912920	8
12033.694	issue	R	2315264	512
12039.951	cmplt	R	2315264	512
12040.287	queue	R	2315776	256
12040.592	queue	R	2316032	256
12040.592	queue	WS	1845568	8
12040.592	queue	WS	1845576	8
12040.623	queue	WS	1845584	8
12040.623	queue	WS	1845592	8
12040.623	queue	WS	1845600	8
12040.653	issue	R	2315776	512
12040.653	queue	WS	1845608	8
12040.653	queue	WS	1845616	8
12040.653	queue	WS	1845624	8
12046.849	cmplt	R	2315776	512
12047.184	queue	R	2316288	256
12047.459	queue	R	2316544	256
12047.520	issue	R	2316288	512
12053.655	cmplt	R	2316288	512
12053.991	queue	R	2316800	256
12054.265	queue	R	2317056	256
12054.326	issue	R	2316800	512
12060.461	cmplt	R	2316800	512
12060.797	queue	R	2317312	256
12061.071	queue	R	2317568	256
12061.132	issue	R	2317312	512
12067.267	cmplt	R	2317312	512
12067.603	queue	R	2317824	256
12067.908	queue	R	2318080	256
12067.969	issue	R	2317824	512
12074.103	cmplt	R	2317824	512
12074.439	queue	R	2318336	256
12074.714	queue	R	2318592	256
12074.775	issue	R	2318336	512
12080.910	cmplt	R	2318336	512
12081.245	queue	R	2318848	256
12081.550	queue	R	2319104	256
12081.581	issue	R	2318848	512
12087.716	cmplt	R	2318848	512
12088.051	queue	R	2319360	256
12088.356	queue	R	2319616	256
12088.418	issue	R	2319360	512
12094.552	cmplt	R	2319360	512
12094.888	queue	R	2319872	256
12095.193	queue	R	2320128	256
12095.254	issue	R	2319872	512
12101.389	cmplt	R	2319872	512
12101.724	queue	R	2320384	256
12101.999	queue	R	2320640	256
12102.060	issue	R	2320384	512
12108.195	cmplt	R	2320384	512
12108.530	queue	R	2320896	256
12108.805	queue	R	2321152	256
12108.866	issue	R	2320896	512
12115.001	cmplt	R	2320896	512
12115.184	issue	W	2856960	1024
12115.214	issue	W	2857984	1024
12116.069	queue	R	2321408	256
12116.374	queue	R	2321664	256
12162.887	cmplt	W	2856960	1024
12163.253	cmplt	W	2857984	1024
12163.620	issue	R	2321408	512
12169.876	cmplt	R	2321408	512
12170.182	queue	R	2321920	256
12170.517	queue	R	2322176	256
12170.578	issue	R	2321920	512
12176.682	cmplt	R	2321920	512
12177.018	queue	R	2322432	256
12177.323	queue	R	2322688	256
12177.384	issue	R	2322432	512
12183.488	cmplt	R	2322432	512
12183.824	queue	R	2322944	256
12184.129	queue	R	2323200	256
12184.190	issue	R	2322944	512
12190.325	cmplt	R	2322944	512
12190.661	queue	R	2323456	256
12190.935	queue	R	2323712	256
12190.996	issue	R	2323456	512
12197.131	cmplt	R	2323456	512
12197.467	queue	R	2323968	256
12197.772	queue	R	2324224	256
12197.833	issue	R	2323968	512
12203.968	cmplt	R	2323968	512
12204.090	issue	WS	1845568	64
12204.425	queue	R	2324480	256
12204.700	queue	R	2324736	256
12210.468	cmplt	WS	1845568	64
12210.591	issue	R	2324480	512
12216.847	cmplt	R	2324480	512
12217.152	queue	R	2324992	256
12217.458	queue	R	2325248	256
12217.519	issue	R	2324992	512
12223.653	cmplt	R	2324992	512
12223.989	queue	R	2325504	256
12224.264	queue	R	2325760	256
12224.325	issue	R	2325504	512
12230.459	cmplt	R	2325504	512
12230.795	queue	R	2326016	256
12231.070	queue	R	2326272	256
12231.131	issue	R	2326016	512
12237.265	cmplt	R	2326016	512
12237.632	queue	R	2326528	256
12237.906	queue	R	2326784	256
12237.967	issue	R	2326528	512
12244.102	cmplt	R	2326528	512
12244.438	queue	R	2327040	256
12244.743	queue	R	2327296	256
12244.773	issue	R	2327040	512
12250.908	cmplt	R	2327040	512
12251.244	queue	R	2327552	256
12251.518	queue	R	2327808	256
12251.579	issue	R	2327552	512
12257.714	cmplt	R	2327552	512
12258.050	queue	R	2328064	256
12258.355	queue	R	2328320	256
12258.416	issue	R	2328064	512
12264.551	cmplt	R	2328064	512
12264.886	queue	R	2328576	256
12265.161	queue	R	2328832	256
12265.222	issue	R	2328576	512
12271.357	cmplt	R	2328576	512
12271.479	issue	W	2859008	1024
12272.059	queue	R	2329088	256
12272.364	queue	R	2329344	256
12303.159	cmplt	W	2859008	1024
12303.617	issue	R	2329088	512
12309.843	cmplt	R	2329088	512
12310.179	queue	R	2329600	256
12310.514	queue	R	2329856	256
12310.575	issue	R	2329600	512
12316.679	cmplt	R	2329600	512
12317.015	queue	R	2330112	256
12317.290	queue	R	2330368	256
12317.351	issue	R	2330112	512
12323.485	cmplt	R	2330112	512
12323.821	queue	R	2330624	256
12324.096	queue	R	2330880	256
12324.157	issue	R	2330624	512
12330.291	cmplt	R	2330624	512
12330.414	issue	W	2860032	1024
12331.360	queue	R	2331136	256
12331.665	queue	R	2331392	256
12362.277	cmplt	W	2860032	1024
12362.674	issue	R	2331136	512
12368.808	cmplt	R	2331136	512
12369.144	queue	R	2331648	256
12369.419	queue	R	2331904	256
12369.480	issue	R	2331648	512
12375.614	cmplt	R	2331648	512
12375.950	queue	R	2332160	256
12376.255	queue	R	2332416	256
12376.286	issue	R	2332160	512
12382.420	cmplt	R	2332160	512
12382.787	queue	R	2332672	256
12383.092	queue	R	2332928	256
12383.153	issue	R	2332672	512
12389.287	cmplt	R	2332672	512
12389.593	queue	R	2333184	256
12389.898	queue	R	2333440	256
12389.959	issue	R	2333184	512
12396.124	cmplt	R	2333184	512
12396.460	queue	R	2333696	256
12396.734	queue	R	2333952	256
12396.795	issue	R	2333696	512
12402.930	cmplt	R	2333696	512
12403.052	issue	W	2861056	1024
12404.059	queue	R	2334208	256
12404.364	queue	R	2334464	256
12435.282	cmplt	W	2861056	1024
12435.709	issue	R	2334208	512
12441.843	cmplt	R	2334208	512
12442.179	queue	R	2334720	256
12442.454	queue	R	2334976	256
12442.515	issue	R	2334720	512
12448.649	cmplt	R	2334720	512
12448.985	queue	R	2335232	256
12449.260	queue	R	2335488	256
12449.321	issue	R	2335232	512
12455.456	cmplt	R	2335232	512
12455.791	queue	R	2335744	256
12456.066	queue	R	2336000	256
12456.127	issue	R	2335744	512
12462.262	cmplt	R	2335744	512
12462.597	queue	R	2336256	256
12462.902	queue	R	2336512	256
12462.933	issue	R	2336256	512
12469.068	cmplt	R	2336256	512
12469.403	queue	R	2336768	256
12469.709	queue	R	2337024	256
12469.770	issue	R	2336768	512
12475.904	cmplt	R	2336768	512
12476.026	issue	W	2862080	1024
12476.057	issue	W	2863104	1024
12477.705	queue	R	2337280	256
12478.010	queue	R	2337536	256
12524.493	cmplt	W	2862080	1024
12524.828	cmplt	W	2863104	1024
12525.225	issue	R	2337280	512
12531.360	cmplt	R	2337280	512
12531.695	queue	R	2337792	256
12532.001	queue	R	2338048	256
12532.062	issue	R	2337792	512
12538.196	cmplt	R	2337792	512
12538.532	queue	R	2338304	256
12538.807	queue	R	2338560	256
12538.868	issue	R	2338304	512
12545.002	cmplt	R	2338304	512
12545.338	queue	R	2338816	256
12545.613	queue	R	2339072	256
12545.674	issue	R	2338816	512
12551.808	cmplt	R	2338816	512
12552.175	queue	R	2339328	256
12552.449	queue	R	2339584	256
12552.510	issue	R	2339328	512
12558.645	cmplt	R	2339328	512
12558.981	queue	R	2339840	256
12559.286	queue	R	2340096	256
12559.347	issue	R	2339840	512
12565.481	cmplt	R	2339840	512
12565.817	queue	R	2340352	256
12566.092	queue	R	2340608	256
12566.153	issue	R	2340352	512
12572.288	cmplt	R	2340352	512
12572.623	queue	R	2340864	256
12572.898	queue	R	2341120	256
12572.959	issue	R	2340864	512
12579.094	cmplt	R	2340864	512
12579.429	queue	R	2341376	256
12579.704	queue	R	2341632	256
12579.796	issue	R	2341376	512
12585.900	cmplt	R	2341376	512
12586.235	queue	R	2341888	256
12586.541	queue	R	2342144	256
12586.602	issue	R	2341888	512
12592.736	cmplt	R	2341888	512
12592.858	issue	W	2864128	1024
12592.889	issue	W	2865152	1024
12592.889	issue	W	2866176	1024
12593.438	queue	R	2342400	256
12593.957	queue	R	2342656	256
12658.996	cmplt	W	2864128	1024
12659.332	cmplt	W	2865152	1024
12659.667	cmplt	W	2866176	1024
12660.064	issue	R	2342400	512
12666.199	cmplt	R	2342400	512
12666.321	issue	W	2867200	1024
12666.351	issue	W	2868224	1024
12666.351	issue	W	2869248	1024
12666.382	issue	W	2870272	1024
12666.504	queue	R	2342912	256
12666.992	queue	R	2343168	256
12752.449	cmplt	W	2867200	1024
12752.785	cmplt	W	2868224	1024
12753.090	cmplt	W	2869248	1024
12753.395	cmplt	W	2870272	1024
12753.762	issue	R	2342912	512
12759.988	cmplt	R	2342912	512
12760.110	issue	W	2871296	1024
12760.140	issue	W	2872320	1024
12760.171	issue	W	2873344	704
12760.171	issue	W	2874048	1024
12760.201	issue	W	2875072	1024
12760.293	queue	R	2343424	256
12760.781	queue	R	2343680	256
12850.786	cmplt	W	2871296	1024
12851.122	cmplt	W	2872320	1024
12851.427	cmplt	W	2873344	704
12851.610	cmplt	W	2874048	1024
12851.946	cmplt	W	2875072	1024
12852.342	issue	R	2343424	512
12858.447	cmplt	R	2343424	512
12858.569	issue	W	2876096	1024
12858.599	issue	W	2877120	1024
12858.630	issue	W	2878144	1024
12858.630	issue	W	2879168	1024
12858.660	issue	W	2880192	1000
12858.660	issue	W	2881192	1024
12858.752	queue	R	2343936	256
12859.210	queue	R	2344192	256
12965.909	cmplt	W	2876096	1024
12966.244	cmplt	W	2877120	1024
12966.550	cmplt	W	2878144	1024
12966.885	cmplt	W	2879168	1024
12967.221	cmplt	W	2880192	1000
12967.526	cmplt	W	2881192	1024
12967.862	issue	R	2343936	512
12973.997	cmplt	R	2343936	512
12974.119	issue	W	2882216	1024
12974.393	queue	R	2344448	256
12974.760	queue	R	2344704	256
13000.519	cmplt	W	2882216	1024
13000.916	issue	R	2344448	512
13007.050	cmplt	R	2344448	512
13007.172	issue	W	2883240	344
13007.386	queue	R	2344960	256
13007.691	queue	R	2345216	256
13021.059	cmplt	W	2883240	344
13021.242	issue	R	2344960	512
13027.377	cmplt	R	2344960	512
13027.499	issue	W	2899968	1024
13027.774	queue	R	2345472	256
13028.140	queue	R	2345728	256
13057.439	cmplt	W	2899968	1024
13057.836	issue	R	2345472	512
13063.940	cmplt	R	2345472	512
13064.062	issue	W	2900992	1024
13064.367	queue	R	2345984	256
13064.703	queue	R	2346240	256
13095.407	cmplt	W	2900992	1024
13095.803	issue	R	2345984	512
13101.908	cmplt	R	2345984	512
13102.030	issue	W	2902016	1024
13102.487	queue	R	2346496	256
13102.793	queue	R	2346752	256
13126.263	cmplt	W	2902016	1024
13126.629	issue	R	2346496	512
13132.764	cmplt	R	2346496	512
13132.886	issue	W	2903040	1024
13133.160	queue	R	2347008	256
13133.496	queue	R	2347264	256
13162.582	cmplt	W	2903040	1024
13162.979	issue	R	2347008	512
13169.083	cmplt	R	2347008	512
13169.205	issue	W	2904064	1024
13169.388	queue	R	2347520	256
13169.693	queue	R	2347776	256
13198.321	cmplt	W	2904064	1024
13198.749	issue	R	2347520	512
13204.853	cmplt	R	2347520	512
13204.975	issue	W	2905088	680
13205.005	issue	W	2905768	1024
13205.158	queue	R	2348032	256
13205.463	queue	R	2348288	256
13245.506	cmplt	W	2905088	680
13245.750	cmplt	W	2905768	1024
13246.147	issue	R	2348032	512
13252.251	cmplt	R	2348032	512
13252.373	issue	W	2906792	1024
13252.403	issue	W	2907816	1024
13252.556	queue	R	2348544	256
13252.861	queue	R	2348800	256
13293.118	cmplt	W	2906792	1024
13293.453	cmplt	W	2907816	1024
13293.850	issue	R	2348544	512
13299.985	cmplt	R	2348544	512
13300.107	issue	W	2908840	1024
13300.137	issue	W	2909864	1024
13300.137	issue	W	2910888	1024
13300.320	queue	R	2349056	256
13300.626	queue	R	2349312	256
13356.417	cmplt	W	2908840	1024
13356.722	cmplt	W	2909864	1024
13357.058	cmplt	W	2910888	1024
13357.455	issue	R	2349056	512
13363.559	cmplt	R	2349056	512
13363.681	issue	W	2911912	1024
13363.711	issue	W	2912936	1024
13363.711	issue	W	2913960	1024
13363.864	queue	R	2349568	256
13364.169	queue	R	2349824	256
13419.930	cmplt	W	2911912	1024
13420.296	cmplt	W	2912936	1024
13420.632	cmplt	W	2913960	1024
13420.998	issue	R	2349568	512
13427.133	cmplt	R	2349568	512
13427.255	issue	W	2914984	1024
13427.285	issue	W	2916008	344
13427.285	issue	W	2916352	1024
13427.316	issue	W	2917376	1024
13427.438	queue	R	2350080	256
13427.743	queue	R	2350336	256
13501.816	cmplt	W	2914984	1024
13502.152	cmplt	W	2916008	344
13502.274	cmplt	W	2916352	1024
13502.609	cmplt	W	2917376	1024
13502.976	issue	R	2350080	512
13509.110	cmplt	R	2350080	512
13509.202	issue	W	2918400	1024
13509.232	issue	W	2919424	1024
13509.263	issue	W	2920448	1024
13509.263	issue	W	2921472	1024
13509.293	issue	W	2922496	1024
13509.385	queue	R	2350592	256
13509.721	queue	R	2350848	256
13594.873	cmplt	W	2918400	1024
13595.208	cmplt	W	2919424	1024
13595.544	cmplt	W	2920448	1024
13595.849	cmplt	W	2921472	1024
13596.154	cmplt	W	2922496	1024
13596.521	issue	R	2350592	512
13602.655	cmplt	R	2350592	512
13602.747	issue	W	2923520	1024
13602.777	issue	W	2924544	1024
13602.808	issue	W	2925568	1024
13602.808	issue	W	2926592	1024
13602.838	issue	W	2927616	1024
13602.838	issue	W	2928640	1024
13602.930	queue	R	2351104	256
13603.296	queue	R	2351360	256
13709.293	cmplt	W	2923520	1024
13709.660	cmplt	W	2924544	1024
13710.026	cmplt	W	2925568	1024
13710.331	cmplt	W	2926592	1024
13710.636	cmplt	W	2927616	1024
13710.972	cmplt	W	2928640	1024
13711.369	issue	R	2351104	512
13717.473	cmplt	R	2351104	512
13717.595	issue	W	2929664	1024
13717.626	issue	W	2930688	1024
13717.656	issue	W	2931712	1024
13717.656	issue	W	2932736	1024
13717.687	issue	W	2933760	1024
13717.687	issue	W	2934784	1024
13717.717	issue	W	2935808	1024
13718.236	queue	R	2351616	256
13718.511	queue	R	2351872	256
13846.879	cmplt	W	2929664	1024
13847.215	cmplt	W	2930688	1024
13847.551	cmplt	W	2931712	1024
13847.856	cmplt	W	2932736	1024
13848.161	cmplt	W	2933760	1024
13848.436	cmplt	W	2934784	1024
13848.741	cmplt	W	2935808	1024
13849.107	issue	R	2351616	512
13855.272	cmplt	R	2351616	512
13855.394	issue	W	2936832	1024
13855.578	queue	R	2352128	256
13855.883	queue	R	2352384	256
13884.450	cmplt	W	2936832	1024
13884.877	issue	R	2352128	512
13890.981	cmplt	R	2352128	512
13891.103	issue	W	2937856	1024
13891.286	queue	R	2352640	256
13891.561	queue	R	2352896	256
13920.220	cmplt	W	2937856	1024
13920.647	issue	R	2352640	512
13926.751	cmplt	R	2352640	512
13926.873	issue	W	2938880	1024
13927.056	queue	R	2353152	256
13927.362	queue	R	2353408	256
13955.868	cmplt	W	2938880	1024
13956.295	issue	R	2353152	512
13962.399	cmplt	R	2353152	512
13962.521	issue	W	2939904	1024
13962.704	queue	R	2353664	256
13963.009	queue	R	2353920	256
13991.729	cmplt	W	2939904	1024
13992.156	issue	R	2353664	512
13998.291	cmplt	R	2353664	512
13998.382	issue	W	2940928	1024
13998.566	queue	R	2354176	256
13998.871	queue	R	2354432	256
14027.316	cmplt	W	2940928	1024
14027.743	issue	R	2354176	512
14033.847	cmplt	R	2354176	512
14033.969	issue	W	2941952	1024
14034.152	queue	R	2354688	256
14034.427	queue	R	2354944	256
14063.177	cmplt	W	2941952	1024
14063.574	issue	R	2354688	512
14069.709	cmplt	R	2354688	512
14069.800	issue	W	2942976	1024
14069.831	issue	W	2944000	1024
14070.044	queue	R	2355200	256
14070.319	queue	R	2355456	256
14114.543	cmplt	W	2942976	1024
14115.001	cmplt	W	2944000	1024
14115.428	issue	R	2355200	512
14121.563	cmplt	R	2355200	512
14121.685	issue	W	2945024	1024
14121.715	issue	W	2946048	1024
14121.868	queue	R	2355712	256
14122.173	queue	R	2355968	256
14166.550	cmplt	W	2945024	1024
14166.916	cmplt	W	2946048	1024
14167.313	issue	R	2355712	512
14173.417	cmplt	R	2355712	512
14173.539	issue	W	2947072	704
14173.722	queue	R	2356224	256
14173.997	queue	R	2356480	256
14198.901	cmplt	W	2947072	704
14199.206	issue	R	2356224	512
14205.402	cmplt	R	2356224	512
14205.799	queue	R	2356736	256
14206.104	queue	R	2356992	256
14206.165	issue	R	2356736	512
14206.379	queue	WS	1845632	8
14212.330	cmplt	R	2356736	512
14212.483	issue	WS	1845632	8
14212.880	queue	R	2357248	256
14213.185	queue	R	2357504	256
14214.009	cmplt	WS	1845632	8
14214.131	issue	R	2357248	512
14214.375	queue	WS	1845640	8
14214.406	queue	WS	1845648	8
14214.406	queue	WS	1845656	8
14220.388	cmplt	R	2357248	512
14220.754	queue	R	2357760	256
14221.029	queue	R	2358016	256
14221.090	issue	R	2357760	512
14227.224	cmplt	R	2357760	512
14227.346	issue	WS	1845640	24
14227.682	queue	R	2358272	256
14227.987	queue	R	2358528	256
14228.506	cmplt	WS	1845640	24
14228.628	queue	WS	1845664	8
14228.689	issue	WS	1845664	8
14228.720	issue	R	2358272	512
14228.720	queue	R	2358272	512
14228.781	issue	R	2358272	512
14229.605	cmplt	WS	1845664	8
14235.648	cmplt	R	2358272	512
14235.984	queue	R	2358784	256
14236.289	queue	R	2359040	256
14236.350	issue	R	2358784	512
14240.958	queue	R	2635568	80
14242.515	cmplt	R	2358784	512
14242.637	issue	R	2635568	80
14243.034	queue	R	2375680	256
14243.369	queue	R	2375936	256
14243.919	cmplt	R	2635568	80
14243.980	issue	R	2375680	512
14250.237	cmplt	R	2375680	512
14250.633	queue	R	2376192	256
14250.908	queue	R	2376448	256
14250.969	issue	R	2376192	512
14257.195	cmplt	R	2376192	512
14257.561	queue	R	2376704	256
14257.867	queue	R	2376960	256
14257.897	issue	R	2376704	512
14259.057	queue	WS	1974280	80
14264.123	cmplt	R	2376704	512
14264.245	issue	WS	1974280	80
14264.642	queue	R	2377216	256
14264.947	queue	R	2377472	256
14272.577	queue	W	2947776	1024
14273.707	queue	W	2948800	320
14273.737	cmplt	WS	1974280	80
14273.890	issue	R	2377216	512
14275.416	queue	W	2949120	1024
14275.843	queue	W	2950144	1024
14276.240	queue	W	2951168	1024
14276.667	queue	W	2952192	1024
14277.064	queue	W	2953216	1024
14277.461	queue	W	2954240	1024
14277.888	queue	W	2955264	1024
14278.285	queue	W	2956288	1024
14278.682	queue	W	2957312	1024
14279.109	queue	W	2958336	1024
14279.506	queue	W	2959360	1024
14279.902	queue	W	2960384	1024
14280.208	cmplt	R	2377216	512
14280.330	issue	W	2947776	1024
14280.360	issue	W	2948800	320
14280.360	issue	W	2949120	1024
14280.391	issue	W	2950144	1024
14281.245	queue	R	2377728	256
14281.581	queue	R	2377984	256
14290.401	queue	W	2961408	1024
14290.859	queue	W	2962432	1024
14291.317	queue	W	2963456	1024
14291.744	queue	W	2964480	1024
14293.759	queue	W	2965504	1024
14294.155	queue	W	2966528	1024
14294.552	queue	W	2967552	1024
14295.132	queue	W	2968576	1024
14300.351	queue	W	2969600	1024
14300.809	queue	W	2970624	1024
14301.267	queue	W	2971648	1024
14301.694	queue	W	2972672	1024
14302.121	queue	W	2973696	1024
14302.548	queue	W	2974720	1024
14302.976	queue	W	2975744	1024
14303.403	queue	W	2976768	1024
14303.800	queue	W	2977792	1024
14304.227	queue	W	2978816	1024
14304.685	queue	W	2979840	1024
14305.112	queue	W	2980864	1024
14308.775	queue	WS	1845672	8
14308.805	queue	WS	1845680	8
14308.805	queue	WS	1845688	8
14308.836	queue	WS	1845696	8
14308.836	queue	WS	1845704	8
14308.866	queue	WS	1845712	8
14308.866	queue	WS	1845720	8
14308.866	queue	WS	1845728	8
14308.897	queue	WS	1845736	8
14351.686	cmplt	W	2947776	1024
14351.991	cmplt	W	2948800	320
14352.083	cmplt	W	2949120	1024
14352.358	cmplt	W	2950144	1024
14352.663	issue	R	2377728	512
14358.950	cmplt	R	2377728	512
14359.316	queue	R	2378240	256
14359.622	queue	R	2378496	256
14359.683	issue	R	2378240	512
14365.878	cmplt	R	2378240	512
14366.244	queue	R	2378752	256
14366.519	queue	R	2379008	256
14366.580	issue	R	2378752	512
14372.715	cmplt	R	2378752	512
14373.051	queue	R	2379264	256
14373.325	queue	R	2379520	256
14373.386	issue	R	2379264	512
14379.521	cmplt	R	2379264	512
14379.857	queue	R	2379776	256
14380.314	queue	R	2380032	256
14380.375	issue	R	2379776	512
14386.571	cmplt	R	2379776	512
14386.907	queue	R	2380288	256
14387.181	queue	R	2380544	256
14387.242	issue	R	2380288	512
14393.408	cmplt	R	2380288	512
14393.774	queue	R	2380800	256
14394.049	queue	R	2381056	256
14394.110	issue	R	2380800	512
14400.244	cmplt	R	2380800	512
14400.580	queue	R	2381312	256
14400.885	queue	R	2381568	256
14400.946	issue	R	2381312	512
14407.081	cmplt	R	2381312	512
14407.203	issue	WS	1845672	72
14407.600	queue	R	2381824	256
14407.905	queue	R	2382080	256
14409.522	cmplt	WS	1845672	72
14409.644	issue	W	2951168	1024
14409.675	issue	W	2952192	1024
14409.675	issue	W	2953216	1024
14409.705	issue	W	2954240	1024
14482.527	cmplt	W	2951168	1024
14482.802	cmplt	W	2952192	1024
14483.046	cmplt	W	2953216	1024
14483.290	cmplt	W	2954240	1024
14483.595	issue	W	2955264	1024
14483.626	issue	W	2956288	1024
14483.656	issue	W	2957312	1024
14483.656	issue	W	2958336	1024
14483.687	issue	W	2959360	1024
14571.647	cmplt	W	2955264	1024
14571.952	cmplt	W	2956288	1024
14572.196	cmplt	W	2957312	1024
14572.471	cmplt	W	2958336	1024
14572.745	cmplt	W	2959360	1024
14573.051	issue	R	2381824	512
14579.338	cmplt	R	2381824	512
14579.673	queue	R	2382336	256
14580.009	queue	R	2382592	256
14580.070	issue	R	2382336	512
14586.205	cmplt	R	2382336	512
14586.510	queue	R	2382848	256
14586.785	queue	R	2383104	256
14586.876	issue	R	2382848	512
14592.980	cmplt	R	2382848	512
14593.286	queue	R	2383360	256
14593.591	queue	R	2383616	256
14593.652	issue	R	2383360	512
14599.756	cmplt	R	2383360	512
14600.092	queue	R	2383872	256
14600.397	queue	R	2384128	256
14600.458	issue	R	2383872	512
14606.562	cmplt	R	2383872	512
14606.898	queue	R	2384384	256
14607.172	queue	R	2384640	256
14607.233	issue	R	2384384	512
14613.337	cmplt	R	2384384	512
14613.673	queue	R	2384896	256
14613.978	queue	R	2385152	256
14614.039	issue	R	2384896	512
14620.143	cmplt	R	2384896	512
14620.479	queue	R	2385408	256
14620.754	queue	R	2385664	256
14620.815	issue	R	2385408	512
14626.919	cmplt	R	2385408	512
14627.255	queue	R	2385920	256
14627.560	queue	R	2386176	256
14627.621	issue	R	2385920	512
14633.725	cmplt	R	2385920	512
14634.061	queue	R	2386432	256
14634.335	queue	R	2386688	256
14634.396	issue	R	2386432	512
14640.531	cmplt	R	2386432	512
14640.836	queue	R	2386944	256
14641.141	queue	R	2387200	256
14641.203	issue	R	2386944	512
14647.307	cmplt	R	2386944	512
14647.642	queue	R	2387456	256
14647.917	queue	R	2387712	256
14647.978	issue	R	2387456	512
14654.113	cmplt	R	2387456	512
14654.418	queue	R	2387968	256
14654.723	queue	R	2388224	256
14654.784	issue	R	2387968	512
14660.888	cmplt	R	2387968	512
14661.254	queue	R	2388480	256
14661.529	queue	R	2388736	256
14661.590	issue	R	2388480	512
14667.725	cmplt	R	2388480	512
14668.030	queue	R	2388992	256
14668.335	queue	R	2389248	256
14668.396	issue	R	2388992	512
14674.500	cmplt	R	2388992	512
14674.836	queue	R	2389504	256
14675.141	queue	R	2389760	256
14675.202	issue	R	2389504	512
14681.337	cmplt	R	2389504	512
14681.459	issue	W	2960384	1024
14681.947	queue	R	2390016	256
14682.252	queue	R	2390272	256
14707.340	cmplt	W	2960384	1024
14707.737	issue	R	2390016	512
14713.810	cmplt	R	2390016	512
14714.146	queue	R	2390528	256
14714.451	queue	R	2390784	256
14714.512	issue	R	2390528	512
14720.647	cmplt	R	2390528	512
14720.983	queue	R	2391040	256
14721.257	queue	R	2391296	256
14721.318	issue	R	2391040	512
14731.329	cmplt	R	2391040	512
14731.665	queue	R	2391552	256
14731.970	queue	R	2391808	256
14732.031	issue	R	2391552	512
14738.227	cmplt	R	2391552	512
14738.593	queue	R	2392064	256
14738.898	queue	R	2392320	256
14738.959	issue	R	2392064	512
14745.094	cmplt	R	2392064	512
14745.216	issue	W	2961408	1024
14745.399	queue	R	2392576	256
14745.704	queue	R	2392832	256
14787.609	cmplt	W	2961408	1024
14788.005	issue	R	2392576	512
14794.171	cmplt	R	2392576	512
14794.354	issue	W	2962432	1024
14794.384	issue	W	2963456	1024
14795.056	queue	R	2393088	256
14795.971	queue	R	2393344	256
14835.800	cmplt	W	2962432	1024
14836.136	cmplt	W	2963456	1024
14836.533	issue	R	2393088	512
14842.698	cmplt	R	2393088	512
14842.820	issue	W	2964480	1024
14842.851	issue	W	2965504	1024
14843.492	queue	R	2393600	256
14844.468	queue	R	2393856	256
14884.084	cmplt	W	2964480	1024
14884.419	cmplt	W	2965504	1024
14884.786	issue	R	2393600	512
14890.890	cmplt	R	2393600	512
14891.012	issue	W	2966528	1024
14891.042	issue	W	2967552	1024
14891.042	issue	W	2968576	1024
14891.378	queue	R	2394112	256
14891.683	queue	R	2394368	256
14947.749	cmplt	W	2966528	1024
14948.115	cmplt	W	2967552	1024
14948.451	cmplt	W	2968576	1024
14948.787	issue	R	2394112	512
14954.891	cmplt	R	2394112	512
14955.013	issue	W	2969600	1024
14955.043	issue	W	2970624	1024
14955.043	issue	W	2971648	1024
14955.196	queue	R	2394624	256
14955.501	queue	R	2394880	256
15011.659	cmplt	W	2969600	1024
15012.117	cmplt	W	2970624	1024
15012.422	cmplt	W	2971648	1024
15012.880	issue	R	2394624	512
15018.984	cmplt	R	2394624	512
15019.075	issue	W	2972672	1024
15019.106	issue	W	2973696	1024
15019.136	issue	W	2974720	1024
15019.136	issue	W	2975744	1024
15019.319	queue	R	2395136	256
15019.625	queue	R	2395392	256
15076.667	queue	R	2395392	256
15076.728	queue	R	2395392	256
15091.256	cmplt	W	2972672	1024
15091.622	cmplt	W	2973696	1024
15091.958	cmplt	W	2974720	1024
15092.263	cmplt	W	2975744	1024
15092.629	issue	R	2395136	512
15098.764	cmplt	R	2395136	512
15098.917	issue	W	2976768	1024
15098.947	issue	W	2977792	1024
15098.947	issue	W	2978816	1024
15098.978	issue	W	2979840	1024
15098.978	issue	W	2980864	1024
15099.771	queue	R	2395648	256
15100.839	queue	R	2395904	256
15193.438	cmplt	W	2976768	1024
15193.804	cmplt	W	2977792	1024
15194.140	cmplt	W	2978816	1024
15194.476	cmplt	W	2979840	1024
15194.781	cmplt	W	2980864	1024
15195.178	issue	R	2395648	512
15195.208	queue	WS	1845744	8
15195.880	queue	W	2981888	1024
15196.307	queue	W	2982912	1024
15196.795	queue	W	2983936	1024
15197.253	queue	W	2984960	1024
15197.680	queue	W	2985984	1024
15198.169	queue	W	2987008	1024
15198.505	queue	W	2988032	824
15201.465	cmplt	R	2395648	512
15201.557	issue	WS	1845744	8
15201.587	issue	W	2981888	1024
15201.618	issue	W	2982912	1024
15201.618	issue	W	2983936	1024
15201.648	issue	W	2984960	1024
15201.648	issue	W	2985984	1024
15201.679	issue	W	2987008	1024
15210.316	queue	R	2396160	256
15210.652	queue	R	2396416	256
15292.721	queue	W	1835696	8
15292.751	queue	W	2621960	8
15298.123	queue	W	2988856	1024
15298.611	queue	W	2989880	1024
15306.241	cmplt	WS	1845744	8
15306.272	cmplt	W	2981888	1024
15306.547	cmplt	W	2982912	1024
15306.760	queue	W	2990904	1024
15306.821	cmplt	W	2983936	1024
15307.065	cmplt	W	2984960	1024
15307.340	cmplt	W	2985984	1024
15307.584	cmplt	W	2987008	1024
15307.767	queue	W	2991928	1024
15308.286	queue	W	2992952	1024
15308.805	queue	W	2993976	1024
15309.354	queue	W	2995000	1024
15309.873	queue	W	2996024	1024
15310.056	issue	R	2396160	512
15310.362	queue	W	2997048	1024
15311.003	queue	W	2998072	200
15312.895	queue	W	2998272	1024
15313.353	queue	W	2999296	1024
15313.749	queue	W	3000320	1024
15314.238	queue	W	3001344	1024
15314.665	queue	W	3002368	1024
15315.123	queue	W	3003392	1024
15315.550	queue	W	3004416	1024
15315.947	queue	W	3005440	1024
15316.344	cmplt	R	2396160	512
15316.374	queue	W	3006464	1024
15316.496	issue	W	2988032	824
15316.527	issue	W	2988856	1024
15316.527	issue	W	2989880	1024
15316.557	issue	W	2990904	1024
15316.588	issue	W	2991928	1024
15316.588	issue	W	2992952	1024
15316.618	issue	W	2993976	1024
15317.229	queue	R	2396672	256
15318.205	queue	R	2396928	256
15330.505	queue	W	3007488	1024
15331.085	queue	W	3008512	1024
15331.512	queue	W	3009536	1024
15331.940	queue	W	3010560	1024
15332.397	queue	W	3011584	1024
15332.794	queue	W	3012608	1024
15333.221	queue	W	3013632	1024
15335.114	queue	W	3014656	1024
15335.633	queue	W	3015680	1024
15336.060	queue	W	3016704	1024
15336.487	queue	W	3017728	1024
15336.884	queue	W	3018752	1024
15337.311	queue	W	3019776	1024
15337.738	queue	W	3020800	1024
15338.135	queue	W	3021824	1024
15338.562	queue	W	3022848	1024
15338.990	queue	W	3023872	1024
15339.417	queue	W	3024896	1024
15339.814	queue	W	3025920	1024
15341.889	queue	W	3026944	1024
15342.347	queue	W	3027968	1024
15342.713	queue	W	3028992	832
15438.242	cmplt	W	2988032	824
15438.456	cmplt	W	2988856	1024
15438.730	cmplt	W	2989880	1024
15438.975	cmplt	W	2990904	1024
15439.219	cmplt	W	2991928	1024
15439.463	cmplt	W	2992952	1024
15439.707	cmplt	W	2993976	1024
15440.043	issue	R	2396672	512
15446.360	cmplt	R	2396672	512
15446.513	issue	W	2995000	1024
15447.337	queue	R	2397184	256
15448.375	queue	R	2397440	256
15472.028	cmplt	W	2995000	1024
15472.364	issue	R	2397184	512
15478.559	cmplt	R	2397184	512
15478.712	issue	W	2996024	1024
15478.895	queue	R	2397696	256
15479.200	queue	R	2397952	256
15504.288	cmplt	W	2996024	1024
15504.624	issue	R	2397696	512
15510.179	queue	R	2397696	512
15510.911	cmplt	R	2397696	512
15511.033	issue	W	2997048	1024
15511.277	queue	R	2398208	256
15511.582	queue	R	2398464	256
15536.823	cmplt	W	2997048	1024
15537.189	issue	R	2398208	512
15543.324	cmplt	R	2398208	512
15543.446	issue	W	1835696	8
15543.659	queue	R	2398720	256
15543.965	queue	R	2398976	256
15544.972	cmplt	W	1835696	8
15545.094	issue	R	2398720	512
15551.320	cmplt	R	2398720	512
15551.473	issue	W	2621960	8
15552.358	queue	R	2399232	256
15552.999	cmplt	W	2621960	8
15553.090	issue	R	2399232	256
15553.304	queue	R	2399488	256
15556.417	cmplt	R	2399232	256
15556.508	issue	R	2399488	256
15557.394	queue	R	2399744	256
15559.744	cmplt	R	2399488	256
15559.805	issue	R	2399744	256
15560.751	queue	R	2400000	256
15563.040	cmplt	R	2399744	256
15563.101	issue	R	2400000	256
15563.986	queue	R	2400256	256
15566.336	cmplt	R	2400000	256
15566.428	issue	R	2400256	256
15567.313	queue	R	2400512	256
15569.632	cmplt	R	2400256	256
15569.724	issue	R	2400512	256
15570.578	queue	R	2400768	256
15572.898	cmplt	R	2400512	256
15572.989	issue	R	2400768	256
15573.905	queue	R	2401024	256
15576.164	cmplt	R	2400768	256
15576.255	issue	R	2401024	256
15576.499	queue	R	2401280	256
15579.429	cmplt	R	2401024	256
15579.490	issue	R	2401280	256
15580.559	queue	R	2401536	256
15582.695	cmplt	R	2401280	256
15582.787	issue	R	2401536	256
15583.061	queue	R	2401792	256
15585.930	cmplt	R	2401536	256
15586.022	issue	R	2401792	256
15586.266	queue	R	2402048	256
15589.196	cmplt	R	2401792	256
15589.287	issue	R	2402048	256
15589.501	queue	R	2402304	256
15592.461	cmplt	R	2402048	256
15592.553	issue	R	2402304	256
15592.797	queue	R	2402560	256
15595.727	cmplt	R	2402304	256
15595.819	issue	R	2402560	256
15596.124	queue	R	2402816	256
15598.993	cmplt	R	2402560	256
15599.054	issue	R	2402816	256
15599.420	queue	R	2403072	256
15602.228	cmplt	R	2402816	256
15602.320	issue	R	2403072	256
15602.564	queue	R	2403328	256
15605.494	cmplt	R	2403072	256
15605.585	issue	R	2403328	256
15605.829	queue	R	2403584	256
15608.759	cmplt	R	2403328	256
15608.851	issue	R	2403584	256
15609.065	queue	R	2403840	256
15611.995	cmplt	R	2403584	256
15612.086	issue	R	2403840	256
15612.300	queue	R	2404096	256
15615.230	cmplt	R	2403840	256
15615.321	issue	R	2404096	256
15615.535	queue	R	2404352	256
15618.465	cmplt	R	2404096	256
15618.556	issue	R	2404352	256
15618.801	queue	R	2404608	256
15621.731	cmplt	R	2404352	256
15621.792	issue	R	2404608	256
15622.005	queue	R	2404864	256
15624.935	cmplt	R	2404608	256
15625.027	issue	R	2404864	256
15625.240	queue	R	2405120	256
15628.170	cmplt	R	2404864	256
15628.231	issue	R	2405120	256
15628.476	queue	R	2405376	256
15631.405	cmplt	R	2405120	256
15631.467	issue	R	2405376	256
15631.711	queue	R	2405632	256
15634.641	cmplt	R	2405376	256
15634.702	issue	R	2405632	256
15634.946	queue	R	2405888	256
15637.876	cmplt	R	2405632	256
15637.967	issue	R	2405888	256
15638.181	queue	R	2406144	256
15641.111	cmplt	R	2405888	256
15641.203	issue	R	2406144	256
15641.447	queue	R	2406400	256
15644.377	cmplt	R	2406144	256
15644.438	issue	R	2406400	256
15644.682	queue	R	2406656	256
15647.612	cmplt	R	2406400	256
15647.703	issue	R	2406656	256
15647.948	queue	R	2406912	256
15650.877	cmplt	R	2406656	256
15651.000	issue	W	2998072	200
15651.030	issue	W	2998272	1024
15651.183	queue	R	2407168	256
15680.848	cmplt	W	2998072	200
15680.940	cmplt	W	2998272	1024
15681.276	issue	W	2999296	1024
15681.306	issue	W	3000320	1024
15693.545	queue	W	3000320	1024
15722.417	cmplt	W	2999296	1024
15722.753	cmplt	W	3000320	1024
15723.089	issue	R	2406912	512
15729.284	cmplt	R	2406912	512
15729.406	issue	W	3001344	1024
15729.437	issue	W	3002368	1024
15729.620	queue	R	2407424	256
15729.925	queue	R	2407680	256
15770.548	cmplt	W	3001344	1024
15770.853	cmplt	W	3002368	1024
15771.189	issue	R	2407424	512
15777.293	cmplt	R	2407424	512
15777.415	issue	W	3003392	1024
15777.445	issue	W	3004416	1024
15777.445	issue	W	3005440	1024
15777.629	queue	R	2407936	256
15777.934	queue	R	2408192	256
15834.061	cmplt	W	3003392	1024
15834.366	cmplt	W	3004416	1024
15834.641	cmplt	W	3005440	1024
15834.946	issue	R	2407936	512
15841.080	cmplt	R	2407936	512
15841.203	issue	W	3006464	1024
15841.233	issue	W	3007488	1024
15841.264	issue	W	3008512	1024
15841.264	issue	W	3009536	1024
15841.416	queue	R	2408448	256
15841.752	queue	R	2408704	256
15913.078	cmplt	W	3006464	1024
15913.353	cmplt	W	3007488	1024
15913.658	cmplt	W	3008512	1024
15913.902	cmplt	W	3009536	1024
15914.207	issue	R	2408448	512
15920.342	cmplt	R	2408448	512
15920.464	issue	W	3010560	1024
15920.494	issue	W	3011584	1024
15920.525	issue	W	3012608	1024
15920.525	issue	W	3013632	1024
15920.678	queue	R	2408960	256
15921.013	queue	R	2409216	256
16006.348	cmplt	W	3010560	1024
16006.653	cmplt	W	3011584	1024
16006.959	cmplt	W	3012608	1024
16007.203	cmplt	W	3013632	1024
16007.508	issue	R	2408960	512
16013.612	cmplt	R	2408960	512
16013.734	issue	W	3014656	1024
16013.765	issue	W	3015680	1024
16013.765	issue	W	3016704	1024
16013.795	issue	W	3017728	1024
16013.795	issue	W	3018752	1024
16013.948	queue	R	2409472	256
16014.284	queue	R	2409728	256
16101.633	cmplt	W	3014656	1024
16101.938	cmplt	W	3015680	1024
16102.213	cmplt	W	3016704	1024
16102.487	cmplt	W	3017728	1024
16102.732	cmplt	W	3018752	1024
16103.067	issue	R	2409472	512
16109.232	cmplt	R	2409472	512
16109.354	issue	W	3019776	1024
16109.416	issue	W	3020800	1024
16109.416	issue	W	3021824	1024
16109.446	issue	W	3022848	1024
16109.446	issue	W	3023872	1024
16109.477	issue	W	3024896	1024
16110.240	queue	R	2409984	256
16111.003	queue	R	2410240	256
16212.513	cmplt	W	3019776	1024
16212.819	cmplt	W	3020800	1024
16213.124	cmplt	W	3021824	1024
16213.368	cmplt	W	3022848	1024
16213.612	cmplt	W	3023872	1024
16213.856	cmplt	W	3024896	1024
16214.192	issue	R	2409984	512
16220.388	cmplt	R	2409984	512
16220.479	issue	W	3025920	1024
16220.510	issue	W	3026944	1024
16220.540	issue	W	3027968	1024
16220.571	issue	W	3028992	832
16221.120	queue	R	2410496	256
16221.425	queue	R	2410752	256
16296.353	cmplt	W	3025920	1024
16296.658	cmplt	W	3026944	1024
16296.933	cmplt	W	3027968	1024
16297.177	cmplt	W	3028992	832
16297.452	issue	R	2410496	512
16303.647	cmplt	R	2410496	512
16303.983	queue	R	2411008	256
16304.044	issue	R	2411008	256
16304.258	queue	R	2411264	256
16307.218	cmplt	R	2411008	256
16307.279	issue	R	2411264	256
16307.493	queue	R	2411520	256
16310.423	cmplt	R	2411264	256
16310.514	issue	R	2411520	256
16310.728	queue	R	2411776	256
16313.688	cmplt	R	2411520	256
16313.749	issue	R	2411776	256
16313.963	queue	R	2412032	256
16316.893	cmplt	R	2411776	256
16316.985	issue	R	2412032	256
16317.198	queue	R	2412288	256
16320.128	cmplt	R	2412032	256
16320.220	issue	R	2412288	256
16320.433	queue	R	2412544	256
16323.363	cmplt	R	2412288	256
16323.455	issue	R	2412544	256
16323.669	queue	R	2412800	256
16326.599	cmplt	R	2412544	256
16326.690	issue	R	2412800	256
16326.904	queue	R	2413056	256
16329.834	cmplt	R	2412800	256
16329.925	issue	R	2413056	256
16330.169	queue	R	2413312	256
16333.099	cmplt	R	2413056	256
16333.160	issue	R	2413312	256
16333.405	queue	R	2413568	256
16336.335	cmplt	R	2413312	256
16336.396	issue	R	2413568	256
16336.640	queue	R	2413824	256
16339.570	cmplt	R	2413568	256
16339.661	issue	R	2413824	256
16339.905	queue	R	2414080	256
16342.835	cmplt	R	2413824	256
16342.896	issue	R	2414080	256
16343.141	queue	R	2414336	256
16346.071	cmplt	R	2414080	256
16346.132	issue	R	2414336	256
16346.376	queue	R	2414592	256
16349.306	cmplt	R	2414336	256
16349.397	issue	R	2414592	256
16349.611	queue	R	2414848	256
16352.541	cmplt	R	2414592	256
16352.632	issue	R	2414848	256
16352.846	queue	R	2415104	256
16355.776	cmplt	R	2414848	256
16355.868	issue	R	2415104	256
16356.081	queue	R	2415360	256
16359.011	cmplt	R	2415104	256
16359.103	issue	R	2415360	256
16359.316	queue	R	2415616	256
16362.246	cmplt	R	2415360	256
16362.338	issue	R	2415616	256
16362.552	queue	R	2415872	256
16365.481	cmplt	R	2415616	256
16365.573	issue	R	2415872	256
16365.787	queue	R	2416128	256
16368.717	cmplt	R	2415872	256
16368.778	issue	R	2416128	256
16369.022	queue	R	2416384	256
16371.952	cmplt	R	2416128	256
16372.043	issue	R	2416384	256
16372.257	queue	R	2416640	256
16375.187	cmplt	R	2416384	256
16375.248	issue	R	2416640	256
16375.492	queue	R	2416896	256
16378.422	cmplt	R	2416640	256
16378.514	issue	R	2416896	256
16378.727	queue	R	2417152	256
16381.657	cmplt	R	2416896	256
16381.749	issue	R	2417152	256
16381.962	queue	R	2417408	256
16384.892	cmplt	R	2417152	256
16384.984	issue	R	2417408	256
16385.198	queue	R	2417664	256
16388.128	cmplt	R	2417408	256
16388.189	issue	R	2417664	256
16388.433	queue	R	2417920	256
16391.363	cmplt	R	2417664	256
16391.424	issue	R	2417920	256
16391.637	queue	R	2418176	256
16394.567	cmplt	R	2417920	256
16394.659	issue	R	2418176	256
16394.903	queue	R	2418432	256
16397.833	cmplt	R	2418176	256
16397.894	issue	R	2418432	256
16398.108	queue	R	2418688	256
16401.038	cmplt	R	2418432	256
16401.160	issue	R	2418688	256
16401.343	queue	R	2418944	256
16404.303	cmplt	R	2418688	256
16404.425	issue	R	2418944	256
16404.639	queue	R	2419200	256
16407.569	cmplt	R	2418944	256
16407.661	issue	R	2419200	256
16407.874	queue	R	2419456	256
16410.804	cmplt	R	2419200	256
16410.896	issue	R	2419456	256
16411.109	queue	R	2419712	256
16414.070	cmplt	R	2419456	256
16414.131	issue	R	2419712	256
16414.345	queue	R	2419968	256
16417.305	cmplt	R	2419712	256
16417.366	issue	R	2419968	256
16417.610	queue	R	2420224	256
16420.540	cmplt	R	2419968	256
16420.632	issue	R	2420224	256
16420.845	queue	R	2420480	256
16423.775	cmplt	R	2420224	256
16423.867	issue	R	2420480	256
16424.081	queue	R	2420736	256
16427.011	cmplt	R	2420480	256
16427.072	issue	R	2420736	256
16427.316	queue	R	2420992	256
16430.215	cmplt	R	2420736	256
16430.307	issue	R	2420992	256
16430.520	queue	R	2421248	256
16433.450	cmplt	R	2420992	256
16433.542	issue	R	2421248	256
16433.756	queue	R	2421504	256
16436.685	cmplt	R	2421248	256
16436.777	issue	R	2421504	256
16436.991	queue	R	2421760	256
16439.951	cmplt	R	2421504	256
16440.043	issue	R	2421760	256
16440.287	queue	R	2422016	256
16443.217	cmplt	R	2421760	256
16443.308	issue	R	2422016	256
16443.522	queue	R	2422272	256
16446.483	cmplt	R	2422016	256
16446.544	issue	R	2422272	256
16446.788	queue	R	2422528	256
16449.718	cmplt	R	2422272	256
16449.779	issue	R	2422528	256
16450.206	queue	R	2422784	256
16452.953	cmplt	R	2422528	256
16453.044	issue	R	2422784	256
16453.258	queue	R	2423040	256
16456.219	cmplt	R	2422784	256
16456.280	issue	R	2423040	256
16456.524	queue	R	2423296	256
16459.454	cmplt	R	2423040	256
16459.545	issue	R	2423296	256
16459.759	queue	R	2423552	256
16462.689	cmplt	R	2423296	256
16462.780	issue	R	2423552	256
16463.025	queue	R	2423808	256
16465.955	cmplt	R	2423552	256
16466.046	issue	R	2423808	256
16466.290	queue	R	2424064	256
16469.220	cmplt	R	2423808	256
16469.312	issue	R	2424064	256
16469.556	queue	R	2424320	256
16472.516	cmplt	R	2424064	256
16472.608	issue	R	2424320	256
16472.822	queue	R	2424576	256
16475.782	cmplt	R	2424320	256
16475.874	issue	R	2424576	256
16476.118	queue	R	2424832	256
16479.078	cmplt	R	2424576	256
16479.170	issue	R	2424832	256
16479.383	queue	R	2425088	256
16482.374	cmplt	R	2424832	256
16482.466	issue	R	2425088	256
16482.710	queue	R	2425344	256
16485.640	cmplt	R	2425088	256
16485.732	issue	R	2425344	256
16486.006	queue	R	2425600	256
16488.936	cmplt	R	2425344	256
16489.028	issue	R	2425600	256
16489.272	queue	R	2425856	256
16492.202	cmplt	R	2425600	256
16492.294	issue	R	2425856	256
16492.538	queue	R	2426112	256
16495.498	cmplt	R	2425856	256
16495.590	issue	R	2426112	256
16495.834	queue	R	2426368	256
16498.764	cmplt	R	2426112	256
16498.855	issue	R	2426368	256
16499.100	queue	R	2426624	256
16502.030	cmplt	R	2426368	256
16502.152	issue	R	2426624	256
16502.365	queue	R	2426880	256
16505.326	cmplt	R	2426624	256
16505.417	issue	R	2426880	256
16505.662	queue	R	2427136	256
16508.622	cmplt	R	2426880	256
16508.714	issue	R	2427136	256
16508.927	queue	R	2427392	256
16511.888	cmplt	R	2427136	256
16511.979	issue	R	2427392	256
16512.193	queue	R	2427648	256
16515.153	cmplt	R	2427392	256
16515.275	issue	R	2427648	256
16515.489	queue	R	2427904	256
16518.450	cmplt	R	2427648	256
16518.541	issue	R	2427904	256
16518.755	queue	R	2428160	256
16521.715	cmplt	R	2427904	256
16521.807	issue	R	2428160	256
16522.051	queue	R	2428416	256
16524.981	cmplt	R	2428160	256
16525.072	issue	R	2428416	256
16525.317	queue	R	2428672	256
16528.277	cmplt	R	2428416	256
16528.369	issue	R	2428672	256
16528.582	queue	R	2428928	256
16531.543	cmplt	R	2428672	256
16531.634	issue	R	2428928	256
16531.879	queue	R	2429184	256
16534.839	cmplt	R	2428928	256
16534.931	issue	R	2429184	256
16535.144	queue	R	2429440	256
16538.105	cmplt	R	2429184	256
16538.196	issue	R	2429440	256
16538.440	queue	R	2429696	256
16541.401	cmplt	R	2429440	256
16541.492	issue	R	2429696	256
16541.706	queue	R	2429952	256
16544.667	cmplt	R	2429696	256
16544.758	issue	R	2429952	256
16544.972	queue	R	2430208	256
16547.932	cmplt	R	2429952	256
16548.024	issue	R	2430208	256
16548.268	queue	R	2430464	256
16551.198	cmplt	R	2430208	256
16551.289	issue	R	2430464	256
16551.534	queue	R	2430720	256
16554.494	cmplt	R	2430464	256
16554.586	issue	R	2430720	256
16554.830	queue	R	2430976	256
16557.760	cmplt	R	2430720	256
16557.851	issue	R	2430976	256
16558.096	queue	R	2431232	256
16561.025	cmplt	R	2430976	256
16561.148	issue	R	2431232	256
16561.361	queue	R	2431488	256
16564.322	cmplt	R	2431232	256
16564.413	issue	R	2431488	256
16564.657	queue	R	2431744	256
16567.587	cmplt	R	2431488	256
16567.679	issue	R	2431744	256
16567.923	queue	R	2432000	256
16570.853	cmplt	R	2431744	256
16570.945	issue	R	2432000	256
16571.189	queue	R	2432256	256
16574.149	cmplt	R	2432000	256
16574.241	issue	R	2432256	256
16574.485	queue	R	2432512	256
16577.415	cmplt	R	2432256	256
16577.506	issue	R	2432512	256
16577.751	queue	R	2432768	256
16580.681	cmplt	R	2432512	256
16580.772	issue	R	2432768	256
16581.016	queue	R	2433024	256
16583.977	cmplt	R	2432768	256
16584.068	issue	R	2433024	256
16584.313	queue	R	2433280	256
16587.242	cmplt	R	2433024	256
16587.334	issue	R	2433280	256
16587.578	queue	R	2433536	256
16590.508	cmplt	R	2433280	256
16590.630	issue	R	2433536	256
16590.844	queue	R	2433792	256
16593.804	cmplt	R	2433536	256
16593.896	issue	R	2433792	256
16594.140	queue	R	2434048	256
16597.070	cmplt	R	2433792	256
16597.162	issue	R	2434048	256
16597.406	queue	R	2434304	256
16600.366	cmplt	R	2434048	256
16600.458	issue	R	2434304	256
16600.671	queue	R	2434560	256
16603.662	cmplt	R	2434304	256
16603.754	issue	R	2434560	256
16603.968	queue	R	2434816	256
16606.928	cmplt	R	2434560	256
16607.020	issue	R	2434816	256
16607.264	queue	R	2435072	256
16610.194	cmplt	R	2434816	256
16610.316	issue	R	2435072	256
16610.530	queue	R	2435328	256
16613.490	cmplt	R	2435072	256
16613.582	issue	R	2435328	256
16613.795	queue	R	2435584	256
16616.786	cmplt	R	2435328	256
16616.878	issue	R	2435584	256
16617.091	queue	R	2435840	256
16620.082	cmplt	R	2435584	256
16620.143	issue	R	2435840	256
16620.357	queue	R	2436096	256
16623.318	cmplt	R	2435840	256
16623.409	issue	R	2436096	256
16623.653	queue	R	2436352	256
16626.614	cmplt	R	2436096	256
16626.705	issue	R	2436352	256
16626.919	queue	R	2436608	256
16629.879	cmplt	R	2436352	256
16630.002	issue	R	2436608	256
16630.246	queue	R	2436864	256
16633.206	cmplt	R	2436608	256
16633.298	issue	R	2436864	256
16633.542	queue	R	2437120	256
16636.472	cmplt	R	2436864	256
16636.563	issue	R	2437120	256
16636.808	queue	R	2437376	256
16639.768	cmplt	R	2437120	256
16639.860	issue	R	2437376	256
16640.134	queue	R	2437632	256
16643.034	cmplt	R	2437376	256
16643.125	issue	R	2437632	256
16643.339	queue	R	2437888	256
16646.299	cmplt	R	2437632	256
16646.391	issue	R	2437888	256
16646.635	queue	R	2438144	256
16649.596	cmplt	R	2437888	256
16649.687	issue	R	2438144	256
16649.901	queue	R	2438400	256
16652.861	cmplt	R	2438144	256
16652.953	issue	R	2438400	256
16653.197	queue	R	2438656	256
16656.127	cmplt	R	2438400	256
16656.219	issue	R	2438656	256
16656.463	queue	R	2438912	256
16659.423	cmplt	R	2438656	256
16659.515	issue	R	2438912	256
16659.759	queue	R	2439168	256
16662.689	cmplt	R	2438912	256
16662.811	issue	R	2439168	256
16663.025	queue	R	2439424	256
16665.985	cmplt	R	2439168	256
16666.077	issue	R	2439424	256
16666.321	queue	R	2439680	256
16669.281	cmplt	R	2439424	256
16669.373	issue	R	2439680	256
16669.617	queue	R	2439936	256
16672.547	cmplt	R	2439680	256
16672.638	issue	R	2439936	256
16672.883	queue	R	2440192	256
16675.843	cmplt	R	2439936	256
16675.935	issue	R	2440192	256
16676.179	queue	R	2440448	256
16679.109	cmplt	R	2440192	256
16679.200	issue	R	2440448	256
16679.445	queue	R	2440704	256
16682.405	cmplt	R	2440448	256
16682.497	issue	R	2440704	256
16682.710	queue	R	2440960	256
16685.671	cmplt	R	2440704	256
16685.762	issue	R	2440960	256
16686.006	queue	R	2441216	256
16688.936	cmplt	R	2440960	256
16689.028	issue	R	2441216	256
16689.272	queue	R	2441472	256
16692.263	cmplt	R	2441216	256
16692.355	issue	R	2441472	256
16692.568	queue	R	2441728	256
16695.529	cmplt	R	2441472	256
16695.620	issue	R	2441728	256
16695.834	queue	R	2441984	256
16698.794	cmplt	R	2441728	256
16698.886	issue	R	2441984	256
16699.130	queue	R	2442240	256
16702.060	cmplt	R	2441984	256
16702.182	issue	R	2442240	256
16702.396	queue	R	2442496	256
16705.356	cmplt	R	2442240	256
16705.478	issue	R	2442496	256
16705.692	queue	R	2442752	256
16708.653	cmplt	R	2442496	256
16708.744	issue	R	2442752	256
16708.958	queue	R	2443008	256
16711.918	cmplt	R	2442752	256
16712.010	issue	R	2443008	256
16712.223	queue	R	2443264	256
16715.214	cmplt	R	2443008	256
16715.306	issue	R	2443264	256
16715.520	queue	R	2443520	256
16718.480	cmplt	R	2443264	256
16718.572	issue	R	2443520	256
16718.816	queue	R	2443776	256
16721.746	cmplt	R	2443520	256
16721.837	issue	R	2443776	256
16722.081	queue	R	2444032	256
16725.042	cmplt	R	2443776	256
16725.134	issue	R	2444032	256
16725.347	queue	R	2444288	256
16728.308	cmplt	R	2444032	256
16728.369	issue	R	2444288	256
16728.613	queue	R	2444544	256
16731.543	cmplt	R	2444288	256
16731.665	issue	R	2444544	256
16731.879	queue	R	2444800	256
16734.839	cmplt	R	2444544	256
16734.931	issue	R	2444800	256
16735.144	queue	R	2445056	256
16738.105	cmplt	R	2444800	256
16738.196	issue	R	2445056	256
16738.440	queue	R	2445312	256
16741.370	cmplt	R	2445056	256
16741.462	issue	R	2445312	256
16741.706	queue	R	2445568	256
16744.667	cmplt	R	2445312	256
16744.758	issue	R	2445568	256
16745.002	queue	R	2445824	256
16747.932	cmplt	R	2445568	256
16748.024	issue	R	2445824	256
16748.268	queue	R	2446080	256
16751.198	cmplt	R	2445824	256
16751.289	issue	R	2446080	256
16751.534	queue	R	2446336	256
16754.494	cmplt	R	2446080	256
16754.586	issue	R	2446336	256
16754.799	queue	R	2446592	256
16757.760	cmplt	R	2446336	256
16757.851	issue	R	2446592	256
16758.096	queue	R	2446848	256
16761.025	cmplt	R	2446592	256
16761.148	issue	R	2446848	256
16761.361	queue	R	2447104	256
16764.322	cmplt	R	2446848	256
16764.413	issue	R	2447104	256
16764.657	queue	R	2447360	256
16767.587	cmplt	R	2447104	256
16767.709	issue	R	2447360	256
16767.923	queue	R	2447616	256
16770.884	cmplt	R	2447360	256
16770.975	issue	R	2447616	256
16771.189	queue	R	2447872	256
16774.149	cmplt	R	2447616	256
16774.241	issue	R	2447872	256
16774.485	queue	R	2448128	256
16777.415	cmplt	R	2447872	256
16777.506	issue	R	2448128	256
16777.751	queue	R	2448384	256
16780.681	cmplt	R	2448128	256
16780.772	issue	R	2448384	256
16781.016	queue	R	2448640	256
16783.977	cmplt	R	2448384	256
16784.068	issue	R	2448640	256
16784.282	queue	R	2448896	256
16787.242	cmplt	R	2448640	256
16787.334	issue	R	2448896	256
16787.578	queue	R	2449152	256
16790.508	cmplt	R	2448896	256
16790.600	issue	R	2449152	256
16790.844	queue	R	2449408	256
16793.804	cmplt	R	2449152	256
16793.896	issue	R	2449408	256
16794.140	queue	R	2449664	256
16797.070	cmplt	R	2449408	256
16797.162	issue	R	2449664	256
16797.406	queue	R	2449920	256
16800.366	cmplt	R	2449664	256
16800.488	issue	R	2449920	256
16800.702	queue	R	2450176	256
16803.662	cmplt	R	2449920	256
16803.754	issue	R	2450176	256
16803.998	queue	R	2450432	256
16806.959	cmplt	R	2450176	256
16807.050	issue	R	2450432	256
16807.264	queue	R	2450688	256
16810.224	cmplt	R	2450432	256
16810.316	issue	R	2450688	256
16810.530	queue	R	2450944	256
16813.490	cmplt	R	2450688	256
16813.582	issue	R	2450944	256
16813.826	queue	R	2451200	256
16816.786	cmplt	R	2450944	256
16816.878	issue	R	2451200	256
16817.091	queue	R	2451456	256
16820.082	cmplt	R	2451200	256
16820.174	issue	R	2451456	256
16820.388	queue	R	2451712	256
16823.379	cmplt	R	2451456	256
16823.470	issue	R	2451712	256
16823.684	queue	R	2451968	256
16826.644	cmplt	R	2451712	256
16826.736	issue	R	2451968	256
16826.980	queue	R	2452224	256
16829.940	cmplt	R	2451968	256
16830.063	issue	R	2452224	256
16830.307	queue	R	2452480	256
16833.267	cmplt	R	2452224	256
16833.359	issue	R	2452480	256
16833.603	queue	R	2452736	256
16836.563	cmplt	R	2452480	256
16836.655	issue	R	2452736	256
16836.899	queue	R	2452992	256
16839.860	cmplt	R	2452736	256
16839.921	issue	R	2452992	256
16840.195	queue	R	2453248	256
16843.156	cmplt	R	2452992	256
16843.247	issue	R	2453248	256
16843.492	queue	R	2453504	256
16846.421	cmplt	R	2453248	256
16846.513	issue	R	2453504	256
16846.757	queue	R	2453760	256
16849.718	cmplt	R	2453504	256
16849.809	issue	R	2453760	256
16850.053	queue	R	2454016	256
16852.983	cmplt	R	2453760	256
16853.075	issue	R	2454016	256
16853.319	queue	R	2454272	256
16856.280	cmplt	R	2454016	256
16856.371	issue	R	2454272	256
16856.585	queue	R	2454528	256
16859.545	cmplt	R	2454272	256
16859.637	issue	R	2454528	256
16859.881	queue	R	2454784	256
16862.811	cmplt	R	2454528	256
16862.902	issue	R	2454784	256
16863.147	queue	R	2455040	256
16866.107	cmplt	R	2454784	256
16866.199	issue	R	2455040	256
16866.412	queue	R	2455296	256
16869.373	cmplt	R	2455040	256
16869.464	issue	R	2455296	256
16869.709	queue	R	2455552	256
16872.669	cmplt	R	2455296	256
16872.761	issue	R	2455552	256
16873.005	queue	R	2455808	256
16875.935	cmplt	R	2455552	256
16876.026	issue	R	2455808	256
16876.270	queue	R	2456064	256
16879.231	cmplt	R	2455808	256
16879.322	issue	R	2456064	256
16879.567	queue	R	2456320	256
16882.527	cmplt	R	2456064	256
16882.619	issue	R	2456320	256
16882.832	queue	R	2456576	256
16885.793	cmplt	R	2456320	256
16885.884	issue	R	2456576	256
16886.128	queue	R	2456832	256
16889.089	cmplt	R	2456576	256
16889.181	issue	R	2456832	256
16889.394	queue	R	2457088	256
16892.355	cmplt	R	2456832	256
16892.446	issue	R	2457088	256
16892.690	queue	R	2457344	256
16895.651	cmplt	R	2457088	256
16895.742	issue	R	2457344	256
16895.956	queue	R	2457600	256
16898.947	cmplt	R	2457344	256
16899.039	issue	R	2457600	256
16899.283	queue	R	2457856	256
16902.335	cmplt	R	2457600	256
16902.457	issue	R	2457856	256
16902.671	queue	R	2458112	256
16905.662	cmplt	R	2457856	256
16905.784	issue	R	2458112	256
16905.997	queue	R	2458368	256
16908.988	cmplt	R	2458112	256
16909.080	issue	R	2458368	256
16909.324	queue	R	2458624	256
16912.315	cmplt	R	2458368	256
16912.407	issue	R	2458624	256
16912.620	queue	R	2458880	256
16915.611	cmplt	R	2458624	256
16915.703	issue	R	2458880	256
16915.947	queue	R	2459136	256
16918.907	cmplt	R	2458880	256
16919.029	issue	R	2459136	256
16919.243	queue	R	2459392	256
16922.234	cmplt	R	2459136	256
16922.326	issue	R	2459392	256
16922.600	queue	R	2459648	256
16925.561	cmplt	R	2459392	256
16925.683	issue	R	2459648	256
16925.958	queue	R	2459904	256
16928.918	cmplt	R	2459648	256
16929.040	issue	R	2459904	256
16929.315	queue	R	2460160	256
16932.275	cmplt	R	2459904	256
16932.336	issue	R	2460160	256
16932.580	queue	R	2460416	256
16935.541	cmplt	R	2460160	256
16935.663	issue	R	2460416	256
16935.907	queue	R	2460672	256
16938.868	cmplt	R	2460416	256
16938.959	issue	R	2460672	256
16939.203	queue	R	2460928	256
16942.164	cmplt	R	2460672	256
16942.255	issue	R	2460928	256
16942.500	queue	R	2461184	256
16945.460	cmplt	R	2460928	256
16945.552	issue	R	2461184	256
16945.796	queue	R	2461440	256
16948.787	cmplt	R	2461184	256
16948.878	issue	R	2461440	256
16949.092	queue	R	2461696	256
16952.083	cmplt	R	2461440	256
16952.175	issue	R	2461696	256
16952.419	queue	R	2461952	256
16955.379	cmplt	R	2461696	256
16955.471	issue	R	2461952	256
16955.715	queue	R	2462208	256
16958.675	cmplt	R	2461952	256
16958.767	issue	R	2462208	256
16959.011	queue	R	2462464	256
16961.972	cmplt	R	2462208	256
16962.063	issue	R	2462464	256
16962.307	queue	R	2462720	256
16965.268	cmplt	R	2462464	256
16965.359	issue	R	2462720	256
16965.604	queue	R	2462976	256
16968.564	cmplt	R	2462720	256
16968.686	issue	R	2462976	256
16968.900	queue	R	2463232	256
16971.860	cmplt	R	2462976	256
16971.952	issue	R	2463232	256
16972.196	queue	R	2463488	256
16975.187	cmplt	R	2463232	256
16975.278	issue	R	2463488	256
16975.523	queue	R	2463744	256
16978.483	cmplt	R	2463488	256
16978.575	issue	R	2463744	256
16978.819	queue	R	2464000	256
16981.779	cmplt	R	2463744	256
16981.871	issue	R	2464000	256
16982.115	queue	R	2464256	256
16985.076	cmplt	R	2464000	256
16985.167	issue	R	2464256	256
16985.411	queue	R	2464512	256
16988.372	cmplt	R	2464256	256
16988.463	issue	R	2464512	256
16988.707	queue	R	2464768	256
16991.668	cmplt	R	2464512	256
16991.790	issue	R	2464768	256
16992.004	queue	R	2465024	256
16994.995	cmplt	R	2464768	256
16995.086	issue	R	2465024	256
16995.300	queue	R	2465280	256
16998.291	cmplt	R	2465024	256
16998.382	issue	R	2465280	256
16998.627	queue	R	2465536	256
17001.587	cmplt	R	2465280	256
17001.709	issue	R	2465536	256
17001.923	queue	R	2465792	256
17004.914	cmplt	R	2465536	256
17005.036	issue	R	2465792	256
17005.250	queue	R	2466048	256
17008.240	cmplt	R	2465792	256
17008.332	issue	R	2466048	256
17008.546	queue	R	2466304	256
17011.537	cmplt	R	2466048	256
17011.628	issue	R	2466304	256
17011.842	queue	R	2466560	256
17014.833	cmplt	R	2466304	256
17014.924	issue	R	2466560	256
17015.169	queue	R	2466816	256
17018.129	cmplt	R	2466560	256
17018.221	issue	R	2466816	256
17018.465	queue	R	2467072	256
17021.456	cmplt	R	2466816	256
17021.547	issue	R	2467072	256
17021.761	queue	R	2467328	256
17024.752	cmplt	R	2467072	256
17024.844	issue	R	2467328	256
17025.088	queue	R	2467584	256
17028.048	cmplt	R	2467328	256
17028.140	issue	R	2467584	256
17028.384	queue	R	2467840	256
17031.344	cmplt	R	2467584	256
17031.436	issue	R	2467840	256
17031.680	queue	R	2468096	256
17034.641	cmplt	R	2467840	256
17034.732	issue	R	2468096	256
17034.976	queue	R	2468352	256
17037.937	cmplt	R	2468096	256
17038.028	issue	R	2468352	256
17038.273	queue	R	2468608	256
17041.233	cmplt	R	2468352	256
17041.325	issue	R	2468608	256
17041.569	queue	R	2468864	256
17044.529	cmplt	R	2468608	256
17044.621	issue	R	2468864	256
17044.865	queue	R	2469120	256
17047.825	cmplt	R	2468864	256
17047.917	issue	R	2469120	256
17048.161	queue	R	2469376	256
17051.122	cmplt	R	2469120	256
17051.213	issue	R	2469376	256
17051.457	queue	R	2469632	256
17054.448	cmplt	R	2469376	256
17054.540	issue	R	2469632	256
17054.754	queue	R	2469888	256
17057.745	cmplt	R	2469632	256
17057.836	issue	R	2469888	256
17058.080	queue	R	2470144	256
17061.041	cmplt	R	2469888	256
17061.132	issue	R	2470144	256
17061.376	queue	R	2470400	256
17064.337	cmplt	R	2470144	256
17064.429	issue	R	2470400	256
17064.673	queue	R	2470656	256
17067.633	cmplt	R	2470400	256
17067.725	issue	R	2470656	256
17067.969	queue	R	2470912	256
17070.929	cmplt	R	2470656	256
17071.021	issue	R	2470912	256
17071.265	queue	R	2471168	256
17074.226	cmplt	R	2470912	256
17074.317	issue	R	2471168	256
17074.561	queue	R	2471424	256
17077.522	cmplt	R	2471168	256
17077.644	issue	R	2471424	256
17077.857	queue	R	2471680	256
17080.848	cmplt	R	2471424	256
17080.940	issue	R	2471680	256
17081.154	queue	R	2471936	256
17084.145	cmplt	R	2471680	256
17084.236	issue	R	2471936	256
17084.480	queue	R	2472192	256
17087.441	cmplt	R	2471936	256
17087.532	issue	R	2472192	256
17087.777	queue	R	2472448	256
17090.737	cmplt	R	2472192	256
17090.829	issue	R	2472448	256
17091.073	queue	R	2472704	256
17094.033	cmplt	R	2472448	256
17094.125	issue	R	2472704	256
17094.338	queue	R	2472960	256
17097.299	cmplt	R	2472704	256
17097.391	issue	R	2472960	256
17097.604	queue	R	2473216	256
17100.565	cmplt	R	2472960	256
17100.656	issue	R	2473216	256
17100.870	queue	R	2473472	256
17103.891	cmplt	R	2473216	256
17103.983	issue	R	2473472	256
17104.197	queue	R	2473728	256
17107.188	cmplt	R	2473472	256
17107.279	issue	R	2473728	256
17107.523	queue	R	2473984	256
17110.514	cmplt	R	2473728	256
17110.606	issue	R	2473984	256
17110.819	queue	R	2474240	256
17113.780	cmplt	R	2473984	256
17113.872	issue	R	2474240	256
17114.116	queue	R	2474496	256
17117.076	cmplt	R	2474240	256
17117.168	issue	R	2474496	256
17117.412	queue	R	2474752	256
17120.372	cmplt	R	2474496	256
17120.464	issue	R	2474752	256
17120.678	queue	R	2475008	256
17123.669	cmplt	R	2474752	256
17123.760	issue	R	2475008	256
17124.004	queue	R	2475264	256
17126.965	cmplt	R	2475008	256
17127.026	issue	R	2475264	256
17127.239	queue	R	2475520	256
17130.200	cmplt	R	2475264	256
17130.261	issue	R	2475520	256
17130.475	queue	R	2475776	256
17133.435	cmplt	R	2475520	256
17133.527	issue	R	2475776	256
17133.740	queue	R	2476032	256
17136.701	cmplt	R	2475776	256
17136.823	issue	R	2476032	256
17137.036	queue	R	2476288	256
17140.058	cmplt	R	2476032	256
17140.150	issue	R	2476288	256
17140.394	queue	R	2476544	256
17143.354	cmplt	R	2476288	256
17143.446	issue	R	2476544	256
17143.690	queue	R	2476800	256
17146.650	cmplt	R	2476544	256
17146.742	issue	R	2476800	256
17146.986	queue	R	2477056	256
17149.977	cmplt	R	2476800	256
17150.099	issue	R	2477056	256
17150.313	queue	R	2477312	256
17153.304	cmplt	R	2477056	256
17153.395	issue	R	2477312	256
17153.640	queue	R	2477568	256
17156.600	cmplt	R	2477312	256
17156.692	issue	R	2477568	256
17156.936	queue	R	2477824	256
17159.927	cmplt	R	2477568	256
17160.049	issue	R	2477824	256
17160.262	queue	R	2478080	256
17163.253	cmplt	R	2477824	256
17163.345	issue	R	2478080	256
17163.589	queue	R	2478336	256
17166.550	cmplt	R	2478080	256
17166.641	issue	R	2478336	256
17166.885	queue	R	2478592	256
17169.846	cmplt	R	2478336	256
17169.937	issue	R	2478592	256
17170.212	queue	R	2478848	256
17173.173	cmplt	R	2478592	256
17173.264	issue	R	2478848	256
17173.569	queue	R	2479104	256
17176.469	cmplt	R	2478848	256
17176.530	issue	R	2479104	256
17176.774	queue	R	2479360	256
17179.734	cmplt	R	2479104	256
17179.826	issue	R	2479360	256
17180.101	queue	R	2479616	256
17183.031	cmplt	R	2479360	256
17183.122	issue	R	2479616	256
17183.550	queue	R	2479872	256
17186.357	cmplt	R	2479616	256
17186.449	issue	R	2479872	256
17186.968	queue	R	2480128	256
17189.745	cmplt	R	2479872	256
17189.837	issue	R	2480128	256
17190.295	queue	R	2480384	256
17193.072	cmplt	R	2480128	256
17193.163	issue	R	2480384	256
17193.560	queue	R	2480640	256
17196.368	cmplt	R	2480384	256
17196.460	issue	R	2480640	256
17196.887	queue	R	2480896	256
17199.664	cmplt	R	2480640	256
17199.756	issue	R	2480896	256
17200.153	queue	R	2481152	256
17202.960	cmplt	R	2480896	256
17203.083	issue	R	2481152	256
17203.479	queue	R	2481408	256
17206.287	cmplt	R	2481152	256
17206.379	issue	R	2481408	256
17206.776	queue	R	2481664	256
17209.583	cmplt	R	2481408	256
17209.644	issue	R	2481664	256
17210.041	queue	R	2481920	256
17212.849	cmplt	R	2481664	256
17212.941	issue	R	2481920	256
17213.337	queue	R	2482176	256
17216.145	cmplt	R	2481920	256
17216.237	issue	R	2482176	256
17216.603	queue	R	2482432	256
17219.441	cmplt	R	2482176	256
17219.533	issue	R	2482432	256
17219.930	queue	R	2482688	256
17222.738	cmplt	R	2482432	256
17222.799	issue	R	2482688	256
17223.165	queue	R	2482944	256
17226.003	cmplt	R	2482688	256
17226.125	issue	R	2482944	256
17226.492	queue	R	2483200	256
17229.330	cmplt	R	2482944	256
17229.452	issue	R	2483200	256
17229.818	queue	R	2483456	256
17232.657	cmplt	R	2483200	256
17232.779	issue	R	2483456	256
17233.176	queue	R	2483712	256
17235.831	queue	WS	1916928	8
17235.953	cmplt	R	2483456	256
17236.045	issue	R	2483712	256
17236.441	queue	R	2483968	256
17239.249	cmplt	R	2483712	256
17239.310	issue	R	2483968	256
17239.646	queue	R	2484224	256
17242.484	cmplt	R	2483968	256
17242.545	issue	R	2484224	256
17242.881	queue	R	2484480	256
17245.720	cmplt	R	2484224	256
17245.781	issue	R	2484480	256
17246.147	queue	R	2484736	256
17248.955	cmplt	R	2484480	256
17249.016	issue	R	2484736	256
17249.382	queue	R	2484992	256
17252.220	cmplt	R	2484736	256
17252.281	issue	R	2484992	256
17252.678	queue	R	2485248	256
17255.486	cmplt	R	2484992	256
17255.547	issue	R	2485248	256
17255.913	queue	R	2485504	256
17258.752	cmplt	R	2485248	256
17258.813	issue	R	2485504	256
17259.179	queue	R	2485760	256
17261.987	cmplt	R	2485504	256
17262.078	issue	R	2485760	256
17262.414	queue	R	2486016	256
17265.253	cmplt	R	2485760	256
17265.314	issue	R	2486016	256
17265.680	queue	R	2486272	256
17268.518	cmplt	R	2486016	256
17268.579	issue	R	2486272	256
17268.946	queue	R	2486528	256
17271.753	cmplt	R	2486272	256
17271.845	issue	R	2486528	256
17272.211	queue	R	2486784	256
17275.019	cmplt	R	2486528	256
17275.111	issue	R	2486784	256
17275.446	queue	R	2487040	256
17278.285	cmplt	R	2486784	256
17278.376	issue	R	2487040	256
17278.743	queue	R	2487296	256
17281.550	cmplt	R	2487040	256
17281.642	issue	R	2487296	256
17282.008	queue	R	2487552	256
17284.847	cmplt	R	2487296	256
17284.908	issue	R	2487552	256
17285.274	queue	R	2487808	256
17288.112	cmplt	R	2487552	256
17288.173	issue	R	2487808	256
17288.540	queue	R	2488064	256
17291.378	cmplt	R	2487808	256
17291.470	issue	R	2488064	256
17291.805	queue	R	2488320	256
17294.644	cmplt	R	2488064	256
17294.735	issue	R	2488320	256
17295.071	queue	R	2488576	256
17297.909	cmplt	R	2488320	256
17298.001	issue	R	2488576	256
17298.337	queue	R	2488832	256
17301.175	cmplt	R	2488576	256
17301.297	issue	WS	1916928	8
17301.663	queue	R	2489088	256
17302.732	cmplt	WS	1916928	8
17303.067	issue	R	2488832	512
17303.434	queue	WS	1916928	8
17309.324	cmplt	R	2488832	512
17309.446	issue	WS	1916928	8
17309.843	queue	R	2489344	256
17310.148	queue	R	2489600	256
17310.331	cmplt	WS	1916928	8
17310.636	issue	R	2489344	512
17316.740	cmplt	R	2489344	512
17317.107	queue	R	2489856	256
17317.381	queue	R	2490112	256
17317.442	issue	R	2489856	512
17323.760	cmplt	R	2489856	512
17324.187	queue	R	2490368	256
17324.493	queue	R	2490624	256
17324.554	issue	R	2490368	512
17325.195	queue	WS	2490368	512
17330.658	cmplt	R	2490368	512
17330.963	queue	WS	1912920	8
17331.054	queue	R	2490880	256
17331.329	queue	R	2491136	256
17331.390	issue	WS	1912920	8
17332.306	cmplt	WS	1912920	8
17332.397	issue	R	2490880	512
17338.532	cmplt	R	2490880	512
17338.898	queue	R	2491392	256
17339.203	queue	R	2491648	256
17339.234	issue	R	2491392	512
17343.141	queue	WS	1845752	8
17343.171	queue	WS	1845760	8
17343.171	queue	WS	1845768	8
17343.202	queue	WS	1845776	8
17343.202	queue	WS	1845784	8
17343.202	queue	WS	1845792	8
17343.232	queue	WS	1845800	8
17345.399	cmplt	R	2491392	512
17345.491	issue	WS	1845752	56
17345.857	queue	R	2491904	256
17346.162	queue	R	2492160	256
17347.932	cmplt	WS	1845752	56
17348.024	queue	WS	1845808	8
17348.054	issue	R	2491904	512
17354.280	cmplt	R	2491904	512
17354.342	issue	WS	1845808	8
17354.708	queue	R	2492416	256
17355.013	queue	R	2492672	256
17355.227	cmplt	WS	1845808	8
17355.288	issue	R	2492416	512
17355.501	queue	WS	1845816	8
17355.532	queue	WS	1845824	8
17361.422	cmplt	R	2492416	512
17361.544	issue	WS	1845816	16
17361.880	queue	R	2492928	256
17362.216	queue	R	2493184	256
17362.979	cmplt	WS	1845816	16
17363.040	queue	WS	1845832	8
17363.070	issue	R	2492928	512
17369.205	cmplt	R	2492928	512
17369.297	issue	WS	1845832	8
17369.632	queue	R	2493440	256
17369.937	queue	R	2493696	256
17370.151	cmplt	WS	1845832	8
17370.182	issue	R	2493440	512
17376.316	cmplt	R	2493440	512
17376.743	queue	R	2493952	256
17377.018	queue	R	2494208	256
17377.079	issue	R	2493952	512
17383.244	cmplt	R	2493952	512
17383.611	queue	R	2494464	256
17383.916	queue	R	2494720	256
17383.977	issue	R	2494464	512
17390.142	cmplt	R	2494464	512
17390.508	queue	R	2494976	256
17390.813	queue	R	2495232	256
17390.874	issue	R	2494976	512
17394.018	queue	WS	2635648	80
17397.070	cmplt	R	2494976	512
17397.192	issue	WS	2635648	80
17397.558	queue	R	2495488	256
17397.833	queue	R	2495744	256
17399.359	cmplt	WS	2635648	80
17399.481	issue	R	2495488	512
17399.542	queue	WS	1845840	8
17399.573	queue	WS	1845848	8
17399.573	queue	WS	1845856	8
17399.603	queue	WS	1845864	8
17399.603	queue	WS	1845872	8
17399.603	queue	WS	1845880	8
17399.634	queue	WS	1845888	8
17399.634	queue	WS	1845896	8
17399.634	queue	WS	1845904	8
17405.768	cmplt	R	2495488	512
17405.890	issue	WS	1845840	72
17406.287	queue	R	2496000	256
17406.562	queue	R	2496256	256
17412.849	cmplt	WS	1845840	72
17412.971	issue	R	2496000	512
17412.971	queue	WS	1845912	8
17419.228	cmplt	R	2496000	512
17419.289	issue	WS	1845912	8
17419.655	queue	R	2496512	256
17419.991	queue	R	2496768	256
17420.266	cmplt	WS	1845912	8
17420.296	issue	R	2496512	512
17421.059	queue	R	2496512	512
17426.492	cmplt	R	2496512	512
17426.827	queue	R	2497024	256
17426.888	issue	R	2497024	256
17427.133	queue	R	2497280	256
17430.093	cmplt	R	2497024	256
17430.185	issue	R	2497280	256
17430.459	queue	R	2497536	256
17433.359	cmplt	R	2497280	256
17433.420	issue	R	2497536	256
17433.694	queue	R	2497792	256
17436.624	cmplt	R	2497536	256
17436.716	issue	R	2497792	256
17436.960	queue	R	2498048	256
17439.951	cmplt	R	2497792	256
17440.073	issue	R	2498048	256
17440.287	queue	R	2498304	256
17443.247	cmplt	R	2498048	256
17443.339	issue	R	2498304	256
17443.583	queue	R	2498560	256
17446.513	cmplt	R	2498304	256
17446.605	issue	R	2498560	256
17446.849	queue	R	2498816	256
17449.809	cmplt	R	2498560	256
17449.870	issue	R	2498816	256
17450.175	queue	R	2499072	256
17453.075	cmplt	R	2498816	256
17453.136	issue	R	2499072	256
17453.380	queue	R	2499328	256
17456.402	cmplt	R	2499072	256
17456.463	issue	R	2499328	256
17456.737	queue	R	2499584	256
17459.667	cmplt	R	2499328	256
17459.759	issue	R	2499584	256
17460.064	queue	R	2499840	256
17462.964	cmplt	R	2499584	256
17463.055	issue	R	2499840	256
17463.482	queue	R	2500096	256
17466.260	cmplt	R	2499840	256
17466.321	issue	R	2500096	256
17466.687	queue	R	2500352	256
17469.525	cmplt	R	2500096	256
17469.586	issue	R	2500352	256
17469.922	queue	R	2500608	256
17472.761	cmplt	R	2500352	256
17472.852	issue	R	2500608	256
17473.188	queue	R	2500864	256
17476.026	cmplt	R	2500608	256
17476.087	issue	R	2500864	256
17476.454	queue	R	2501120	256
17479.261	cmplt	R	2500864	256
17479.322	issue	R	2501120	256
17479.689	queue	R	2501376	256
17482.527	cmplt	R	2501120	256
17482.588	issue	R	2501376	256
17482.954	queue	R	2501632	256
17485.762	cmplt	R	2501376	256
17485.854	issue	R	2501632	256
17486.190	queue	R	2501888	256
17489.028	cmplt	R	2501632	256
17489.089	issue	R	2501888	256
17489.455	queue	R	2502144	256
17492.263	cmplt	R	2501888	256
17492.355	issue	R	2502144	256
17492.690	queue	R	2502400	256
17495.529	cmplt	R	2502144	256
17495.590	issue	R	2502400	256
17495.956	queue	R	2502656	256
17498.764	cmplt	R	2502400	256
17498.855	issue	R	2502656	256
17499.191	queue	R	2502912	256
17502.030	cmplt	R	2502656	256
17502.121	issue	R	2502912	256
17502.487	queue	R	2503168	256
17505.326	cmplt	R	2502912	256
17505.387	issue	R	2503168	256
17505.753	queue	R	2503424	256
17508.591	cmplt	R	2503168	256
17508.683	issue	R	2503424	256
17509.019	queue	R	2503680	256
17511.857	cmplt	R	2503424	256
17511.949	issue	R	2503680	256
17512.315	queue	R	2503936	256
17515.153	cmplt	R	2503680	256
17515.245	issue	R	2503936	256
17515.581	queue	R	2504192	256
17518.419	cmplt	R	2503936	256
17518.511	issue	R	2504192	256
17518.846	queue	R	2504448	256
17521.685	cmplt	R	2504192	256
17521.776	issue	R	2504448	256
17522.143	queue	R	2504704	256
17524.950	cmplt	R	2504448	256
17525.042	issue	R	2504704	256
17525.378	queue	R	2504960	256
17528.216	cmplt	R	2504704	256
17528.308	issue	R	2504960	256
17528.643	queue	R	2505216	256
17531.482	cmplt	R	2504960	256
17531.573	issue	R	2505216	256
17531.940	queue	R	2505472	256
17534.747	cmplt	R	2505216	256
17534.839	issue	R	2505472	256
17535.205	queue	R	2505728	256
17538.044	cmplt	R	2505472	256
17538.105	issue	R	2505728	256
17538.471	queue	R	2505984	256
17541.309	cmplt	R	2505728	256
17541.370	issue	R	2505984	256
17541.737	queue	R	2506240	256
17544.575	cmplt	R	2505984	256
17544.636	issue	R	2506240	256
17545.002	queue	R	2506496	256
17547.841	cmplt	R	2506240	256
17547.932	issue	R	2506496	256
17548.268	queue	R	2506752	256
17551.106	cmplt	R	2506496	256
17551.198	issue	R	2506752	256
17551.534	queue	R	2507008	256
17554.372	cmplt	R	2506752	256
17554.433	issue	R	2507008	256
17554.799	queue	R	2507264	256
17557.638	cmplt	R	2507008	256
17557.699	issue	R	2507264	256
17558.065	queue	R	2507520	256
17560.903	cmplt	R	2507264	256
17560.964	issue	R	2507520	256
17561.331	queue	R	2507776	256
17564.169	cmplt	R	2507520	256
17564.230	issue	R	2507776	256
17564.596	queue	R	2508032	256
17567.435	cmplt	R	2507776	256
17567.526	issue	R	2508032	256
17567.862	queue	R	2508288	256
17570.700	cmplt	R	2508032	256
17570.792	issue	R	2508288	256
17571.128	queue	R	2508544	256
17573.966	cmplt	R	2508288	256
17574.058	issue	R	2508544	256
17574.393	queue	R	2508800	256
17577.232	cmplt	R	2508544	256
17577.323	issue	R	2508800	256
17577.659	queue	R	2509056	256
17580.497	cmplt	R	2508800	256
17580.589	issue	R	2509056	256
17580.955	queue	R	2509312	256
17583.763	cmplt	R	2509056	256
17583.855	issue	R	2509312	256
17584.221	queue	R	2509568	256
17587.059	cmplt	R	2509312	256
17587.120	issue	R	2509568	256
17587.487	queue	R	2509824	256
17590.325	cmplt	R	2509568	256
17590.417	issue	R	2509824	256
17590.752	queue	R	2510080	256
17593.591	cmplt	R	2509824	256
17593.682	issue	R	2510080	256
17594.018	queue	R	2510336	256
17596.856	cmplt	R	2510080	256
17596.948	issue	R	2510336	256
17597.284	queue	R	2510592	256
17600.122	cmplt	R	2510336	256
17600.183	issue	R	2510592	256
17600.580	queue	R	2510848	256
17603.388	cmplt	R	2510592	256
17603.449	issue	R	2510848	256
17603.815	queue	R	2511104	256
17606.653	cmplt	R	2510848	256
17606.714	issue	R	2511104	256
17607.081	queue	R	2511360	256
17609.889	cmplt	R	2511104	256
17609.980	issue	R	2511360	256
17610.346	queue	R	2511616	256
17613.154	cmplt	R	2511360	256
17613.246	issue	R	2511616	256
17613.612	queue	R	2511872	256
17616.420	cmplt	R	2511616	256
17616.512	issue	R	2511872	256
17616.878	queue	R	2512128	256
17619.686	cmplt	R	2511872	256
17619.777	issue	R	2512128	256
17620.143	queue	R	2512384	256
17622.951	cmplt	R	2512128	256
17623.043	issue	R	2512384	256
17623.379	queue	R	2512640	256
17626.217	cmplt	R	2512384	256
17626.278	issue	R	2512640	256
17626.644	queue	R	2512896	256
17629.483	cmplt	R	2512640	256
17629.544	issue	R	2512896	256
17629.910	queue	R	2513152	256
17632.718	cmplt	R	2512896	256
17632.809	issue	R	2513152	256
17633.176	queue	R	2513408	256
17635.984	cmplt	R	2513152	256
17636.075	issue	R	2513408	256
17636.411	queue	R	2513664	256
17639.249	cmplt	R	2513408	256
17639.310	issue	R	2513664	256
17639.676	queue	R	2513920	256
17642.484	cmplt	R	2513664	256
17642.576	issue	R	2513920	256
17642.942	queue	R	2514176	256
17645.750	cmplt	R	2513920	256
17645.842	issue	R	2514176	256
17646.177	queue	R	2514432	256
17649.016	cmplt	R	2514176	256
17649.077	issue	R	2514432	256
17649.443	queue	R	2514688	256
17652.281	cmplt	R	2514432	256
17652.342	issue	R	2514688	256
17652.709	queue	R	2514944	256
17655.547	cmplt	R	2514688	256
17655.608	issue	R	2514944	256
17655.944	queue	R	2515200	256
17658.782	cmplt	R	2514944	256
17658.843	issue	R	2515200	256
17659.210	queue	R	2515456	256
17662.048	cmplt	R	2515200	256
17662.109	issue	R	2515456	256
17662.475	queue	R	2515712	256
17665.314	cmplt	R	2515456	256
17665.375	issue	R	2515712	256
17665.741	queue	R	2515968	256
17668.549	cmplt	R	2515712	256
17668.640	issue	R	2515968	256
17668.976	queue	R	2516224	256
17671.814	cmplt	R	2515968	256
17671.906	issue	R	2516224	256
17672.242	queue	R	2516480	256
17675.080	cmplt	R	2516224	256
17675.141	issue	R	2516480	256
17675.507	queue	R	2516736	256
17678.346	cmplt	R	2516480	256
17678.407	issue	R	2516736	256
17678.773	queue	R	2516992	256
17681.581	cmplt	R	2516736	256
17681.673	issue	R	2516992	256
17682.008	queue	R	2517248	256
17684.847	cmplt	R	2516992	256
17684.908	issue	R	2517248	256
17685.304	queue	R	2517504	256
17688.112	cmplt	R	2517248	256
17688.173	issue	R	2517504	256
17688.540	queue	R	2517760	256
17691.347	cmplt	R	2517504	256
17691.439	issue	R	2517760	256
17691.775	queue	R	2518016	256
17694.613	cmplt	R	2517760	256
17694.705	issue	R	2518016	256
17695.040	queue	R	2518272	256
17697.879	cmplt	R	2518016	256
17697.940	issue	R	2518272	256
17698.306	queue	R	2518528	256
17701.145	cmplt	R	2518272	256
17701.206	issue	R	2518528	256
17701.572	queue	R	2518784	256
17704.380	cmplt	R	2518528	256
17704.471	issue	R	2518784	256
17704.837	queue	R	2519040	256
17707.645	cmplt	R	2518784	256
17707.737	issue	R	2519040	256
17708.073	queue	R	2519296	256
17710.911	cmplt	R	2519040	256
17711.003	issue	R	2519296	256
17711.369	queue	R	2519552	256
17714.207	cmplt	R	2519296	256
17714.268	issue	R	2519552	256
17714.635	queue	R	2519808	256
17717.442	cmplt	R	2519552	256
17717.503	issue	R	2519808	256
17717.870	queue	R	2520064	256
17720.647	cmplt	R	2519808	256
17720.739	issue	R	2520064	256
17721.105	queue	R	2520320	256
17723.882	cmplt	R	2520064	256
17723.974	issue	R	2520320	256
17724.309	queue	R	2520576	256
17727.117	cmplt	R	2520320	256
17727.209	issue	R	2520576	256
17727.545	queue	R	2520832	256
17730.353	cmplt	R	2520576	256
17730.444	issue	R	2520832	256
17730.810	queue	R	2521088	256
17733.588	cmplt	R	2520832	256
17733.679	issue	R	2521088	256
17734.015	queue	R	2521344	256
17736.823	cmplt	R	2521088	256
17736.914	issue	R	2521344	256
17737.250	queue	R	2521600	256
17740.058	cmplt	R	2521344	256
17740.150	issue	R	2521600	256
17740.485	queue	R	2521856	256
17743.293	cmplt	R	2521600	256
17743.385	issue	R	2521856	256
17743.720	queue	R	2522112	256
17746.528	cmplt	R	2521856	256
17746.589	issue	R	2522112	256
17746.956	queue	R	2522368	256
17749.763	cmplt	R	2522112	256
17749.825	issue	R	2522368	256
17750.221	queue	R	2522624	256
17752.999	cmplt	R	2522368	256
17753.060	issue	R	2522624	256
17753.426	queue	R	2522880	256
17756.234	cmplt	R	2522624	256
17756.295	issue	R	2522880	256
17756.661	queue	R	2367488	256
17759.469	cmplt	R	2522880	256
17759.530	issue	R	2367488	256
17759.896	queue	R	2367744	256
17762.826	cmplt	R	2367488	256
17762.918	issue	R	2367744	256
17763.284	queue	R	2368000	256
17766.092	cmplt	R	2367744	256
17766.183	issue	R	2368000	256
17766.550	queue	R	2368256	256
17769.358	cmplt	R	2368000	256
17769.419	issue	R	2368256	256
17769.815	queue	R	2368512	256
17772.623	cmplt	R	2368256	256
17772.684	issue	R	2368512	256
17773.051	queue	R	2368768	256
17775.889	cmplt	R	2368512	256
17775.950	issue	R	2368768	256
17776.316	queue	R	2369024	256
17779.124	cmplt	R	2368768	256
17779.185	issue	R	2369024	256
17779.551	queue	R	2369280	256
17782.390	cmplt	R	2369024	256
17782.451	issue	R	2369280	256
17782.817	queue	R	2369536	256
17785.655	cmplt	R	2369280	256
17785.716	issue	R	2369536	256
17786.083	queue	R	2369792	256
17788.891	cmplt	R	2369536	256
17788.982	issue	R	2369792	256
17789.348	queue	R	2370048	256
17792.156	cmplt	R	2369792	256
17792.248	issue	R	2370048	256
17792.584	queue	R	2370304	256
17795.422	cmplt	R	2370048	256
17795.483	issue	R	2370304	256
17795.849	queue	R	2370560	256
17798.688	cmplt	R	2370304	256
17798.749	issue	R	2370560	256
17799.115	queue	R	2370816	256
17801.953	cmplt	R	2370560	256
17802.014	issue	R	2370816	256
17802.381	queue	R	2371072	256
17805.188	cmplt	R	2370816	256
17805.280	issue	R	2371072	256
17805.646	queue	R	2371328	256
17808.454	cmplt	R	2371072	256
17808.546	issue	R	2371328	256
17811.720	cmplt	R	2371328	256
20345.338	queue	W	3029824	1024
20345.460	issue	W	3029824	1024
20346.620	queue	W	3030848	192
20348.421	queue	W	3031040	1024
20348.848	queue	W	3032064	1024
20349.123	issue	W	3030848	192
20349.153	issue	W	3031040	1024
20349.184	issue	W	3032064	1024
20349.275	queue	W	3033088	1024
20349.702	queue	W	3034112	1024
20349.733	issue	W	3033088	1024
20349.794	issue	W	3034112	1024
20350.160	queue	W	3035136	1024
20350.588	queue	W	3036160	1024
20350.984	queue	W	3037184	1024
20351.381	queue	W	3038208	1024
20351.778	queue	W	3039232	1024
20352.205	queue	W	3040256	1024
20352.632	queue	W	3041280	1024
20353.060	queue	W	3042304	1024
20353.456	queue	W	3043328	1024
20353.884	queue	W	3044352	1024
20354.311	queue	W	3045376	1024
20354.708	queue	W	3046400	1024
20356.722	queue	W	3047424	1024
20357.149	queue	W	3048448	1024
20357.546	queue	W	3049472	1024
20358.126	queue	W	3050496	1024
20358.523	queue	W	3051520	1024
20358.950	queue	W	3052544	1024
20359.347	queue	W	3053568	1024
20359.744	queue	W	3054592	1024
20360.201	queue	W	3055616	1024
20360.598	queue	W	3056640	1024
20360.995	queue	W	3057664	1024
20361.422	queue	W	3058688	1024
20361.819	queue	W	3059712	1024
20362.216	queue	W	3060736	1024
20362.643	queue	W	3061760	1024
20363.070	queue	W	3062784	1024
20363.925	queue	W	2891776	1024
20364.322	queue	W	2892800	1024
20364.718	queue	W	2893824	1024
20365.115	queue	W	2894848	1024
20365.207	queue	W	1835528	8
20365.237	queue	W	1835696	8
20419.777	cmplt	W	3029824	1024
20420.082	cmplt	W	3030848	192
20420.143	cmplt	W	3031040	1024
20420.388	cmplt	W	3032064	1024
20420.662	issue	W	3035136	1024
20420.693	issue	W	3036160	1024
20420.693	issue	W	3037184	1024
20420.723	issue	W	3038208	1024
20420.723	issue	W	3039232	1024
20420.754	issue	W	3040256	1024
20420.754	issue	W	3041280	1024
20420.784	issue	W	3042304	1024
20420.784	issue	W	3043328	1024
20420.815	issue	W	3044352	1024
20420.815	issue	W	3045376	1024
20420.845	issue	W	3046400	1024
20420.845	issue	W	3047424	1024
20420.876	issue	W	3048448	1024
20420.876	issue	W	3049472	1024
20420.906	issue	W	3050496	1024
20420.906	issue	W	3051520	1024
20420.937	issue	W	3052544	1024
20420.937	issue	W	3053568	1024
20420.967	issue	W	3054592	1024
20420.967	issue	W	3055616	1024
20420.998	issue	W	3056640	1024
20420.998	issue	W	3057664	1024
20421.029	issue	W	3058688	1024
20421.029	issue	W	3059712	1024
20421.059	issue	W	3060736	1024
20421.059	issue	W	3061760	1024
20421.090	issue	W	3062784	1024
20421.090	issue	W	1835528	8
20421.120	issue	W	1835696	8
20421.120	issue	W	2891776	1024
20421.151	issue	W	2892800	1024
20421.151	issue	W	2893824	1024
20421.181	issue	W	2894848	1024
20463.116	cmplt	W	3033088	1024
20463.391	cmplt	W	3034112	1024
21002.564	cmplt	W	3035136	1024
21002.869	cmplt	W	3036160	1024
21003.144	cmplt	W	3037184	1024
21003.388	cmplt	W	3038208	1024
21003.662	cmplt	W	3039232	1024
21003.907	cmplt	W	3040256	1024
21004.151	cmplt	W	3041280	1024
21004.425	cmplt	W	3042304	1024
21004.670	cmplt	W	3043328	1024
21004.914	cmplt	W	3044352	1024
21005.158	cmplt	W	3045376	1024
21005.402	cmplt	W	3046400	1024
21005.646	cmplt	W	3047424	1024
21005.890	cmplt	W	3048448	1024
21006.135	cmplt	W	3049472	1024
21006.379	cmplt	W	3050496	1024
21006.623	cmplt	W	3051520	1024
21006.867	cmplt	W	3052544	1024
21007.111	cmplt	W	3053568	1024
21007.355	cmplt	W	3054592	1024
21007.600	cmplt	W	3055616	1024
21007.844	cmplt	W	3056640	1024
21008.088	cmplt	W	3057664	1024
21008.332	cmplt	W	3058688	1024
21008.576	cmplt	W	3059712	1024
21008.820	cmplt	W	3060736	1024
21009.095	cmplt	W	3061760	1024
21009.339	cmplt	W	3062784	1024
21009.583	cmplt	W	1835528	8
21009.614	cmplt	W	1835696	8
21009.614	cmplt	W	2891776	1024
21009.889	cmplt	W	2892800	1024
21020.021	cmplt	W	2893824	1024
21020.296	cmplt	W	2894848	1024
21897.299	queue	WS	1916928	8
21897.421	issue	WS	1916928	8
21902.915	cmplt	WS	1916928	8
21903.708	queue	WS	1916928	8
21903.739	issue	WS	1916928	8
21904.593	cmplt	WS	1916928	8
21920.861	queue	WS	1912920	8
21920.983	issue	WS	1912920	8
21921.868	cmplt	WS	1912920	8
21922.081	queue	WS	1845920	8
21922.081	queue	WS	1845928	8
21922.112	queue	WS	1845936	8
21922.112	queue	WS	1845944	8
21922.112	queue	WS	1845952	8
21922.143	queue	WS	1845960	8
21922.143	queue	WS	1845968	8
21922.173	queue	WS	1845976	8
21922.173	queue	WS	1845984	8
21922.173	queue	WS	1845992	8
21922.204	queue	WS	1846000	8
21922.265	issue	WS	1845920	88
21929.712	cmplt	WS	1845920	88
21929.834	queue	WS	1846008	8
21929.895	issue	WS	1846008	8
21930.749	cmplt	WS	1846008	8
21931.024	queue	WS	1846016	8
21931.024	queue	WS	1846024	8
21931.085	issue	WS	1846016	16
21932.062	cmplt	WS	1846016	16
21932.123	queue	WS	1846032	8
21932.214	issue	WS	1846032	8
21933.130	cmplt	WS	1846032	8
21957.821	queue	WS	2635728	80
21957.943	issue	WS	2635728	80
21960.324	cmplt	WS	2635728	80
21960.568	queue	WS	1846040	8
21960.598	queue	WS	1846048	8
21960.598	queue	WS	1846056	8
21960.629	queue	WS	1846064	8
21960.629	queue	WS	1846072	8
21960.629	queue	WS	1846080	8
21960.659	queue	WS	1846088	8
21960.720	issue	WS	1846040	56
21963.162	cmplt	WS	1846040	56
21963.315	queue	WS	1846096	8
21963.376	issue	WS	1846096	8
21964.291	cmplt	WS	1846096	8
26900.137	queue	W	2883584	8
26900.198	queue	W	1835696	8
26900.198	queue	W	1835704	8
26900.351	issue	W	1835696	16
26904.410	issue	W	2883584	8
26906.821	cmplt	W	1835696	16
26906.852	cmplt	W	2883584	8
26937.036	queue	WS	1916928	8
26937.159	issue	WS	1916928	8
26938.685	cmplt	WS	1916928	8
26939.417	queue	WS	1916928	8
26939.448	issue	WS	1916928	8
26940.363	cmplt	WS	1916928	8
26956.875	queue	WS	1912920	8
26956.997	issue	WS	1912920	8
26957.851	cmplt	WS	1912920	8
26958.034	queue	WS	1846104	8
26958.065	queue	WS	1846112	8
26958.065	queue	WS	1846120	8
26958.096	queue	WS	1846128	8
26958.096	queue	WS	1846136	8
26958.126	queue	WS	1846144	8
26958.126	queue	WS	1846152	8
26958.126	queue	WS	1846160	8
26958.157	queue	WS	1846168	8
26958.218	issue	WS	1846104	72
26960.629	cmplt	WS	1846104	72
26960.720	queue	WS	1846176	8
26960.781	issue	WS	1846176	8
26961.636	cmplt	WS	1846176	8
26961.880	queue	WS	1846184	8
26961.880	queue	WS	1846192	8
26961.941	issue	WS	1846184	16
26963.650	cmplt	WS	1846184	16
26963.742	queue	WS	1846200	8
26963.803	issue	WS	1846200	8
26964.688	cmplt	WS	1846200	8
26988.830	queue	WS	2635808	80
26988.952	issue	WS	2635808	80
27000.641	cmplt	WS	2635808	80
27000.916	queue	WS	1846208	8
27000.946	queue	WS	1846216	8
27000.946	queue	WS	1846224	8
27000.977	queue	WS	1846232	8
27000.977	queue	WS	1846240	8
27000.977	queue	WS	1846248	8
27001.007	queue	WS	1846256	8
27001.068	issue	WS	1846208	56
27007.447	cmplt	WS	1846208	56
27007.600	queue	WS	1846264	8
27007.661	issue	WS	1846264	8
27008.515	cmplt	WS	1846264	8
31900.168	queue	W	1835696	8
31900.320	issue	W	1835696	8
31905.234	cmplt	W	1835696	8
31937.952	queue	WS	1916928	8
31938.074	issue	WS	1916928	8
31939.142	cmplt	WS	1916928	8
31939.844	queue	WS	1916928	8
31939.875	issue	WS	1916928	8
31940.790	cmplt	WS	1916928	8
31957.302	queue	WS	1912920	8
31957.424	issue	WS	1912920	8
31958.370	cmplt	WS	1912920	8
31958.553	queue	WS	1846272	8
31958.584	queue	WS	1846280	8
31958.584	queue	WS	1846288	8
31958.584	queue	WS	1846296	8
31958.614	queue	WS	1846304	8
31958.614	queue	WS	1846312	8
31958.614	queue	WS	1846320	8
31958.645	queue	WS	1846328	8
31958.645	queue	WS	1846336	8
31958.736	issue	WS	1846272	72
31965.298	cmplt	WS	1846272	72
31965.390	queue	WS	1846344	8
31965.481	issue	WS	1846344	8
31966.306	cmplt	WS	1846344	8
31966.550	queue	WS	1846352	8
31966.580	queue	WS	1846360	8
31966.611	issue	WS	1846352	16
31967.526	cmplt	WS	1846352	16
31967.587	queue	WS	1846368	8
31967.648	issue	WS	1846368	8
31968.595	cmplt	WS	1846368	8
31992.919	queue	WS	2635888	80
31993.041	issue	WS	2635888	80
31999.847	cmplt	WS	2635888	80
32000.122	queue	WS	1846376	8
32000.153	queue	WS	1846384	8
32000.153	queue	WS	1846392	8
32000.183	queue	WS	1846400	8
32000.183	queue	WS	1846408	8
32000.183	queue	WS	1846416	8
32000.214	queue	WS	1846424	8
32000.275	issue	WS	1846376	56
32002.228	cmplt	WS	1846376	56
32002.381	queue	WS	1846432	8
32002.411	issue	WS	1846432	8
32003.327	cmplt	WS	1846432	8
36940.058	queue	W	1835696	8
36940.241	issue	W	1835696	8
36945.155	cmplt	W	1835696	8
36950.404	queue	WS	1916928	8
36950.526	issue	WS	1916928	8
36951.595	cmplt	WS	1916928	8
36952.327	queue	WS	1916928	8
36952.388	issue	WS	1916928	8
36953.243	cmplt	WS	1916928	8
36970.029	queue	WS	1912920	8
36970.121	issue	WS	1912920	8
36971.067	cmplt	WS	1912920	8
36971.219	queue	WS	1846440	8
36971.250	queue	WS	1846448	8
36971.250	queue	WS	1846456	8
36971.280	queue	WS	1846464	8
36971.280	queue	WS	1846472	8
36971.311	queue	WS	1846480	8
36971.311	queue	WS	1846488	8
36971.311	queue	WS	1846496	8
36971.341	queue	WS	1846504	8
36971.402	issue	WS	1846440	72
36973.844	cmplt	WS	1846440	72
36973.966	queue	WS	1846512	8
36974.027	issue	WS	1846512	8
36974.912	cmplt	WS	1846512	8
36975.156	queue	WS	1846520	8
36975.187	queue	WS	1846528	8
36975.248	issue	WS	1846520	16
36976.743	cmplt	WS	1846520	16
36976.805	queue	WS	1846536	8
36976.866	issue	WS	1846536	8
36977.720	cmplt	WS	1846536	8
37002.075	queue	WS	2635968	80
37002.167	issue	WS	2635968	80
37004.609	cmplt	WS	2635968	80
37004.853	queue	WS	1846544	8
37004.883	queue	WS	1846552	8
37004.883	queue	WS	1846560	8
37004.914	queue	WS	1846568	8
37004.914	queue	WS	1846576	8
37004.914	queue	WS	1846584	8
37004.944	queue	WS	1846592	8
37005.005	issue	WS	1846544	56
37009.736	cmplt	WS	1846544	56
37009.889	queue	WS	1846600	8
37009.919	issue	WS	1846600	8
37010.804	cmplt	WS	1846600	8
41950.130	queue	W	1835696	8
41950.282	issue	W	1835696	8
41954.830	cmplt	W	1835696	8
41983.275	queue	WS	1916928	8
41983.397	issue	WS	1916928	8
41984.435	cmplt	WS	1916928	8
41985.198	queue	WS	1916928	8
41985.259	issue	WS	1916928	8
41986.113	cmplt	WS	1916928	8
42002.259	queue	WS	1912920	8
42002.350	issue	WS	1912920	8
42003.205	cmplt	WS	1912920	8
42003.388	queue	WS	1846608	8
42003.418	queue	WS	1846616	8
42003.418	queue	WS	1846624	8
42003.449	queue	WS	1846632	8
42003.449	queue	WS	1846640	8
42003.449	queue	WS	1846648	8
42003.479	queue	WS	1846656	8
42003.479	queue	WS	1846664	8
42003.510	queue	WS	1846672	8
42003.571	issue	WS	1846608	72
42010.346	cmplt	WS	1846608	72
42010.468	queue	WS	1846680	8
42010.530	issue	WS	1846680	8
42011.445	cmplt	WS	1846680	8
42011.720	queue	WS	1846688	8
42011.720	queue	WS	1846696	8
42011.781	issue	WS	1846688	16
42012.666	cmplt	WS	1846688	16
42012.758	queue	WS	1846704	8
42012.819	issue	WS	1846704	8
42013.643	cmplt	WS	1846704	8
42038.181	queue	WS	2636048	80
42038.303	issue	WS	2636048	80
42040.714	cmplt	WS	2636048	80
42040.989	queue	WS	1846712	8
42041.019	queue	WS	1846720	8
42041.019	queue	WS	1846728	8
42041.050	queue	WS	1846736	8
42041.050	queue	WS	1846744	8
42041.050	queue	WS	1846752	8
42041.080	queue	WS	1846760	8
42041.141	issue	WS	1846712	56
42045.231	cmplt	WS	1846712	56
42045.353	queue	WS	1846768	8
42045.414	issue	WS	1846768	8
42046.299	cmplt	WS	1846768	8
46990.111	queue	W	1835696	8
46990.264	issue	W	1835696	8
46995.178	cmplt	W	1835696	8
47017.946	queue	WS	1916928	8
47018.068	issue	WS	1916928	8
47019.106	cmplt	WS	1916928	8
47019.808	queue	WS	1916928	8
47019.869	issue	WS	1916928	8
47020.784	cmplt	WS	1916928	8
47037.418	queue	WS	1912920	8
47037.510	issue	WS	1912920	8
47038.395	cmplt	WS	1912920	8
47038.578	queue	WS	1846776	8
47038.578	queue	WS	1846784	8
47038.608	queue	WS	1846792	8
47038.608	queue	WS	1846800	8
47038.639	queue	WS	1846808	8
47038.639	queue	WS	1846816	8
47038.639	queue	WS	1846824	8
47038.669	queue	WS	1846832	8
47038.669	queue	WS	1846840	8
47038.761	issue	WS	1846776	72
47041.202	cmplt	WS	1846776	72
47041.325	queue	WS	1846848	8
47041.386	issue	WS	1846848	8
47042.332	cmplt	WS	1846848	8
47042.576	queue	WS	1846856	8
47042.606	queue	WS	1846864	8
47042.637	issue	WS	1846856	16
47044.102	cmplt	WS	1846856	16
47044.193	queue	WS	1846872	8
47044.255	issue	WS	1846872	8
47045.140	cmplt	WS	1846872	8
47070.166	queue	WS	2636128	80
47070.258	issue	WS	2636128	80
47076.820	cmplt	WS	2636128	80
47077.064	queue	WS	1846880	8
47077.094	queue	WS	1846888	8
47077.094	queue	WS	1846896	8
47077.125	queue	WS	1846904	8
47077.125	queue	WS	1846912	8
47077.125	queue	WS	1846920	8
47077.155	queue	WS	1846928	8
47077.217	issue	WS	1846880	56
47079.200	cmplt	WS	1846880	56
47079.353	queue	WS	1846936	8
47079.383	issue	WS	1846936	8
47080.360	cmplt	WS	1846936	8
51990.142	queue	W	1835696	8
51990.295	issue	W	1835696	8
51995.147	cmplt	W	1835696	8
52026.766	queue	WS	1916928	8
52026.888	issue	WS	1916928	8
52027.987	cmplt	WS	1916928	8
52028.750	queue	WS	1916928	8
52028.781	issue	WS	1916928	8
52029.696	cmplt	WS	1916928	8
52045.933	queue	WS	1912920	8
52046.025	issue	WS	1912920	8
52046.910	cmplt	WS	1912920	8
52047.154	queue	WS	1846944	8
52047.184	queue	WS	1846952	8
52047.215	queue	WS	1846960	8
52047.215	queue	WS	1846968	8
52047.215	queue	WS	1846976	8
52047.246	queue	WS	1846984	8
52047.246	queue	WS	1846992	8
52047.246	queue	WS	1847000	8
52047.276	queue	WS	1847008	8
52047.337	issue	WS	1846944	72
52054.418	cmplt	WS	1846944	72
52054.540	queue	WS	1847016	8
52054.601	issue	WS	1847016	8
52055.486	cmplt	WS	1847016	8
52055.761	queue	WS	1847024	8
52055.791	queue	WS	1847032	8
52055.852	issue	WS	1847024	16
52056.737	cmplt	WS	1847024	16
52056.798	queue	WS	1847040	8
52056.859	issue	WS	1847040	8
52057.683	cmplt	WS	1847040	8
52081.978	queue	WS	1974360	80
52082.069	issue	WS	1974360	80
52084.847	cmplt	WS	1974360	80
52085.091	queue	WS	1847048	8
52085.121	queue	WS	1847056	8
52085.152	queue	WS	1847064	8
52085.152	queue	WS	1847072	8
52085.152	queue	WS	1847080	8
52085.182	queue	WS	1847088	8
52085.182	queue	WS	1847096	8
52085.274	issue	WS	1847048	56
52091.927	cmplt	WS	1847048	56
52092.049	queue	WS	1847104	8
52092.110	issue	WS	1847104	8
52092.965	cmplt	WS	1847104	8
57030.093	queue	W	1835528	8
57030.154	queue	W	1835696	8
57030.307	issue	W	1835696	8
57034.335	issue	W	1835528	8
57036.075	cmplt	W	1835696	8
57036.106	cmplt	W	1835528	8
57052.251	queue	WS	1916928	8
57052.373	issue	WS	1916928	8
57053.411	cmplt	WS	1916928	8
57054.113	queue	WS	1916928	8
57054.174	issue	WS	1916928	8
57055.028	cmplt	WS	1916928	8
57071.296	queue	WS	1912920	8
57071.387	issue	WS	1912920	8
57072.333	cmplt	WS	1912920	8
57072.547	queue	WS	1847112	8
57072.577	queue	WS	1847120	8
57072.577	queue	WS	1847128	8
57072.577	queue	WS	1847136	8
57072.608	queue	WS	1847144	8
57072.608	queue	WS	1847152	8
57072.638	queue	WS	1847160	8
57072.638	queue	WS	1847168	8
57072.638	queue	WS	1847176	8
57072.730	issue	WS	1847112	72
57075.385	cmplt	WS	1847112	72
57075.507	queue	WS	1847184	8
57075.538	issue	WS	1847184	8
57076.423	cmplt	WS	1847184	8
57076.667	queue	WS	1847192	8
57076.698	queue	WS	1847200	8
57076.728	issue	WS	1847192	16
57078.193	cmplt	WS	1847192	16
57078.285	queue	WS	1847208	8
57078.346	issue	WS	1847208	8
57079.170	cmplt	WS	1847208	8
57103.434	queue	WS	2636208	80
57103.556	issue	WS	2636208	80
57110.514	cmplt	WS	2636208	80
57110.789	queue	WS	1847216	8
57110.789	queue	WS	1847224	8
57110.819	queue	WS	1847232	8
57110.819	queue	WS	1847240	8
57110.850	queue	WS	1847248	8
57110.850	queue	WS	1847256	8
57110.850	queue	WS	1847264	8
57110.942	issue	WS	1847216	56
57113.017	cmplt	WS	1847216	56
57113.139	queue	WS	1847272	8
57113.200	issue	WS	1847272	8
57114.055	cmplt	WS	1847272	8
62030.124	queue	W	1835696	8
62030.154	queue	W	2621960	8
62030.276	issue	W	1835696	8
62034.335	issue	W	2621960	8
62036.411	cmplt	W	1835696	8
62036.441	cmplt	W	2621960	8
62087.014	queue	WS	1916928	8
62087.136	issue	WS	1916928	8
62088.662	cmplt	WS	1916928	8
62089.364	queue	WS	1916928	8
62089.425	issue	WS	1916928	8
62090.371	cmplt	WS	1916928	8
62106.608	queue	WS	1912920	8
62106.730	issue	WS	1912920	8
62107.615	cmplt	WS	1912920	8
62107.798	queue	WS	1847280	8
62107.798	queue	WS	1847288	8
62107.828	queue	WS	1847296	8
62107.828	queue	WS	1847304	8
62107.859	queue	WS	1847312	8
62107.859	queue	WS	1847320	8
62107.859	queue	WS	1847328	8
62107.890	queue	WS	1847336	8
62107.890	queue	WS	1847344	8
62107.981	issue	WS	1847280	72
62113.017	cmplt	WS	1847280	72
62113.108	queue	WS	1847352	8
62113.200	issue	WS	1847352	8
62114.116	cmplt	WS	1847352	8
62114.360	queue	WS	1847360	8
62114.390	queue	WS	1847368	8
62114.421	issue	WS	1847360	16
62115.336	cmplt	WS	1847360	16
62115.428	queue	WS	1847376	8
62115.489	issue	WS	1847376	8
62116.313	cmplt	WS	1847376	8
62140.607	queue	WS	2636288	80
62140.729	issue	WS	2636288	80
62143.049	cmplt	WS	2636288	80
62143.324	queue	WS	1847384	8
62143.354	queue	WS	1847392	8
62143.385	queue	WS	1847400	8
62143.385	queue	WS	1847408	8
62143.385	queue	WS	1847416	8
62143.415	queue	WS	1847424	8
62143.415	queue	WS	1847432	8
62143.507	issue	WS	1847384	56
62147.597	cmplt	WS	1847384	56
62147.749	queue	WS	1847440	8
62147.780	issue	WS	1847440	8
62148.695	cmplt	WS	1847440	8
67090.157	queue	W	1835528	8
67090.188	queue	W	1835696	8
67090.310	issue	W	1835696	8
67094.369	issue	W	1835528	8
67096.017	cmplt	W	1835696	8
67096.048	cmplt	W	1835528	8
67124.523	queue	WS	1916928	8
67124.645	issue	WS	1916928	8
67125.683	cmplt	WS	1916928	8
67126.415	queue	WS	1916928	8
67126.476	issue	WS	1916928	8
67127.392	cmplt	WS	1916928	8
67144.056	queue	WS	1847448	8
67144.087	queue	WS	1847456	8
67144.087	queue	WS	1847464	8
67144.117	queue	WS	1847472	8
67144.117	queue	WS	1847480	8
67144.117	queue	WS	1847488	8
67144.148	queue	WS	1847496	8
67144.148	queue	WS	1847504	8
67144.178	queue	WS	1847512	8
67144.270	issue	WS	1847448	72
67144.300	queue	WS	1912920	8
67150.862	cmplt	WS	1847448	72
67150.954	issue	WS	1912920	8
67150.954	queue	WS	1847520	8
67151.991	cmplt	WS	1912920	8
67152.052	issue	WS	1847520	8
67153.090	cmplt	WS	1847520	8
67153.426	queue	WS	1847528	8
67153.426	queue	WS	1847536	8
67153.517	issue	WS	1847528	16
67154.982	cmplt	WS	1847528	16
67155.043	queue	WS	1847544	8
67155.105	issue	WS	1847544	8
67156.020	cmplt	WS	1847544	8
67180.497	queue	WS	2636368	80
67180.620	issue	WS	2636368	80
67182.939	cmplt	WS	2636368	80
67183.183	queue	WS	1847552	8
67183.214	queue	WS	1847560	8
67183.214	queue	WS	1847568	8
67183.214	queue	WS	1847576	8
67183.244	queue	WS	1847584	8
67183.244	queue	WS	1847592	8
67183.244	queue	WS	1847600	8
67183.336	issue	WS	1847552	56
67185.289	cmplt	WS	1847552	56
67185.442	queue	WS	1847608	8
67185.503	issue	WS	1847608	8
67186.449	cmplt	WS	1847608	8
72090.127	queue	W	1835696	8
72090.249	issue	W	1835696	8
72095.163	cmplt	W	1835696	8
72137.494	queue	WS	1916928	8
72137.616	issue	WS	1916928	8
72138.685	cmplt	WS	1916928	8
72139.417	queue	WS	1916928	8
72139.478	issue	WS	1916928	8
72140.394	cmplt	WS	1916928	8
72156.997	queue	WS	1912920	8
72157.088	issue	WS	1912920	8
72158.065	cmplt	WS	1912920	8
72158.218	queue	WS	1847616	8
72158.248	queue	WS	1847624	8
72158.279	queue	WS	1847632	8
72158.279	queue	WS	1847640	8
72158.279	queue	WS	1847648	8
72158.309	queue	WS	1847656	8
72158.309	queue	WS	1847664	8
72158.309	queue	WS	1847672	8
72158.340	queue	WS	1847680	8
72158.401	issue	WS	1847616	72
72160.690	cmplt	WS	1847616	72
72160.812	queue	WS	1847688	8
72160.873	issue	WS	1847688	8
72161.758	cmplt	WS	1847688	8
72162.033	queue	WS	1847696	8
72162.033	queue	WS	1847704	8
72162.094	issue	WS	1847696	16
72163.070	cmplt	WS	1847696	16
72163.131	queue	WS	1847712	8
72163.192	issue	WS	1847712	8
72164.078	cmplt	WS	1847712	8
72188.311	queue	WS	2636448	80
72188.433	issue	WS	2636448	80
72195.361	cmplt	WS	2636448	80
72195.636	queue	WS	1847720	8
72195.636	queue	WS	1847728	8
72195.666	queue	WS	1847736	8
72195.666	queue	WS	1847744	8
72195.697	queue	WS	1847752	8
72195.697	queue	WS	1847760	8
72195.697	queue	WS	1847768	8
72195.788	issue	WS	1847720	56
72202.167	cmplt	WS	1847720	56
72202.289	queue	WS	1847776	8
72202.350	issue	WS	1847776	8
72203.235	cmplt	WS	1847776	8
77140.089	queue	W	1835696	8
77140.241	issue	W	1835696	8
77145.216	cmplt	W	1835696	8
77145.369	queue	WS	1916928	8
77145.460	issue	WS	1916928	8
77146.498	cmplt	WS	1916928	8
77147.200	queue	WS	1916928	8
77147.230	issue	WS	1916928	8
77148.085	cmplt	WS	1916928	8
77164.291	queue	WS	1912920	8
77164.413	issue	WS	1912920	8
77165.329	cmplt	WS	1912920	8
77165.512	queue	WS	1847784	8
77165.512	queue	WS	1847792	8
77165.542	queue	WS	1847800	8
77165.542	queue	WS	1847808	8
77165.573	queue	WS	1847816	8
77165.573	queue	WS	1847824	8
77165.573	queue	WS	1847832	8
77165.604	queue	WS	1847840	8
77165.604	queue	WS	1847848	8
77165.695	issue	WS	1847784	72
77172.349	cmplt	WS	1847784	72
77172.471	queue	WS	1847856	8
77172.532	issue	WS	1847856	8
77173.447	cmplt	WS	1847856	8
77173.691	queue	WS	1847864	8
77173.722	queue	WS	1847872	8
77173.783	issue	WS	1847864	16
77174.882	cmplt	WS	1847864	16
77174.973	queue	WS	1847880	8
77175.034	issue	WS	1847880	8
77175.919	cmplt	WS	1847880	8
77200.336	queue	WS	2636528	80
77200.427	issue	WS	2636528	80
77207.386	cmplt	WS	2636528	80
77207.661	queue	WS	1847888	8
77207.661	queue	WS	1847896	8
77207.691	queue	WS	1847904	8
77207.691	queue	WS	1847912	8
77207.722	queue	WS	1847920	8
77207.722	queue	WS	1847928	8
77207.722	queue	WS	1847936	8
77207.813	issue	WS	1847888	56
77210.133	cmplt	WS	1847888	56
77210.285	queue	WS	1847944	8
77210.346	issue	WS	1847944	8
77211.231	cmplt	WS	1847944	8
82140.089	queue	W	1835696	8
82140.241	issue	W	1835696	8
82145.216	cmplt	W	1835696	8
82184.313	queue	WS	1916928	8
82184.435	issue	WS	1916928	8
82185.503	cmplt	WS	1916928	8
82186.205	queue	WS	1916928	8
82186.266	issue	WS	1916928	8
82187.120	cmplt	WS	1916928	8
82203.296	queue	WS	1912920	8
82203.418	issue	WS	1912920	8
82204.273	cmplt	WS	1912920	8
82204.425	queue	WS	1847952	8
82204.456	queue	WS	1847960	8
82204.456	queue	WS	1847968	8
82204.486	queue	WS	1847976	8
82204.486	queue	WS	1847984	8
82204.517	queue	WS	1847992	8
82204.517	queue	WS	1848000	8
82204.517	queue	WS	1848008	8
82204.548	queue	WS	1848016	8
82204.609	issue	WS	1847952	72
82207.416	cmplt	WS	1847952	72
82207.539	queue	WS	1848024	8
82207.600	issue	WS	1848024	8
82208.454	cmplt	WS	1848024	8
82208.698	queue	WS	1848032	8
82208.729	queue	WS	1848040	8
82208.790	issue	WS	1848032	16
82209.736	cmplt	WS	1848032	16
82209.828	queue	WS	1848048	8
82209.889	issue	WS	1848048	8
82210.835	cmplt	WS	1848048	8
82235.007	queue	WS	2636608	80
82235.129	issue	WS	2636608	80
82237.418	cmplt	WS	2636608	80
82237.662	queue	WS	1848056	8
82237.693	queue	WS	1848064	8
82237.693	queue	WS	1848072	8
82237.723	queue	WS	1848080	8
82237.723	queue	WS	1848088	8
82237.754	queue	WS	1848096	8
82237.754	queue	WS	1848104	8
82237.815	issue	WS	1848056	56
82240.104	cmplt	WS	1848056	56
82240.256	queue	WS	1848112	8
82240.287	issue	WS	1848112	8
82241.202	cmplt	WS	1848112	8
87190.111	queue	W	1835696	8
87190.264	issue	W	1835696	8
87195.208	cmplt	W	1835696	8
87196.704	queue	WS	1916928	8
87196.795	issue	WS	1916928	8
87197.833	cmplt	WS	1916928	8
87198.504	queue	WS	1916928	8
87198.566	issue	WS	1916928	8
87199.481	cmplt	WS	1916928	8
87215.657	queue	WS	1912920	8
87215.779	issue	WS	1912920	8
87216.664	cmplt	WS	1912920	8
87216.847	queue	WS	1848120	8
87216.878	queue	WS	1848128	8
87216.878	queue	WS	1848136	8
87216.908	queue	WS	1848144	8
87216.908	queue	WS	1848152	8
87216.908	queue	WS	1848160	8
87216.939	queue	WS	1848168	8
87216.939	queue	WS	1848176	8
87216.969	queue	WS	1848184	8
87217.030	issue	WS	1848120	72
87223.592	cmplt	WS	1848120	72
87223.714	queue	WS	1848192	8
87223.775	issue	WS	1848192	8
87224.660	cmplt	WS	1848192	8
87224.905	queue	WS	1848200	8
87224.935	queue	WS	1848208	8
87224.966	issue	WS	1848200	16
87226.644	cmplt	WS	1848200	16
87226.736	queue	WS	1848216	8
87226.797	issue	WS	1848216	8
87227.621	cmplt	WS	1848216	8
87252.556	queue	WS	2636688	80
87252.648	issue	WS	2636688	80
87255.150	cmplt	WS	2636688	80
87255.394	queue	WS	1848224	8
87255.425	queue	WS	1848232	8
87255.425	queue	WS	1848240	8
87255.425	queue	WS	1848248	8
87255.456	queue	WS	1848256	8
87255.456	queue	WS	1848264	8
87255.486	queue	WS	1848272	8
87255.547	issue	WS	1848224	56
87262.078	cmplt	WS	1848224	56
87262.231	queue	WS	1848280	8
87262.262	issue	WS	1848280	8
87263.147	cmplt	WS	1848280	8
92190.142	queue	W	1835696	8
92190.295	issue	W	1835696	8
92195.239	cmplt	W	1835696	8
92215.413	queue	WS	1916928	8
92215.535	issue	WS	1916928	8
92216.603	cmplt	WS	1916928	8
92217.305	queue	WS	1916928	8
92217.366	issue	WS	1916928	8
92218.282	cmplt	WS	1916928	8
92234.488	queue	WS	1912920	8
92234.610	issue	WS	1912920	8
92235.526	cmplt	WS	1912920	8
92235.709	queue	WS	1848288	8
92235.709	queue	WS	1848296	8
92235.739	queue	WS	1848304	8
92235.739	queue	WS	1848312	8
92235.770	queue	WS	1848320	8
92235.770	queue	WS	1848328	8
92235.800	queue	WS	1848336	8
92235.800	queue	WS	1848344	8
92235.800	queue	WS	1848352	8
92235.892	issue	WS	1848288	72
92238.486	cmplt	WS	1848288	72
92238.578	queue	WS	1848360	8
92238.639	issue	WS	1848360	8
92239.493	cmplt	WS	1848360	8
92239.738	queue	WS	1848368	8
92239.768	queue	WS	1848376	8
92239.799	issue	WS	1848368	16
92240.684	cmplt	WS	1848368	16
92240.745	queue	WS	1848384	8
92240.836	issue	WS	1848384	8
92241.752	cmplt	WS	1848384	8
92266.351	queue	WS	2636768	80
92266.443	issue	WS	2636768	80
92272.852	cmplt	WS	2636768	80
92273.127	queue	WS	1848392	8
92273.157	queue	WS	1848400	8
92273.157	queue	WS	1848408	8
92273.188	queue	WS	1848416	8
92273.188	queue	WS	1848424	8
92273.188	queue	WS	1848432	8
92273.218	queue	WS	1848440	8
92273.279	issue	WS	1848392	56
92275.263	cmplt	WS	1848392	56
92275.385	queue	WS	1848448	8
92275.446	issue	WS	1848448	8
92276.362	cmplt	WS	1848448	8
96248.772	queue	WS	1916928	8
96248.894	issue	WS	1916928	8
96253.655	cmplt	WS	1916928	8
96254.387	queue	WS	1916928	8
96254.448	issue	WS	1916928	8
96255.303	cmplt	WS	1916928	8
96271.540	queue	WS	1912920	8
96271.662	issue	WS	1912920	8
96272.608	cmplt	WS	1912920	8
96272.791	queue	WS	1848456	8
96272.822	queue	WS	1848464	8
96272.822	queue	WS	1848472	8
96272.822	queue	WS	1848480	8
96272.852	queue	WS	1848488	8
96272.852	queue	WS	1848496	8
96272.852	queue	WS	1848504	8
96272.883	queue	WS	1848512	8
96272.883	queue	WS	1848520	8
96272.974	issue	WS	1848456	72
96288.967	cmplt	WS	1848456	72
96289.089	queue	WS	1848528	8
96289.150	issue	WS	1848528	8
96290.005	cmplt	WS	1848528	8
96290.249	queue	WS	1848536	8
96290.279	queue	WS	1848544	8
96290.310	issue	WS	1848536	16
96291.897	cmplt	WS	1848536	16
96291.958	queue	WS	1848552	8
96292.019	issue	WS	1848552	8
96292.873	cmplt	WS	1848552	8
96317.687	queue	WS	2636848	80
96317.778	issue	WS	2636848	80
96324.645	cmplt	WS	2636848	80
96324.920	queue	WS	1848560	8
96324.920	queue	WS	1848568	8
96324.950	queue	WS	1848576	8
96324.950	queue	WS	1848584	8
96324.981	queue	WS	1848592	8
96324.981	queue	WS	1848600	8
96324.981	queue	WS	1848608	8
96325.072	issue	WS	1848560	56
96329.742	cmplt	WS	1848560	56
96329.864	queue	WS	1848616	8
96329.925	issue	WS	1848616	8
96330.841	cmplt	WS	1848616	8
97220.143	queue	W	1835696	8
97220.266	issue	W	1835696	8
97225.057	cmplt	W	1835696	8
101266.138	queue	WS	1916928	8
101266.260	issue	WS	1916928	8
101271.326	cmplt	WS	1916928	8
101272.028	queue	WS	1916928	8
101272.089	issue	WS	1916928	8
101272.944	cmplt	WS	1916928	8
101289.516	queue	WS	1912920	8
101289.638	issue	WS	1912920	8
101290.493	cmplt	WS	1912920	8
101290.676	queue	WS	1848624	8
101290.707	queue	WS	1848632	8
101290.707	queue	WS	1848640	8
101290.707	queue	WS	1848648	8
101290.737	queue	WS	1848656	8
101290.737	queue	WS	1848664	8
101290.737	queue	WS	1848672	8
101290.768	queue	WS	1848680	8
101290.768	queue	WS	1848688	8
101290.859	issue	WS	1848624	72
101294.583	cmplt	WS	1848624	72
101294.705	queue	WS	1848696	8
101294.766	issue	WS	1848696	8
101295.712	cmplt	WS	1848696	8
101295.956	queue	WS	1848704	8
101295.956	queue	WS	1848712	8
101296.017	issue	WS	1848704	16
101296.994	cmplt	WS	1848704	16
101297.055	queue	WS	1848720	8
101297.116	issue	WS	1848720	8
101297.970	cmplt	WS	1848720	8
101322.265	queue	WS	2636928	80
101322.356	issue	WS	2636928	80
101324.645	cmplt	WS	2636928	80
101324.889	queue	WS	1848728	8
101324.920	queue	WS	1848736	8
101324.920	queue	WS	1848744	8
101324.920	queue	WS	1848752	8
101324.950	queue	WS	1848760	8
101324.950	queue	WS	1848768	8
101324.950	queue	WS	1848776	8
101325.042	issue	WS	1848728	56
101327.239	cmplt	WS	1848728	56
101327.392	queue	WS	1848784	8
101327.453	issue	WS	1848784	8
101328.369	cmplt	WS	1848784	8
106288.784	queue	WS	1916928	8
106288.906	issue	WS	1916928	8
106293.972	cmplt	WS	1916928	8
106294.705	queue	WS	1916928	8
106294.766	issue	WS	1916928	8
106295.681	cmplt	WS	1916928	8
106312.193	queue	WS	1912920	8
106312.315	issue	WS	1912920	8
106313.170	cmplt	WS	1912920	8
106313.353	queue	WS	1848792	8
106313.383	queue	WS	1848800	8
106313.383	queue	WS	1848808	8
106313.383	queue	WS	1848816	8
106313.414	queue	WS	1848824	8
106313.414	queue	WS	1848832	8
106313.414	queue	WS	1848840	8
106313.444	queue	WS	1848848	8
106313.444	queue	WS	1848856	8
106313.536	issue	WS	1848792	72
106315.977	cmplt	WS	1848792	72
106316.099	queue	WS	1848864	8
106316.161	issue	WS	1848864	8
106316.985	cmplt	WS	1848864	8
106317.229	queue	WS	1848872	8
106317.259	queue	WS	1848880	8
106317.290	issue	WS	1848872	16
106318.907	cmplt	WS	1848872	16
106318.968	queue	WS	1848888	8
106319.060	issue	WS	1848888	8
106319.884	cmplt	WS	1848888	8
106344.178	queue	WS	2637008	80
106344.300	issue	WS	2637008	80
106346.620	cmplt	WS	2637008	80
106346.895	queue	WS	1848896	8
106346.895	queue	WS	1848904	8
106346.925	queue	WS	1848912	8
106346.925	queue	WS	1848920	8
106346.925	queue	WS	1848928	8
106346.956	queue	WS	1848936	8
106346.956	queue	WS	1848944	8
106347.047	issue	WS	1848896	56
106353.273	cmplt	WS	1848896	56
106353.395	queue	WS	1848952	8
106353.487	issue	WS	1848952	8
106354.342	cmplt	WS	1848952	8
107220.143	queue	W	1835696	8
107220.296	issue	W	1835696	8
107225.149	cmplt	W	1835696	8
111318.419	queue	WS	1916928	8
111318.511	issue	WS	1916928	8
111323.577	cmplt	WS	1916928	8
111324.309	queue	WS	1916928	8
111324.340	issue	WS	1916928	8
111325.256	cmplt	WS	1916928	8
111341.828	queue	WS	1912920	8
111341.950	issue	WS	1912920	8
111342.896	cmplt	WS	1912920	8
111343.079	queue	WS	1848960	8
111343.079	queue	WS	1848968	8
111343.110	queue	WS	1848976	8
111343.110	queue	WS	1848984	8
111343.141	queue	WS	1848992	8
111343.141	queue	WS	1849000	8
111343.141	queue	WS	1849008	8
111343.171	queue	WS	1849016	8
111343.171	queue	WS	1849024	8
111343.263	issue	WS	1848960	72
111349.733	cmplt	WS	1848960	72
111349.855	queue	WS	1849032	8
111349.916	issue	WS	1849032	8
111350.771	cmplt	WS	1849032	8
111351.015	queue	WS	1849040	8
111351.015	queue	WS	1849048	8
111351.076	issue	WS	1849040	16
111351.961	cmplt	WS	1849040	16
111352.022	queue	WS	1849056	8
111352.083	issue	WS	1849056	8
111352.938	cmplt	WS	1849056	8
111377.018	queue	WS	2637088	80
111377.140	issue	WS	2637088	80
111384.099	cmplt	WS	2637088	80
111384.404	queue	WS	1849064	8
111384.435	queue	WS	1849072	8
111384.435	queue	WS	1849080	8
111384.435	queue	WS	1849088	8
111384.465	queue	WS	1849096	8
111384.465	queue	WS	1849104	8
111384.465	queue	WS	1849112	8
111384.557	issue	WS	1849064	56
111386.510	cmplt	WS	1849064	56
111386.632	queue	WS	1849120	8
111386.693	issue	WS	1849120	8
111387.639	cmplt	WS	1849120	8
113853.594	queue	RM	1910368	8
113853.807	issue	RM	1910368	8
113857.867	cmplt	RM	1910368	8
113991.790	queue	R	898160	8
113991.821	queue	R	898200	8
113991.912	issue	R	898160	8
113992.004	issue	R	898200	8
113992.461	cmplt	R	898160	8
113992.706	cmplt	R	898200	8
113996.215	queue	R	1060536	8
113996.307	issue	R	1060536	8
113996.734	cmplt	R	1060536	8
113996.887	queue	R	1060408	24
113996.948	queue	R	1060472	64
113997.009	issue	R	1060472	64
113997.101	issue	R	1060408	24
113998.077	cmplt	R	1060472	64
113998.260	queue	R	1075120	8
113998.504	cmplt	R	1060408	24
113998.535	issue	R	1075120	8
113998.993	cmplt	R	1075120	8
113999.206	queue	R	1075184	32
113999.267	issue	R	1075184	32
113999.878	cmplt	R	1075184	32
114001.862	queue	R	1075088	8
114001.923	issue	R	1075088	8
114002.228	cmplt	R	1075088	8
114002.533	queue	R	1075176	8
114002.594	issue	R	1075176	8
114002.899	cmplt	R	1075176	8
114003.174	queue	R	1075152	8
114003.235	issue	R	1075152	8
114003.571	cmplt	R	1075152	8
114003.723	queue	R	1075128	16
114003.785	issue	R	1075128	16
114004.212	cmplt	R	1075128	16
114004.486	queue	R	1060384	8
114004.578	issue	R	1060384	8
114004.975	cmplt	R	1060384	8
114005.158	queue	R	1060344	40
114005.219	issue	R	1060344	40
114005.921	cmplt	R	1060344	40
114006.074	queue	R	1028896	8
114006.135	issue	R	1028896	8
114006.409	cmplt	R	1028896	8
114006.653	queue	R	1028880	8
114006.714	issue	R	1028880	8
114007.020	cmplt	R	1028880	8
114087.288	queue	R	914976	8
114087.380	issue	R	914976	8
114087.868	cmplt	R	914976	8
116325.042	queue	WS	1916928	8
116325.164	issue	WS	1916928	8
116329.864	cmplt	WS	1916928	8
116330.658	queue	WS	1916928	8
116330.688	issue	WS	1916928	8
116331.543	cmplt	WS	1916928	8
116348.024	queue	WS	1912920	8
116348.115	issue	WS	1912920	8
116349.061	cmplt	WS	1912920	8
116349.245	queue	WS	1849128	8
116349.275	queue	WS	1849136	8
116349.275	queue	WS	1849144	8
116349.306	queue	WS	1849152	8
116349.306	queue	WS	1849160	8
116349.306	queue	WS	1849168	8
116349.336	queue	WS	1849176	8
116349.336	queue	WS	1849184	8
116349.336	queue	WS	1849192	8
116349.367	queue	WS	1849200	8
116349.367	queue	WS	1849208	8
116349.367	queue	WS	1849216	8
116349.458	issue	WS	1849128	96
116354.952	cmplt	WS	1849128	96
116355.074	queue	WS	1849224	8
116355.135	issue	WS	1849224	8
116355.990	cmplt	WS	1849224	8
116356.234	queue	WS	1849232	8
116356.264	queue	WS	1849240	8
116356.325	issue	WS	1849232	16
116357.271	cmplt	WS	1849232	16
116357.363	queue	WS	1849248	8
116357.424	issue	WS	1849248	8
116358.340	cmplt	WS	1849248	8
116382.573	queue	WS	2637168	80
116382.695	issue	WS	2637168	80
116389.531	cmplt	WS	2637168	80
116389.806	queue	WS	1849256	8
116389.837	queue	WS	1849264	8
116389.837	queue	WS	1849272	8
116389.837	queue	WS	1849280	8
116389.867	queue	WS	1849288	8
116389.867	queue	WS	1849296	8
116389.898	queue	WS	1849304	8
116389.959	issue	WS	1849256	56
116396.460	cmplt	WS	1849256	56
116396.582	queue	WS	1849312	8
116396.643	issue	WS	1849312	8
116397.528	cmplt	WS	1849312	8
117220.143	queue	W	1835536	8
117220.204	queue	W	1835640	8
117220.204	queue	W	1835696	8
117220.235	queue	W	1910368	8
117220.357	issue	W	1835696	8
117224.325	issue	W	1835640	8
117224.325	issue	W	1835536	8
117224.355	issue	W	1910368	8
117227.651	cmplt	W	1835696	8
117227.682	cmplt	W	1835640	8
117227.712	cmplt	W	1835536	8
117227.712	cmplt	W	1910368	8
121357.363	queue	WS	1916928	8
121357.485	issue	WS	1916928	8
121362.368	cmplt	WS	1916928	8
121363.070	queue	WS	1916928	8
121363.131	issue	WS	1916928	8
121363.986	cmplt	WS	1916928	8
121380.497	queue	WS	1912920	8
121380.589	issue	WS	1912920	8
121381.535	cmplt	WS	1912920	8
121381.718	queue	WS	1849320	8
121381.749	queue	WS	1849328	8
121381.779	queue	WS	1849336	8
121381.779	queue	WS	1849344	8
121381.779	queue	WS	1849352	8
121381.810	queue	WS	1849360	8
121381.810	queue	WS	1849368	8
121381.810	queue	WS	1849376	8
121381.840	queue	WS	1849384	8
121381.901	issue	WS	1849320	72
121385.747	cmplt	WS	1849320	72
121385.869	queue	WS	1849392	8
121385.930	issue	WS	1849392	8
121386.754	cmplt	WS	1849392	8
121386.998	queue	WS	1849400	8
121387.029	queue	WS	1849408	8
121387.090	issue	WS	1849400	16
121388.494	cmplt	WS	1849400	16
121388.555	queue	WS	1849416	8
121388.616	issue	WS	1849416	8
121389.470	cmplt	WS	1849416	8
121413.673	queue	WS	2637248	80
121413.765	issue	WS	2637248	80
121416.054	cmplt	WS	2637248	80
121416.298	queue	WS	1849424	8
121416.328	queue	WS	1849432	8
121416.328	queue	WS	1849440	8
121416.328	queue	WS	1849448	8
121416.359	queue	WS	1849456	8
121416.359	queue	WS	1849464	8
121416.359	queue	WS	1849472	8
121416.450	issue	WS	1849424	56
121418.495	cmplt	WS	1849424	56
121418.648	queue	WS	1849480	8
121418.678	issue	WS	1849480	8
121419.564	cmplt	WS	1849480	8
126385.747	queue	WS	1916928	8
126385.869	issue	WS	1916928	8
126390.935	cmplt	WS	1916928	8
126391.637	queue	WS	1916928	8
126391.698	issue	WS	1916928	8
126392.553	cmplt	WS	1916928	8
126409.126	queue	WS	1912920	8
126409.248	issue	WS	1912920	8
126410.194	cmplt	WS	1912920	8
126410.377	queue	WS	1849488	8
126410.407	queue	WS	1849496	8
126410.407	queue	WS	1849504	8
126410.438	queue	WS	1849512	8
126410.438	queue	WS	1849520	8
126410.438	queue	WS	1849528	8
126410.468	queue	WS	1849536	8
126410.468	queue	WS	1849544	8
126410.499	queue	WS	1849552	8
126410.560	issue	WS	1849488	72
126413.124	cmplt	WS	1849488	72
126413.246	queue	WS	1849560	8
126413.307	issue	WS	1849560	8
126414.161	cmplt	WS	1849560	8
126414.406	queue	WS	1849568	8
126414.436	queue	WS	1849576	8
126414.467	issue	WS	1849568	16
126415.382	cmplt	WS	1849568	16
126415.443	queue	WS	1849584	8
126415.504	issue	WS	1849584	8
126416.450	cmplt	WS	1849584	8
126440.836	queue	WS	2637328	80
126440.958	issue	WS	2637328	80
126443.339	cmplt	WS	2637328	80
126443.583	queue	WS	1849592	8
126443.614	queue	WS	1849600	8
126443.614	queue	WS	1849608	8
126443.614	queue	WS	1849616	8
126443.644	queue	WS	1849624	8
126443.644	queue	WS	1849632	8
126443.644	queue	WS	1849640	8
126443.736	issue	WS	1849592	56
126447.978	cmplt	WS	1849592	56
126448.131	queue	WS	1849648	8
126448.161	issue	WS	1849648	8
126449.077	cmplt	WS	1849648	8
127220.143	queue	W	1835696	8
127220.296	issue	W	1835696	8
127225.179	cmplt	W	1835696	8
131409.034	queue	WS	1916928	8
131409.126	issue	WS	1916928	8
131414.192	cmplt	WS	1916928	8
131414.924	queue	WS	1916928	8
131414.955	issue	WS	1916928	8
131415.871	cmplt	WS	1916928	8
131432.321	queue	WS	1912920	8
131432.443	issue	WS	1912920	8
131433.298	cmplt	WS	1912920	8
131433.481	queue	WS	1849656	8
131433.481	queue	WS	1849664	8
131433.511	queue	WS	1849672	8
131433.511	queue	WS	1849680	8
131433.542	queue	WS	1849688	8
131433.542	queue	WS	1849696	8
131433.542	queue	WS	1849704	8
131433.572	queue	WS	1849712	8
131433.572	queue	WS	1849720	8
131433.633	issue	WS	1849656	72
131440.226	cmplt	WS	1849656	72
131440.348	queue	WS	1849728	8
131440.409	issue	WS	1849728	8
131441.264	cmplt	WS	1849728	8
131441.508	queue	WS	1849736	8
131441.508	queue	WS	1849744	8
131441.569	issue	WS	1849736	16
131443.125	cmplt	WS	1849736	16
131443.186	queue	WS	1849752	8
131443.247	issue	WS	1849752	8
131444.102	cmplt	WS	1849752	8
131468.518	queue	WS	2637408	80
131468.640	issue	WS	2637408	80
131475.080	cmplt	WS	2637408	80
131475.355	queue	WS	1849760	8
131475.355	queue	WS	1849768	8
131475.385	queue	WS	1849776	8
131475.385	queue	WS	1849784	8
131475.416	queue	WS	1849792	8
131475.416	queue	WS	1849800	8
131475.416	queue	WS	1849808	8
131475.507	issue	WS	1849760	56
131479.048	cmplt	WS	1849760	56
131479.200	queue	WS	1849816	8
131479.261	issue	WS	1849816	8
131480.146	cmplt	WS	1849816	8
136426.400	queue	WS	1916928	8
136426.492	issue	WS	1916928	8
136431.558	cmplt	WS	1916928	8
136432.291	queue	WS	1916928	8
136432.352	issue	WS	1916928	8
136433.267	cmplt	WS	1916928	8
136449.779	queue	WS	1912920	8
136449.901	issue	WS	1912920	8
136450.847	cmplt	WS	1912920	8
136451.000	queue	WS	1849824	8
136451.030	queue	WS	1849832	8
136451.061	queue	WS	1849840	8
136451.061	queue	WS	1849848	8
136451.061	queue	WS	1849856	8
136451.091	queue	WS	1849864	8
136451.091	queue	WS	1849872	8
136451.091	queue	WS	1849880	8
136451.122	queue	WS	1849888	8
136451.183	issue	WS	1849824	72
136453.533	cmplt	WS	1849824	72
136453.655	queue	WS	1849896	8
136453.716	issue	WS	1849896	8
136454.540	cmplt	WS	1849896	8
136454.784	queue	WS	1849904	8
136454.815	queue	WS	1849912	8
136454.876	issue	WS	1849904	16
136455.761	cmplt	WS	1849904	16
136455.852	queue	WS	1849920	8
136455.913	issue	WS	1849920	8
136456.768	cmplt	WS	1849920	8
136481.032	queue	WS	2637488	80
136481.123	issue	WS	2637488	80
136487.929	cmplt	WS	2637488	80
136488.204	queue	WS	1849928	8
136488.204	queue	WS	1849936	8
136488.234	queue	WS	1849944	8
136488.234	queue	WS	1849952	8
136488.234	queue	WS	1849960	8
136488.265	queue	WS	1849968	8
136488.265	queue	WS	1849976	8
136488.356	issue	WS	1849928	56
136492.568	cmplt	WS	1849928	56
136492.690	queue	WS	1849984	8
136492.782	issue	WS	1849984	8
136493.698	cmplt	WS	1849984	8
137220.082	queue	W	1835696	8
137220.296	issue	W	1835696	8
137225.149	cmplt	W	1835696	8
141444.621	queue	WS	1916928	8
141444.743	issue	WS	1916928	8
141449.809	cmplt	WS	1916928	8
141450.572	queue	WS	1916928	8
141450.603	issue	WS	1916928	8
141451.488	cmplt	WS	1916928	8
141467.908	queue	WS	1912920	8
141467.999	issue	WS	1912920	8
141468.946	cmplt	WS	1912920	8
141469.098	queue	WS	1849992	8
141469.129	queue	WS	1850000	8
141469.159	queue	WS	1850008	8
141469.159	queue	WS	1850016	8
141469.159	queue	WS	1850024	8
141469.190	queue	WS	1850032	8
141469.190	queue	WS	1850040	8
141469.190	queue	WS	1850048	8
141469.220	queue	WS	1850056	8
141469.281	issue	WS	1849992	72
141475.935	cmplt	WS	1849992	72
141476.057	queue	WS	1850064	8
141476.087	issue	WS	1850064	8
141476.942	cmplt	WS	1850064	8
141477.186	queue	WS	1850072	8
141477.217	queue	WS	1850080	8
141477.247	issue	WS	1850072	16
141478.712	cmplt	WS	1850072	16
141478.804	queue	WS	1850088	8
141478.865	issue	WS	1850088	8
141479.689	cmplt	WS	1850088	8
141504.013	queue	WS	2637568	80
141504.105	issue	WS	2637568	80
141506.394	cmplt	WS	2637568	80
141506.669	queue	WS	1850096	8
141506.669	queue	WS	1850104	8
141506.699	queue	WS	1850112	8
141506.699	queue	WS	1850120	8
141506.730	queue	WS	1850128	8
141506.730	queue	WS	1850136	8
141506.730	queue	WS	1850144	8
141506.821	issue	WS	1850096	56
141510.758	cmplt	WS	1850096	56
141510.911	queue	WS	1850152	8
141510.942	issue	WS	1850152	8
141511.857	cmplt	WS	1850152	8
146191.180	queue	WS	1916928	8
146191.302	issue	WS	1916928	8
146196.368	cmplt	WS	1916928	8
146197.070	queue	WS	1916928	8
146197.131	issue	WS	1916928	8
146197.986	cmplt	WS	1916928	8
146214.711	queue	WS	1912920	8
146214.833	issue	WS	1912920	8
146215.687	cmplt	WS	1912920	8
146215.871	queue	WS	1850160	8
146215.871	queue	WS	1850168	8
146215.901	queue	WS	1850176	8
146215.901	queue	WS	1850184	8
146215.932	queue	WS	1850192	8
146215.932	queue	WS	1850200	8
146215.932	queue	WS	1850208	8
146215.962	queue	WS	1850216	8
146215.962	queue	WS	1850224	8
146216.054	issue	WS	1850160	72
146218.709	cmplt	WS	1850160	72
146218.831	queue	WS	1850232	8
146218.892	issue	WS	1850232	8
146219.747	cmplt	WS	1850232	8
146220.021	queue	WS	1850240	8
146220.052	queue	WS	1850248	8
146220.113	issue	WS	1850240	16
146220.998	cmplt	WS	1850240	16
146221.090	queue	WS	1850256	8
146221.151	issue	WS	1850256	8
146222.005	cmplt	WS	1850256	8
146246.421	queue	WS	2637648	80
146246.513	issue	WS	2637648	80
146248.833	cmplt	WS	2637648	80
146249.107	queue	WS	1850264	8
146249.107	queue	WS	1850272	8
146249.138	queue	WS	1850280	8
146249.138	queue	WS	1850288	8
146249.138	queue	WS	1850296	8
146249.168	queue	WS	1850304	8
146249.168	queue	WS	1850312	8
146249.260	issue	WS	1850264	56
146251.335	cmplt	WS	1850264	56
146251.488	queue	WS	1850320	8
146251.549	issue	WS	1850320	8
146252.465	cmplt	WS	1850320	8
147220.113	queue	W	1835696	8
147220.296	issue	W	1835696	8
147225.179	cmplt	W	1835696	8
151460.156	queue	WS	1850328	8
151460.186	queue	WS	1850336	8
151460.217	queue	WS	1850344	8
151460.217	queue	WS	1850352	8
151460.217	queue	WS	1850360	8
151460.247	queue	WS	1850368	8
151460.247	queue	WS	1850376	8
151460.247	queue	WS	1850384	8
151460.339	issue	WS	1850328	64
151468.396	cmplt	WS	1850328	64
151468.518	queue	WS	1850392	8
151468.579	issue	WS	1850392	8
151469.434	cmplt	WS	1850392	8
151494.796	queue	WS	1916928	8
151494.918	issue	WS	1916928	8
151495.987	cmplt	WS	1916928	8
151496.719	queue	WS	1916928	8
151496.750	issue	WS	1916928	8
151497.665	cmplt	WS	1916928	8
151514.177	queue	WS	1912920	8
151514.268	issue	WS	1912920	8
151515.153	cmplt	WS	1912920	8
151515.306	queue	WS	1850400	8
151515.336	queue	WS	1850408	8
151515.336	queue	WS	1850416	8
151515.428	issue	WS	1850400	24
151519.457	cmplt	WS	1850400	24
151519.548	queue	WS	1850424	8
151519.609	issue	WS	1850424	8
151520.525	cmplt	WS	1850424	8
151520.739	queue	WS	1850432	8
151520.769	queue	WS	1850440	8
151520.800	issue	WS	1850432	16
151521.685	cmplt	WS	1850432	16
151521.746	queue	WS	1850448	8
151521.807	issue	WS	1850448	8
151522.692	cmplt	WS	1850448	8
151547.413	queue	WS	2637728	80
151547.505	issue	WS	2637728	80
151554.464	cmplt	WS	2637728	80
151554.738	queue	WS	1850456	8
151554.738	queue	WS	1850464	8
151554.769	queue	WS	1850472	8
151554.769	queue	WS	1850480	8
151554.799	queue	WS	1850488	8
151554.799	queue	WS	1850496	8
151554.799	queue	WS	1850504	8
151554.891	issue	WS	1850456	56
151559.530	cmplt	WS	1850456	56
151559.683	queue	WS	1850512	8
151559.713	issue	WS	1850512	8
151560.659	cmplt	WS	1850512	8
156523.607	queue	WS	1916928	8
156523.730	issue	WS	1916928	8
156528.796	cmplt	WS	1916928	8
156529.559	queue	WS	1916928	8
156529.620	issue	WS	1916928	8
156530.536	cmplt	WS	1916928	8
156547.108	queue	WS	1912920	8
156547.230	issue	WS	1912920	8
156548.146	cmplt	WS	1912920	8
156548.329	queue	WS	1850520	8
156548.360	queue	WS	1850528	8
156548.360	queue	WS	1850536	8
156548.360	queue	WS	1850544	8
156548.390	queue	WS	1850552	8
156548.390	queue	WS	1850560	8
156548.390	queue	WS	1850568	8
156548.421	queue	WS	1850576	8
156548.421	queue	WS	1850584	8
156548.512	issue	WS	1850520	72
156552.327	cmplt	WS	1850520	72
156552.449	queue	WS	1850592	8
156552.480	issue	WS	1850592	8
156553.334	cmplt	WS	1850592	8
156553.578	queue	WS	1850600	8
156553.578	queue	WS	1850608	8
156553.640	issue	WS	1850600	16
156555.349	cmplt	WS	1850600	16
156555.440	queue	WS	1850616	8
156555.501	issue	WS	1850616	8
156556.386	cmplt	WS	1850616	8
156580.650	queue	WS	2895872	80
156580.772	issue	WS	2895872	80
156584.923	cmplt	WS	2895872	80
156585.198	queue	WS	1850624	8
156585.228	queue	WS	1850632	8
156585.228	queue	WS	1850640	8
156585.259	queue	WS	1850648	8
156585.259	queue	WS	1850656	8
156585.259	queue	WS	1850664	8
156585.289	queue	WS	1850672	8
156585.350	issue	WS	1850624	56
156587.426	cmplt	WS	1850624	56
156587.578	queue	WS	1850680	8
156587.639	issue	WS	1850680	8
156588.585	cmplt	WS	1850680	8
157220.082	queue	W	1835696	8
157220.143	queue	W	2883584	8
157220.296	issue	W	1835696	8
157224.264	issue	W	2883584	8
157226.400	cmplt	W	1835696	8
157226.431	cmplt	W	2883584	8
161543.079	queue	WS	1916928	8
161543.202	issue	WS	1916928	8
161548.665	cmplt	WS	1916928	8
161549.397	queue	WS	1916928	8
161549.428	issue	WS	1916928	8
161550.282	cmplt	WS	1916928	8
161566.885	queue	WS	1912920	8
161567.007	issue	WS	1912920	8
161567.954	cmplt	WS	1912920	8
161568.137	queue	WS	1850688	8
161568.167	queue	WS	1850696	8
161568.167	queue	WS	1850704	8
161568.198	queue	WS	1850712	8
161568.198	queue	WS	1850720	8
161568.198	queue	WS	1850728	8
161568.228	queue	WS	1850736	8
161568.228	queue	WS	1850744	8
161568.228	queue	WS	1850752	8
161568.320	issue	WS	1850688	72
161573.203	cmplt	WS	1850688	72
161573.325	queue	WS	1850760	8
161573.386	issue	WS	1850760	8
161574.302	cmplt	WS	1850760	8
161574.546	queue	WS	1850768	8
161574.577	queue	WS	1850776	8
161574.607	issue	WS	1850768	16
161575.584	cmplt	WS	1850768	16
161575.645	queue	WS	1850784	8
161575.736	issue	WS	1850784	8
161581.932	cmplt	WS	1850784	8
161606.226	queue	WS	2895952	80
161606.318	issue	WS	2895952	80
161613.276	cmplt	WS	2895952	80
161613.551	queue	WS	1850792	8
161613.582	queue	WS	1850800	8
161613.582	queue	WS	1850808	8
161613.582	queue	WS	1850816	8
161613.612	queue	WS	1850824	8
161613.612	queue	WS	1850832	8
161613.643	queue	WS	1850840	8
161613.704	issue	WS	1850792	56
161620.082	cmplt	WS	1850792	56
161620.235	queue	WS	1850848	8
161620.296	issue	WS	1850848	8
161621.242	cmplt	WS	1850848	8
166573.966	queue	WS	1916928	8
166574.088	issue	WS	1916928	8
166579.155	cmplt	WS	1916928	8
166579.918	queue	WS	1916928	8
166579.948	issue	WS	1916928	8
166580.803	cmplt	WS	1916928	8
166597.009	queue	WS	1912920	8
166597.131	issue	WS	1912920	8
166598.016	cmplt	WS	1912920	8
166598.199	queue	WS	1850856	8
166598.230	queue	WS	1850864	8
166598.230	queue	WS	1850872	8
166598.230	queue	WS	1850880	8
166598.260	queue	WS	1850888	8
166598.260	queue	WS	1850896	8
166598.260	queue	WS	1850904	8
166598.291	queue	WS	1850912	8
166598.291	queue	WS	1850920	8
166598.382	issue	WS	1850856	72
166602.289	cmplt	WS	1850856	72
166602.411	queue	WS	1850928	8
166602.472	issue	WS	1850928	8
166603.388	cmplt	WS	1850928	8
166603.632	queue	WS	1850936	8
166603.632	queue	WS	1850944	8
166603.693	issue	WS	1850936	16
166605.219	cmplt	WS	1850936	16
166605.311	queue	WS	1850952	8
166605.372	issue	WS	1850952	8
166606.257	cmplt	WS	1850952	8
166630.978	queue	WS	2896032	80
166631.100	issue	WS	2896032	80
166634.641	cmplt	WS	2896032	80
166634.946	queue	WS	1850960	8
166634.946	queue	WS	1850968	8
166634.976	queue	WS	1850976	8
166634.976	queue	WS	1850984	8
166635.007	queue	WS	1850992	8
166635.007	queue	WS	1851000	8
166635.007	queue	WS	1851008	8
166635.098	issue	WS	1850960	56
166637.174	cmplt	WS	1850960	56
166637.296	queue	WS	1851016	8
166637.357	issue	WS	1851016	8
166638.211	cmplt	WS	1851016	8
167220.143	queue	W	1835696	8
167220.174	queue	W	2621960	8
167220.327	issue	W	1835696	8
167224.294	issue	W	2621960	8
167226.553	cmplt	W	1835696	8
167226.583	cmplt	W	2621960	8
171573.691	queue	WS	1916928	8
171573.783	issue	WS	1916928	8
171579.338	cmplt	WS	1916928	8
171580.131	queue	WS	1916928	8
171580.192	issue	WS	1916928	8
171581.108	cmplt	WS	1916928	8
171597.589	queue	WS	1912920	8
171597.711	issue	WS	1912920	8
171598.566	cmplt	WS	1912920	8
171598.749	queue	WS	1851024	8
171598.779	queue	WS	1851032	8
171598.779	queue	WS	1851040	8
171598.810	queue	WS	1851048	8
171598.810	queue	WS	1851056	8
171598.810	queue	WS	1851064	8
171598.840	queue	WS	1851072	8
171598.840	queue	WS	1851080	8
171598.840	queue	WS	1851088	8
171598.932	issue	WS	1851024	72
171601.557	cmplt	WS	1851024	72
171601.679	queue	WS	1851096	8
171601.740	issue	WS	1851096	8
171602.625	cmplt	WS	1851096	8
171602.869	queue	WS	1851104	8
171602.899	queue	WS	1851112	8
171602.960	issue	WS	1851104	16
171603.815	cmplt	WS	1851104	16
171603.907	queue	WS	1851120	8
171603.968	issue	WS	1851120	8
171604.822	cmplt	WS	1851120	8
171629.666	queue	WS	2896112	80
171629.788	issue	WS	2896112	80
171632.168	cmplt	WS	2896112	80
171632.413	queue	WS	1851128	8
171632.443	queue	WS	1851136	8
171632.443	queue	WS	1851144	8
171632.443	queue	WS	1851152	8
171632.474	queue	WS	1851160	8
171632.474	queue	WS	1851168	8
171632.474	queue	WS	1851176	8
171632.565	issue	WS	1851128	56
171637.174	cmplt	WS	1851128	56
171637.326	queue	WS	1851184	8
171637.357	issue	WS	1851184	8
171638.273	cmplt	WS	1851184	8
176612.025	queue	WS	1916928	8
176612.147	issue	WS	1916928	8
176616.847	cmplt	WS	1916928	8
176617.549	queue	WS	1916928	8
176617.610	issue	WS	1916928	8
176618.526	cmplt	WS	1916928	8
176635.068	queue	WS	1851192	8
176635.068	queue	WS	1851200	8
176635.098	queue	WS	1851208	8
176635.098	queue	WS	1851216	8
176635.129	queue	WS	1851224	8
176635.129	queue	WS	1851232	8
176635.129	queue	WS	1851240	8
176635.159	queue	WS	1851248	8
176635.159	queue	WS	1851256	8
176635.251	issue	WS	1851192	72
176635.312	queue	WS	1912920	8
176641.874	cmplt	WS	1851192	72
176641.965	issue	WS	1912920	8
176641.996	queue	WS	1851264	8
176643.034	cmplt	WS	1912920	8
176643.095	issue	WS	1851264	8
176644.102	cmplt	WS	1851264	8
176644.407	queue	WS	1851272	8
176644.438	queue	WS	1851280	8
176644.499	issue	WS	1851272	16
176646.177	cmplt	WS	1851272	16
176646.269	queue	WS	1851288	8
176646.330	issue	WS	1851288	8
176647.154	cmplt	WS	1851288	8
176672.028	queue	WS	2896192	80
176672.150	issue	WS	2896192	80
176676.362	cmplt	WS	2896192	80
176676.606	queue	WS	1851296	8
176676.637	queue	WS	1851304	8
176676.667	queue	WS	1851312	8
176676.667	queue	WS	1851320	8
176676.667	queue	WS	1851328	8
176676.698	queue	WS	1851336	8
176676.698	queue	WS	1851344	8
176676.789	issue	WS	1851296	56
176680.330	cmplt	WS	1851296	56
176680.482	queue	WS	1851352	8
176680.513	issue	WS	1851352	8
176681.398	cmplt	WS	1851352	8
177220.143	queue	W	1835696	8
177220.296	issue	W	1835696	8
177225.179	cmplt	W	1835696	8
181665.314	queue	WS	1916928	8
181665.436	issue	WS	1916928	8
181670.502	cmplt	WS	1916928	8
181671.173	queue	WS	1916928	8
181671.204	issue	WS	1916928	8
181672.059	cmplt	WS	1916928	8
181687.136	queue	WS	1851360	8
181687.136	queue	WS	1851368	8
181687.166	queue	WS	1851376	8
181687.166	queue	WS	1851384	8
181687.197	queue	WS	1851392	8
181687.197	queue	WS	1851400	8
181687.197	queue	WS	1851408	8
181687.227	queue	WS	1851416	8
181687.227	queue	WS	1851424	8
181687.227	queue	WS	1851432	8
181687.258	queue	WS	1851440	8
181687.258	queue	WS	1851448	8
181687.288	queue	WS	1851456	8
181687.288	queue	WS	1851464	8
181687.288	queue	WS	1851472	8
181687.319	queue	WS	1851480	8
181687.319	queue	WS	1851488	8
181687.410	issue	WS	1851360	136
181687.471	queue	WS	1912920	8
181693.331	cmplt	WS	1851360	136
181693.423	issue	WS	1912920	8
181693.484	queue	WS	1851496	8
181694.461	cmplt	WS	1912920	8
181694.552	issue	WS	1851496	8
181695.590	cmplt	WS	1851496	8
181714.177	queue	WS	1851504	8
181714.207	queue	WS	1851512	8
181714.268	issue	WS	1851504	16
181715.184	cmplt	WS	1851504	16
181715.245	queue	WS	1851520	8
181715.306	issue	WS	1851520	8
181716.252	cmplt	WS	1851520	8
181737.494	queue	WS	2896272	80
181737.616	issue	WS	2896272	80
181744.544	cmplt	WS	2896272	80
181744.819	queue	WS	1851528	8
181744.850	queue	WS	1851536	8
181744.850	queue	WS	1851544	8
181744.880	queue	WS	1851552	8
181744.880	queue	WS	1851560	8
181744.880	queue	WS	1851568	8
181744.911	queue	WS	1851576	8
181744.972	issue	WS	1851528	56
181751.412	cmplt	WS	1851528	56
181751.534	queue	WS	1851584	8
181751.595	issue	WS	1851584	8
181752.510	cmplt	WS	1851584	8
186551.747	queue	WS	1916928	8
186551.869	issue	WS	1916928	8
186556.569	cmplt	WS	1916928	8
186557.210	queue	WS	1916928	8
186557.271	issue	WS	1916928	8
186558.126	cmplt	WS	1916928	8
186573.020	queue	WS	1912920	8
186573.112	issue	WS	1912920	8
186573.966	cmplt	WS	1912920	8
186574.149	queue	WS	1851592	8
186574.180	queue	WS	1851600	8
186574.210	queue	WS	1851608	8
186574.210	queue	WS	1851616	8
186574.210	queue	WS	1851624	8
186574.241	queue	WS	1851632	8
186574.241	queue	WS	1851640	8
186574.241	queue	WS	1851648	8
186574.271	queue	WS	1851656	8
186574.332	issue	WS	1851592	72
186578.697	cmplt	WS	1851592	72
186578.819	queue	WS	1851664	8
186578.880	issue	WS	1851664	8
186579.704	cmplt	WS	1851664	8
186579.948	queue	WS	1851672	8
186580.009	queue	WS	1851680	8
186580.070	issue	WS	1851672	16
186581.566	cmplt	WS	1851672	16
186581.657	queue	WS	1851688	8
186581.718	issue	WS	1851688	8
186582.542	cmplt	WS	1851688	8
186603.754	queue	WS	2896352	80
186603.876	issue	WS	2896352	80
186607.416	cmplt	WS	2896352	80
186607.691	queue	WS	1851696	8
186607.722	queue	WS	1851704	8
186607.752	queue	WS	1851712	8
186607.752	queue	WS	1851720	8
186607.752	queue	WS	1851728	8
186607.783	queue	WS	1851736	8
186607.783	queue	WS	1851744	8
186607.844	issue	WS	1851696	56
186609.950	cmplt	WS	1851696	56
186610.255	queue	WS	1851752	8
186610.285	issue	WS	1851752	8
186611.201	cmplt	WS	1851752	8
187220.143	queue	W	1835528	8
187220.204	queue	W	1835536	8
187220.204	queue	W	1835544	8
187220.235	queue	W	1835696	8
187220.266	queue	W	1835704	8
187220.266	queue	W	1872416	8
187220.296	queue	W	2097672	8
187220.296	queue	W	2359296	8
187220.327	queue	W	2621960	8
187220.479	issue	W	1872416	8
187224.477	issue	W	2097672	8
187224.508	issue	W	2359296	8
187224.508	issue	W	2621960	8
187224.538	issue	W	1835528	24
187224.538	issue	W	1835696	16
187230.948	cmplt	W	1872416	8
187230.978	cmplt	W	2097672	8
187230.978	cmplt	W	2359296	8
187231.009	cmplt	W	2621960	8
187231.009	cmplt	W	1835528	24
187231.039	cmplt	W	1835696	16
191567.313	queue	WS	1916928	8
191567.435	issue	WS	1916928	8
191572.135	cmplt	WS	1916928	8
191572.806	queue	WS	1916928	8
191572.867	issue	WS	1916928	8
191573.813	cmplt	WS	1916928	8
191588.646	queue	WS	1912920	8
191588.768	issue	WS	1912920	8
191589.654	cmplt	WS	1912920	8
191589.867	queue	WS	1851760	8
191589.867	queue	WS	1851768	8
191589.898	queue	WS	1851776	8
191589.898	queue	WS	1851784	8
191589.928	queue	WS	1851792	8
191589.928	queue	WS	1851800	8
191589.928	queue	WS	1851808	8
191589.959	queue	WS	1851816	8
191589.959	queue	WS	1851824	8
191590.050	issue	WS	1851760	72
191595.025	cmplt	WS	1851760	72
191595.147	queue	WS	1851832	8
191595.208	issue	WS	1851832	8
191596.185	cmplt	WS	1851832	8
191596.460	queue	WS	1851840	8
191596.460	queue	WS	1851848	8
191596.521	issue	WS	1851840	16
191597.406	cmplt	WS	1851840	16
191597.497	queue	WS	1851856	8
191597.558	issue	WS	1851856	8
191598.413	cmplt	WS	1851856	8
191627.224	queue	WS	1974440	80
191627.346	issue	WS	1974440	80
191632.504	cmplt	WS	1974440	80
191632.657	queue	WS	1851864	8
191632.687	queue	WS	1851872	8
191632.687	queue	WS	1851880	8
191632.718	queue	WS	1851888	8
191632.718	queue	WS	1851896	8
191632.718	queue	WS	1851904	8
191632.748	queue	WS	1851912	8
191632.809	issue	WS	1851864	56
191636.655	cmplt	WS	1851864	56
191636.777	queue	WS	1851920	8
191636.838	issue	WS	1851920	8
191637.662	cmplt	WS	1851920	8
191669.434	queue	R	893760	8
191669.556	issue	R	893760	8
191670.075	cmplt	R	893760	8
191800.122	queue	R	938600	8
191800.244	issue	R	938600	8
191800.702	cmplt	R	938600	8
191801.251	queue	R	938592	8
191801.343	issue	R	938592	8
191801.618	cmplt	R	938592	8
191803.266	queue	R	938568	24
191803.357	issue	R	938568	24
191803.876	cmplt	R	938568	24
191804.090	queue	RM	2626072	8
191804.151	issue	RM	2626072	8
191804.578	cmplt	RM	2626072	8
191804.731	queue	R	2633048	32
191804.792	issue	R	2633048	32
191805.372	cmplt	R	2633048	32
191805.433	queue	R	2633112	8
191805.494	issue	R	2633112	8
191805.799	cmplt	R	2633112	8
191805.890	queue	R	2633080	32
191805.921	queue	R	2633120	8
191805.982	issue	R	2633120	8
191806.043	issue	R	2633080	32
191806.348	cmplt	R	2633120	8
191806.898	cmplt	R	2633080	32
191810.072	queue	R	1015768	24
191810.133	queue	R	1015808	72
191810.163	queue	R	1015904	8
191810.194	queue	R	1015944	8
191810.316	issue	R	1015768	24
191810.407	issue	R	1015808	72
191811.018	cmplt	R	1015768	24
191811.048	issue	R	1015904	8
191812.056	cmplt	R	1015808	72
191812.086	issue	R	1015944	8
191812.330	cmplt	R	1015904	8
191812.544	cmplt	R	1015944	8
191920.098	queue	R	1967272	256
191920.250	issue	R	1967272	256
191923.791	cmplt	R	1967272	256
196164.169	queue	WS	1916928	8
196164.261	issue	WS	1916928	8
196168.961	cmplt	WS	1916928	8
196169.632	queue	WS	1916928	8
196169.663	issue	WS	1916928	8
196170.609	cmplt	WS	1916928	8
196185.564	queue	WS	1912920	8
196185.686	issue	WS	1912920	8
196186.602	cmplt	WS	1912920	8
196186.785	queue	WS	1851928	8
196186.815	queue	WS	1851936	8
196186.815	queue	WS	1851944	8
196186.846	queue	WS	1851952	8
196186.846	queue	WS	1851960	8
196186.846	queue	WS	1851968	8
196186.876	queue	WS	1851976	8
196186.876	queue	WS	1851984	8
196186.907	queue	WS	1851992	8
196186.968	issue	WS	1851928	72
196193.530	cmplt	WS	1851928	72
196193.652	queue	WS	1852000	8
196193.713	issue	WS	1852000	8
196194.659	cmplt	WS	1852000	8
196194.903	queue	WS	1852008	8
196194.903	queue	WS	1852016	8
196194.964	issue	WS	1852008	16
196196.185	cmplt	WS	1852008	16
196196.246	queue	WS	1852024	8
196196.307	issue	WS	1852024	8
196197.162	cmplt	WS	1852024	8
196218.984	queue	WS	2896432	80
196219.075	queue	R	2626088	8
196219.075	issue	WS	2896432	80
196219.106	queue	R	2626104	8
196219.167	queue	R	2626120	8
196219.197	queue	R	2626128	8
196219.228	queue	R	2626136	8
196219.228	queue	R	2626144	8
196219.258	queue	R	2626152	8
196219.258	queue	R	2626160	8
196219.289	queue	R	2626168	8
196221.578	cmplt	WS	2896432	80
196221.669	issue	R	2626088	8
196221.730	issue	R	2626104	8
196221.914	queue	WS	1852032	8
196221.914	queue	WS	1852040	8
196221.944	queue	WS	1852048	8
196221.944	queue	WS	1852056	8
196221.944	queue	WS	1852064	8
196221.975	queue	WS	1852072	8
196221.975	queue	WS	1852080	8
196222.127	cmplt	R	2626088	8
196222.158	issue	R	2626120	56
196222.402	cmplt	R	2626104	8
196223.226	cmplt	R	2626120	56
196223.318	issue	WS	1852032	56
196225.454	cmplt	WS	1852032	56
196225.607	queue	WS	1852088	8
196225.637	issue	WS	1852088	8
196226.614	cmplt	WS	1852088	8
197220.113	queue	W	2883584	8
197220.174	queue	W	1835696	8
197220.327	issue	W	1835696	8
197224.325	issue	W	2883584	8
197226.431	cmplt	W	1835696	8
197226.461	cmplt	W	2883584	8
201420.174	queue	WS	1852096	8
201420.204	queue	WS	1852104	8
201420.235	queue	WS	1852112	8
201420.235	queue	WS	1852120	8
201420.235	queue	WS	1852128	8
201420.266	queue	WS	1852136	8
201420.266	queue	WS	1852144	8
201420.266	queue	WS	1852152	8
201420.357	issue	WS	1852096	64
201425.820	cmplt	WS	1852096	64
201425.942	queue	WS	1852160	8
201426.003	issue	WS	1852160	8
201426.858	cmplt	WS	1852160	8
201620.143	queue	WS	1916928	8
201620.388	issue	WS	1916928	8
201629.300	cmplt	WS	1916928	8
201629.940	queue	WS	1916928	8
201630.002	issue	WS	1916928	8
201630.856	cmplt	WS	1916928	8
201645.842	queue	WS	1912920	8
201645.964	issue	WS	1912920	8
201646.910	cmplt	WS	1912920	8
201647.032	queue	WS	1852168	8
201647.062	queue	WS	1852176	8
201647.093	queue	WS	1852184	8
201647.154	issue	WS	1852168	24
201651.091	cmplt	WS	1852168	24
201651.152	queue	WS	1852192	8
201651.244	issue	WS	1852192	8
201652.068	cmplt	WS	1852192	8
201652.281	queue	WS	1852200	8
201652.312	queue	WS	1852208	8
201652.342	issue	WS	1852200	16
201653.960	cmplt	WS	1852200	16
201654.021	queue	WS	1852216	8
201654.113	issue	WS	1852216	8
201654.998	cmplt	WS	1852216	8
201676.179	queue	WS	2896512	80
201676.270	issue	WS	2896512	80
201680.482	cmplt	WS	2896512	80
201680.726	queue	WS	1852224	8
201680.757	queue	WS	1852232	8
201680.787	queue	WS	1852240	8
201680.787	queue	WS	1852248	8
201680.787	queue	WS	1852256	8
201680.818	queue	WS	1852264	8
201680.818	queue	WS	1852272	8
201680.909	issue	WS	1852224	56
201687.227	cmplt	WS	1852224	56
201687.349	queue	WS	1852280	8
201687.441	issue	WS	1852280	8
201688.295	cmplt	WS	1852280	8
206637.357	queue	WS	1916928	8
206637.479	issue	WS	1916928	8
206642.576	cmplt	WS	1916928	8
206643.247	queue	WS	1916928	8
206643.278	issue	WS	1916928	8
206644.163	cmplt	WS	1916928	8
206659.057	queue	WS	1912920	8
206659.179	issue	WS	1912920	8
206660.034	cmplt	WS	1912920	8
206660.217	queue	WS	1852288	8
206660.247	queue	WS	1852296	8
206660.278	queue	WS	1852304	8
206660.278	queue	WS	1852312	8
206660.278	queue	WS	1852320	8
206660.308	queue	WS	1852328	8
206660.308	queue	WS	1852336	8
206660.339	queue	WS	1852344	8
206660.339	queue	WS	1852352	8
206660.400	issue	WS	1852288	72
206664.123	cmplt	WS	1852288	72
206664.245	queue	WS	1852360	8
206664.306	issue	WS	1852360	8
206665.191	cmplt	WS	1852360	8
206665.436	queue	WS	1852368	8
206665.466	queue	WS	1852376	8
206665.527	issue	WS	1852368	16
206666.412	cmplt	WS	1852368	16
206666.504	queue	WS	1852384	8
206666.565	issue	WS	1852384	8
206667.419	cmplt	WS	1852384	8
206688.692	queue	WS	2896592	80
206688.814	issue	WS	2896592	80
206695.834	cmplt	WS	2896592	80
206696.109	queue	WS	1852392	8
206696.109	queue	WS	1852400	8
206696.139	queue	WS	1852408	8
206696.139	queue	WS	1852416	8
206696.139	queue	WS	1852424	8
206696.170	queue	WS	1852432	8
206696.170	queue	WS	1852440	8
206696.261	issue	WS	1852392	56
206698.184	cmplt	WS	1852392	56
206698.306	queue	WS	1852448	8
206698.367	issue	WS	1852448	8
206699.283	cmplt	WS	1852448	8
207220.113	queue	W	1835528	8
207220.143	queue	W	1835696	8
207220.266	issue	W	1835696	8
207224.294	issue	W	1835528	8
207225.942	cmplt	W	1835696	8
207225.973	cmplt	W	1835528	8
211658.446	queue	WS	1916928	8
211658.569	issue	WS	1916928	8
211663.269	cmplt	WS	1916928	8
211663.940	queue	WS	1916928	8
211664.001	issue	WS	1916928	8
211664.917	cmplt	WS	1916928	8
211679.872	queue	WS	1912920	8
211679.994	issue	WS	1912920	8
211680.879	cmplt	WS	1912920	8
211681.062	queue	WS	1852456	8
211681.093	queue	WS	1852464	8
211681.123	queue	WS	1852472	8
211681.123	queue	WS	1852480	8
211681.123	queue	WS	1852488	8
211681.154	queue	WS	1852496	8
211681.154	queue	WS	1852504	8
211681.184	queue	WS	1852512	8
211681.184	queue	WS	1852520	8
211681.245	issue	WS	1852456	72
211685.701	cmplt	WS	1852456	72
211685.823	queue	WS	1852528	8
211685.884	issue	WS	1852528	8
211686.769	cmplt	WS	1852528	8
211687.044	queue	WS	1852536	8
211687.044	queue	WS	1852544	8
211687.105	issue	WS	1852536	16
211688.570	cmplt	WS	1852536	16
211688.631	queue	WS	1852552	8
211688.723	issue	WS	1852552	8
211689.547	cmplt	WS	1852552	8
211710.758	queue	WS	2896672	80
211710.880	issue	WS	2896672	80
211714.543	cmplt	WS	2896672	80
211714.818	queue	WS	1852560	8
211714.848	queue	WS	1852568	8
211714.848	queue	WS	1852576	8
211714.848	queue	WS	1852584	8
211714.879	queue	WS	1852592	8
211714.879	queue	WS	1852600	8
211714.909	queue	WS	1852608	8
211714.970	issue	WS	1852560	56
211719.701	cmplt	WS	1852560	56
211719.823	queue	WS	1852616	8
211719.884	issue	WS	1852616	8
211720.769	cmplt	WS	1852616	8
216670.746	queue	WS	1916928	8
216670.868	issue	WS	1916928	8
216675.935	cmplt	WS	1916928	8
216676.576	queue	WS	1916928	8
216676.606	issue	WS	1916928	8
216677.522	cmplt	WS	1916928	8
216692.904	queue	WS	1912920	8
216693.026	issue	WS	1912920	8
216693.911	cmplt	WS	1912920	8
216694.125	queue	WS	1852624	8
216694.125	queue	WS	1852632	8
216694.155	queue	WS	1852640	8
216694.155	queue	WS	1852648	8
216694.186	queue	WS	1852656	8
216694.186	queue	WS	1852664	8
216694.186	queue	WS	1852672	8
216694.216	queue	WS	1852680	8
216694.216	queue	WS	1852688	8
216694.308	issue	WS	1852624	72
216700.778	cmplt	WS	1852624	72
216700.900	queue	WS	1852696	8
216700.961	issue	WS	1852696	8
216701.907	cmplt	WS	1852696	8
216702.152	queue	WS	1852704	8
216702.152	queue	WS	1852712	8
216702.213	issue	WS	1852704	16
216703.159	cmplt	WS	1852704	16
216703.220	queue	WS	1852720	8
216703.281	issue	WS	1852720	8
216704.105	cmplt	WS	1852720	8
216725.378	queue	WS	2896752	80
216725.500	issue	WS	2896752	80
216727.972	cmplt	WS	2896752	80
216728.247	queue	WS	1852728	8
216728.277	queue	WS	1852736	8
216728.277	queue	WS	1852744	8
216728.277	queue	WS	1852752	8
216728.308	queue	WS	1852760	8
216728.308	queue	WS	1852768	8
216728.308	queue	WS	1852776	8
216728.399	issue	WS	1852728	56
216730.810	cmplt	WS	1852728	56
216730.932	queue	WS	1852784	8
216730.993	issue	WS	1852784	8
216731.909	cmplt	WS	1852784	8
217220.113	queue	W	1835696	8
217220.296	issue	W	1835696	8
217225.149	cmplt	W	1835696	8
221705.906	queue	WS	1916928	8
221706.028	issue	WS	1916928	8
221710.728	cmplt	WS	1916928	8
221711.369	queue	WS	1916928	8
221711.430	issue	WS	1916928	8
221712.284	cmplt	WS	1916928	8
221727.270	queue	WS	1912920	8
221727.392	issue	WS	1912920	8
221728.308	cmplt	WS	1912920	8
221728.491	queue	WS	1852792	8
221728.521	queue	WS	1852800	8
221728.552	queue	WS	1852808	8
221728.552	queue	WS	1852816	8
221728.552	queue	WS	1852824	8
221728.582	queue	WS	1852832	8
221728.582	queue	WS	1852840	8
221728.582	queue	WS	1852848	8
221728.613	queue	WS	1852856	8
221728.704	issue	WS	1852792	72
221731.207	cmplt	WS	1852792	72
221731.329	queue	WS	1852864	8
221731.390	issue	WS	1852864	8
221732.275	cmplt	WS	1852864	8
221732.550	queue	WS	1852872	8
221732.550	queue	WS	1852880	8
221732.611	issue	WS	1852872	16
221734.198	cmplt	WS	1852872	16
221734.259	queue	WS	1852888	8
221734.320	issue	WS	1852888	8
221735.175	cmplt	WS	1852888	8
221756.356	queue	WS	2896832	80
221756.447	issue	WS	2896832	80
221760.751	cmplt	WS	2896832	80
221760.995	queue	WS	1852896	8
221761.025	queue	WS	1852904	8
221761.056	queue	WS	1852912	8
221761.056	queue	WS	1852920	8
221761.056	queue	WS	1852928	8
221761.087	queue	WS	1852936	8
221761.087	queue	WS	1852944	8
221761.178	issue	WS	1852896	56
221765.451	cmplt	WS	1852896	56
221765.573	queue	WS	1852952	8
221765.634	issue	WS	1852952	8
221766.580	cmplt	WS	1852952	8

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
@ 2012-07-24 20:52     ` merez
  0 siblings, 0 replies; 44+ messages in thread
From: merez @ 2012-07-24 20:52 UTC (permalink / raw)
  To: merez
  Cc: merez, S, Venkatraman, Chris Ball, Muthu Kumar, linux-mmc,
	linux-arm-msm, open list, Seungwon Jeon

[-- Attachment #1: Type: text/plain, Size: 11955 bytes --]

Since the original trace logs are to big to be sent, I'm sending a parsed
version of the files.
Please let me know if the original trace logs are still required.

On Tue, July 24, 2012 1:23 pm, merez@codeaurora.org wrote:
> Attached are the trace logs for parallel read and write lmdd operations.
>
> On Tue, July 24, 2012 1:44 am, merez@codeaurora.org wrote:
>> On Mon, July 23, 2012 5:22 am, S, Venkatraman wrote:
>>> On Mon, Jul 23, 2012 at 5:13 PM,  <merez@codeaurora.org> wrote:
>>>> On Wed, July 18, 2012 12:26 am, Chris Ball wrote:
>>>>> Hi,  [removing Jens and the documentation list, since now we're
>> talking about the MMC side only]
>>>>> On Wed, Jul 18 2012, merez@codeaurora.org wrote:
>>>>>> Is there anything else that holds this patch from being pushed to
>>>> mmc-next?
>>>>> Yes, I'm still uncomfortable with the write packing patchsets for a
>>>> couple of reasons, and I suspect that the sum of those reasons means
>>>> that
>>>> we should probably plan on holding off merging it until after 3.6.
>>>>> Here are the open issues; please correct any misunderstandings: With
>> Seungwon's patchset ("Support packed write command"):
>>>>> * I still don't have a good set of representative benchmarks showing
>>>>>   what kind of performance changes come with this patchset.  It seems
>>>> like we've had a small amount of testing on one controller/eMMC part
>>>> combo
>>>> from Seungwon, and an entirely different test from Maya, and the
>> results
>>>> aren't documented fully anywhere to the level of describing what the
>> hardware was, what the test was, and what the results were before and
>> after the patchset.
>>>> Currently, there is only one card vendor that supports packed
>>>> commands.
>> Following are our sequential write (LMDD) test results on 2 of our
>> targets
>>>> (in MB/s):
>>>>                        No packing        packing
>>>> Target 1 (SDR 50MHz)     15               25
>>>> Target 2 (DDR 50MHz)     20               30
>>>>> With the reads-during-writes regression:
>>>>> * Venkat still has open questions about the nature of the read
>>>>>   regression, and thinks we should understand it with blktrace before
>>>> trying to fix it.  Maya has a theory about writes overwhelming reads,
>>>> but
>>>> Venkat doesn't understand why this would explain the observed
>>>> bandwidth drop.
>>>> The degradation of read due to writes is not a new behavior and exists
>> also without the write packing feature (which only increases the
>> degradation). Our investigation of this phenomenon led us to the
>> Conclusion that a new scheduling policy should be used for mobile
>> devices,
>>>> but this is not related to the current discussion of the write packing
>> feature.
>>>> The write packing feature increases the degradation of read due to
>> write
>>>> since it allows the MMC to fetch many write requests in a row, instead
>>>> of
>>>> fetching only one at a time.  Therefore some of the read requests will
>> have to wait for the completion of more write requests before they can
>> be
>>>> issued.
>>>
>>> I am a bit puzzled by this claim. One thing I checked carefully when
>> reviewing write packing patches from SJeon was that the code didn't
>> plough through a mixed list of reads and writes and selected only
>> writes.
>>> This section of the code in "mmc_blk_prep_packed_list()", from v8
>> patchset..
>>> <Quote>
>>> +               if (rq_data_dir(cur) != rq_data_dir(next)) {
>>> +                       put_back = 1;
>>> +                       break;
>>> +               }
>>> </Quote>
>>>
>>> means that once a read is encountered in the middle of write packing,
>> the packing is stopped at that point and it is executed. Then the next
>> blk_fetch_request should get the next read and continue as before.
>>>
>>> IOW, the ordering of reads and writes is _not_ altered when using
>>> packed
>> commands.
>>> For example if there were 5 write requests, followed by 1 read,
>>> followed by 5 more write requests in the request_queue, the first 5
>> writes will be executed as one "packed command", then the read will be
>> executed, and then the remaining 5 writes will be executed as one
>> "packed command". So the read does not have to wait any more than it
>> waited before (packing feature)
>>
>> Let me try to better explain with your example.
>> Without packing the MMC layer will fetch 2 write requests and wait for
>> the
>> first write request completion before fetching another write request.
>> During this time the read request could be inserted into the CFQ and
>> since
>> it has higher priority than the async write it will be dispatched in the
>> next fetch. So, the result would be 2 write requests followed by one
>> read
>> request and the read would have to wait for completion of only 2 write
>> requests.
>> With packing, all the 5 write requests will be fetched in a row, and
>> then
>> the read will arrive and be dispatched in the next fetch. Then the read
>> will have to wait for the completion of 5 write requests.
>>
>> Few more clarifications:
>> Due to the plug list mechanism in the block layer the applications can
>> "aggregate" several requests to be inserted into the scheduler before
>> waking the MMC queue thread.
>> This leads to a situation where there are several write requests in the
>> CFQ queue when MMC starts to do the fetches.
>>
>> If the read was inserted while we are building the packed command then I
>> agree that we should have seen less effect on the read performance.
>> However, the write packing statistics show that in most of the cases the
>> packing stopped due to an empty queue, meaning that the read was
>> inserted
>> to the CFQ after all the pending write requests were fetched and packed.
>>
>> Following is an example for write packing statistics of a READ/WRITE
>> parallel scenario:
>> write packing statistics:
>> Packed 1 reqs - 448 times
>> Packed 2 reqs - 38 times
>> Packed 3 reqs - 23 times
>> Packed 4 reqs - 30 times
>> Packed 5 reqs - 14 times
>> Packed 6 reqs - 8 times
>> Packed 7 reqs - 4 times
>> Packed 8 reqs - 1 times
>> Packed 10 reqs - 1 times
>> Packed 34 reqs - 1 times
>> stopped packing due to the following reasons:
>> 2 times: wrong data direction (meaning a READ was fetched and stopped
>> the
>> packing)
>> 1 times: flush or discard
>> 565 times: empty queue (meaning blk_fetch_request returned NULL)
>>
>>>
>>> And I requested blktrace to confirm that this is indeed the behaviour.
>>
>> The trace logs show that in case of no packing, there are maximum of 3-4
>> requests issued before a read request, while with packing there are also
>> cases of 6 and 7 requests dispatched before a read request.
>>
>> I'm waiting for an approval for sharing the block trace logs.
>> Since this is a simple test to run you can collect the trace logs and
>> let
>> us know if you reach other conclusions.
>>
>> Thanks,
>> Maya
>>
>>>
>>> Your rest of the arguments anyway depend on this assertion, so can you
>> please clarify this.
>>>
>>>> To overcome this behavior, the solution would be to stop the write
>>>> packing
>>>> when a read request is fetched, and this is the algorithm suggested by
>>>> the
>>>> write packing control.
>>>> Let's also keep in mind that lmdd benchmarking doesn't fully reflect
>> the
>>>> real life in which there are not many scenarios that cause massive
>>>> read
>> and write operations. In our user-common-scenarios tests we saw that in
>> many cases the write packing decreases the read latency. It can happen
>> in
>>>> cases where the same amount of write requests is fetched with and
>>>> without
>>>> packing. In such a case the write packing decreases the transfer time
>> of
>>>> the write requests and causes the read request to wait for a shorter
>>>> time.
>>>>> With Maya's patchset ("write packing control"):
>>>>> * Venkat thinks that HPI should be used, and the number-of-requests
>>>>>   metric is too coarse, and it doesn't let you disable packing at the
>>>> right time, and you're essentially implementing a new I/O scheduler
>>>> inside
>>>> the MMC subsystem without understanding the root cause for why that's
>> necessary.
>>>> According to our measurements the stop transmission (CMD12) + HPI is a
>> heavy operation that may take up to several milliseconds. Therefore, a
>> massive usage of HPI can cause a degradation of performance.
>>>> In addition, it doesn’t provide a complete solution for read during
>>>> write
>>>> since it doesn’t solve the problem of “what to do with the interrupted
>> write request remainder?”.  That is, a common interrupting read request
>> will usually be followed by another one. If we just continue to write
>> the
>>>> interrupted write request remainder we will probably get another HPI
>> due
>>>> to the second read request, so eventually we may end up with lots of
>>>> HPIs
>>>> and write retries. A complete solution will be: stop the current
>>>> write,
>> change packing mode to non-packing, serve the read request, push back
>> the
>>>> write remainders to the block I/O scheduler and let him schedule them
>> again probably after the read burst ends (this requires block layer
>> support of course).
>>>> Regarding the packing control, there seem to be a confusion since the
>> number-of-requests is the trigger for *enabling* the packing (after it
>> was
>>>> disabled), while a single read request disable packing. Therefore, the
>> packing is stopped at the right time.
>>>> The packing control doesn't add any scheduling policy to the MMC
>>>> layer.
>> The write packing feature is the one changing the scheduling policy by
>> fetching many write requests in a row without a delay that allows read
>> requests to come in the middle.
>>>> By disabling the write packing, the write packing control returns the
>>>> old
>>>> scheduling policy. It causes the MMC to fetch the requests one by one,
>> thus read requests are served as before.
>>>> It is correct that the trigger for enabling the write packing control
>> should be adjusted per platform and doesn't give a complete solution.
>> As
>>>> I
>>>> mentioned above, the complete solution will include the usage of write
>> packing control, a re-insert of the write packed to the scheduler when
>> a
>>>> read request is fetched and usage of HPI to stop the packing that is
>> already transferred.
>>>> To summarize -
>>>> We recommend including the write packing in 3.6 due to the following
>> reasons:
>>>> 1. It significantly improves the write throughput
>>>> 2. In some of the cases it even decreases the read latency
>>>> 3. The read degradation in simultaneous read-write flows already
>>>> exist,
>> even without this feature
>>>> As for the write packing control, it can be included in 3.6 to supply
>>>> a
>> partial solution for the read degradation or we can postpone it to 3.7
>> and
>>>> integrate it as part of the complete solution.
>>>> Thanks,
>>>> Maya
>>>>> My sense is that there's no way we can solve all of these to
>>>>> satisfaction in the next week (which is when the merge window will
>>>> open), but that by waiting a cycle we might come up with some good
>> answers.
>>>>> What do other people think?  If you're excited about these patchsets,
>>>> now would be a fine time to come forward with your benchmarking
>>>> results
>> and to help understand the reads-during-writes regression.
>>>
>>
>>
>> --
>> Sent by consultant of Qualcomm Innovation Center, Inc.
>> Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum
>>
>>
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>
>
>
> --
> Sent by consultant of Qualcomm Innovation Center, Inc.
> Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum
>
>


-- 
Sent by consultant of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum

[-- Attachment #2: no_packing_parallel_read_write.txt --]
[-- Type: text/plain, Size: 240934 bytes --]

505.906	queue	R	1912400	32
506.058	issue	R	1912400	32
520.891	queue	RA	1835552	8
520.983	issue	R	1835552	8
521.074	queue	RA	1835568	8
521.135	queue	RA	1835576	8
521.196	queue	RA	1835584	8
521.227	queue	RA	1835592	8
521.257	queue	RA	1835600	8
521.318	queue	RA	1835608	8
521.349	queue	RA	1835616	8
521.410	cmplt	R	1835552	8
521.471	issue	R	1835568	56
521.532	queue	RA	1835624	8
521.593	queue	RA	1835632	8
521.654	queue	RA	1835640	8
521.685	queue	RA	1835648	8
521.746	queue	RA	1835656	8
521.776	queue	RA	1835664	8
521.807	queue	RA	1835672	8
521.868	queue	RA	1835680	8
521.898	queue	RA	1835688	8
521.929	queue	RA	1835712	8
521.990	queue	RA	1835720	8
522.051	queue	RA	1835728	8
522.081	queue	RA	1835736	8
522.112	queue	RA	1835744	8
522.173	queue	RA	1835752	8
522.204	queue	RA	1835760	8
522.265	queue	RA	1835768	8
522.295	queue	RA	1835776	8
522.326	cmplt	R	1835568	56
522.387	issue	R	1835624	72
522.448	issue	R	1835712	64
522.509	queue	RA	1835784	8
522.570	queue	RA	1835792	8
522.600	queue	RA	1835800	8
522.631	queue	RM	1835544	8
523.485	cmplt	R	1835624	72
523.516	issue	RM	1835544	8
524.371	cmplt	R	1835712	64
524.432	issue	R	1835776	32
524.645	cmplt	RM	1835544	8
540.302	queue	R	1982464	512
547.505	queue	R	1982976	256
547.871	queue	R	1983232	256
551.381	queue	R	1983488	256
554.891	queue	R	1983744	256
558.401	queue	R	1984000	256
561.972	queue	R	1984256	256
565.543	queue	R	1984512	256
569.083	queue	R	1984768	256
572.593	queue	R	1985024	256
576.164	queue	R	1985280	256
579.704	queue	R	1985536	256
583.214	queue	R	1985792	256
586.724	queue	R	1986048	256
590.295	queue	R	1986304	256
593.865	queue	R	1986560	256
597.436	queue	R	1986816	256
600.916	queue	R	1987072	256
604.425	queue	R	1987328	256
607.996	queue	R	1987584	256
611.537	queue	R	1987840	256
615.077	queue	R	1988096	256
618.587	queue	R	1988352	256
622.097	queue	R	1988608	256
625.668	queue	R	1988864	256
629.239	queue	R	1989120	256
632.748	queue	R	1989376	256
636.289	queue	R	1989632	256
639.799	queue	R	1989888	256
643.400	queue	R	1990144	256
646.940	queue	R	1990400	256
650.511	queue	R	1990656	256
653.991	queue	R	1990912	256
657.561	queue	R	1991168	256
661.041	queue	R	1991424	256
664.581	queue	R	1991680	256
668.152	queue	R	1991936	256
671.692	queue	R	1992192	256
675.202	queue	R	1992448	256
678.743	queue	R	1992704	256
682.283	queue	R	1992960	256
685.823	queue	R	1993216	256
689.394	queue	R	1993472	256
692.904	queue	R	1993728	256
696.414	queue	R	1993984	256
697.268	queue	W	1835696	8
699.985	queue	R	1994240	256
703.495	queue	R	1994496	256
703.800	queue	R	2097672	8
707.004	queue	R	1994752	256
710.453	queue	R	1995008	256
713.902	queue	R	1995264	256
717.351	queue	R	1995520	256
720.769	queue	R	1995776	256
724.218	queue	R	1996032	256
727.667	queue	R	1996288	256
731.085	queue	R	1996544	256
734.534	queue	R	1996800	256
737.952	queue	R	1997056	256
741.401	queue	R	1997312	256
748.360	queue	R	2359296	8
754.921	queue	R	1997568	256
755.288	queue	R	1997824	256
758.736	queue	R	1998080	256
762.185	queue	R	1998336	256
765.604	queue	R	1998592	256
769.052	queue	R	1998848	256
772.471	queue	R	1999104	256
775.919	queue	R	1999360	256
779.338	queue	R	1999616	256
782.787	queue	R	1999872	256
786.205	queue	R	2000128	256
789.654	queue	R	2000384	256
793.072	queue	R	2000640	256
796.521	queue	R	2000896	256
799.939	queue	R	2001152	256
803.357	queue	R	2001408	256
806.806	queue	R	2001664	256
810.224	queue	R	2001920	256
813.673	queue	R	2002176	256
817.091	queue	R	2002432	256
820.540	queue	R	2002688	256
823.989	queue	R	2002944	256
827.407	queue	R	2003200	256
830.826	queue	R	2003456	256
834.244	queue	R	2003712	256
837.723	queue	R	2003968	256
841.172	queue	R	2004224	256
844.621	queue	R	2004480	256
848.070	queue	R	2004736	256
851.518	queue	R	2004992	256
854.967	queue	R	2005248	256
858.385	queue	R	2005504	256
861.834	queue	R	2005760	256
865.283	queue	R	2006016	256
868.732	queue	R	2006272	256
872.181	queue	R	2006528	256
875.629	queue	R	2006784	256
879.048	queue	R	2007040	256
882.497	queue	R	2007296	256
885.945	queue	R	2007552	256
889.394	queue	R	2007808	256
892.843	queue	R	2008064	256
896.322	queue	R	2008320	256
899.771	queue	R	2008576	256
903.220	queue	R	2008832	256
906.669	queue	R	2009088	256
910.148	queue	R	2009344	256
913.566	queue	R	2009600	256
917.015	queue	R	2009856	256
920.464	queue	R	2010112	256
923.913	queue	R	2010368	256
927.362	queue	R	2010624	256
930.810	queue	R	2010880	256
934.259	queue	R	2011136	256
937.708	queue	R	2011392	256
941.157	queue	R	2011648	256
944.606	queue	R	2011904	256
948.054	queue	R	2012160	256
951.473	queue	R	2012416	256
954.921	queue	R	2012672	256
958.370	queue	R	2012928	256
961.819	queue	R	2013184	256
963.498	queue	W	2523136	1024
963.955	queue	W	2524160	1024
964.413	queue	W	2525184	1024
964.871	queue	W	2526208	1024
965.329	queue	W	2527232	1024
965.787	queue	W	2528256	1024
966.214	queue	W	2529280	1024
966.702	queue	W	2530304	1024
980.009	issue	R	1074912	24
980.101	issue	R	1074872	16
980.559	queue	W	2531328	1024
981.016	queue	W	2532352	1024
981.444	queue	W	2533376	1024
981.901	queue	W	2534400	1024
982.390	queue	W	2535424	1024
982.878	queue	W	2536448	1024
983.427	queue	W	2537472	1024
983.916	queue	W	2538496	1024
986.235	queue	W	2539520	1024
986.663	queue	W	2540544	1024
987.120	queue	W	2541568	1024
987.761	queue	W	2542592	1024
988.219	queue	W	2543616	1024
988.830	queue	W	2544640	1024
989.287	queue	W	2545664	1024
989.837	queue	W	2546688	1024
990.081	issue	R	2012928	512
992.523	queue	W	2547712	1024
992.980	queue	W	2548736	1024
993.408	queue	W	2549760	1024
993.835	queue	W	2550784	1024
994.293	queue	W	2551808	1024
994.720	queue	W	2552832	1024
995.117	queue	W	2553856	1024
995.575	queue	W	2554880	1024
997.070	queue	R	2013440	256
997.436	queue	R	2013696	256
997.497	issue	R	2013440	512
1002.045	queue	W	2555904	1024
1002.472	queue	W	2556928	1024
1002.899	queue	W	2557952	1024
1003.357	queue	W	2558976	1024
1003.785	queue	W	2560000	1024
1004.029	cmplt	R	2013440	512
1004.486	queue	R	2013952	256
1004.853	queue	R	2014208	256
1004.914	issue	R	2013952	512
1011.811	queue	R	2014464	256
1012.208	queue	R	2014720	256
1012.635	queue	W	2561024	1024
1013.063	queue	W	2562048	1024
1013.521	queue	W	2563072	1024
1013.948	queue	W	2564096	1024
1014.345	queue	W	2565120	1024
1014.833	queue	W	2566144	1024
1015.687	queue	R	2014976	256
1015.749	queue	W	2567168	1024
1015.932	queue	W	2568192	368
1019.167	queue	R	2015232	256
1022.677	queue	R	2015488	256
1026.186	queue	R	2015744	256
1029.727	queue	R	2016000	256
1033.267	queue	R	2016256	256
1036.838	queue	R	2016512	256
1040.378	queue	R	2016768	256
1043.919	queue	R	2017024	256
1047.429	queue	R	2017280	256
1050.969	queue	R	2017536	256
1054.540	queue	R	2017792	256
1058.050	queue	R	2018048	256
1061.590	queue	R	2018304	256
1065.130	queue	R	2018560	256
1068.701	queue	R	2018816	256
1072.242	queue	R	2019072	256
1075.721	queue	R	2019328	256
1079.231	queue	R	2019584	256
1082.771	queue	R	2019840	256
1086.312	queue	R	2020096	256
1089.852	queue	R	2020352	256
1093.423	queue	R	2020608	256
1096.933	queue	R	2020864	256
1100.443	queue	R	2021120	256
1103.983	queue	R	2021376	256
1107.523	queue	R	2021632	256
1111.064	queue	R	2021888	256
1114.635	queue	R	2022144	256
1118.175	queue	R	2022400	256
1121.685	queue	R	2022656	256
1125.225	queue	R	2022912	256
1128.765	queue	R	2023168	256
1132.275	queue	R	2023424	256
1135.816	queue	R	2023680	256
1139.356	queue	R	2023936	256
1142.927	queue	R	2024192	256
1146.467	queue	R	2024448	256
1149.184	queue	W	2568560	1024
1150.008	queue	R	2024704	256
1150.099	queue	W	2569584	1024
1150.526	queue	W	2570608	1024
1151.717	queue	W	2571632	656
1153.487	queue	R	2024960	256
1156.966	queue	R	2025216	256
1157.546	queue	W	2572288	1024
1157.973	queue	W	2573312	1024
1158.401	queue	W	2574336	1024
1158.889	queue	W	2575360	1024
1159.316	queue	W	2576384	1024
1159.744	queue	W	2577408	1024
1160.476	queue	R	2025472	256
1164.016	queue	R	2025728	256
1164.230	queue	W	2578432	1024
1164.688	queue	W	2579456	1024
1165.115	queue	W	2580480	1024
1165.543	queue	W	2581504	1024
1165.970	queue	W	2582528	1024
1166.428	queue	W	2583552	1024
1166.824	queue	W	2584576	1024
1167.465	queue	R	2025984	256
1171.006	queue	R	2026240	256
1171.280	queue	W	2585600	1024
1171.738	queue	W	2586624	1024
1172.165	queue	W	2587648	1024
1174.485	queue	R	2026496	256
1177.995	queue	R	2026752	256
1178.239	queue	W	2588672	1024
1178.666	queue	W	2589696	1024
1179.094	queue	W	2590720	1024
1179.521	queue	W	2591744	1024
1179.979	queue	W	2592768	1024
1180.436	queue	W	2593792	1024
1180.864	queue	W	2594816	1024
1181.474	queue	R	2027008	256
1184.984	queue	R	2027264	256
1185.320	queue	W	2595840	1024
1185.747	queue	W	2596864	1024
1186.174	queue	W	2597888	1024
1186.602	queue	W	2598912	1024
1187.059	queue	W	2599936	1024
1187.487	queue	W	2600960	1024
1187.914	queue	W	2601984	1024
1188.433	queue	R	2027520	256
1191.943	queue	R	2027776	256
1192.339	queue	W	2603008	1024
1192.767	queue	W	2604032	1024
1193.713	queue	W	2605056	1024
1194.171	queue	W	2606080	1024
1194.567	queue	W	2607104	1024
1195.422	queue	R	2028032	256
1198.932	queue	R	2028288	256
1199.115	queue	W	2608128	1024
1199.298	queue	W	2609152	368
1202.442	queue	R	2028544	256
1206.043	queue	R	2028800	256
1209.583	queue	R	2029056	256
1213.154	queue	R	2029312	256
1216.695	queue	R	2029568	256
1220.266	queue	R	2029824	256
1223.806	queue	R	2030080	256
1227.377	queue	R	2030336	256
1230.856	queue	R	2030592	256
1234.396	queue	R	2030848	256
1237.906	queue	R	2031104	256
1240.378	queue	W	2609520	1024
1240.775	queue	W	2610544	1024
1241.447	queue	R	2031360	256
1241.660	queue	W	2611568	1024
1242.088	queue	W	2612592	1024
1242.515	queue	W	2613616	1024
1242.912	queue	W	2614640	1024
1243.308	queue	W	2615664	1024
1243.766	queue	W	2616688	1024
1244.163	queue	W	2617712	1024
1244.957	queue	R	2031616	256
1245.048	queue	W	2618736	1024
1245.445	queue	W	2619760	1024
1246.025	queue	W	2620784	656
1246.421	queue	R	2621960	8
1248.405	queue	R	2031872	256
1251.824	queue	R	2032128	256
1255.272	queue	R	2032384	256
1258.721	queue	R	2032640	256
1262.139	queue	R	2032896	256
1265.588	queue	R	2033152	256
1269.007	queue	R	2033408	256
1272.425	queue	R	2033664	256
1278.865	queue	W	2637824	1024
1279.292	queue	W	2638848	1024
1279.719	queue	W	2639872	1024
1280.208	queue	W	2640896	1024
1280.360	queue	W	2641920	368
1296.994	queue	R	2033920	256
1297.391	queue	R	2034176	256
1300.839	queue	R	2034432	256
1304.258	queue	R	2034688	256
1307.706	queue	R	2034944	256
1311.125	queue	R	2035200	256
1314.573	queue	R	2035456	256
1317.992	queue	R	2035712	256
1321.441	queue	R	2035968	256
1324.859	queue	R	2036224	256
1328.308	queue	R	2036480	256
1331.756	queue	R	2036736	256
1335.205	queue	R	2036992	256
1338.624	queue	R	2037248	256
1342.072	queue	R	2037504	256
1345.491	queue	R	2037760	256
1348.909	queue	R	2038016	256
1352.358	queue	R	2038272	256
1355.807	queue	R	2038528	256
1359.255	queue	R	2038784	256
1362.674	queue	R	2039040	256
1397.070	queue	R	2039296	256
1397.436	queue	R	2039552	256
1400.885	queue	R	2039808	256
1404.303	queue	R	2040064	256
1407.722	queue	R	2040320	256
1410.163	queue	WS	1845424	8
1410.194	queue	WS	1845432	8
1410.194	queue	WS	1845440	8
1410.224	queue	WS	1845448	8
1410.224	queue	WS	1845456	8
1410.255	queue	WS	1845464	8
1410.255	queue	WS	1845472	8
1410.255	queue	WS	1845480	8
1410.285	queue	WS	1845488	8
1410.285	queue	WS	1845496	8
1410.285	queue	WS	1845504	8
1410.316	queue	WS	1845512	8
1410.316	queue	WS	1845520	8
1410.346	queue	WS	1845528	8
1411.170	queue	R	2040576	256
1414.589	queue	R	2040832	256
1418.038	queue	R	2041088	256
1421.486	queue	R	2041344	256
1424.905	queue	R	2041600	256
1428.353	queue	R	2041856	256
1431.833	queue	R	2042112	256
1435.251	queue	R	2042368	256
1438.700	queue	R	2042624	256
1442.118	queue	R	2042880	256
1445.567	queue	R	2043136	256
1448.985	queue	R	2043392	256
1452.434	queue	R	2043648	256
1455.852	queue	R	2043904	256
1459.301	queue	R	2044160	256
1462.719	queue	R	2044416	256
1477.033	queue	R	2044672	256
1477.430	queue	R	2044928	256
1480.848	queue	R	2045184	256
1484.328	queue	R	2045440	256
1487.716	queue	R	2045696	256
1491.164	queue	R	2045952	256
1494.613	queue	R	2046208	256
1498.031	queue	R	2046464	256
1501.450	queue	R	2046720	256
1504.899	queue	R	2046976	256
1508.317	queue	R	2047232	256
1511.766	queue	R	2047488	256
1515.214	queue	R	2047744	256
1518.633	queue	R	2048000	256
1522.081	queue	R	2048256	256
1525.652	queue	R	2048512	256
1529.132	queue	R	2048768	256
1532.580	queue	R	2049024	256
1536.060	queue	R	2049280	256
1539.509	queue	R	2049536	256
1542.957	queue	R	2049792	256
1557.088	queue	R	2050048	256
1557.455	queue	R	2050304	256
1560.934	queue	R	2050560	256
1564.383	queue	R	2050816	256
1567.832	queue	R	2051072	256
1571.311	queue	R	2051328	256
1574.790	queue	R	2051584	256
1578.239	queue	R	2051840	256
1581.688	queue	R	2052096	256
1585.137	queue	R	2052352	256
1588.616	queue	R	2052608	256
1592.065	queue	R	2052864	256
1595.514	queue	R	2053120	256
1598.962	queue	R	2053376	256
1602.411	queue	R	2053632	256
1605.890	queue	R	2053888	256
1609.339	queue	R	2054144	256
1612.819	queue	R	2054400	256
1616.267	queue	R	2054656	256
1619.716	queue	R	2054912	256
1623.165	queue	R	2055168	256
1630.032	issue	R	2054912	512
1636.991	queue	R	2055424	256
1637.387	queue	R	2055680	256
1640.867	queue	R	2055936	256
1644.316	queue	R	2056192	256
1647.795	queue	R	2056448	256
1651.244	queue	R	2056704	256
1654.693	queue	R	2056960	256
1658.141	queue	R	2057216	256
1661.621	queue	R	2057472	256
1665.069	queue	R	2057728	256
1668.518	queue	R	2057984	256
1671.998	queue	R	2058240	256
1675.446	queue	R	2058496	256
1678.895	queue	R	2058752	256
1682.344	queue	R	2059008	256
1685.823	queue	R	2059264	256
1689.272	queue	R	2059520	256
1692.721	queue	R	2059776	256
1696.200	queue	R	2060032	256
1699.649	queue	R	2060288	256
1703.098	queue	R	2060544	256
1727.087	queue	R	2060800	256
1727.484	queue	R	2061056	256
1730.993	queue	R	2061312	256
1734.503	queue	R	2061568	256
1738.013	queue	R	2061824	256
1741.523	queue	R	2062080	256
1745.033	queue	R	2062336	256
1748.543	queue	R	2062592	256
1752.052	queue	R	2062848	256
1755.562	queue	R	2063104	256
1759.042	queue	R	2063360	256
1762.552	queue	R	2063616	256
1766.061	queue	R	2063872	256
1769.571	queue	R	2064128	256
1773.081	queue	R	2064384	256
1776.591	queue	R	2064640	256
1780.162	queue	R	2064896	256
1783.580	queue	R	2065152	256
1787.029	queue	R	2065408	256
1790.508	queue	R	2065664	256
1807.050	queue	R	2065920	256
1807.447	queue	R	2066176	256
1810.926	queue	R	2066432	256
1814.375	queue	R	2066688	256
1817.793	queue	R	2066944	256
1821.242	queue	R	2067200	256
1824.691	queue	R	2067456	256
1828.140	queue	R	2067712	256
1831.619	queue	R	2067968	256
1835.159	queue	R	2068224	256
1838.639	queue	R	2068480	256
1842.088	queue	R	2068736	256
1845.536	queue	R	2068992	256
1848.985	queue	R	2069248	256
1852.434	queue	R	2069504	256
1855.883	queue	R	2069760	256
1859.362	queue	R	2070016	256
1862.811	queue	R	2070272	256
1866.260	queue	R	2070528	256
1869.739	queue	R	2070784	256
1873.157	queue	R	2071040	256
1897.085	queue	R	2071296	256
1897.513	queue	R	2071552	256
1900.992	queue	R	2071808	256
1904.502	queue	R	2072064	256
1908.012	queue	R	2072320	256
1911.552	queue	R	2072576	256
1915.031	queue	R	2072832	256
1918.572	queue	R	2073088	256
1922.051	queue	R	2073344	256
1925.561	queue	R	2073600	256
1928.979	queue	R	2073856	256
1932.428	queue	R	2074112	256
1935.877	queue	R	2074368	256
1939.356	queue	R	2074624	256
1942.774	queue	R	2074880	256
1946.254	queue	R	2075136	256
1949.702	queue	R	2075392	256
1953.151	queue	R	2075648	256
1956.631	queue	R	2075904	256
1960.171	queue	R	2076160	256
1963.650	queue	R	2076416	256
1977.110	queue	R	2076672	256
1977.476	queue	R	2076928	256
1981.016	queue	R	2077184	256
1984.496	queue	R	2077440	256
1987.975	queue	R	2077696	256
1991.485	queue	R	2077952	256
1994.995	queue	R	2078208	256
1998.474	queue	R	2078464	256
2001.984	queue	R	2078720	256
2005.494	queue	R	2078976	256
2009.004	queue	R	2079232	256
2012.513	queue	R	2079488	256
2016.023	queue	R	2079744	256
2019.533	queue	R	2080000	256
2023.012	queue	R	2080256	256
2026.492	queue	R	2080512	256
2030.002	queue	R	2080768	256
2033.389	queue	R	2081024	256
2036.838	queue	R	2081280	256
2040.287	queue	R	2081536	256
2057.104	queue	R	2081792	256
2057.470	queue	R	2082048	256
2061.010	queue	R	2082304	256
2064.490	queue	R	2082560	256
2068.030	queue	R	2082816	256
2071.509	queue	R	2083072	256
2075.050	queue	R	2083328	256
2078.559	queue	R	2083584	256
2082.039	queue	R	2083840	256
2085.518	queue	R	2084096	256
2088.997	queue	R	2084352	256
2092.416	queue	R	2084608	256
2095.864	queue	R	2084864	256
2099.313	queue	R	2085120	256
2102.762	queue	R	2085376	256
2106.211	queue	R	2085632	256
2109.660	queue	R	2085888	256
2113.139	queue	R	2086144	256
2116.588	queue	R	2086400	256
2120.067	queue	R	2086656	256
2123.485	queue	R	2086912	256
2137.098	queue	R	2087168	256
2137.464	queue	R	2087424	256
2140.974	queue	R	2087680	256
2144.483	queue	R	2087936	256
2148.024	queue	R	2088192	256
2151.503	queue	R	2088448	256
2155.043	queue	R	2088704	256
2158.492	queue	R	2088960	256
2161.941	queue	R	2089216	256
2165.420	queue	R	2089472	256
2168.839	queue	R	2089728	256
2172.318	queue	R	2089984	256
2175.736	queue	R	2090240	256
2179.216	queue	R	2090496	256
2182.664	queue	R	2090752	256
2186.144	queue	R	2091008	256
2189.593	queue	R	2091264	256
2193.041	queue	R	2091520	256
2196.490	queue	R	2091776	256
2199.939	queue	R	2092032	256
2203.418	queue	R	2092288	256
2217.091	queue	R	2092544	256
2217.458	queue	R	2092800	256
2220.998	queue	R	2093056	256
2224.508	queue	R	2093312	256
2227.987	queue	R	2093568	256
2231.497	queue	R	2093824	256
2235.037	queue	R	2094080	256
2238.547	queue	R	2094336	256
2242.088	queue	R	2094592	256
2245.597	queue	R	2094848	256
2249.107	queue	R	2095104	256
2252.526	queue	R	2095360	256
2255.974	queue	R	2095616	256
2259.423	queue	R	2095872	256
2262.841	queue	R	2096128	256
2266.321	queue	R	2096384	256
2269.770	queue	R	2096640	256
2273.218	queue	R	2096896	256
2276.698	queue	R	2113536	256
2280.177	queue	R	2113792	256
2283.717	queue	R	2114048	256
2297.055	queue	R	2114304	256
2297.421	queue	R	2114560	256
2300.961	queue	R	2114816	256
2304.471	queue	R	2115072	256
2307.981	queue	R	2115328	256
2311.430	queue	R	2115584	256
2314.879	queue	R	2115840	256
2318.297	queue	R	2116096	256
2321.746	queue	R	2116352	256
2325.195	queue	R	2116608	256
2328.643	queue	R	2116864	256
2332.123	queue	R	2117120	256
2335.602	queue	R	2117376	256
2339.142	queue	R	2117632	256
2342.591	queue	R	2117888	256
2346.040	queue	R	2118144	256
2349.489	queue	R	2118400	256
2352.938	queue	R	2118656	256
2356.386	queue	R	2118912	256
2359.866	queue	R	2119168	256
2363.315	queue	R	2119424	256
2377.140	queue	R	2119680	256
2377.537	queue	R	2119936	256
2381.047	queue	R	2120192	256
2384.587	queue	R	2120448	256
2388.128	queue	R	2120704	256
2391.607	queue	R	2120960	256
2395.056	queue	R	2121216	256
2398.505	queue	R	2121472	256
2401.953	queue	R	2121728	256
2405.402	queue	R	2121984	256
2408.851	queue	R	2122240	256
2412.300	queue	R	2122496	256
2415.749	queue	R	2122752	256
2419.228	queue	R	2123008	256
2422.677	queue	R	2123264	256
2426.125	queue	R	2123520	256
2429.574	queue	R	2123776	256
2433.054	queue	R	2124032	256
2436.502	queue	R	2124288	256
2439.982	queue	R	2124544	256
2443.430	queue	R	2124800	256
2457.073	queue	R	2125056	256
2457.439	queue	R	2125312	256
2460.919	queue	R	2125568	256
2464.367	queue	R	2125824	256
2467.786	queue	R	2126080	256
2471.265	queue	R	2126336	256
2474.714	queue	R	2126592	256
2478.163	queue	R	2126848	256
2481.611	queue	R	2127104	256
2485.091	queue	R	2127360	256
2488.540	queue	R	2127616	256
2491.988	queue	R	2127872	256
2495.437	queue	R	2128128	256
2498.917	queue	R	2128384	256
2502.365	queue	R	2128640	256
2505.814	queue	R	2128896	256
2509.263	queue	R	2129152	256
2512.742	queue	R	2129408	256
2516.191	queue	R	2129664	256
2519.670	queue	R	2129920	256
2523.119	queue	R	2130176	256
2537.006	queue	R	2130432	256
2537.372	queue	R	2130688	256
2540.852	queue	R	2130944	256
2544.331	queue	R	2131200	256
2547.780	queue	R	2131456	256
2551.228	queue	R	2131712	256
2554.708	queue	R	2131968	256
2558.157	queue	R	2132224	256
2561.605	queue	R	2132480	256
2565.085	queue	R	2132736	256
2568.564	queue	R	2132992	256
2571.982	queue	R	2133248	256
2575.492	queue	R	2133504	256
2578.910	queue	R	2133760	256
2582.359	queue	R	2134016	256
2585.839	queue	R	2134272	256
2589.287	queue	R	2134528	256
2592.767	queue	R	2134784	256
2596.185	queue	R	2135040	256
2599.634	queue	R	2135296	256
2603.113	queue	R	2135552	256
2626.766	cmplt	R	2135296	512
2628.201	queue	R	2135808	256
2628.292	issue	R	2135808	256
2628.811	queue	R	2136064	256
2631.711	cmplt	R	2135808	256
2631.802	issue	R	2136064	256
2632.352	queue	R	2136320	256
2635.221	cmplt	R	2136064	256
2635.343	issue	R	2136320	256
2635.922	queue	R	2136576	256
2638.791	cmplt	R	2136320	256
2638.883	issue	R	2136576	256
2639.463	queue	R	2136832	256
2642.271	cmplt	R	2136576	256
2642.362	issue	R	2136832	256
2642.881	queue	R	2137088	256
2645.781	cmplt	R	2136832	256
2645.872	issue	R	2137088	256
2646.391	queue	R	2137344	256
2649.596	queue	R	2137600	256
2653.044	queue	R	2137856	256
2656.493	queue	R	2138112	256
2659.973	queue	R	2138368	256
2663.391	queue	R	2138624	256
2666.809	queue	R	2138880	256
2670.288	queue	R	2139136	256
2673.768	queue	R	2139392	256
2677.217	queue	R	2139648	256
2680.696	queue	R	2139904	256
2684.175	queue	R	2140160	256
2687.624	queue	R	2140416	256
2691.073	queue	R	2140672	256
2717.107	queue	R	2140928	256
2717.503	queue	R	2141184	256
2721.013	queue	R	2141440	256
2724.523	queue	R	2141696	256
2728.033	queue	R	2141952	256
2731.482	queue	R	2142208	256
2734.931	queue	R	2142464	256
2738.379	queue	R	2142720	256
2741.828	queue	R	2142976	256
2745.277	queue	R	2143232	256
2748.726	queue	R	2143488	256
2752.205	queue	R	2143744	256
2755.654	queue	R	2144000	256
2759.103	queue	R	2144256	256
2762.552	queue	R	2144512	256
2766.031	queue	R	2144768	256
2769.480	queue	R	2145024	256
2772.928	queue	R	2145280	256
2776.408	queue	R	2145536	256
2779.857	queue	R	2145792	256
2783.305	queue	R	2146048	256
2797.101	queue	R	2146304	256
2797.467	queue	R	2146560	256
2800.946	queue	R	2146816	256
2804.364	queue	R	2147072	256
2807.813	queue	R	2147328	256
2811.262	queue	R	2147584	256
2814.711	queue	R	2147840	256
2818.160	queue	R	2148096	256
2821.639	queue	R	2148352	256
2825.088	queue	R	2148608	256
2828.537	queue	R	2148864	256
2832.016	queue	R	2149120	256
2835.465	queue	R	2149376	256
2838.944	queue	R	2149632	256
2842.393	queue	R	2149888	256
2845.842	queue	R	2150144	256
2849.290	queue	R	2150400	256
2852.739	queue	R	2150656	256
2856.219	queue	R	2150912	256
2859.667	queue	R	2151168	256
2863.116	queue	R	2151424	256
2877.003	queue	R	2151680	256
2877.369	queue	R	2151936	256
2880.848	queue	R	2152192	256
2884.297	queue	R	2152448	256
2887.746	queue	R	2152704	256
2891.225	queue	R	2152960	256
2894.674	queue	R	2153216	256
2898.154	queue	R	2153472	256
2901.602	queue	R	2153728	256
2905.082	queue	R	2153984	256
2908.500	queue	R	2154240	256
2911.979	queue	R	2154496	256
2915.428	queue	R	2154752	256
2918.877	queue	R	2155008	256
2922.356	queue	R	2155264	256
2925.805	queue	R	2155520	256
2929.254	queue	R	2155776	256
2932.733	queue	R	2156032	256
2936.182	queue	R	2156288	256
2939.661	queue	R	2156544	256
2943.110	queue	R	2156800	256
2977.171	queue	R	2157056	256
2977.537	queue	R	2157312	256
2981.077	queue	R	2157568	256
2984.587	queue	R	2157824	256
2988.097	queue	R	2158080	256
2991.515	queue	R	2158336	256
2994.964	queue	R	2158592	256
2998.413	queue	R	2158848	256
3001.862	queue	R	2159104	256
3005.280	queue	R	2159360	256
3008.759	queue	R	2159616	256
3012.208	queue	R	2159872	256
3015.687	queue	R	2160128	256
3019.136	queue	R	2160384	256
3022.585	queue	R	2160640	256
3026.034	queue	R	2160896	256
3029.483	queue	R	2161152	256
3032.962	queue	R	2161408	256
3036.441	queue	R	2161664	256
3039.890	queue	R	2161920	256
3043.339	queue	R	2162176	256
3057.043	queue	R	2162432	256
3057.439	queue	R	2162688	256
3060.949	queue	R	2162944	256
3064.459	queue	R	2163200	256
3067.938	queue	R	2163456	256
3071.448	queue	R	2163712	256
3074.958	queue	R	2163968	256
3078.468	queue	R	2164224	256
3081.978	queue	R	2164480	256
3085.488	queue	R	2164736	256
3088.997	queue	R	2164992	256
3092.507	queue	R	2165248	256
3096.017	queue	R	2165504	256
3099.527	queue	R	2165760	256
3103.037	queue	R	2166016	256
3106.547	queue	R	2166272	256
3110.056	queue	R	2166528	256
3113.536	queue	R	2166784	256
3116.985	queue	R	2167040	256
3120.433	queue	R	2167296	256
3137.128	queue	R	2167552	256
3137.494	queue	R	2167808	256
3141.004	queue	R	2168064	256
3144.514	queue	R	2168320	256
3148.024	queue	R	2168576	256
3152.236	queue	R	2168832	256
3155.715	queue	R	2169088	256
3159.255	queue	R	2169344	256
3162.765	queue	R	2169600	256
3166.275	queue	R	2169856	256
3169.785	queue	R	2170112	256
3173.325	queue	R	2170368	256
3176.835	queue	R	2170624	256
3180.345	queue	R	2170880	256
3183.885	queue	R	2171136	256
3187.395	queue	R	2171392	256
3190.874	queue	R	2171648	256
3194.415	queue	R	2171904	256
3197.864	queue	R	2172160	256
3201.587	queue	R	2172416	256
3213.948	queue	R	987240	8
3260.797	queue	R	987152	8
3260.858	queue	R	987176	8
3260.858	queue	R	987232	8
3261.590	queue	R	1098664	8
3262.597	queue	R	1087552	8
3322.204	queue	R	1087488	16
3322.234	queue	R	1087536	16
3331.116	queue	R	988672	8
3403.144	queue	R	988624	48
3404.212	queue	R	1016248	24
3405.158	queue	R	1092648	8
3405.890	queue	R	1092496	40
3405.921	queue	R	1092592	8
3405.921	queue	R	1092624	24
3406.714	queue	R	988704	8
3407.996	queue	R	988688	16
3409.248	queue	R	1092384	112
3413.093	queue	R	988416	40
3413.124	queue	R	988512	8
3419.228	queue	R	1001896	8
3420.632	queue	R	1001848	16
3420.662	queue	R	1001880	16
3495.559	queue	R	1062664	8
3496.231	queue	R	1062528	136
3498.367	queue	R	1096392	8
3499.741	queue	R	1096312	80
3505.570	queue	R	1062248	8
3505.600	queue	R	1062264	16
3505.631	queue	R	1062288	88
3511.949	queue	R	1035096	8
3583.824	queue	R	1034960	136
3587.242	queue	R	1034872	88
3590.111	queue	R	1098656	8
3672.455	queue	R	974352	8
3699.344	queue	R	2203136	256
3699.710	queue	R	2203392	256
3699.771	issue	R	2203136	512
3706.302	cmplt	R	2203136	512
3706.760	queue	R	2203648	256
3707.127	queue	R	2203904	256
3707.188	issue	R	2203648	512
3713.719	cmplt	R	2203648	512
3714.116	queue	R	2204160	256
3714.482	queue	R	2204416	256
3714.543	issue	R	2204160	512
3720.983	cmplt	R	2204160	512
3721.441	queue	R	2204672	256
3721.807	queue	R	2204928	256
3721.868	issue	R	2204672	512
3728.338	cmplt	R	2204672	512
3728.796	queue	R	2205184	256
3729.162	queue	R	2205440	256
3729.223	issue	R	2205184	512
3735.724	cmplt	R	2205184	512
3736.182	queue	R	2205696	256
3736.548	queue	R	2205952	256
3736.609	issue	R	2205696	512
3743.110	cmplt	R	2205696	512
3743.232	issue	R	974352	8
3743.720	queue	R	2206208	256
3744.087	queue	R	2206464	256
3744.117	cmplt	R	974352	8
3744.544	queue	R	1087320	8
3744.606	issue	R	1087320	8
3745.033	cmplt	R	1087320	8
3745.582	queue	R	1087280	8
3745.582	queue	R	1087312	8
3745.643	issue	R	1087312	8
3745.735	issue	R	1087280	8
3746.009	cmplt	R	1087312	8
3746.223	cmplt	R	1087280	8
3746.467	queue	R	1087328	8
3746.498	queue	R	1087344	8
3746.559	issue	R	1087328	8
3746.620	issue	R	1087344	8
3746.895	cmplt	R	1087328	8
3747.139	cmplt	R	1087344	8
3747.566	queue	R	974288	8
3747.597	queue	R	974312	8
3747.597	queue	R	974344	8
3747.688	issue	R	974288	8
3747.749	issue	R	974312	8
3748.146	cmplt	R	974288	8
3748.207	issue	R	974344	8
3748.451	cmplt	R	974312	8
3748.695	cmplt	R	974344	8
3750.038	issue	R	2206208	512
3756.661	cmplt	R	2206208	512
3757.088	queue	R	2206720	256
3757.485	queue	R	2206976	256
3757.546	issue	R	2206720	512
3764.016	cmplt	R	2206720	512
3764.474	queue	R	2207232	256
3764.841	queue	R	2207488	256
3764.902	issue	R	2207232	512
3771.372	cmplt	R	2207232	512
3771.799	queue	R	2207744	256
3772.165	queue	R	2208000	256
3772.196	issue	R	2207744	512
3778.636	cmplt	R	2207744	512
3779.063	queue	R	2208256	256
3779.460	queue	R	2208512	256
3779.490	issue	R	2208256	512
3785.961	cmplt	R	2208256	512
3786.388	queue	R	2208768	256
3786.754	queue	R	2209024	256
3786.785	issue	R	2208768	512
3793.255	cmplt	R	2208768	512
3793.682	queue	R	2209280	256
3794.049	queue	R	2209536	256
3794.110	issue	R	2209280	512
3800.549	cmplt	R	2209280	512
3800.977	queue	R	2209792	256
3801.343	queue	R	2210048	256
3801.404	issue	R	2209792	512
3807.844	cmplt	R	2209792	512
3808.271	queue	R	2210304	256
3808.637	queue	R	2210560	256
3808.698	issue	R	2210304	512
3815.169	cmplt	R	2210304	512
3815.596	queue	R	2210816	256
3815.962	queue	R	2211072	256
3815.993	issue	R	2210816	512
3822.463	cmplt	R	2210816	512
3822.616	issue	W	1835696	8
3822.646	issue	W	2523136	1024
3823.501	queue	R	2211328	256
3823.867	queue	R	2211584	256
3824.081	cmplt	W	1835696	8
3824.172	queue	R	1916928	8
3845.872	cmplt	W	2523136	1024
3846.269	issue	R	2211328	512
3852.831	cmplt	R	2211328	512
3853.228	queue	R	2211840	256
3853.594	queue	R	2212096	256
3853.655	issue	R	2211840	512
3860.186	cmplt	R	2211840	512
3860.613	queue	R	2212352	256
3860.949	queue	R	2212608	256
3861.010	issue	R	2212352	512
3867.481	cmplt	R	2212352	512
3867.877	queue	R	2212864	256
3868.244	queue	R	2213120	256
3868.305	issue	R	2212864	512
3874.775	cmplt	R	2212864	512
3875.172	queue	R	2213376	256
3875.538	queue	R	2213632	256
3875.599	issue	R	2213376	512
3882.039	cmplt	R	2213376	512
3882.466	queue	R	2213888	256
3882.832	queue	R	2214144	256
3882.893	issue	R	2213888	512
3889.333	cmplt	R	2213888	512
3889.730	queue	R	2214400	256
3890.157	issue	R	2214400	256
3890.920	queue	R	2214656	256
3893.911	cmplt	R	2214400	256
3894.308	queue	R	2214912	256
3894.369	issue	R	2214656	512
3900.809	cmplt	R	2214656	512
3901.206	queue	R	2215168	256
3901.572	queue	R	2215424	256
3901.633	issue	R	2215168	512
3908.073	cmplt	R	2215168	512
3908.500	queue	R	2215680	256
3908.866	queue	R	2215936	256
3908.927	issue	R	2215680	512
3915.367	cmplt	R	2215680	512
3915.764	queue	R	2216192	256
3916.130	queue	R	2216448	256
3916.191	issue	R	2216192	512
3922.661	cmplt	R	2216192	512
3922.783	issue	R	1916928	8
3923.241	queue	R	2216704	256
3923.608	queue	R	2216960	256
3923.638	cmplt	R	1916928	8
3930.078	issue	W	2524160	1024
3930.597	issue	W	2525184	1024
3962.246	cmplt	W	2524160	1024
3962.582	issue	W	2526208	1024
3993.194	cmplt	W	2525184	1024
4024.325	cmplt	W	2526208	1024
4024.722	issue	R	2216704	512
4031.283	cmplt	R	2216704	512
4031.680	queue	R	2217216	256
4032.046	queue	R	2217472	256
4032.107	issue	R	2217216	512
4038.578	cmplt	R	2217216	512
4038.975	queue	R	2217728	256
4039.341	queue	R	2217984	256
4039.402	issue	R	2217728	512
4045.872	cmplt	R	2217728	512
4046.269	queue	R	2218240	256
4046.635	queue	R	2218496	256
4046.696	issue	R	2218240	512
4053.166	cmplt	R	2218240	512
4053.563	queue	R	2218752	256
4053.929	queue	R	2219008	256
4053.991	issue	R	2218752	512
4060.430	cmplt	R	2218752	512
4060.858	queue	R	2219264	256
4061.193	queue	R	2219520	256
4061.254	issue	R	2219264	512
4067.725	cmplt	R	2219264	512
4068.121	queue	R	2219776	256
4068.488	queue	R	2220032	256
4068.549	issue	R	2219776	512
4070.075	queue	WS	1916928	8
4075.019	cmplt	R	2219776	512
4075.416	queue	R	2220288	256
4075.782	queue	R	2220544	256
4075.843	issue	R	2220288	512
4082.374	cmplt	R	2220288	512
4082.802	queue	R	2220800	256
4083.534	issue	R	2220800	256
4086.953	cmplt	R	2220800	256
4090.157	queue	R	2221056	256
4090.523	queue	R	2221312	256
4090.584	issue	W	2527232	1024
4091.164	issue	W	2528256	1024
4122.539	cmplt	W	2527232	1024
4122.875	issue	W	2529280	1024
4153.548	cmplt	W	2528256	1024
4184.557	cmplt	W	2529280	1024
4184.892	issue	WS	1916928	8
4186.327	cmplt	WS	1916928	8
4187.090	queue	WS	1916928	8
4187.151	issue	WS	1916928	8
4188.067	cmplt	WS	1916928	8
4188.524	queue	RM	2626096	8
4188.616	issue	RM	2626096	8
4189.013	cmplt	RM	2626096	8
4189.104	queue	R	2626104	8
4189.165	issue	R	2626104	8
4189.470	cmplt	R	2626104	8
4190.081	issue	R	2221056	512
4196.948	cmplt	R	2221056	512
4197.406	queue	R	2221568	256
4197.803	queue	R	2221824	256
4197.864	issue	R	2221568	512
4200.305	queue	R	1912920	8
4205.372	cmplt	R	2221568	512
4205.829	queue	R	2222080	256
4206.196	queue	R	2222336	256
4206.257	issue	R	2222080	512
4212.727	cmplt	R	2222080	512
4213.093	queue	R	2222592	256
4213.459	queue	R	2222848	256
4213.521	issue	R	2222592	512
4219.991	cmplt	R	2222592	512
4220.357	queue	R	2223104	256
4220.449	issue	R	2223104	256
4220.723	queue	R	2223360	256
4223.897	cmplt	R	2223104	256
4223.989	issue	R	2223360	256
4224.264	queue	R	2223616	256
4227.407	cmplt	R	2223360	256
4227.499	issue	R	2223616	256
4227.774	queue	R	2223872	256
4230.948	cmplt	R	2223616	256
4231.039	issue	R	2223872	256
4231.314	queue	R	2224128	256
4234.427	cmplt	R	2223872	256
4234.519	issue	R	2224128	256
4234.824	queue	R	2224384	256
4237.906	cmplt	R	2224128	256
4237.998	issue	R	2224384	256
4238.273	queue	R	2224640	256
4241.355	cmplt	R	2224384	256
4241.447	issue	R	2224640	256
4241.721	queue	R	2224896	256
4244.834	cmplt	R	2224640	256
4244.895	issue	R	2224896	256
4245.201	queue	R	2225152	256
4248.283	cmplt	R	2224896	256
4248.375	issue	R	2225152	256
4248.649	queue	R	2225408	256
4251.732	cmplt	R	2225152	256
4251.824	issue	R	2225408	256
4252.129	queue	R	2225664	256
4255.211	cmplt	R	2225408	256
4255.272	issue	R	2225664	256
4255.578	queue	R	2225920	256
4258.660	cmplt	R	2225664	256
4258.752	issue	R	2225920	256
4259.026	queue	R	2226176	256
4262.109	cmplt	R	2225920	256
4262.231	issue	R	1912920	8
4262.506	queue	R	2226432	256
4262.567	cmplt	R	1912920	8
4270.044	issue	R	2226176	512
4276.515	cmplt	R	2226176	512
4276.911	queue	R	2226688	256
4277.003	issue	R	2226688	256
4277.308	queue	R	2226944	256
4280.391	cmplt	R	2226688	256
4280.482	issue	R	2226944	256
4280.757	queue	R	2227200	256
4283.870	cmplt	R	2226944	256
4283.931	issue	R	2227200	256
4284.236	queue	R	2227456	256
4287.319	cmplt	R	2227200	256
4287.410	issue	R	2227456	256
4287.685	queue	R	2227712	256
4290.768	cmplt	R	2227456	256
4290.890	issue	R	2227712	256
4291.164	queue	R	2227968	256
4294.247	cmplt	R	2227712	256
4294.338	issue	R	2227968	256
4294.613	queue	R	2228224	256
4297.726	cmplt	R	2227968	256
4297.818	issue	R	2228224	256
4298.092	queue	R	2228480	256
4301.175	cmplt	R	2228224	256
4301.267	issue	R	2228480	256
4301.541	queue	R	2228736	256
4304.624	cmplt	R	2228480	256
4304.715	issue	R	2228736	256
4304.990	queue	R	2228992	256
4308.103	cmplt	R	2228736	256
4308.195	issue	R	2228992	256
4308.469	queue	R	2229248	256
4311.552	cmplt	R	2228992	256
4311.644	issue	R	2229248	256
4311.949	queue	R	2229504	256
4315.031	cmplt	R	2229248	256
4315.123	issue	R	2229504	256
4315.398	queue	R	2229760	256
4318.511	cmplt	R	2229504	256
4318.572	issue	R	2229760	256
4318.877	queue	R	2230016	256
4321.959	cmplt	R	2229760	256
4322.051	issue	R	2230016	256
4322.326	queue	R	2230272	256
4325.439	cmplt	R	2230016	256
4325.530	issue	R	2230272	256
4325.805	queue	R	2230528	256
4328.888	cmplt	R	2230272	256
4328.979	issue	R	2230528	256
4329.254	queue	R	2230784	256
4332.336	cmplt	R	2230528	256
4332.428	issue	R	2230784	256
4332.733	queue	R	2231040	256
4335.816	cmplt	R	2230784	256
4335.907	issue	R	2231040	256
4336.182	queue	R	2231296	256
4339.264	cmplt	R	2231040	256
4339.356	issue	R	2231296	256
4339.661	queue	R	2231552	256
4342.744	cmplt	R	2231296	256
4342.866	issue	R	2231552	256
4343.110	queue	R	2231808	256
4346.223	cmplt	R	2231552	256
4346.315	issue	R	2231808	256
4346.589	queue	R	2232064	256
4349.702	cmplt	R	2231808	256
4349.794	issue	R	2232064	256
4350.099	queue	R	2232320	256
4353.151	cmplt	R	2232064	256
4353.243	issue	R	2232320	256
4353.548	queue	R	2232576	256
4356.600	cmplt	R	2232320	256
4356.692	issue	R	2232576	256
4357.027	queue	R	2232832	256
4360.079	cmplt	R	2232576	256
4360.171	issue	R	2232832	256
4360.476	queue	R	2233088	256
4363.528	cmplt	R	2232832	256
4363.620	issue	R	2233088	256
4363.925	queue	R	2233344	256
4367.007	cmplt	R	2233088	256
4367.099	issue	R	2233344	256
4367.374	queue	R	2233600	256
4370.456	cmplt	R	2233344	256
4370.639	issue	R	2233600	256
4370.853	queue	R	2233856	256
4373.997	cmplt	R	2233600	256
4374.088	issue	R	2233856	256
4374.363	queue	R	2234112	256
4377.445	cmplt	R	2233856	256
4377.537	issue	R	2234112	256
4377.842	queue	R	2234368	256
4380.894	cmplt	R	2234112	256
4380.986	issue	R	2234368	256
4381.291	queue	R	2234624	256
4384.374	cmplt	R	2234368	256
4384.465	issue	R	2234624	256
4384.740	queue	R	2234880	256
4387.822	cmplt	R	2234624	256
4387.914	issue	R	2234880	256
4388.219	queue	R	2235136	256
4391.302	cmplt	R	2234880	256
4391.363	issue	R	2235136	256
4391.668	queue	R	2235392	256
4394.750	cmplt	R	2235136	256
4394.842	issue	R	2235392	256
4395.117	queue	R	2235648	256
4398.199	cmplt	R	2235392	256
4398.291	issue	R	2235648	256
4398.596	queue	R	2235904	256
4401.648	cmplt	R	2235648	256
4401.740	issue	R	2235904	256
4402.045	queue	R	2236160	256
4405.127	cmplt	R	2235904	256
4405.188	issue	R	2236160	256
4405.494	queue	R	2236416	256
4408.576	cmplt	R	2236160	256
4408.668	issue	R	2236416	256
4408.942	queue	R	2236672	256
4412.025	cmplt	R	2236416	256
4412.178	issue	W	2530304	1024
4412.513	queue	R	2236928	256
4412.727	issue	W	2531328	1024
4437.174	queue	W	2531328	1024
4437.845	queue	W	2531328	1024
4444.407	cmplt	W	2530304	1024
4444.712	issue	W	2532352	1024
4475.324	cmplt	W	2531328	1024
4506.333	cmplt	W	2532352	1024
4506.699	issue	R	2236672	512
4513.322	cmplt	R	2236672	512
4513.688	queue	R	2237184	256
4513.810	issue	R	2237184	256
4514.085	queue	R	2237440	256
4517.259	cmplt	R	2237184	256
4517.381	issue	R	2237440	256
4517.656	queue	R	2237696	256
4520.769	cmplt	R	2237440	256
4520.891	issue	R	2237696	256
4521.166	queue	R	2237952	256
4524.309	cmplt	R	2237696	256
4524.432	issue	R	2237952	256
4524.676	queue	R	2238208	256
4527.819	cmplt	R	2237952	256
4527.911	issue	R	2238208	256
4528.186	queue	R	2238464	256
4531.329	cmplt	R	2238208	256
4531.421	issue	R	2238464	256
4531.726	queue	R	2238720	256
4534.808	cmplt	R	2238464	256
4534.900	issue	R	2238720	256
4535.205	queue	R	2238976	256
4538.288	cmplt	R	2238720	256
4538.379	issue	R	2238976	256
4538.654	queue	R	2239232	256
4541.737	cmplt	R	2238976	256
4541.828	issue	R	2239232	256
4542.133	queue	R	2239488	256
4545.185	cmplt	R	2239232	256
4545.307	issue	R	2239488	256
4545.582	queue	R	2239744	256
4548.665	cmplt	R	2239488	256
4548.756	issue	R	2239744	256
4549.031	queue	R	2240000	256
4552.114	cmplt	R	2239744	256
4552.205	issue	R	2240000	256
4552.510	queue	R	2240256	256
4555.562	cmplt	R	2240000	256
4555.654	issue	R	2240256	256
4555.959	queue	R	2240512	256
4559.042	cmplt	R	2240256	256
4559.133	issue	R	2240512	256
4559.408	queue	R	2240768	256
4562.490	cmplt	R	2240512	256
4562.582	issue	R	2240768	256
4562.887	queue	R	2241024	256
4565.939	cmplt	R	2240768	256
4566.031	issue	R	2241024	256
4566.336	queue	R	2241280	256
4569.419	cmplt	R	2241024	256
4569.510	issue	R	2241280	256
4569.785	queue	R	2241536	256
4572.867	cmplt	R	2241280	256
4572.959	issue	R	2241536	256
4573.264	queue	R	2241792	256
4576.316	cmplt	R	2241536	256
4576.408	issue	R	2241792	256
4576.713	queue	R	2242048	256
4579.796	cmplt	R	2241792	256
4579.887	issue	R	2242048	256
4580.192	queue	R	2242304	256
4583.305	cmplt	R	2242048	256
4583.397	issue	R	2242304	256
4583.672	queue	R	2242560	256
4586.785	cmplt	R	2242304	256
4586.876	issue	R	2242560	256
4587.151	queue	R	2242816	256
4590.233	cmplt	R	2242560	256
4590.325	issue	R	2242816	256
4590.630	queue	R	2243072	256
4593.682	cmplt	R	2242816	256
4593.804	issue	R	2243072	256
4594.079	queue	R	2243328	256
4597.162	cmplt	R	2243072	256
4597.253	issue	R	2243328	256
4597.528	queue	R	2243584	256
4600.610	cmplt	R	2243328	256
4600.702	issue	R	2243584	256
4601.007	queue	R	2243840	256
4604.059	cmplt	R	2243584	256
4604.151	issue	R	2243840	256
4604.456	queue	R	2244096	256
4607.539	cmplt	R	2243840	256
4607.630	issue	R	2244096	256
4607.905	queue	R	2244352	256
4610.987	cmplt	R	2244096	256
4611.079	issue	R	2244352	256
4611.384	queue	R	2244608	256
4614.467	cmplt	R	2244352	256
4614.558	issue	R	2244608	256
4614.833	queue	R	2244864	256
4617.885	cmplt	R	2244608	256
4617.976	issue	R	2244864	256
4618.282	queue	R	2245120	256
4621.334	cmplt	R	2244864	256
4621.425	issue	R	2245120	256
4621.731	queue	R	2245376	256
4624.813	cmplt	R	2245120	256
4624.905	issue	R	2245376	256
4625.210	queue	R	2245632	256
4628.262	cmplt	R	2245376	256
4628.353	issue	R	2245632	256
4628.659	queue	R	2245888	256
4631.741	cmplt	R	2245632	256
4631.833	issue	R	2245888	256
4632.138	queue	R	2246144	256
4635.190	cmplt	R	2245888	256
4635.282	issue	R	2246144	256
4635.587	queue	R	2246400	256
4638.669	cmplt	R	2246144	256
4638.730	issue	R	2246400	256
4639.036	queue	R	2246656	256
4642.118	cmplt	R	2246400	256
4642.210	issue	R	2246656	256
4642.515	queue	R	2246912	256
4645.567	cmplt	R	2246656	256
4645.658	issue	R	2246912	256
4645.964	queue	R	2247168	256
4649.046	cmplt	R	2246912	256
4649.138	issue	R	2247168	256
4649.412	queue	R	2247424	256
4652.495	cmplt	R	2247168	256
4652.617	issue	W	2533376	1024
4652.983	queue	R	2247680	256
4653.197	issue	W	2534400	1024
4684.419	cmplt	W	2533376	1024
4684.725	issue	W	2535424	1024
4715.245	cmplt	W	2534400	1024
4746.071	cmplt	W	2535424	1024
4746.406	issue	R	2247424	512
4752.846	cmplt	R	2247424	512
4753.212	queue	R	2247936	256
4753.304	issue	R	2247936	256
4753.609	queue	R	2248192	256
4756.692	cmplt	R	2247936	256
4756.783	issue	R	2248192	256
4757.058	queue	R	2248448	256
4760.140	cmplt	R	2248192	256
4760.232	issue	R	2248448	256
4760.537	queue	R	2248704	256
4763.589	cmplt	R	2248448	256
4763.681	issue	R	2248704	256
4763.986	queue	R	2248960	256
4767.069	cmplt	R	2248704	256
4767.160	issue	R	2248960	256
4767.435	queue	R	2249216	256
4770.517	cmplt	R	2248960	256
4770.609	issue	R	2249216	256
4770.914	queue	R	2249472	256
4773.966	cmplt	R	2249216	256
4774.058	issue	R	2249472	256
4774.363	queue	R	2249728	256
4777.415	cmplt	R	2249472	256
4777.506	issue	R	2249728	256
4777.812	queue	R	2249984	256
4780.894	cmplt	R	2249728	256
4780.986	issue	R	2249984	256
4781.291	queue	R	2250240	256
4784.343	cmplt	R	2249984	256
4784.435	issue	R	2250240	256
4784.740	queue	R	2250496	256
4787.792	cmplt	R	2250240	256
4787.883	issue	R	2250496	256
4788.189	queue	R	2250752	256
4791.271	cmplt	R	2250496	256
4791.363	issue	R	2250752	256
4791.668	queue	R	2251008	256
4794.720	cmplt	R	2250752	256
4794.812	issue	R	2251008	256
4795.117	queue	R	2251264	256
4798.199	cmplt	R	2251008	256
4798.291	issue	R	2251264	256
4798.566	queue	R	2251520	256
4801.648	cmplt	R	2251264	256
4801.740	issue	R	2251520	256
4802.014	queue	R	2251776	256
4805.097	cmplt	R	2251520	256
4805.188	issue	R	2251776	256
4805.494	queue	R	2252032	256
4808.576	cmplt	R	2251776	256
4808.668	issue	R	2252032	256
4808.973	queue	R	2252288	256
4812.025	cmplt	R	2252032	256
4812.117	issue	R	2252288	256
4812.422	queue	R	2252544	256
4815.474	cmplt	R	2252288	256
4815.565	issue	R	2252544	256
4815.901	queue	R	2252800	256
4818.953	cmplt	R	2252544	256
4819.045	issue	R	2252800	256
4819.350	queue	R	2253056	256
4822.402	cmplt	R	2252800	256
4822.555	issue	W	2536448	1024
4822.890	queue	R	2253312	256
4823.134	issue	W	2537472	1024
4854.418	cmplt	W	2536448	1024
4854.754	issue	W	2538496	1024
4885.335	cmplt	W	2537472	1024
4917.626	cmplt	W	2538496	1024
4917.961	issue	R	2253056	512
4924.371	cmplt	R	2253056	512
4924.767	queue	R	2253568	256
4924.859	issue	R	2253568	256
4925.134	queue	R	2253824	256
4928.216	cmplt	R	2253568	256
4928.338	issue	R	2253824	256
4928.613	queue	R	2254080	256
4931.695	cmplt	R	2253824	256
4931.787	issue	R	2254080	256
4932.062	queue	R	2254336	256
4935.144	cmplt	R	2254080	256
4935.236	issue	R	2254336	256
4935.541	queue	R	2254592	256
4938.593	cmplt	R	2254336	256
4938.685	issue	R	2254592	256
4938.990	queue	R	2254848	256
4942.072	cmplt	R	2254592	256
4942.133	issue	R	2254848	256
4942.439	queue	R	2255104	256
4945.521	cmplt	R	2254848	256
4945.613	issue	R	2255104	256
4945.887	queue	R	2255360	256
4948.970	cmplt	R	2255104	256
4949.061	issue	R	2255360	256
4949.367	queue	R	2255616	256
4952.449	cmplt	R	2255360	256
4952.510	issue	R	2255616	256
4952.816	queue	R	2255872	256
4955.898	cmplt	R	2255616	256
4955.990	issue	R	2255872	256
4956.264	queue	R	2256128	256
4959.347	cmplt	R	2255872	256
4959.438	issue	R	2256128	256
4959.744	queue	R	2256384	256
4962.796	cmplt	R	2256128	256
4962.887	issue	R	2256384	256
4963.192	queue	R	2256640	256
4966.275	cmplt	R	2256384	256
4966.367	issue	R	2256640	256
4966.641	queue	R	2256896	256
4969.724	cmplt	R	2256640	256
4969.815	issue	R	2256896	256
4970.151	queue	R	2257152	256
4973.234	cmplt	R	2256896	256
4973.325	issue	R	2257152	256
4973.600	queue	R	2257408	256
4976.682	cmplt	R	2257152	256
4976.774	issue	R	2257408	256
4977.079	queue	R	2257664	256
4980.131	cmplt	R	2257408	256
4980.223	issue	R	2257664	256
4980.528	queue	R	2257920	256
4983.611	cmplt	R	2257664	256
4983.702	issue	R	2257920	256
4983.977	queue	R	2258176	256
4987.059	cmplt	R	2257920	256
4987.151	issue	R	2258176	256
4987.456	queue	R	2258432	256
4990.508	cmplt	R	2258176	256
4990.630	issue	W	2539520	1024
4990.996	queue	R	2258688	256
4991.210	issue	W	2540544	1024
5013.307	cmplt	W	2539520	1024
5013.643	issue	W	2541568	1024
5044.651	cmplt	W	2540544	1024
5075.355	cmplt	W	2541568	1024
5075.691	issue	R	2258432	512
5082.252	cmplt	R	2258432	512
5082.619	queue	R	2258944	256
5082.710	issue	R	2258944	256
5083.015	queue	R	2259200	256
5086.098	cmplt	R	2258944	256
5086.190	issue	R	2259200	256
5086.495	queue	R	2259456	256
5089.547	cmplt	R	2259200	256
5089.638	issue	R	2259456	256
5089.913	queue	R	2259712	256
5092.996	cmplt	R	2259456	256
5093.087	issue	R	2259712	256
5093.392	queue	R	2259968	256
5096.475	cmplt	R	2259712	256
5096.566	issue	R	2259968	256
5096.841	queue	R	2260224	256
5099.924	cmplt	R	2259968	256
5100.046	issue	R	2260224	256
5100.320	queue	R	2260480	256
5103.403	cmplt	R	2260224	256
5103.495	issue	R	2260480	256
5103.769	queue	R	2260736	256
5106.852	cmplt	R	2260480	256
5106.943	issue	R	2260736	256
5107.249	queue	R	2260992	256
5110.331	cmplt	R	2260736	256
5110.423	issue	R	2260992	256
5110.697	queue	R	2261248	256
5113.749	cmplt	R	2260992	256
5113.841	issue	R	2261248	256
5114.116	queue	R	2261504	256
5117.198	cmplt	R	2261248	256
5117.290	issue	R	2261504	256
5117.595	queue	R	2261760	256
5120.678	cmplt	R	2261504	256
5120.739	issue	R	2261760	256
5121.044	queue	R	2262016	256
5124.126	cmplt	R	2261760	256
5124.218	issue	R	2262016	256
5124.493	queue	R	2262272	256
5127.575	cmplt	R	2262016	256
5127.667	issue	R	2262272	256
5127.972	queue	R	2262528	256
5131.054	cmplt	R	2262272	256
5131.116	issue	R	2262528	256
5131.421	queue	R	2262784	256
5134.503	cmplt	R	2262528	256
5134.595	issue	R	2262784	256
5134.870	queue	R	2263040	256
5137.952	cmplt	R	2262784	256
5138.044	issue	R	2263040	256
5138.349	queue	R	2263296	256
5141.401	cmplt	R	2263040	256
5141.492	issue	R	2263296	256
5141.798	queue	R	2263552	256
5144.880	cmplt	R	2263296	256
5144.972	issue	R	2263552	256
5145.246	queue	R	2263808	256
5148.329	cmplt	R	2263552	256
5148.421	issue	R	2263808	256
5148.726	queue	R	2264064	256
5151.808	cmplt	R	2263808	256
5151.930	issue	W	2542592	1024
5152.266	queue	R	2264320	256
5152.480	issue	W	2543616	1024
5183.946	cmplt	W	2542592	1024
5184.282	issue	W	2544640	1024
5215.169	cmplt	W	2543616	1024
5246.116	cmplt	W	2544640	1024
5246.452	issue	R	2264064	512
5252.892	cmplt	R	2264064	512
5253.258	queue	R	2264576	256
5253.350	issue	R	2264576	256
5253.655	queue	R	2264832	256
5256.737	cmplt	R	2264576	256
5256.829	issue	R	2264832	256
5257.104	queue	R	2265088	256
5260.186	cmplt	R	2264832	256
5260.278	issue	R	2265088	256
5260.552	queue	R	2265344	256
5263.635	cmplt	R	2265088	256
5263.727	issue	R	2265344	256
5264.062	queue	R	2265600	256
5267.114	cmplt	R	2265344	256
5267.206	issue	R	2265600	256
5267.481	queue	R	2265856	256
5270.563	cmplt	R	2265600	256
5270.655	issue	R	2265856	256
5270.960	queue	R	2266112	256
5274.012	cmplt	R	2265856	256
5274.103	issue	R	2266112	256
5274.378	queue	R	2266368	256
5277.491	cmplt	R	2266112	256
5277.583	issue	R	2266368	256
5277.888	queue	R	2266624	256
5280.940	cmplt	R	2266368	256
5281.032	issue	R	2266624	256
5281.337	queue	R	2266880	256
5284.389	cmplt	R	2266624	256
5284.480	issue	R	2266880	256
5284.786	queue	R	2267136	256
5287.868	cmplt	R	2266880	256
5287.960	issue	R	2267136	256
5288.234	queue	R	2267392	256
5291.317	cmplt	R	2267136	256
5291.409	issue	R	2267392	256
5291.714	queue	R	2267648	256
5294.796	cmplt	R	2267392	256
5294.857	issue	R	2267648	256
5295.163	queue	R	2267904	256
5298.245	cmplt	R	2267648	256
5298.337	issue	R	2267904	256
5298.611	queue	R	2268160	256
5301.694	cmplt	R	2267904	256
5301.785	issue	R	2268160	256
5302.060	queue	R	2268416	256
5305.143	cmplt	R	2268160	256
5305.234	issue	R	2268416	256
5305.539	queue	R	2268672	256
5308.622	cmplt	R	2268416	256
5308.714	issue	R	2268672	256
5308.988	queue	R	2268928	256
5312.071	cmplt	R	2268672	256
5312.162	issue	R	2268928	256
5312.437	queue	R	2269184	256
5315.520	cmplt	R	2268928	256
5315.611	issue	R	2269184	256
5315.916	queue	R	2269440	256
5318.968	cmplt	R	2269184	256
5319.060	issue	R	2269440	256
5319.365	queue	R	2269696	256
5322.448	cmplt	R	2269440	256
5322.570	issue	W	2545664	1024
5322.936	queue	R	2269952	256
5323.119	issue	W	2546688	1024
5359.835	cmplt	W	2545664	1024
5360.171	issue	W	2547712	1024
5390.752	cmplt	W	2546688	1024
5421.761	cmplt	W	2547712	1024
5422.066	issue	R	2269696	512
5428.506	cmplt	R	2269696	512
5428.903	queue	R	2270208	256
5428.994	issue	R	2270208	256
5429.269	queue	R	2270464	256
5432.352	cmplt	R	2270208	256
5432.443	issue	R	2270464	256
5432.748	queue	R	2270720	256
5435.800	cmplt	R	2270464	256
5435.892	issue	R	2270720	256
5436.197	queue	R	2270976	256
5439.249	cmplt	R	2270720	256
5439.341	issue	R	2270976	256
5439.646	queue	R	2271232	256
5442.729	cmplt	R	2270976	256
5442.820	issue	R	2271232	256
5443.095	queue	R	2271488	256
5446.177	cmplt	R	2271232	256
5446.269	issue	R	2271488	256
5446.574	queue	R	2271744	256
5449.657	cmplt	R	2271488	256
5449.748	issue	R	2271744	256
5450.053	queue	R	2272000	256
5453.105	cmplt	R	2271744	256
5453.197	issue	R	2272000	256
5453.502	queue	R	2272256	256
5456.554	cmplt	R	2272000	256
5456.646	issue	R	2272256	256
5456.951	queue	R	2272512	256
5460.064	cmplt	R	2272256	256
5460.156	issue	R	2272512	256
5460.430	queue	R	2272768	256
5463.513	cmplt	R	2272512	256
5463.604	issue	R	2272768	256
5463.879	queue	R	2273024	256
5466.962	cmplt	R	2272768	256
5467.053	issue	R	2273024	256
5467.358	queue	R	2273280	256
5470.441	cmplt	R	2273024	256
5470.533	issue	R	2273280	256
5470.807	queue	R	2273536	256
5473.890	cmplt	R	2273280	256
5473.981	issue	R	2273536	256
5474.287	queue	R	2273792	256
5477.339	cmplt	R	2273536	256
5477.430	issue	R	2273792	256
5477.735	queue	R	2274048	256
5480.787	cmplt	R	2273792	256
5480.879	issue	R	2274048	256
5481.184	queue	R	2274304	256
5484.267	cmplt	R	2274048	256
5484.358	issue	R	2274304	256
5484.633	queue	R	2274560	256
5487.716	cmplt	R	2274304	256
5487.807	issue	R	2274560	256
5488.082	queue	R	2274816	256
5491.164	cmplt	R	2274560	256
5491.286	issue	W	2548736	1024
5491.653	queue	R	2275072	256
5491.866	issue	W	2549760	1024
5523.150	cmplt	W	2548736	1024
5523.485	issue	W	2550784	1024
5554.036	cmplt	W	2549760	1024
5584.831	cmplt	W	2550784	1024
5585.167	issue	R	2274816	512
5591.607	cmplt	R	2274816	512
5591.973	queue	R	2275328	256
5592.065	issue	R	2275328	256
5592.370	queue	R	2275584	256
5595.422	cmplt	R	2275328	256
5595.514	issue	R	2275584	256
5595.819	queue	R	2275840	256
5598.901	cmplt	R	2275584	256
5598.993	issue	R	2275840	256
5599.268	queue	R	2276096	256
5602.350	cmplt	R	2275840	256
5602.442	issue	R	2276096	256
5602.747	queue	R	2276352	256
5605.799	cmplt	R	2276096	256
5605.890	issue	R	2276352	256
5606.196	queue	R	2276608	256
5609.278	cmplt	R	2276352	256
5609.370	issue	R	2276608	256
5609.644	queue	R	2276864	256
5612.727	cmplt	R	2276608	256
5612.819	issue	R	2276864	256
5613.093	queue	R	2277120	256
5616.176	cmplt	R	2276864	256
5616.267	issue	R	2277120	256
5616.573	queue	R	2277376	256
5619.625	cmplt	R	2277120	256
5619.716	issue	R	2277376	256
5620.052	queue	R	2277632	256
5623.073	cmplt	R	2277376	256
5623.165	issue	R	2277632	256
5623.440	queue	R	2277888	256
5626.522	cmplt	R	2277632	256
5626.614	issue	R	2277888	256
5626.919	queue	R	2278144	256
5630.032	cmplt	R	2277888	256
5630.124	issue	R	2278144	256
5630.398	queue	R	2278400	256
5633.481	cmplt	R	2278144	256
5633.572	issue	R	2278400	256
5633.847	queue	R	2278656	256
5636.930	cmplt	R	2278400	256
5637.021	issue	R	2278656	256
5637.326	queue	R	2278912	256
5640.378	cmplt	R	2278656	256
5640.470	issue	R	2278912	256
5640.775	queue	R	2279168	256
5643.858	cmplt	R	2278912	256
5643.949	issue	R	2279168	256
5644.224	queue	R	2279424	256
5647.307	cmplt	R	2279168	256
5647.398	issue	R	2279424	256
5647.703	queue	R	2279680	256
5650.755	cmplt	R	2279424	256
5650.847	issue	R	2279680	256
5651.152	queue	R	2279936	256
5654.235	cmplt	R	2279680	256
5654.326	issue	R	2279936	256
5654.631	queue	R	2280192	256
5657.684	cmplt	R	2279936	256
5657.775	issue	R	2280192	256
5658.080	queue	R	2280448	256
5661.132	cmplt	R	2280192	256
5661.285	issue	W	2551808	1024
5661.621	queue	R	2280704	256
5661.834	issue	W	2552832	1024
5693.087	cmplt	W	2551808	1024
5693.423	issue	W	2553856	1024
5724.126	cmplt	W	2552832	1024
5755.013	cmplt	W	2553856	1024
5755.318	issue	R	2280448	512
5761.758	cmplt	R	2280448	512
5762.155	queue	R	2280960	256
5762.246	issue	R	2280960	256
5762.521	queue	R	2281216	256
5765.604	cmplt	R	2280960	256
5765.695	issue	R	2281216	256
5766.000	queue	R	2281472	256
5769.052	cmplt	R	2281216	256
5769.144	issue	R	2281472	256
5769.449	queue	R	2281728	256
5772.501	cmplt	R	2281472	256
5772.593	issue	R	2281728	256
5772.898	queue	R	2281984	256
5775.980	cmplt	R	2281728	256
5776.072	issue	R	2281984	256
5776.377	queue	R	2282240	256
5779.429	cmplt	R	2281984	256
5779.521	issue	R	2282240	256
5779.796	queue	R	2282496	256
5782.878	cmplt	R	2282240	256
5782.970	issue	R	2282496	256
5783.275	queue	R	2282752	256
5786.357	cmplt	R	2282496	256
5786.449	issue	R	2282752	256
5786.724	queue	R	2283008	256
5789.806	cmplt	R	2282752	256
5789.898	issue	R	2283008	256
5790.203	queue	R	2283264	256
5793.286	cmplt	R	2283008	256
5793.377	issue	R	2283264	256
5793.652	queue	R	2283520	256
5796.734	cmplt	R	2283264	256
5796.826	issue	R	2283520	256
5797.131	queue	R	2283776	256
5800.183	cmplt	R	2283520	256
5800.275	issue	R	2283776	256
5800.580	queue	R	2284032	256
5803.632	cmplt	R	2283776	256
5803.723	issue	R	2284032	256
5804.029	queue	R	2284288	256
5807.111	cmplt	R	2284032	256
5807.203	issue	R	2284288	256
5807.477	queue	R	2284544	256
5810.560	cmplt	R	2284288	256
5810.652	issue	R	2284544	256
5810.957	queue	R	2284800	256
5814.009	cmplt	R	2284544	256
5814.131	issue	R	2284800	256
5814.406	queue	R	2285056	256
5817.488	cmplt	R	2284800	256
5817.580	issue	R	2285056	256
5817.854	queue	R	2285312	256
5820.937	cmplt	R	2285056	256
5821.029	issue	R	2285312	256
5821.364	queue	R	2285568	256
5824.386	cmplt	R	2285312	256
5824.477	issue	R	2285568	256
5824.783	queue	R	2285824	256
5827.865	cmplt	R	2285568	256
5827.957	issue	R	2285824	256
5828.231	queue	R	2286080	256
5831.314	cmplt	R	2285824	256
5831.436	issue	W	2554880	1024
5831.772	queue	R	2286336	256
5832.107	issue	W	2555904	1024
5865.008	cmplt	W	2554880	1024
5865.344	issue	W	2556928	1024
5886.251	cmplt	W	2555904	1024
5886.556	issue	W	2557952	1024
5917.381	cmplt	W	2556928	1024
5948.176	cmplt	W	2557952	1024
5948.512	issue	R	2286080	512
5954.952	cmplt	R	2286080	512
5955.318	queue	R	2286592	256
5955.410	issue	R	2286592	256
5955.684	queue	R	2286848	256
5958.797	cmplt	R	2286592	256
5958.889	issue	R	2286848	256
5959.164	queue	R	2287104	256
5962.246	cmplt	R	2286848	256
5962.338	issue	R	2287104	256
5962.643	queue	R	2287360	256
5965.695	cmplt	R	2287104	256
5965.787	issue	R	2287360	256
5966.092	queue	R	2287616	256
5969.174	cmplt	R	2287360	256
5969.235	issue	R	2287616	256
5969.541	queue	R	2287872	256
5972.623	cmplt	R	2287616	256
5972.715	issue	R	2287872	256
5973.020	queue	R	2288128	256
5976.072	cmplt	R	2287872	256
5976.164	issue	R	2288128	256
5976.438	queue	R	2288384	256
5979.521	cmplt	R	2288128	256
5979.612	issue	R	2288384	256
5979.918	queue	R	2288640	256
5983.000	cmplt	R	2288384	256
5983.092	issue	R	2288640	256
5983.366	queue	R	2288896	256
5986.449	cmplt	R	2288640	256
5986.541	issue	R	2288896	256
5986.846	queue	R	2289152	256
5989.898	cmplt	R	2288896	256
5990.020	issue	R	2289152	256
5990.295	queue	R	2289408	256
5993.377	cmplt	R	2289152	256
5993.469	issue	R	2289408	256
5993.774	queue	R	2289664	256
5996.856	cmplt	R	2289408	256
5996.948	issue	R	2289664	256
5997.223	queue	R	2289920	256
6000.305	cmplt	R	2289664	256
6000.397	issue	R	2289920	256
6000.702	queue	R	2290176	256
6003.754	cmplt	R	2289920	256
6003.846	issue	R	2290176	256
6004.151	queue	R	2290432	256
6007.233	cmplt	R	2290176	256
6007.325	issue	R	2290432	256
6007.600	queue	R	2290688	256
6010.682	cmplt	R	2290432	256
6010.774	issue	R	2290688	256
6011.079	queue	R	2290944	256
6011.872	queue	R	2290944	256
6020.113	cmplt	R	2290688	256
6020.296	issue	W	2558976	1024
6020.632	queue	R	2291200	256
6052.251	cmplt	W	2558976	1024
6052.587	issue	W	2560000	1024
6084.480	cmplt	W	2560000	1024
6084.847	issue	R	2290944	512
6091.286	cmplt	R	2290944	512
6091.683	queue	R	2291456	256
6091.775	issue	R	2291456	256
6092.080	queue	R	2291712	256
6095.193	cmplt	R	2291456	256
6095.285	issue	R	2291712	256
6095.590	queue	R	2291968	256
6098.672	cmplt	R	2291712	256
6098.733	issue	R	2291968	256
6099.069	queue	R	2292224	256
6102.091	cmplt	R	2291968	256
6102.182	issue	R	2292224	256
6102.487	queue	R	2292480	256
6105.570	cmplt	R	2292224	256
6105.662	issue	R	2292480	256
6105.967	queue	R	2292736	256
6109.019	cmplt	R	2292480	256
6109.110	issue	R	2292736	256
6109.416	queue	R	2292992	256
6112.498	cmplt	R	2292736	256
6112.590	issue	R	2292992	256
6112.895	queue	R	2293248	256
6115.947	cmplt	R	2292992	256
6116.038	issue	R	2293248	256
6116.344	queue	R	2293504	256
6119.396	cmplt	R	2293248	256
6119.487	issue	R	2293504	256
6119.792	queue	R	2293760	256
6122.875	cmplt	R	2293504	256
6122.967	issue	R	2293760	256
6123.241	queue	R	2294016	256
6126.415	cmplt	R	2293760	256
6126.507	issue	R	2294016	256
6126.782	queue	R	2294272	256
6129.834	cmplt	R	2294016	256
6129.956	issue	R	2294272	256
6130.261	queue	R	2294528	256
6133.313	cmplt	R	2294272	256
6133.405	issue	R	2294528	256
6133.679	queue	R	2294784	256
6136.731	cmplt	R	2294528	256
6136.823	issue	R	2294784	256
6137.128	queue	R	2295040	256
6140.180	cmplt	R	2294784	256
6140.272	issue	R	2295040	256
6140.577	queue	R	2295296	256
6143.629	cmplt	R	2295040	256
6143.720	issue	R	2295296	256
6144.026	queue	R	2295552	256
6147.078	cmplt	R	2295296	256
6147.169	issue	R	2295552	256
6147.474	queue	R	2295808	256
6150.526	cmplt	R	2295552	256
6150.618	issue	R	2295808	256
6150.893	queue	R	2296064	256
6153.945	cmplt	R	2295808	256
6154.036	issue	R	2296064	256
6154.342	queue	R	2296320	256
6157.394	cmplt	R	2296064	256
6157.455	issue	R	2296320	256
6157.760	queue	R	2296576	256
6160.812	cmplt	R	2296320	256
6160.934	issue	W	2561024	1024
6161.300	queue	R	2296832	256
6161.483	issue	W	2562048	1024
6193.011	cmplt	W	2561024	1024
6193.316	issue	W	2563072	1024
6223.897	cmplt	W	2562048	1024
6254.723	cmplt	W	2563072	1024
6255.059	issue	R	2296576	512
6261.468	cmplt	R	2296576	512
6261.865	queue	R	2297088	256
6261.956	issue	R	2297088	256
6262.262	queue	R	2297344	256
6265.314	cmplt	R	2297088	256
6265.405	issue	R	2297344	256
6265.710	queue	R	2297600	256
6268.762	cmplt	R	2297344	256
6268.854	issue	R	2297600	256
6269.129	queue	R	2297856	256
6272.181	cmplt	R	2297600	256
6272.272	issue	R	2297856	256
6272.547	queue	R	2298112	256
6275.599	cmplt	R	2297856	256
6275.691	issue	R	2298112	256
6276.026	queue	R	2298368	256
6279.048	cmplt	R	2298112	256
6279.139	issue	R	2298368	256
6279.445	queue	R	2298624	256
6282.466	cmplt	R	2298368	256
6282.558	issue	R	2298624	256
6282.863	queue	R	2298880	256
6285.915	cmplt	R	2298624	256
6286.006	issue	R	2298880	256
6286.281	queue	R	2299136	256
6289.364	cmplt	R	2298880	256
6289.425	issue	R	2299136	256
6289.730	queue	R	2299392	256
6292.782	cmplt	R	2299136	256
6292.873	issue	R	2299392	256
6293.148	queue	R	2299648	256
6296.200	cmplt	R	2299392	256
6296.292	issue	R	2299648	256
6296.597	queue	R	2299904	256
6299.649	cmplt	R	2299648	256
6299.741	issue	R	2299904	256
6300.046	queue	R	2300160	256
6303.067	cmplt	R	2299904	256
6303.159	issue	R	2300160	256
6303.464	queue	R	2300416	256
6306.516	cmplt	R	2300160	256
6306.608	issue	R	2300416	256
6306.882	queue	R	2300672	256
6309.934	cmplt	R	2300416	256
6310.087	issue	R	2300672	256
6310.331	queue	R	2300928	256
6313.414	cmplt	R	2300672	256
6313.505	issue	R	2300928	256
6313.780	queue	R	2301184	256
6316.832	cmplt	R	2300928	256
6316.924	issue	R	2301184	256
6317.229	queue	R	2301440	256
6320.281	cmplt	R	2301184	256
6320.342	issue	R	2301440	256
6320.647	queue	R	2301696	256
6323.699	cmplt	R	2301440	256
6323.791	issue	R	2301696	256
6324.096	queue	R	2301952	256
6327.117	cmplt	R	2301696	256
6327.209	issue	R	2301952	256
6327.514	queue	R	2302208	256
6330.566	cmplt	R	2301952	256
6330.688	issue	W	2564096	1024
6331.024	queue	R	2302464	256
6331.268	issue	W	2565120	1024
6362.918	cmplt	W	2564096	1024
6363.223	issue	W	2566144	1024
6394.140	cmplt	W	2565120	1024
6425.088	cmplt	W	2566144	1024
6425.423	issue	R	2302208	512
6431.833	cmplt	R	2302208	512
6432.199	queue	R	2302720	256
6432.291	issue	R	2302720	256
6432.596	queue	R	2302976	256
6435.648	cmplt	R	2302720	256
6435.739	issue	R	2302976	256
6436.045	queue	R	2303232	256
6439.097	cmplt	R	2302976	256
6439.158	issue	R	2303232	256
6439.463	queue	R	2303488	256
6442.515	cmplt	R	2303232	256
6442.606	issue	R	2303488	256
6442.912	queue	R	2303744	256
6445.964	cmplt	R	2303488	256
6446.055	issue	R	2303744	256
6446.330	queue	R	2304000	256
6449.412	cmplt	R	2303744	256
6449.474	issue	R	2304000	256
6449.779	queue	R	2304256	256
6452.831	cmplt	R	2304000	256
6452.922	issue	R	2304256	256
6453.228	queue	R	2304512	256
6456.280	cmplt	R	2304256	256
6456.371	issue	R	2304512	256
6456.646	queue	R	2304768	256
6459.698	cmplt	R	2304512	256
6459.789	issue	R	2304768	256
6460.125	queue	R	2305024	256
6463.177	cmplt	R	2304768	256
6463.269	issue	R	2305024	256
6463.543	queue	R	2305280	256
6466.595	cmplt	R	2305024	256
6466.687	issue	R	2305280	256
6466.992	queue	R	2305536	256
6470.075	cmplt	R	2305280	256
6470.166	issue	R	2305536	256
6470.472	queue	R	2305792	256
6473.524	cmplt	R	2305536	256
6473.615	issue	R	2305792	256
6473.920	queue	R	2306048	256
6476.972	cmplt	R	2305792	256
6477.064	issue	R	2306048	256
6477.339	queue	R	2306304	256
6480.391	cmplt	R	2306048	256
6480.482	issue	R	2306304	256
6480.787	queue	R	2306560	256
6483.839	cmplt	R	2306304	256
6483.931	issue	R	2306560	256
6484.206	queue	R	2306816	256
6487.258	cmplt	R	2306560	256
6487.349	issue	R	2306816	256
6487.655	queue	R	2307072	256
6490.707	cmplt	R	2306816	256
6490.798	issue	R	2307072	256
6491.073	queue	R	2307328	256
6494.125	cmplt	R	2307072	256
6494.216	issue	R	2307328	256
6494.522	queue	R	2307584	256
6497.574	cmplt	R	2307328	256
6497.665	issue	R	2307584	256
6497.940	queue	R	2307840	256
6500.992	cmplt	R	2307584	256
6501.114	issue	W	2567168	1024
6501.480	queue	R	2308096	256
6501.694	issue	W	2568192	368
6533.405	cmplt	W	2567168	1024
6533.740	issue	W	2568560	1024
6559.286	cmplt	W	2568192	368
6559.408	issue	W	2569584	1024
6585.716	cmplt	W	2568560	1024
6613.612	cmplt	W	2569584	1024
6613.948	issue	R	2307840	512
6620.357	cmplt	R	2307840	512
6620.754	queue	R	2308352	256
6620.845	issue	R	2308352	256
6621.151	queue	R	2308608	256
6624.203	cmplt	R	2308352	256
6624.294	issue	R	2308608	256
6624.569	queue	R	2308864	256
6627.621	cmplt	R	2308608	256
6627.712	issue	R	2308864	256
6628.018	queue	R	2309120	256
6631.070	cmplt	R	2308864	256
6631.161	issue	R	2309120	256
6631.467	queue	R	2309376	256
6634.488	cmplt	R	2309120	256
6634.580	issue	R	2309376	256
6634.885	queue	R	2309632	256
6637.937	cmplt	R	2309376	256
6638.028	issue	R	2309632	256
6638.334	queue	R	2309888	256
6641.386	cmplt	R	2309632	256
6641.477	issue	R	2309888	256
6641.782	queue	R	2310144	256
6644.834	cmplt	R	2309888	256
6644.926	issue	R	2310144	256
6645.201	queue	R	2310400	256
6648.253	cmplt	R	2310144	256
6648.344	issue	R	2310400	256
6648.649	queue	R	2310656	256
6651.702	cmplt	R	2310400	256
6651.793	issue	R	2310656	256
6652.098	queue	R	2310912	256
6655.120	cmplt	R	2310656	256
6655.211	issue	R	2310912	256
6655.517	queue	R	2311168	256
6658.569	cmplt	R	2310912	256
6658.660	issue	R	2311168	256
6658.965	queue	R	2311424	256
6661.987	cmplt	R	2311168	256
6662.078	issue	R	2311424	256
6662.414	queue	R	2311680	256
6665.466	cmplt	R	2311424	256
6665.558	issue	R	2311680	256
6665.832	queue	R	2311936	256
6668.884	cmplt	R	2311680	256
6668.976	issue	R	2311936	256
6669.281	queue	R	2312192	256
6672.333	cmplt	R	2311936	256
6672.425	issue	R	2312192	256
6672.730	queue	R	2312448	256
6675.782	cmplt	R	2312192	256
6675.874	issue	R	2312448	256
6676.148	queue	R	2312704	256
6679.200	cmplt	R	2312448	256
6679.292	issue	R	2312704	256
6679.597	queue	R	2312960	256
6682.649	cmplt	R	2312704	256
6682.741	issue	R	2312960	256
6683.046	queue	R	2313216	256
6686.098	cmplt	R	2312960	256
6686.159	issue	R	2313216	256
6686.464	queue	R	2313472	256
6689.516	cmplt	R	2313216	256
6689.608	issue	R	2313472	256
6689.882	queue	R	2313728	256
6692.935	cmplt	R	2313472	256
6693.087	issue	W	2570608	1024
6693.423	queue	R	2313984	256
6723.485	cmplt	W	2570608	1024
6723.821	issue	W	2571632	656
6751.625	cmplt	W	2571632	656
6751.900	issue	R	2313728	512
6758.309	cmplt	R	2313728	512
6758.675	queue	R	2314240	256
6758.767	issue	R	2314240	256
6759.042	queue	R	2314496	256
6762.124	cmplt	R	2314240	256
6762.216	issue	R	2314496	256
6762.490	queue	R	2314752	256
6765.542	cmplt	R	2314496	256
6765.634	issue	R	2314752	256
6765.939	queue	R	2315008	256
6768.991	cmplt	R	2314752	256
6769.083	issue	R	2315008	256
6769.388	queue	R	2315264	256
6772.410	cmplt	R	2315008	256
6772.501	issue	R	2315264	256
6772.806	queue	R	2315520	256
6775.858	cmplt	R	2315264	256
6775.950	issue	R	2315520	256
6776.225	queue	R	2315776	256
6779.277	cmplt	R	2315520	256
6779.368	issue	R	2315776	256
6779.673	queue	R	2316032	256
6782.725	cmplt	R	2315776	256
6782.817	issue	R	2316032	256
6783.122	queue	R	2316288	256
6786.174	cmplt	R	2316032	256
6786.235	issue	R	2316288	256
6786.541	queue	R	2316544	256
6789.593	cmplt	R	2316288	256
6789.684	issue	R	2316544	256
6789.989	queue	R	2316800	256
6793.011	cmplt	R	2316544	256
6793.102	issue	R	2316800	256
6793.408	queue	R	2317056	256
6796.460	cmplt	R	2316800	256
6796.551	issue	R	2317056	256
6796.826	queue	R	2317312	256
6799.878	cmplt	R	2317056	256
6800.000	issue	R	2317312	256
6800.305	queue	R	2317568	256
6803.357	cmplt	R	2317312	256
6803.449	issue	R	2317568	256
6803.723	queue	R	2317824	256
6806.776	cmplt	R	2317568	256
6806.867	issue	R	2317824	256
6807.172	queue	R	2318080	256
6810.224	cmplt	R	2317824	256
6810.285	issue	R	2318080	256
6810.621	queue	R	2318336	256
6813.643	cmplt	R	2318080	256
6813.734	issue	R	2318336	256
6814.009	queue	R	2318592	256
6817.061	cmplt	R	2318336	256
6817.152	issue	R	2318592	256
6817.458	queue	R	2318848	256
6820.510	cmplt	R	2318592	256
6820.632	issue	W	2572288	1024
6820.998	queue	R	2319104	256
6821.212	issue	W	2573312	1024
6853.441	cmplt	W	2572288	1024
6853.746	issue	W	2574336	1024
6878.468	cmplt	W	2573312	1024
6878.743	issue	W	2575360	1024
6903.464	cmplt	W	2574336	1024
6928.399	cmplt	W	2575360	1024
6928.704	issue	R	2318848	512
6935.114	cmplt	R	2318848	512
6935.510	queue	R	2319360	256
6935.602	issue	R	2319360	256
6935.877	queue	R	2319616	256
6938.929	cmplt	R	2319360	256
6939.051	issue	R	2319616	256
6939.325	queue	R	2319872	256
6942.378	cmplt	R	2319616	256
6942.469	issue	R	2319872	256
6942.774	queue	R	2320128	256
6945.796	cmplt	R	2319872	256
6945.887	issue	R	2320128	256
6946.193	queue	R	2320384	256
6949.245	cmplt	R	2320128	256
6949.336	issue	R	2320384	256
6949.641	queue	R	2320640	256
6952.693	cmplt	R	2320384	256
6952.785	issue	R	2320640	256
6953.060	queue	R	2320896	256
6956.112	cmplt	R	2320640	256
6956.203	issue	R	2320896	256
6956.508	queue	R	2321152	256
6959.561	cmplt	R	2320896	256
6959.652	issue	R	2321152	256
6959.927	queue	R	2321408	256
6962.979	cmplt	R	2321152	256
6963.070	issue	R	2321408	256
6963.345	queue	R	2321664	256
6966.428	cmplt	R	2321408	256
6966.489	issue	R	2321664	256
6966.794	queue	R	2321920	256
6969.846	cmplt	R	2321664	256
6969.937	issue	R	2321920	256
6970.243	queue	R	2322176	256
6973.325	cmplt	R	2321920	256
6973.417	issue	R	2322176	256
6973.691	queue	R	2322432	256
6976.743	cmplt	R	2322176	256
6976.835	issue	R	2322432	256
6977.140	queue	R	2322688	256
6980.192	cmplt	R	2322432	256
6980.284	issue	R	2322688	256
6980.589	queue	R	2322944	256
6983.611	cmplt	R	2322688	256
6983.702	issue	R	2322944	256
6984.007	queue	R	2323200	256
6987.059	cmplt	R	2322944	256
6987.151	issue	R	2323200	256
6987.426	queue	R	2323456	256
6990.508	cmplt	R	2323200	256
6990.600	issue	R	2323456	256
6990.874	queue	R	2323712	256
6993.926	cmplt	R	2323456	256
6994.018	issue	R	2323712	256
6994.323	queue	R	2323968	256
6997.375	cmplt	R	2323712	256
6997.467	issue	R	2323968	256
6997.741	queue	R	2324224	256
7000.794	cmplt	R	2323968	256
7000.916	issue	W	2576384	1024
7001.282	queue	R	2324480	256
7026.736	cmplt	W	2576384	1024
7027.072	issue	W	2577408	1024
7052.953	cmplt	W	2577408	1024
7053.319	issue	R	2324224	512
7059.728	cmplt	R	2324224	512
7060.064	issue	W	2578432	1024
7060.156	queue	R	2324736	256
7060.644	queue	R	2324992	256
7085.854	cmplt	W	2578432	1024
7086.190	issue	R	2324736	512
7092.629	cmplt	R	2324736	512
7092.996	queue	R	2325248	256
7093.087	issue	R	2325248	256
7093.362	queue	R	2325504	256
7096.444	cmplt	R	2325248	256
7096.536	issue	R	2325504	256
7096.811	queue	R	2325760	256
7099.863	cmplt	R	2325504	256
7099.954	issue	R	2325760	256
7100.290	queue	R	2326016	256
7103.311	cmplt	R	2325760	256
7103.403	issue	R	2326016	256
7103.708	queue	R	2326272	256
7106.760	cmplt	R	2326016	256
7106.852	issue	R	2326272	256
7107.157	queue	R	2326528	256
7110.179	cmplt	R	2326272	256
7110.270	issue	R	2326528	256
7110.575	queue	R	2326784	256
7113.627	cmplt	R	2326528	256
7113.719	issue	R	2326784	256
7113.994	queue	R	2327040	256
7117.046	cmplt	R	2326784	256
7117.137	issue	R	2327040	256
7117.442	queue	R	2327296	256
7120.494	cmplt	R	2327040	256
7120.586	issue	R	2327296	256
7120.861	queue	R	2327552	256
7123.943	cmplt	R	2327296	256
7124.035	issue	R	2327552	256
7124.309	queue	R	2327808	256
7127.362	cmplt	R	2327552	256
7127.453	issue	R	2327808	256
7127.728	queue	R	2328064	256
7130.810	cmplt	R	2327808	256
7130.902	issue	R	2328064	256
7131.207	queue	R	2328320	256
7134.259	cmplt	R	2328064	256
7134.351	issue	R	2328320	256
7134.625	queue	R	2328576	256
7137.677	cmplt	R	2328320	256
7137.769	issue	R	2328576	256
7138.074	queue	R	2328832	256
7141.096	cmplt	R	2328576	256
7141.187	issue	R	2328832	256
7141.492	queue	R	2329088	256
7144.544	cmplt	R	2328832	256
7144.636	issue	R	2329088	256
7144.941	queue	R	2329344	256
7147.963	cmplt	R	2329088	256
7148.054	issue	R	2329344	256
7148.360	queue	R	2329600	256
7151.412	cmplt	R	2329344	256
7151.503	issue	R	2329600	256
7151.778	queue	R	2329856	256
7154.860	cmplt	R	2329600	256
7154.921	issue	R	2329856	256
7155.227	queue	R	2330112	256
7158.279	cmplt	R	2329856	256
7158.370	issue	R	2330112	256
7158.675	queue	R	2330368	256
7161.727	cmplt	R	2330112	256
7161.850	issue	W	2579456	1024
7162.216	queue	R	2330624	256
7162.429	issue	W	2580480	1024
7187.822	cmplt	W	2579456	1024
7188.128	issue	W	2581504	1024
7212.819	cmplt	W	2580480	1024
7237.601	cmplt	W	2581504	1024
7237.906	issue	R	2330368	512
7244.316	cmplt	R	2330368	512
7244.682	queue	R	2330880	256
7244.773	issue	R	2330880	256
7245.109	queue	R	2331136	256
7248.131	cmplt	R	2330880	256
7248.222	issue	R	2331136	256
7248.527	queue	R	2331392	256
7251.549	cmplt	R	2331136	256
7251.640	issue	R	2331392	256
7251.946	queue	R	2331648	256
7254.998	cmplt	R	2331392	256
7255.089	issue	R	2331648	256
7255.394	queue	R	2331904	256
7258.447	cmplt	R	2331648	256
7258.538	issue	R	2331904	256
7258.813	queue	R	2332160	256
7261.865	cmplt	R	2331904	256
7261.956	issue	R	2332160	256
7262.262	queue	R	2332416	256
7265.314	cmplt	R	2332160	256
7265.405	issue	R	2332416	256
7265.710	queue	R	2332672	256
7268.762	cmplt	R	2332416	256
7268.854	issue	R	2332672	256
7269.129	queue	R	2332928	256
7272.181	cmplt	R	2332672	256
7272.272	issue	R	2332928	256
7272.577	queue	R	2333184	256
7275.629	cmplt	R	2332928	256
7275.721	issue	R	2333184	256
7275.996	queue	R	2333440	256
7279.048	cmplt	R	2333184	256
7279.139	issue	R	2333440	256
7279.445	queue	R	2333696	256
7282.466	cmplt	R	2333440	256
7282.558	issue	R	2333696	256
7282.863	queue	R	2333952	256
7285.915	cmplt	R	2333696	256
7286.006	issue	R	2333952	256
7286.281	queue	R	2334208	256
7289.333	cmplt	R	2333952	256
7289.425	issue	R	2334208	256
7289.730	queue	R	2334464	256
7292.782	cmplt	R	2334208	256
7292.873	issue	R	2334464	256
7293.179	queue	R	2334720	256
7296.200	cmplt	R	2334464	256
7296.292	issue	R	2334720	256
7296.597	queue	R	2334976	256
7299.649	cmplt	R	2334720	256
7299.741	issue	R	2334976	256
7300.046	queue	R	2335232	256
7303.067	cmplt	R	2334976	256
7303.159	issue	R	2335232	256
7303.464	queue	R	2335488	256
7306.516	cmplt	R	2335232	256
7306.608	issue	R	2335488	256
7306.882	queue	R	2335744	256
7309.934	cmplt	R	2335488	256
7310.087	issue	W	2582528	1024
7310.423	queue	R	2336000	256
7310.636	issue	W	2583552	1024
7335.938	cmplt	W	2582528	1024
7336.243	issue	W	2584576	1024
7360.903	cmplt	W	2583552	1024
7385.778	cmplt	W	2584576	1024
7386.113	issue	R	2335744	512
7392.523	cmplt	R	2335744	512
7392.889	queue	R	2336256	256
7392.980	issue	R	2336256	256
7393.286	queue	R	2336512	256
7396.338	cmplt	R	2336256	256
7396.429	issue	R	2336512	256
7396.704	queue	R	2336768	256
7399.756	cmplt	R	2336512	256
7399.847	issue	R	2336768	256
7400.336	queue	R	2337024	256
7403.205	cmplt	R	2336768	256
7403.296	issue	R	2337024	256
7403.601	queue	R	2337280	256
7406.653	cmplt	R	2337024	256
7406.745	issue	R	2337280	256
7407.020	queue	R	2337536	256
7410.102	cmplt	R	2337280	256
7410.194	issue	R	2337536	256
7410.499	queue	R	2337792	256
7413.551	cmplt	R	2337536	256
7413.612	issue	R	2337792	256
7413.917	queue	R	2338048	256
7416.969	cmplt	R	2337792	256
7417.061	issue	R	2338048	256
7417.366	queue	R	2338304	256
7420.418	cmplt	R	2338048	256
7420.479	issue	R	2338304	256
7420.784	queue	R	2338560	256
7423.836	cmplt	R	2338304	256
7423.928	issue	R	2338560	256
7424.233	queue	R	2338816	256
7427.255	cmplt	R	2338560	256
7427.346	issue	R	2338816	256
7427.651	queue	R	2339072	256
7430.703	cmplt	R	2338816	256
7430.795	issue	R	2339072	256
7431.100	queue	R	2339328	256
7434.152	cmplt	R	2339072	256
7434.244	issue	R	2339328	256
7434.519	queue	R	2339584	256
7437.571	cmplt	R	2339328	256
7437.662	issue	R	2339584	256
7437.967	queue	R	2339840	256
7441.019	cmplt	R	2339584	256
7441.111	issue	R	2339840	256
7441.416	queue	R	2340096	256
7444.468	cmplt	R	2339840	256
7444.560	issue	R	2340096	256
7444.834	queue	R	2340352	256
7447.978	cmplt	R	2340096	256
7448.039	issue	R	2340352	256
7448.344	queue	R	2340608	256
7451.396	cmplt	R	2340352	256
7451.488	issue	R	2340608	256
7451.793	queue	R	2340864	256
7454.815	cmplt	R	2340608	256
7454.906	issue	R	2340864	256
7455.211	queue	R	2341120	256
7458.263	cmplt	R	2340864	256
7458.355	issue	R	2341120	256
7458.630	queue	R	2341376	256
7461.682	cmplt	R	2341120	256
7461.834	issue	W	2585600	1024
7462.170	queue	R	2341632	256
7462.353	issue	W	2586624	1024
7487.655	cmplt	W	2585600	1024
7487.960	issue	W	2587648	1024
7525.408	cmplt	W	2586624	1024
7550.343	cmplt	W	2587648	1024
7550.710	issue	R	2341376	512
7557.119	cmplt	R	2341376	512
7557.485	queue	R	2341888	256
7557.577	issue	R	2341888	256
7557.882	queue	R	2342144	256
7560.934	cmplt	R	2341888	256
7561.025	issue	R	2342144	256
7561.300	queue	R	2342400	256
7564.352	cmplt	R	2342144	256
7564.444	issue	R	2342400	256
7564.749	queue	R	2342656	256
7567.801	cmplt	R	2342400	256
7567.893	issue	R	2342656	256
7568.198	queue	R	2342912	256
7571.219	cmplt	R	2342656	256
7571.311	issue	R	2342912	256
7571.616	queue	R	2343168	256
7574.668	cmplt	R	2342912	256
7574.760	issue	R	2343168	256
7575.065	queue	R	2343424	256
7578.086	cmplt	R	2343168	256
7578.178	issue	R	2343424	256
7578.483	queue	R	2343680	256
7581.535	cmplt	R	2343424	256
7581.627	issue	R	2343680	256
7581.901	queue	R	2343936	256
7584.953	cmplt	R	2343680	256
7585.045	issue	R	2343936	256
7585.350	queue	R	2344192	256
7588.402	cmplt	R	2343936	256
7588.494	issue	R	2344192	256
7588.799	queue	R	2344448	256
7591.851	cmplt	R	2344192	256
7591.943	issue	R	2344448	256
7592.217	queue	R	2344704	256
7595.269	cmplt	R	2344448	256
7595.391	issue	R	2344704	256
7595.666	queue	R	2344960	256
7598.718	cmplt	R	2344704	256
7598.810	issue	R	2344960	256
7599.115	queue	R	2345216	256
7602.136	cmplt	R	2344960	256
7602.228	issue	R	2345216	256
7602.533	queue	R	2345472	256
7605.585	cmplt	R	2345216	256
7605.677	issue	R	2345472	256
7605.951	queue	R	2345728	256
7609.034	cmplt	R	2345472	256
7609.126	issue	R	2345728	256
7609.400	queue	R	2345984	256
7612.452	cmplt	R	2345728	256
7612.544	issue	R	2345984	256
7612.849	queue	R	2346240	256
7615.901	cmplt	R	2345984	256
7615.993	issue	R	2346240	256
7616.267	queue	R	2346496	256
7619.319	cmplt	R	2346240	256
7619.411	issue	R	2346496	256
7619.686	queue	R	2346752	256
7622.738	cmplt	R	2346496	256
7622.890	issue	W	2588672	1024
7623.226	queue	R	2347008	256
7623.440	issue	W	2589696	1024
7655.608	cmplt	W	2588672	1024
7655.913	issue	W	2590720	1024
7680.696	cmplt	W	2589696	1024
7705.753	cmplt	W	2590720	1024
7706.058	issue	R	2346752	512
7712.468	cmplt	R	2346752	512
7712.834	queue	R	2347264	256
7712.925	issue	R	2347264	256
7713.231	queue	R	2347520	256
7716.283	cmplt	R	2347264	256
7716.374	issue	R	2347520	256
7716.679	queue	R	2347776	256
7719.731	cmplt	R	2347520	256
7719.792	issue	R	2347776	256
7720.128	queue	R	2348032	256
7723.180	cmplt	R	2347776	256
7723.272	issue	R	2348032	256
7723.577	queue	R	2348288	256
7726.629	cmplt	R	2348032	256
7726.721	issue	R	2348288	256
7727.026	queue	R	2348544	256
7730.078	cmplt	R	2348288	256
7730.169	issue	R	2348544	256
7730.475	queue	R	2348800	256
7733.527	cmplt	R	2348544	256
7733.618	issue	R	2348800	256
7733.893	queue	R	2349056	256
7736.945	cmplt	R	2348800	256
7737.036	issue	R	2349056	256
7737.311	queue	R	2349312	256
7740.394	cmplt	R	2349056	256
7740.455	issue	R	2349312	256
7740.760	queue	R	2349568	256
7743.812	cmplt	R	2349312	256
7743.904	issue	R	2349568	256
7744.209	queue	R	2349824	256
7747.261	cmplt	R	2349568	256
7747.352	issue	R	2349824	256
7747.627	queue	R	2350080	256
7750.679	cmplt	R	2349824	256
7750.771	issue	R	2350080	256
7751.076	queue	R	2350336	256
7754.128	cmplt	R	2350080	256
7754.189	issue	R	2350336	256
7754.525	queue	R	2350592	256
7757.546	cmplt	R	2350336	256
7757.638	issue	R	2350592	256
7757.943	queue	R	2350848	256
7760.995	cmplt	R	2350592	256
7761.087	issue	R	2350848	256
7761.392	queue	R	2351104	256
7764.413	cmplt	R	2350848	256
7764.505	issue	R	2351104	256
7764.810	queue	R	2351360	256
7767.862	cmplt	R	2351104	256
7767.954	issue	R	2351360	256
7768.228	queue	R	2351616	256
7771.280	cmplt	R	2351360	256
7771.372	issue	R	2351616	256
7771.677	queue	R	2351872	256
7774.729	cmplt	R	2351616	256
7774.821	issue	R	2351872	256
7775.095	queue	R	2352128	256
7778.147	cmplt	R	2351872	256
7778.239	issue	R	2352128	256
7778.544	queue	R	2352384	256
7781.596	cmplt	R	2352128	256
7781.718	issue	W	2591744	1024
7782.085	queue	R	2352640	256
7782.268	issue	W	2592768	1024
7807.722	cmplt	W	2591744	1024
7808.027	issue	W	2593792	1024
7832.809	cmplt	W	2592768	1024
7857.897	cmplt	W	2593792	1024
7858.233	issue	R	2352384	512
7864.642	cmplt	R	2352384	512
7865.008	queue	R	2352896	256
7865.100	issue	R	2352896	256
7865.405	queue	R	2353152	256
7868.457	cmplt	R	2352896	256
7868.549	issue	R	2353152	256
7868.854	queue	R	2353408	256
7871.875	cmplt	R	2353152	256
7871.967	issue	R	2353408	256
7872.272	queue	R	2353664	256
7875.324	cmplt	R	2353408	256
7875.416	issue	R	2353664	256
7875.691	queue	R	2353920	256
7878.743	cmplt	R	2353664	256
7878.834	issue	R	2353920	256
7879.139	queue	R	2354176	256
7882.191	cmplt	R	2353920	256
7882.283	issue	R	2354176	256
7882.588	queue	R	2354432	256
7885.610	cmplt	R	2354176	256
7885.701	issue	R	2354432	256
7886.006	queue	R	2354688	256
7889.058	cmplt	R	2354432	256
7889.150	issue	R	2354688	256
7889.425	queue	R	2354944	256
7892.477	cmplt	R	2354688	256
7892.568	issue	R	2354944	256
7892.873	queue	R	2355200	256
7895.926	cmplt	R	2354944	256
7896.017	issue	R	2355200	256
7896.292	queue	R	2355456	256
7899.344	cmplt	R	2355200	256
7899.435	issue	R	2355456	256
7899.741	queue	R	2355712	256
7902.793	cmplt	R	2355456	256
7902.884	issue	R	2355712	256
7903.159	queue	R	2355968	256
7906.211	cmplt	R	2355712	256
7906.302	issue	R	2355968	256
7906.608	queue	R	2356224	256
7909.660	cmplt	R	2355968	256
7909.751	issue	R	2356224	256
7910.056	queue	R	2356480	256
7913.108	cmplt	R	2356224	256
7913.170	issue	R	2356480	256
7913.475	queue	R	2356736	256
7916.527	cmplt	R	2356480	256
7916.618	issue	R	2356736	256
7916.893	queue	R	2356992	256
7920.006	cmplt	R	2356736	256
7920.098	issue	R	2356992	256
7920.403	queue	R	2357248	256
7923.455	cmplt	R	2356992	256
7923.546	issue	R	2357248	256
7923.821	queue	R	2357504	256
7926.873	cmplt	R	2357248	256
7926.965	issue	R	2357504	256
7927.300	queue	R	2357760	256
7930.322	cmplt	R	2357504	256
7930.444	issue	W	2594816	1024
7930.810	queue	R	2358016	256
7931.024	issue	W	2595840	1024
7956.478	cmplt	W	2594816	1024
7956.783	issue	W	2596864	1024
7981.474	cmplt	W	2595840	1024
8006.501	cmplt	W	2596864	1024
8006.837	issue	R	2357760	512
8013.246	cmplt	R	2357760	512
8013.612	queue	R	2358272	256
8013.704	issue	R	2358272	256
8014.009	queue	R	2358528	256
8017.061	cmplt	R	2358272	256
8017.152	issue	R	2358528	256
8017.458	queue	R	2358784	256
8020.510	cmplt	R	2358528	256
8020.571	issue	R	2358784	256
8020.876	queue	R	2359040	256
8023.928	cmplt	R	2358784	256
8024.020	issue	R	2359040	256
8024.325	queue	R	2375680	256
8027.377	cmplt	R	2359040	256
8027.468	issue	R	2375680	256
8027.743	queue	R	2375936	256
8030.917	cmplt	R	2375680	256
8031.009	issue	R	2375936	256
8031.314	queue	R	2376192	256
8034.366	cmplt	R	2375936	256
8034.458	issue	R	2376192	256
8034.763	queue	R	2376448	256
8037.845	cmplt	R	2376192	256
8037.937	issue	R	2376448	256
8038.212	queue	R	2376704	256
8041.294	cmplt	R	2376448	256
8041.386	issue	R	2376704	256
8041.691	queue	R	2376960	256
8044.743	cmplt	R	2376704	256
8044.834	issue	R	2376960	256
8045.140	queue	R	2377216	256
8048.222	cmplt	R	2376960	256
8048.314	issue	R	2377216	256
8048.588	queue	R	2377472	256
8051.671	cmplt	R	2377216	256
8051.763	issue	R	2377472	256
8052.068	queue	R	2377728	256
8055.150	cmplt	R	2377472	256
8055.242	issue	R	2377728	256
8055.517	queue	R	2377984	256
8058.599	cmplt	R	2377728	256
8058.691	issue	R	2377984	256
8058.965	queue	R	2378240	256
8062.048	cmplt	R	2377984	256
8062.139	issue	R	2378240	256
8062.445	queue	R	2378496	256
8065.497	cmplt	R	2378240	256
8065.588	issue	R	2378496	256
8065.893	queue	R	2378752	256
8068.976	cmplt	R	2378496	256
8069.068	issue	R	2378752	256
8069.342	queue	R	2379008	256
8072.425	cmplt	R	2378752	256
8072.516	issue	R	2379008	256
8072.822	queue	R	2379264	256
8075.874	cmplt	R	2379008	256
8075.965	issue	R	2379264	256
8076.270	queue	R	2379520	256
8079.353	cmplt	R	2379264	256
8079.445	issue	R	2379520	256
8079.719	queue	R	2379776	256
8082.802	cmplt	R	2379520	256
8082.924	issue	W	2597888	1024
8083.290	queue	R	2380032	256
8083.504	issue	W	2598912	1024
8108.958	cmplt	W	2597888	1024
8109.293	issue	W	2599936	1024
8134.137	cmplt	W	2598912	1024
8159.194	cmplt	W	2599936	1024
8159.530	issue	R	2379776	512
8165.939	cmplt	R	2379776	512
8166.367	queue	R	2380288	256
8166.458	issue	R	2380288	256
8166.733	queue	R	2380544	256
8169.815	cmplt	R	2380288	256
8169.907	issue	R	2380544	256
8170.243	queue	R	2380800	256
8173.325	cmplt	R	2380544	256
8173.417	issue	R	2380800	256
8173.722	queue	R	2381056	256
8176.774	cmplt	R	2380800	256
8176.866	issue	R	2381056	256
8177.171	queue	R	2381312	256
8180.253	cmplt	R	2381056	256
8180.345	issue	R	2381312	256
8180.620	queue	R	2381568	256
8183.702	cmplt	R	2381312	256
8183.794	issue	R	2381568	256
8184.099	queue	R	2381824	256
8187.181	cmplt	R	2381568	256
8187.242	issue	R	2381824	256
8187.548	queue	R	2382080	256
8190.630	cmplt	R	2381824	256
8190.722	issue	R	2382080	256
8191.027	queue	R	2382336	256
8194.079	cmplt	R	2382080	256
8194.171	issue	R	2382336	256
8194.476	queue	R	2382592	256
8197.558	cmplt	R	2382336	256
8197.650	issue	R	2382592	256
8197.925	queue	R	2382848	256
8201.007	cmplt	R	2382592	256
8201.099	issue	R	2382848	256
8201.373	queue	R	2383104	256
8204.456	cmplt	R	2382848	256
8204.548	issue	R	2383104	256
8204.853	queue	R	2383360	256
8207.905	cmplt	R	2383104	256
8207.996	issue	R	2383360	256
8208.302	queue	R	2383616	256
8211.384	cmplt	R	2383360	256
8211.476	issue	R	2383616	256
8211.750	queue	R	2383872	256
8214.833	cmplt	R	2383616	256
8214.924	issue	R	2383872	256
8215.230	queue	R	2384128	256
8218.282	cmplt	R	2383872	256
8218.373	issue	R	2384128	256
8218.678	queue	R	2384384	256
8221.761	cmplt	R	2384128	256
8221.853	issue	R	2384384	256
8222.127	queue	R	2384640	256
8225.210	cmplt	R	2384384	256
8225.301	issue	R	2384640	256
8225.607	queue	R	2384896	256
8228.659	cmplt	R	2384640	256
8228.750	issue	R	2384896	256
8229.055	queue	R	2385152	256
8232.138	cmplt	R	2384896	256
8232.260	issue	W	2600960	1024
8232.626	queue	R	2385408	256
8232.809	issue	W	2601984	1024
8258.263	cmplt	W	2600960	1024
8258.569	issue	W	2603008	1024
8283.473	cmplt	W	2601984	1024
8308.500	cmplt	W	2603008	1024
8308.836	issue	R	2385152	512
8315.275	cmplt	R	2385152	512
8315.642	queue	R	2385664	256
8315.733	issue	R	2385664	256
8316.008	queue	R	2385920	256
8319.090	cmplt	R	2385664	256
8319.182	issue	R	2385920	256
8319.487	queue	R	2386176	256
8322.570	cmplt	R	2385920	256
8322.631	issue	R	2386176	256
8322.936	queue	R	2386432	256
8326.019	cmplt	R	2386176	256
8326.110	issue	R	2386432	256
8326.385	queue	R	2386688	256
8329.467	cmplt	R	2386432	256
8329.559	issue	R	2386688	256
8329.864	queue	R	2386944	256
8332.916	cmplt	R	2386688	256
8333.008	issue	R	2386944	256
8333.313	queue	R	2387200	256
8336.396	cmplt	R	2386944	256
8336.487	issue	R	2387200	256
8336.762	queue	R	2387456	256
8339.844	cmplt	R	2387200	256
8339.936	issue	R	2387456	256
8340.241	queue	R	2387712	256
8343.324	cmplt	R	2387456	256
8343.415	issue	R	2387712	256
8343.720	queue	R	2387968	256
8346.772	cmplt	R	2387712	256
8346.864	issue	R	2387968	256
8347.169	queue	R	2388224	256
8350.252	cmplt	R	2387968	256
8350.343	issue	R	2388224	256
8350.649	queue	R	2388480	256
8353.701	cmplt	R	2388224	256
8353.792	issue	R	2388480	256
8354.097	queue	R	2388736	256
8357.180	cmplt	R	2388480	256
8357.241	issue	R	2388736	256
8357.546	queue	R	2388992	256
8360.629	cmplt	R	2388736	256
8360.720	issue	R	2388992	256
8360.995	queue	R	2389248	256
8364.078	cmplt	R	2388992	256
8364.169	issue	R	2389248	256
8364.474	queue	R	2389504	256
8367.526	cmplt	R	2389248	256
8367.618	issue	R	2389504	256
8367.923	queue	R	2389760	256
8371.006	cmplt	R	2389504	256
8371.067	issue	R	2389760	256
8371.372	queue	R	2390016	256
8374.454	cmplt	R	2389760	256
8374.546	issue	R	2390016	256
8374.851	queue	R	2390272	256
8377.903	cmplt	R	2390016	256
8377.995	issue	R	2390272	256
8378.300	queue	R	2390528	256
8381.383	cmplt	R	2390272	256
8381.505	issue	W	2604032	1024
8381.871	queue	R	2390784	256
8382.054	issue	W	2605056	1024
8407.447	cmplt	W	2604032	1024
8407.783	issue	W	2606080	1024
8439.280	cmplt	W	2605056	1024
8464.123	cmplt	W	2606080	1024
8464.429	issue	R	2390528	512
8470.868	cmplt	R	2390528	512
8471.265	queue	R	2391040	256
8471.357	issue	R	2391040	256
8471.662	queue	R	2391296	256
8474.714	cmplt	R	2391040	256
8474.805	issue	R	2391296	256
8475.111	queue	R	2391552	256
8478.193	cmplt	R	2391296	256
8478.254	issue	R	2391552	256
8478.559	queue	R	2391808	256
8481.642	cmplt	R	2391552	256
8481.734	issue	R	2391808	256
8482.008	queue	R	2392064	256
8485.091	cmplt	R	2391808	256
8485.182	issue	R	2392064	256
8485.457	queue	R	2392320	256
8488.509	cmplt	R	2392064	256
8488.601	issue	R	2392320	256
8488.906	queue	R	2392576	256
8491.958	cmplt	R	2392320	256
8492.049	issue	R	2392576	256
8492.355	queue	R	2392832	256
8495.437	cmplt	R	2392576	256
8495.529	issue	R	2392832	256
8495.803	queue	R	2393088	256
8498.886	cmplt	R	2392832	256
8498.978	issue	R	2393088	256
8499.283	queue	R	2393344	256
8502.335	cmplt	R	2393088	256
8502.426	issue	R	2393344	256
8502.762	queue	R	2393600	256
8505.784	cmplt	R	2393344	256
8505.875	issue	R	2393600	256
8506.180	queue	R	2393856	256
8509.263	cmplt	R	2393600	256
8509.354	issue	R	2393856	256
8509.629	queue	R	2394112	256
8512.712	cmplt	R	2393856	256
8512.803	issue	R	2394112	256
8513.108	queue	R	2394368	256
8516.161	cmplt	R	2394112	256
8516.252	issue	R	2394368	256
8516.557	queue	R	2394624	256
8519.640	cmplt	R	2394368	256
8519.701	issue	R	2394624	256
8520.037	queue	R	2394880	256
8523.089	cmplt	R	2394624	256
8523.180	issue	R	2394880	256
8523.455	queue	R	2395136	256
8526.537	cmplt	R	2394880	256
8526.629	issue	R	2395136	256
8526.934	queue	R	2395392	256
8530.017	cmplt	R	2395136	256
8530.108	issue	R	2395392	256
8530.414	queue	R	2395648	256
8533.466	cmplt	R	2395392	256
8533.557	issue	R	2395648	256
8533.862	queue	R	2395904	256
8536.945	cmplt	R	2395648	256
8537.036	issue	R	2395904	256
8537.311	queue	R	2396160	256
8540.394	cmplt	R	2395904	256
8540.516	issue	W	2607104	1024
8540.882	queue	R	2396416	256
8541.096	issue	W	2608128	1024
8566.428	cmplt	W	2607104	1024
8566.763	issue	W	2609152	368
8591.302	cmplt	W	2608128	1024
8604.822	cmplt	W	2609152	368
8605.005	issue	R	2396160	512
8611.445	cmplt	R	2396160	512
8611.811	queue	R	2396672	256
8611.903	issue	R	2396672	256
8612.208	queue	R	2396928	256
8615.291	cmplt	R	2396672	256
8615.382	issue	R	2396928	256
8615.657	queue	R	2397184	256
8618.740	cmplt	R	2396928	256
8618.831	issue	R	2397184	256
8619.136	queue	R	2397440	256
8622.188	cmplt	R	2397184	256
8622.280	issue	R	2397440	256
8622.585	queue	R	2397696	256
8625.668	cmplt	R	2397440	256
8625.759	issue	R	2397696	256
8626.034	queue	R	2397952	256
8629.116	cmplt	R	2397696	256
8629.208	issue	R	2397952	256
8629.513	queue	R	2398208	256
8632.596	cmplt	R	2397952	256
8632.657	issue	R	2398208	256
8632.962	queue	R	2398464	256
8636.045	cmplt	R	2398208	256
8636.136	issue	R	2398464	256
8636.441	queue	R	2398720	256
8639.493	cmplt	R	2398464	256
8639.585	issue	R	2398720	256
8639.890	queue	R	2398976	256
8642.973	cmplt	R	2398720	256
8643.064	issue	R	2398976	256
8643.369	queue	R	2399232	256
8646.421	cmplt	R	2398976	256
8646.513	issue	R	2399232	256
8646.818	queue	R	2399488	256
8649.901	cmplt	R	2399232	256
8650.023	issue	R	2399488	256
8650.298	queue	R	2399744	256
8653.380	cmplt	R	2399488	256
8653.472	issue	R	2399744	256
8653.777	queue	R	2400000	256
8656.829	cmplt	R	2399744	256
8656.920	issue	R	2400000	256
8657.256	queue	R	2400256	256
8660.278	cmplt	R	2400000	256
8660.369	issue	R	2400256	256
8660.674	queue	R	2400512	256
8663.757	cmplt	R	2400256	256
8663.849	issue	R	2400512	256
8664.123	queue	R	2400768	256
8667.206	cmplt	R	2400512	256
8667.297	issue	R	2400768	256
8667.603	queue	R	2401024	256
8670.655	cmplt	R	2400768	256
8670.746	issue	R	2401024	256
8671.051	queue	R	2401280	256
8674.134	cmplt	R	2401024	256
8674.226	issue	R	2401280	256
8674.500	queue	R	2401536	256
8677.583	cmplt	R	2401280	256
8677.674	issue	R	2401536	256
8677.980	queue	R	2401792	256
8681.032	cmplt	R	2401536	256
8681.184	issue	W	2609520	1024
8681.520	queue	R	2402048	256
8681.734	issue	W	2610544	1024
8711.247	cmplt	W	2609520	1024
8711.552	issue	W	2611568	1024
8738.776	cmplt	W	2610544	1024
8739.081	issue	W	2612592	1024
8764.932	cmplt	W	2611568	1024
8789.623	cmplt	W	2612592	1024
8789.959	issue	R	2401792	512
8796.399	cmplt	R	2401792	512
8796.765	queue	R	2402304	256
8796.856	issue	R	2402304	256
8797.162	queue	R	2402560	256
8800.244	cmplt	R	2402304	256
8800.336	issue	R	2402560	256
8800.641	queue	R	2402816	256
8803.693	cmplt	R	2402560	256
8803.785	issue	R	2402816	256
8804.090	queue	R	2403072	256
8807.172	cmplt	R	2402816	256
8807.233	issue	R	2403072	256
8807.539	queue	R	2403328	256
8810.621	cmplt	R	2403072	256
8810.713	issue	R	2403328	256
8810.987	queue	R	2403584	256
8814.070	cmplt	R	2403328	256
8814.161	issue	R	2403584	256
8814.467	queue	R	2403840	256
8817.519	cmplt	R	2403584	256
8817.610	issue	R	2403840	256
8817.915	queue	R	2404096	256
8820.967	cmplt	R	2403840	256
8821.059	issue	R	2404096	256
8821.364	queue	R	2404352	256
8824.447	cmplt	R	2404096	256
8824.538	issue	R	2404352	256
8824.813	queue	R	2404608	256
8827.896	cmplt	R	2404352	256
8827.987	issue	R	2404608	256
8828.292	queue	R	2404864	256
8831.344	cmplt	R	2404608	256
8831.436	issue	R	2404864	256
8831.741	queue	R	2405120	256
8834.824	cmplt	R	2404864	256
8834.915	issue	R	2405120	256
8835.221	queue	R	2405376	256
8838.273	cmplt	R	2405120	256
8838.364	issue	R	2405376	256
8838.669	queue	R	2405632	256
8841.752	cmplt	R	2405376	256
8841.843	issue	R	2405632	256
8842.118	queue	R	2405888	256
8845.201	cmplt	R	2405632	256
8845.292	issue	R	2405888	256
8845.567	queue	R	2406144	256
8848.649	cmplt	R	2405888	256
8848.741	issue	R	2406144	256
8849.046	queue	R	2406400	256
8852.098	cmplt	R	2406144	256
8852.190	issue	R	2406400	256
8852.495	queue	R	2406656	256
8855.578	cmplt	R	2406400	256
8855.669	issue	R	2406656	256
8855.974	queue	R	2406912	256
8859.026	cmplt	R	2406656	256
8859.118	issue	R	2406912	256
8859.393	queue	R	2407168	256
8862.475	cmplt	R	2406912	256
8862.628	issue	W	2613616	1024
8862.964	queue	R	2407424	256
8889.730	cmplt	W	2613616	1024
8890.127	issue	W	2614640	1024
8919.060	cmplt	W	2614640	1024
8919.396	issue	R	2407168	512
8925.805	cmplt	R	2407168	512
8926.202	queue	R	2407680	256
8926.293	issue	R	2407680	256
8926.568	queue	R	2407936	256
8929.651	cmplt	R	2407680	256
8929.742	issue	R	2407936	256
8930.078	queue	R	2408192	256
8933.130	cmplt	R	2407936	256
8933.191	issue	R	2408192	256
8933.496	queue	R	2408448	256
8936.579	cmplt	R	2408192	256
8936.670	issue	R	2408448	256
8936.975	queue	R	2408704	256
8940.027	cmplt	R	2408448	256
8940.119	issue	R	2408704	256
8940.424	queue	R	2408960	256
8943.507	cmplt	R	2408704	256
8943.568	issue	R	2408960	256
8943.873	queue	R	2409216	256
8946.956	cmplt	R	2408960	256
8947.047	issue	R	2409216	256
8947.322	queue	R	2409472	256
8950.496	cmplt	R	2409216	256
8950.588	issue	R	2409472	256
8950.893	queue	R	2409728	256
8953.945	cmplt	R	2409472	256
8954.036	issue	R	2409728	256
8954.342	queue	R	2409984	256
8957.424	cmplt	R	2409728	256
8957.516	issue	R	2409984	256
8957.790	queue	R	2410240	256
8960.873	cmplt	R	2409984	256
8960.964	issue	R	2410240	256
8961.270	queue	R	2410496	256
8964.322	cmplt	R	2410240	256
8964.413	issue	R	2410496	256
8964.718	queue	R	2410752	256
8967.801	cmplt	R	2410496	256
8967.893	issue	R	2410752	256
8968.167	queue	R	2411008	256
8971.250	cmplt	R	2410752	256
8971.341	issue	R	2411008	256
8971.616	queue	R	2411264	256
8974.699	cmplt	R	2411008	256
8974.790	issue	R	2411264	256
8975.095	queue	R	2411520	256
8978.178	cmplt	R	2411264	256
8978.239	issue	R	2411520	256
8978.544	queue	R	2411776	256
8981.627	cmplt	R	2411520	256
8981.718	issue	R	2411776	256
8981.993	queue	R	2412032	256
8985.076	cmplt	R	2411776	256
8985.167	issue	R	2412032	256
8985.472	queue	R	2412288	256
8988.524	cmplt	R	2412032	256
8988.616	issue	R	2412288	256
8988.921	queue	R	2412544	256
8991.973	cmplt	R	2412288	256
8992.126	issue	W	2615664	1024
8992.461	queue	R	2412800	256
8992.675	issue	W	2616688	1024
9022.432	cmplt	W	2615664	1024
9022.738	issue	W	2617712	1024
9053.655	cmplt	W	2616688	1024
9082.863	cmplt	W	2617712	1024
9083.199	issue	R	2412544	512
9089.699	cmplt	R	2412544	512
9090.066	issue	W	2618736	1024
9090.218	queue	R	2413056	256
9090.646	queue	R	2413312	256
9118.389	cmplt	W	2618736	1024
9118.724	issue	R	2413056	512
9125.164	cmplt	R	2413056	512
9125.561	queue	R	2413568	256
9125.652	issue	R	2413568	256
9125.958	queue	R	2413824	256
9129.071	cmplt	R	2413568	256
9129.162	issue	R	2413824	256
9129.437	queue	R	2414080	256
9132.519	cmplt	R	2413824	256
9132.611	issue	R	2414080	256
9132.916	queue	R	2414336	256
9135.999	cmplt	R	2414080	256
9136.090	issue	R	2414336	256
9136.365	queue	R	2414592	256
9139.448	cmplt	R	2414336	256
9139.539	issue	R	2414592	256
9139.844	queue	R	2414848	256
9142.927	cmplt	R	2414592	256
9143.018	issue	R	2414848	256
9143.324	queue	R	2415104	256
9146.406	cmplt	R	2414848	256
9146.498	issue	R	2415104	256
9146.772	queue	R	2415360	256
9149.855	cmplt	R	2415104	256
9149.947	issue	R	2415360	256
9150.252	queue	R	2415616	256
9153.304	cmplt	R	2415360	256
9153.395	issue	R	2415616	256
9153.701	queue	R	2415872	256
9156.783	cmplt	R	2415616	256
9156.875	issue	R	2415872	256
9157.149	queue	R	2416128	256
9160.232	cmplt	R	2415872	256
9160.324	issue	R	2416128	256
9160.598	queue	R	2416384	256
9163.681	cmplt	R	2416128	256
9163.772	issue	R	2416384	256
9164.078	queue	R	2416640	256
9167.160	cmplt	R	2416384	256
9167.221	issue	R	2416640	256
9167.526	queue	R	2416896	256
9170.609	cmplt	R	2416640	256
9170.700	issue	R	2416896	256
9171.006	queue	R	2417152	256
9174.058	cmplt	R	2416896	256
9174.149	issue	R	2417152	256
9174.454	queue	R	2417408	256
9185.411	cmplt	R	2417152	256
9185.503	issue	R	2417408	256
9185.808	queue	R	2417664	256
9188.860	cmplt	R	2417408	256
9188.952	issue	R	2417664	256
9189.257	queue	R	2417920	256
9192.339	cmplt	R	2417664	256
9192.461	issue	W	2619760	1024
9192.828	queue	R	2418176	256
9193.041	issue	W	2620784	656
9219.319	cmplt	W	2619760	1024
9219.625	issue	W	2637824	1024
9237.357	cmplt	W	2620784	656
9237.571	issue	W	2638848	1024
9268.366	cmplt	W	2637824	1024
9298.611	cmplt	W	2638848	1024
9298.947	issue	R	2417920	512
9305.478	cmplt	R	2417920	512
9305.875	queue	R	2418432	256
9305.967	issue	R	2418432	256
9306.272	queue	R	2418688	256
9309.354	cmplt	R	2418432	256
9309.446	issue	R	2418688	256
9309.721	queue	R	2418944	256
9312.803	cmplt	R	2418688	256
9312.895	issue	R	2418944	256
9313.170	queue	R	2419200	256
9316.252	cmplt	R	2418944	256
9316.344	issue	R	2419200	256
9316.649	queue	R	2419456	256
9319.701	cmplt	R	2419200	256
9319.792	issue	R	2419456	256
9320.159	queue	R	2419712	256
9323.211	cmplt	R	2419456	256
9323.302	issue	R	2419712	256
9323.608	queue	R	2419968	256
9326.690	cmplt	R	2419712	256
9326.751	issue	R	2419968	256
9327.056	queue	R	2420224	256
9330.139	cmplt	R	2419968	256
9330.230	issue	R	2420224	256
9330.536	queue	R	2420480	256
9333.588	cmplt	R	2420224	256
9333.679	issue	R	2420480	256
9333.984	queue	R	2420736	256
9337.036	cmplt	R	2420480	256
9337.159	issue	R	2420736	256
9337.433	queue	R	2420992	256
9340.516	cmplt	R	2420736	256
9340.607	issue	R	2420992	256
9340.913	queue	R	2421248	256
9343.995	cmplt	R	2420992	256
9344.056	issue	R	2421248	256
9344.361	queue	R	2421504	256
9347.444	cmplt	R	2421248	256
9347.535	issue	R	2421504	256
9347.810	queue	R	2421760	256
9350.893	cmplt	R	2421504	256
9351.076	issue	R	2421760	256
9351.289	queue	R	2422016	256
9354.433	cmplt	R	2421760	256
9354.525	issue	R	2422016	256
9354.830	queue	R	2422272	256
9357.882	cmplt	R	2422016	256
9357.973	issue	R	2422272	256
9358.279	queue	R	2422528	256
9361.361	cmplt	R	2422272	256
9361.453	issue	R	2422528	256
9361.727	queue	R	2422784	256
9364.810	cmplt	R	2422528	256
9364.902	issue	R	2422784	256
9365.207	queue	R	2423040	256
9368.259	cmplt	R	2422784	256
9368.350	issue	R	2423040	256
9368.656	queue	R	2423296	256
9371.708	cmplt	R	2423040	256
9371.830	issue	W	2639872	1024
9372.196	queue	R	2423552	256
9402.838	cmplt	W	2639872	1024
9403.205	issue	W	2640896	1024
9441.294	cmplt	W	2640896	1024
9441.691	issue	R	2423296	512
9448.192	cmplt	R	2423296	512
9448.619	queue	R	2423808	256
9448.955	queue	R	2424064	256
9449.046	issue	R	2423808	512
9455.517	cmplt	R	2423808	512
9455.944	queue	R	2424320	256
9456.310	queue	R	2424576	256
9456.371	issue	R	2424320	512
9463.635	cmplt	R	2424320	512
9464.062	queue	R	2424832	256
9464.398	queue	R	2425088	256
9464.459	issue	R	2424832	512
9471.631	cmplt	R	2424832	512
9472.089	queue	R	2425344	256
9472.455	queue	R	2425600	256
9472.577	issue	R	2425344	512
9479.750	cmplt	R	2425344	512
9480.482	queue	R	2425856	256
9480.848	queue	R	2426112	256
9480.971	issue	R	2425856	512
9487.471	cmplt	R	2425856	512
9487.899	queue	R	2426368	256
9487.960	issue	R	2426368	256
9488.265	queue	R	2426624	256
9491.531	cmplt	R	2426368	256
9491.622	issue	R	2426624	256
9491.927	queue	R	2426880	256
9497.604	cmplt	R	2426624	256
9498.062	queue	R	2427136	256
9498.123	issue	R	2426880	512
9504.654	cmplt	R	2426880	512
9505.051	queue	R	2427392	256
9505.143	issue	R	2427392	256
9505.417	queue	R	2427648	256
9508.591	cmplt	R	2427392	256
9508.683	issue	R	2427648	256
9508.958	queue	R	2427904	256
9512.101	cmplt	R	2427648	256
9512.193	issue	R	2427904	256
9512.468	queue	R	2428160	256
9515.642	cmplt	R	2427904	256
9515.733	issue	R	2428160	256
9516.008	queue	R	2428416	256
9519.152	cmplt	R	2428160	256
9519.243	issue	R	2428416	256
9519.518	queue	R	2428672	256
9522.661	cmplt	R	2428416	256
9522.753	issue	R	2428672	256
9523.058	queue	R	2428928	256
9526.202	cmplt	R	2428672	256
9526.293	issue	R	2428928	256
9526.568	queue	R	2429184	256
9529.712	cmplt	R	2428928	256
9529.803	issue	R	2429184	256
9533.252	cmplt	R	2429184	256
9535.877	queue	R	2429440	256
9535.968	issue	R	2429440	256
9536.273	queue	R	2429696	256
9539.356	cmplt	R	2429440	256
9539.448	issue	R	2429696	256
9539.753	queue	R	2429952	256
9542.835	cmplt	R	2429696	256
9542.927	issue	R	2429952	256
9543.202	queue	R	2430208	256
9546.284	cmplt	R	2429952	256
9546.376	issue	R	2430208	256
9546.681	queue	R	2430464	256
9549.763	cmplt	R	2430208	256
9549.825	issue	R	2430464	256
9550.160	queue	R	2430720	256
9553.273	cmplt	R	2430464	256
9553.365	issue	R	2430720	256
9553.640	queue	R	2430976	256
9556.753	cmplt	R	2430720	256
9556.844	issue	R	2430976	256
9557.119	queue	R	2431232	256
9560.201	cmplt	R	2430976	256
9560.293	issue	R	2431232	256
9560.568	queue	R	2431488	256
9563.650	cmplt	R	2431232	256
9563.742	issue	R	2431488	256
9564.047	queue	R	2431744	256
9567.130	cmplt	R	2431488	256
9567.191	issue	R	2431744	256
9567.496	queue	R	2432000	256
9570.578	cmplt	R	2431744	256
9570.670	issue	R	2432000	256
9570.945	queue	R	2432256	256
9574.027	cmplt	R	2432000	256
9574.119	issue	R	2432256	256
9574.393	queue	R	2432512	256
9577.476	cmplt	R	2432256	256
9577.568	issue	R	2432512	256
9577.873	queue	R	2432768	256
9580.955	cmplt	R	2432512	256
9581.047	issue	R	2432768	256
9581.352	queue	R	2433024	256
9584.404	cmplt	R	2432768	256
9584.496	issue	R	2433024	256
9584.801	queue	R	2433280	256
9587.883	cmplt	R	2433024	256
9587.944	issue	R	2433280	256
9588.250	queue	R	2433536	256
9591.332	cmplt	R	2433280	256
9591.424	issue	R	2433536	256
9591.698	queue	R	2433792	256
9594.781	cmplt	R	2433536	256
9594.873	issue	R	2433792	256
9595.178	queue	R	2434048	256
9598.260	cmplt	R	2433792	256
9598.352	issue	R	2434048	256
9598.627	queue	R	2434304	256
9601.709	cmplt	R	2434048	256
9601.801	issue	R	2434304	256
9602.106	queue	R	2434560	256
9605.188	cmplt	R	2434304	256
9605.280	issue	R	2434560	256
9605.555	queue	R	2434816	256
9608.637	cmplt	R	2434560	256
9608.729	issue	R	2434816	256
9609.034	queue	R	2435072	256
9612.117	cmplt	R	2434816	256
9612.208	issue	R	2435072	256
9612.483	queue	R	2435328	256
9615.596	cmplt	R	2435072	256
9615.687	issue	R	2435328	256
9615.962	queue	R	2435584	256
9619.045	cmplt	R	2435328	256
9619.136	issue	R	2435584	256
9619.411	queue	R	2435840	256
9622.494	cmplt	R	2435584	256
9622.646	issue	W	2641920	368
9622.890	queue	R	2436096	256
9643.553	cmplt	W	2641920	368
9643.736	issue	R	2435840	512
9643.827	queue	WS	1845536	8
9643.980	queue	W	2642288	72
9650.237	cmplt	R	2435840	512
9650.725	queue	R	2436352	256
9651.122	queue	R	2436608	256
9651.152	issue	WS	1845536	8
9651.213	issue	R	2436352	512
9660.217	cmplt	WS	1845536	8
9661.163	queue	WS	1845544	8
9661.193	queue	WS	1845552	8
9661.224	queue	WS	1845560	8
9661.224	queue	WS	1845568	8
9661.254	queue	WS	1845576	8
9661.254	queue	WS	1845584	8
9661.254	queue	WS	1845592	8
9666.595	cmplt	R	2436352	512
9667.053	queue	R	2436864	256
9667.450	queue	R	2437120	256
9667.481	issue	R	2436864	512
9674.134	cmplt	R	2436864	512
9674.561	queue	R	2437376	256
9674.958	queue	R	2437632	256
9675.019	issue	R	2437376	512
9681.642	cmplt	R	2437376	512
9682.100	queue	R	2437888	256
9682.466	queue	R	2438144	256
9682.527	issue	R	2437888	512
9689.181	cmplt	R	2437888	512
9689.638	queue	R	2438400	256
9690.066	queue	R	2438656	256
9690.066	issue	R	2438400	256
9690.310	issue	R	2438656	256
9693.575	cmplt	R	2438400	256
9693.942	queue	R	2438912	256
9696.719	cmplt	R	2438656	256
9696.780	issue	R	2438912	256
9697.116	queue	R	2439168	256
9700.229	cmplt	R	2438912	256
9700.320	issue	R	2439168	256
9700.656	queue	R	2439424	256
9703.769	cmplt	R	2439168	256
9703.861	issue	R	2439424	256
9704.197	queue	R	2439680	256
9707.340	cmplt	R	2439424	256
9707.432	issue	R	2439680	256
9707.737	queue	R	2439936	256
9710.881	cmplt	R	2439680	256
9710.972	issue	R	2439936	256
9711.308	queue	R	2440192	256
9714.451	cmplt	R	2439936	256
9714.543	issue	R	2440192	256
9714.879	queue	R	2440448	256
9718.022	cmplt	R	2440192	256
9718.144	issue	R	2440448	256
9718.450	queue	R	2440704	256
9721.593	cmplt	R	2440448	256
9721.715	issue	WS	1845544	56
9721.990	queue	R	2440960	256
9727.850	cmplt	WS	1845544	56
9730.047	issue	W	2642288	72
9732.703	cmplt	W	2642288	72
9732.855	queue	WS	1845600	8
9740.089	issue	WS	1845600	8
9740.150	issue	R	2440704	512
9741.645	cmplt	WS	1845600	8
9748.024	cmplt	R	2440704	512
9748.451	queue	R	2441216	256
9748.543	issue	R	2441216	256
9748.909	queue	R	2441472	256
9751.961	cmplt	R	2441216	256
9752.052	issue	R	2441472	256
9752.419	queue	R	2441728	256
9755.501	cmplt	R	2441472	256
9755.593	issue	R	2441728	256
9755.929	queue	R	2441984	256
9759.011	cmplt	R	2441728	256
9759.133	issue	R	2441984	256
9759.469	queue	R	2442240	256
9762.582	cmplt	R	2441984	256
9762.674	issue	R	2442240	256
9763.009	queue	R	2442496	256
9766.122	cmplt	R	2442240	256
9766.214	issue	R	2442496	256
9766.580	queue	R	2442752	256
9769.663	cmplt	R	2442496	256
9769.785	issue	R	2442752	256
9770.151	queue	R	2443008	256
9770.212	queue	R	2443008	256
9773.661	cmplt	R	2442752	256
9773.783	issue	R	2443008	256
9774.088	queue	R	2443264	256
9777.201	cmplt	R	2443008	256
9777.323	issue	R	2443264	256
9777.659	queue	R	2443520	256
9780.925	cmplt	R	2443264	256
9781.016	issue	R	2443520	256
9781.535	queue	R	2443776	256
9784.862	cmplt	R	2443520	256
9784.953	issue	R	2443776	256
9785.472	queue	R	2444032	256
9788.677	cmplt	R	2443776	256
9788.799	issue	R	2444032	256
9789.074	queue	R	2444288	256
9795.483	cmplt	R	2444032	256
9795.605	issue	R	2444288	256
9795.910	queue	R	2444544	256
9799.084	cmplt	R	2444288	256
9799.176	issue	R	2444544	256
9799.481	queue	R	2444800	256
9802.655	cmplt	R	2444544	256
9802.777	issue	R	2444800	256
9803.083	queue	R	2445056	256
9806.257	cmplt	R	2444800	256
9806.348	issue	R	2445056	256
9806.653	queue	R	2445312	256
9809.797	cmplt	R	2445056	256
9809.919	issue	R	2445312	256
9810.255	queue	R	2445568	256
9813.490	cmplt	R	2445312	256
9813.612	issue	R	2445568	256
9813.887	queue	R	2445824	256
9817.061	cmplt	R	2445568	256
9817.183	issue	R	2445824	256
9817.458	queue	R	2446080	256
9820.662	cmplt	R	2445824	256
9820.754	issue	R	2446080	256
9821.029	queue	R	2446336	256
9824.172	cmplt	R	2446080	256
9824.294	issue	R	2446336	256
9824.599	queue	R	2446592	256
9827.743	cmplt	R	2446336	256
9827.865	issue	R	2446592	256
9828.140	queue	R	2446848	256
9831.314	cmplt	R	2446592	256
9831.405	issue	R	2446848	256
9831.711	queue	R	2447104	256
9834.824	cmplt	R	2446848	256
9834.946	issue	R	2447104	256
9835.221	queue	R	2447360	256
9838.364	cmplt	R	2447104	256
9838.486	issue	R	2447360	256
9838.761	queue	R	2447616	256
9841.904	cmplt	R	2447360	256
9842.088	issue	R	2447616	256
9842.332	queue	R	2447872	256
9845.506	cmplt	R	2447616	256
9845.628	issue	R	2447872	256
9845.903	queue	R	2448128	256
9849.107	cmplt	R	2447872	256
9849.199	issue	R	2448128	256
9849.504	queue	R	2448384	256
9852.617	cmplt	R	2448128	256
9852.709	issue	R	2448384	256
9853.014	queue	R	2448640	256
9856.157	cmplt	R	2448384	256
9856.249	issue	R	2448640	256
9856.554	queue	R	2448896	256
9859.698	cmplt	R	2448640	256
9859.789	issue	R	2448896	256
9860.125	queue	R	2449152	256
9863.269	cmplt	R	2448896	256
9863.391	issue	R	2449152	256
9863.665	queue	R	2449408	256
9866.840	cmplt	R	2449152	256
9866.962	issue	R	2449408	256
9867.236	queue	R	2449664	256
9870.380	cmplt	R	2449408	256
9870.502	issue	R	2449664	256
9870.777	queue	R	2449920	256
9873.981	cmplt	R	2449664	256
9874.073	issue	R	2449920	256
9874.378	queue	R	2450176	256
9877.491	cmplt	R	2449920	256
9877.613	issue	R	2450176	256
9877.888	queue	R	2450432	256
9881.032	cmplt	R	2450176	256
9881.123	issue	R	2450432	256
9881.428	queue	R	2450688	256
9884.572	cmplt	R	2450432	256
9884.694	issue	R	2450688	256
9885.152	queue	W	2642360	1024
9885.579	queue	W	2643384	1024
9885.976	queue	W	2644408	1024
9886.434	queue	W	2645432	1024
9886.861	queue	W	2646456	1024
9887.288	queue	W	2647480	1024
9887.716	queue	W	2648504	1024
9888.112	cmplt	R	2450688	256
9888.204	queue	W	2649528	1024
9888.631	queue	R	2450944	256
9888.692	issue	R	2450944	256
9888.997	queue	R	2451200	256
9892.141	cmplt	R	2450944	256
9892.263	issue	R	2451200	256
9892.538	queue	R	2451456	256
9895.681	cmplt	R	2451200	256
9895.773	issue	R	2451456	256
9896.078	queue	R	2451712	256
9899.222	cmplt	R	2451456	256
9899.344	issue	R	2451712	256
9899.649	queue	R	2451968	256
9902.823	cmplt	R	2451712	256
9902.945	issue	R	2451968	256
9903.220	queue	R	2452224	256
9906.425	cmplt	R	2451968	256
9906.516	issue	R	2452224	256
9906.821	queue	R	2452480	256
9909.995	cmplt	R	2452224	256
9910.118	issue	R	2452480	256
9910.392	queue	R	2452736	256
9913.597	cmplt	R	2452480	256
9913.719	issue	R	2452736	256
9913.994	queue	R	2452992	256
9917.137	cmplt	R	2452736	256
9917.259	issue	R	2452992	256
9917.534	queue	R	2453248	256
9920.678	cmplt	R	2452992	256
9920.800	issue	R	2453248	256
9921.105	queue	R	2453504	256
9921.227	queue	W	1912920	8
9921.318	queue	W	1835696	8
9921.349	queue	W	1872416	8
9921.380	queue	W	2359296	8
9921.410	queue	W	2621968	8
9921.441	queue	W	2621984	8
9921.441	queue	W	2626080	8
9921.471	queue	W	1835008	8
9921.502	queue	W	1835528	8
9921.532	queue	W	1835536	8
9921.532	queue	W	1835544	8
9924.248	cmplt	R	2453248	256
9924.340	issue	R	2453504	256
9924.645	queue	R	2453760	256
9927.636	queue	W	2650552	1024
9927.789	cmplt	R	2453504	256
9927.880	issue	R	2453760	256
9928.186	queue	R	2454016	256
9931.299	cmplt	R	2453760	256
9931.390	issue	R	2454016	256
9931.695	queue	R	2454272	256
9932.092	queue	W	2651576	1024
9932.580	queue	W	2652600	1024
9933.893	queue	W	2653624	584
9934.808	cmplt	R	2454016	256
9934.900	issue	R	2454272	256
9935.205	queue	R	2454528	256
9938.379	cmplt	R	2454272	256
9938.501	issue	R	2454528	256
9938.807	queue	R	2454784	256
9939.905	queue	W	2654208	1024
9940.424	queue	W	2655232	1024
9940.882	queue	W	2656256	1024
9941.309	queue	W	2657280	1024
9941.767	queue	W	2658304	1024
9941.889	cmplt	R	2454528	256
9941.981	issue	W	2621968	8
9942.072	issue	W	2621984	8
9942.255	queue	R	2455040	256
9943.598	cmplt	W	2621968	8
9943.659	issue	W	2626080	8
9944.453	cmplt	W	2621984	8
9944.514	issue	W	2642360	1024
9945.460	cmplt	W	2626080	8
9945.521	issue	W	2643384	1024
9950.374	queue	W	2659328	1024
9950.862	queue	W	2660352	1024
9951.320	queue	W	2661376	1024
9951.930	queue	W	2662400	1024
9952.388	queue	W	2663424	1024
9952.846	queue	W	2664448	1024
9953.273	queue	W	2665472	1024
9953.731	queue	W	2666496	1024
9954.158	queue	W	2667520	1024
9954.616	queue	W	2668544	1024
9955.105	queue	W	2669568	1024
9957.241	queue	W	2670592	1024
9957.638	queue	W	2671616	1024
9958.065	queue	W	2672640	1024
9958.462	queue	W	2673664	1024
9958.889	queue	W	2674688	1024
9959.316	queue	W	2675712	1024
9959.744	queue	W	2676736	1024
9970.212	queue	W	2677760	1024
9970.700	queue	W	2678784	1024
9971.128	queue	W	2679808	1024
9971.586	queue	W	2680832	1024
9972.013	queue	W	2681856	1024
9972.440	queue	W	2682880	1024
9973.081	queue	W	2683904	1024
9973.630	queue	W	2684928	1024
9973.691	cmplt	W	2642360	1024
9973.997	issue	W	2644408	1024
9974.180	queue	W	2685952	1024
9975.156	queue	W	2686976	1024
9975.614	queue	W	2688000	1024
9976.042	queue	W	2689024	1024
9976.438	queue	W	2690048	1024
9976.652	queue	W	2691072	488
10001.526	cmplt	W	2643384	1024
10029.361	cmplt	W	2644408	1024
10029.727	issue	R	2454784	512
10036.441	cmplt	R	2454784	512
10036.838	queue	R	2455296	256
10036.930	issue	R	2455296	256
10037.204	queue	R	2455552	256
10040.378	cmplt	R	2455296	256
10040.501	issue	R	2455552	256
10040.775	queue	R	2455808	256
10043.888	cmplt	R	2455552	256
10044.010	issue	R	2455808	256
10044.316	queue	R	2456064	256
10047.459	cmplt	R	2455808	256
10047.581	issue	R	2456064	256
10047.886	queue	R	2456320	256
10051.000	cmplt	R	2456064	256
10051.122	issue	R	2456320	256
10051.396	queue	R	2456576	256
10054.540	cmplt	R	2456320	256
10054.631	issue	R	2456576	256
10054.967	queue	R	2456832	256
10058.111	cmplt	R	2456576	256
10058.233	issue	R	2456832	256
10058.508	queue	R	2457088	256
10061.712	cmplt	R	2456832	256
10061.804	issue	R	2457088	256
10062.109	queue	R	2457344	256
10065.253	cmplt	R	2457088	256
10065.344	issue	R	2457344	256
10065.741	queue	R	2457600	256
10068.793	cmplt	R	2457344	256
10068.915	issue	R	2457600	256
10069.861	queue	R	2457856	256
10072.455	cmplt	R	2457600	256
10072.577	issue	R	2457856	256
10073.493	queue	R	2458112	256
10075.782	cmplt	R	2457856	256
10075.874	issue	R	2458112	256
10076.759	queue	R	2458368	256
10079.078	cmplt	R	2458112	256
10079.200	issue	R	2458368	256
10079.872	queue	R	2458624	256
10082.436	cmplt	R	2458368	256
10082.527	issue	R	2458624	256
10083.199	queue	R	2458880	256
10085.793	cmplt	R	2458624	256
10085.915	issue	R	2458880	256
10086.128	queue	R	2459136	256
10089.181	cmplt	R	2458880	256
10089.272	issue	R	2459136	256
10089.516	queue	R	2459392	256
10092.538	cmplt	R	2459136	256
10092.629	issue	R	2459392	256
10092.843	queue	R	2459648	256
10095.895	cmplt	R	2459392	256
10095.987	issue	R	2459648	256
10096.200	queue	R	2459904	256
10099.222	cmplt	R	2459648	256
10099.313	issue	R	2459904	256
10099.527	queue	R	2460160	256
10102.518	cmplt	R	2459904	256
10102.640	issue	R	2460160	256
10102.854	queue	R	2460416	256
10105.906	cmplt	R	2460160	256
10105.997	issue	R	2460416	256
10106.211	queue	R	2460672	256
10109.202	queue	W	2691560	1024
10109.263	cmplt	R	2460416	256
10109.354	issue	R	2460672	256
10109.568	queue	R	2460928	256
10109.995	queue	W	2692584	1024
10110.453	queue	W	2693608	1024
10110.850	queue	W	2694632	1024
10111.277	queue	W	2695656	1024
10111.705	queue	W	2696680	1024
10112.132	queue	W	2697704	1024
10112.559	cmplt	R	2460672	256
10112.559	queue	W	2698728	1024
10112.651	issue	R	2460928	256
10112.895	queue	R	2461184	256
10115.855	cmplt	R	2460928	256
10115.947	issue	R	2461184	256
10116.161	queue	R	2461440	256
10116.649	queue	W	2699752	1024
10117.076	queue	W	2700776	1024
10117.503	queue	W	2701800	1024
10118.083	queue	W	2702824	536
10119.182	cmplt	R	2461184	256
10119.243	issue	R	2461440	256
10119.487	queue	R	2461696	256
10122.478	cmplt	R	2461440	256
10122.570	issue	R	2461696	256
10122.783	queue	R	2461952	256
10123.730	queue	W	2703360	1024
10124.157	queue	W	2704384	1024
10124.584	queue	W	2705408	1024
10125.042	queue	W	2706432	1024
10125.652	queue	W	2707456	1024
10125.774	cmplt	R	2461696	256
10125.866	issue	R	2461952	256
10126.080	queue	R	2462208	256
10129.132	cmplt	R	2461952	256
10129.254	issue	R	2462208	256
10129.467	queue	R	2462464	256
10129.773	queue	W	2708480	1024
10130.261	queue	W	2709504	1024
10130.719	queue	W	2710528	1024
10131.146	queue	W	2711552	1024
10131.573	queue	W	2712576	1024
10132.001	queue	W	2713600	1024
10132.458	cmplt	R	2462208	256
10132.458	queue	W	2714624	1024
10132.550	issue	W	2645432	1024
10132.916	queue	R	2462720	256
10133.313	issue	W	2646456	1024
10140.485	queue	W	2715648	1024
10140.913	queue	W	2716672	1024
10141.340	queue	W	2717696	1024
10141.798	queue	W	2718720	1024
10143.507	queue	W	2719744	1024
10143.934	queue	W	2720768	1024
10144.331	queue	W	2721792	1024
10144.728	queue	W	2722816	1024
10145.124	queue	W	2723840	1024
10145.552	queue	W	2724864	1024
10145.979	queue	W	2725888	1024
10146.376	queue	W	2726912	1024
10146.772	queue	W	2727936	1024
10147.352	queue	W	2728960	1024
10147.719	queue	W	2729984	1024
10148.115	queue	W	2731008	1024
10148.329	queue	W	2732032	488
10161.514	cmplt	W	2645432	1024
10161.819	issue	W	2647480	1024
10189.287	cmplt	W	2646456	1024
10189.593	issue	W	2648504	1024
10217.824	cmplt	W	2647480	1024
10245.323	cmplt	W	2648504	1024
10245.689	issue	R	2462464	512
10251.854	cmplt	R	2462464	512
10252.190	queue	R	2462976	256
10252.251	issue	R	2462976	256
10252.465	queue	R	2463232	256
10255.486	cmplt	R	2462976	256
10255.547	issue	R	2463232	256
10255.791	queue	R	2463488	256
10258.752	cmplt	R	2463232	256
10258.813	issue	R	2463488	256
10259.057	queue	R	2463744	256
10262.017	cmplt	R	2463488	256
10262.109	issue	R	2463744	256
10262.292	queue	R	2464000	256
10265.283	cmplt	R	2463744	256
10265.375	issue	R	2464000	256
10265.588	queue	R	2464256	256
10268.610	cmplt	R	2464000	256
10268.701	issue	R	2464256	256
10268.915	queue	R	2464512	256
10271.875	cmplt	R	2464256	256
10271.967	issue	R	2464512	256
10272.181	queue	R	2464768	256
10275.141	cmplt	R	2464512	256
10275.233	issue	R	2464768	256
10275.446	queue	R	2465024	256
10278.437	cmplt	R	2464768	256
10278.529	issue	R	2465024	256
10278.743	queue	R	2465280	256
10281.734	cmplt	R	2465024	256
10281.825	issue	R	2465280	256
10282.039	queue	R	2465536	256
10285.030	cmplt	R	2465280	256
10285.121	issue	R	2465536	256
10285.335	queue	R	2465792	256
10288.326	cmplt	R	2465536	256
10288.418	issue	R	2465792	256
10288.631	queue	R	2466048	256
10291.622	cmplt	R	2465792	256
10291.714	issue	R	2466048	256
10291.927	queue	R	2466304	256
10294.949	cmplt	R	2466048	256
10295.040	issue	R	2466304	256
10295.254	queue	R	2466560	256
10298.306	cmplt	R	2466304	256
10298.398	issue	R	2466560	256
10298.611	queue	R	2466816	256
10301.633	cmplt	R	2466560	256
10301.755	issue	R	2466816	256
10301.938	queue	R	2467072	256
10305.021	cmplt	R	2466816	256
10305.112	issue	R	2467072	256
10305.326	queue	R	2467328	256
10308.347	cmplt	R	2467072	256
10308.439	issue	R	2467328	256
10308.653	queue	R	2467584	256
10311.705	cmplt	R	2467328	256
10311.827	issue	R	2467584	256
10312.010	queue	R	2467840	256
10315.031	cmplt	R	2467584	256
10315.123	issue	R	2467840	256
10315.336	queue	R	2468096	256
10318.327	cmplt	R	2467840	256
10318.419	issue	R	2468096	256
10318.633	queue	R	2468352	256
10321.685	cmplt	R	2468096	256
10321.746	issue	R	2468352	256
10321.959	queue	R	2468608	256
10324.981	cmplt	R	2468352	256
10325.072	issue	R	2468608	256
10325.286	queue	R	2468864	256
10328.277	cmplt	R	2468608	256
10328.338	issue	R	2468864	256
10328.552	queue	R	2469120	256
10331.604	cmplt	R	2468864	256
10331.695	issue	R	2469120	256
10331.879	queue	R	2469376	256
10334.870	cmplt	R	2469120	256
10334.961	issue	R	2469376	256
10335.175	queue	R	2469632	256
10338.166	cmplt	R	2469376	256
10338.257	issue	R	2469632	256
10338.471	queue	R	2469888	256
10341.431	cmplt	R	2469632	256
10341.523	issue	R	2469888	256
10341.737	queue	R	2470144	256
10344.789	cmplt	R	2469888	256
10344.880	issue	R	2470144	256
10345.094	queue	R	2470400	256
10348.085	cmplt	R	2470144	256
10348.146	issue	R	2470400	256
10348.390	queue	R	2470656	256
10351.412	cmplt	R	2470400	256
10351.564	issue	W	2649528	1024
10352.052	queue	R	2470912	256
10380.284	cmplt	W	2649528	1024
10380.620	issue	W	2650552	1024
10409.492	cmplt	W	2650552	1024
10409.828	issue	W	2651576	1024
10456.768	cmplt	W	2651576	1024
10457.165	issue	R	2470656	512
10463.391	cmplt	R	2470656	512
10463.757	queue	R	2471168	256
10464.062	queue	R	2471424	256
10464.123	issue	R	2471168	512
10470.319	cmplt	R	2471168	512
10470.685	queue	R	2471680	256
10470.960	queue	R	2471936	256
10471.051	issue	R	2471680	512
10477.186	cmplt	R	2471680	512
10477.552	queue	R	2472192	256
10477.857	queue	R	2472448	256
10477.949	issue	R	2472192	512
10484.084	cmplt	R	2472192	512
10484.419	queue	R	2472704	256
10484.725	queue	R	2472960	256
10484.786	issue	R	2472704	512
10490.920	cmplt	R	2472704	512
10491.286	queue	R	2473216	256
10491.561	queue	R	2473472	256
10491.653	issue	R	2473216	512
10497.787	cmplt	R	2473216	512
10498.123	queue	R	2473728	256
10498.428	queue	R	2473984	256
10498.489	issue	R	2473728	512
10504.685	cmplt	R	2473728	512
10505.051	queue	R	2474240	256
10505.356	queue	R	2474496	256
10505.417	issue	R	2474240	512
10511.582	cmplt	R	2474240	512
10511.949	queue	R	2474752	256
10512.223	queue	R	2475008	256
10512.315	issue	R	2474752	512
10518.480	cmplt	R	2474752	512
10518.846	queue	R	2475264	256
10519.152	queue	R	2475520	256
10519.213	issue	R	2475264	512
10525.378	cmplt	R	2475264	512
10525.744	queue	R	2475776	256
10526.019	queue	R	2476032	256
10526.080	issue	R	2475776	512
10532.245	cmplt	R	2475776	512
10532.580	queue	R	2476288	256
10532.886	queue	R	2476544	256
10532.947	issue	R	2476288	512
10539.112	cmplt	R	2476288	512
10539.448	queue	R	2476800	256
10539.753	queue	R	2477056	256
10539.814	issue	R	2476800	512
10545.979	cmplt	R	2476800	512
10546.315	queue	R	2477312	256
10546.620	queue	R	2477568	256
10546.681	issue	R	2477312	512
10552.846	cmplt	R	2477312	512
10553.273	queue	R	2477824	256
10553.579	queue	R	2478080	256
10553.640	issue	R	2477824	512
10559.774	cmplt	R	2477824	512
10560.171	queue	R	2478336	256
10560.446	queue	R	2478592	256
10560.537	issue	W	1912920	8
10562.094	cmplt	W	1912920	8
10562.185	issue	W	2359296	8
10563.711	cmplt	W	2359296	8
10563.772	issue	W	2652600	1024
10592.889	cmplt	W	2652600	1024
10593.224	issue	W	2653624	584
10613.978	cmplt	W	2653624	584
10614.253	issue	R	2478336	512
10620.510	cmplt	R	2478336	512
10620.845	queue	R	2478848	256
10621.151	queue	R	2479104	256
10621.212	issue	R	2478848	512
10627.377	cmplt	R	2478848	512
10627.712	queue	R	2479360	256
10628.018	queue	R	2479616	256
10628.079	issue	R	2479360	512
10634.244	cmplt	R	2479360	512
10634.580	queue	R	2479872	256
10634.885	queue	R	2480128	256
10634.946	issue	R	2479872	512
10641.111	cmplt	R	2479872	512
10641.416	queue	R	2480384	256
10641.721	queue	R	2480640	256
10641.782	issue	R	2480384	512
10647.978	cmplt	R	2480384	512
10648.436	queue	R	2480896	256
10648.833	queue	R	2481152	256
10648.924	issue	R	2480896	512
10655.089	cmplt	R	2480896	512
10655.425	queue	R	2481408	256
10655.761	queue	R	2481664	256
10655.822	issue	R	2481408	512
10661.956	cmplt	R	2481408	512
10662.323	queue	R	2481920	256
10662.628	queue	R	2482176	256
10662.689	issue	R	2481920	512
10668.823	cmplt	R	2481920	512
10669.159	queue	R	2482432	256
10669.464	queue	R	2482688	256
10669.525	issue	R	2482432	512
10675.660	cmplt	R	2482432	512
10675.996	queue	R	2482944	256
10676.270	queue	R	2483200	256
10676.331	issue	R	2482944	512
10682.466	cmplt	R	2482944	512
10682.802	queue	R	2483456	256
10683.107	queue	R	2483712	256
10683.168	issue	R	2483456	512
10689.303	cmplt	R	2483456	512
10689.638	queue	R	2483968	256
10689.974	queue	R	2484224	256
10690.035	issue	R	2483968	512
10696.170	cmplt	R	2483968	512
10696.505	queue	R	2484480	256
10696.780	queue	R	2484736	256
10696.841	issue	R	2484480	512
10702.976	cmplt	R	2484480	512
10703.342	queue	R	2484992	256
10703.617	queue	R	2485248	256
10703.678	issue	R	2484992	512
10709.843	cmplt	R	2484992	512
10710.240	queue	R	2485504	256
10710.545	queue	R	2485760	256
10710.606	issue	R	2485504	512
10716.740	cmplt	R	2485504	512
10717.107	queue	R	2486016	256
10717.381	queue	R	2486272	256
10717.442	issue	R	2486016	512
10723.577	cmplt	R	2486016	512
10723.913	queue	R	2486528	256
10724.218	queue	R	2486784	256
10724.279	issue	R	2486528	512
10730.414	cmplt	R	2486528	512
10730.749	queue	R	2487040	256
10731.054	queue	R	2487296	256
10731.116	issue	R	2487040	512
10737.250	cmplt	R	2487040	512
10737.616	queue	R	2487552	256
10737.891	queue	R	2487808	256
10737.952	issue	R	2487552	512
10744.087	cmplt	R	2487552	512
10744.453	queue	R	2488064	256
10744.758	queue	R	2488320	256
10744.789	issue	R	2488064	512
10750.923	cmplt	R	2488064	512
10751.289	queue	R	2488576	256
10751.625	queue	R	2488832	256
10751.686	issue	R	2488576	512
10757.821	cmplt	R	2488576	512
10758.187	queue	R	2489088	256
10758.492	queue	R	2489344	256
10758.523	issue	R	2489088	512
10764.657	cmplt	R	2489088	512
10765.054	queue	R	2489600	256
10765.329	queue	R	2489856	256
10765.390	issue	R	2489600	512
10771.524	cmplt	R	2489600	512
10771.891	queue	R	2490112	256
10772.165	queue	R	2490368	256
10772.196	issue	R	2490112	512
10778.392	cmplt	R	2490112	512
10778.758	queue	R	2490624	256
10778.849	issue	R	2490624	256
10779.216	queue	R	2490880	256
10782.024	cmplt	R	2490624	256
10782.115	issue	R	2490880	256
10782.481	queue	R	2491136	256
10785.320	cmplt	R	2490880	256
10785.411	issue	R	2491136	256
10785.747	queue	R	2491392	256
10788.585	cmplt	R	2491136	256
10788.677	issue	R	2491392	256
10789.013	queue	R	2491648	256
10791.851	cmplt	R	2491392	256
10791.943	issue	R	2491648	256
10792.309	queue	R	2491904	256
10795.147	cmplt	R	2491648	256
10795.239	issue	R	2491904	256
10795.575	queue	R	2492160	256
10798.413	cmplt	R	2491904	256
10798.505	issue	R	2492160	256
10798.871	queue	R	2492416	256
10801.709	cmplt	R	2492160	256
10801.801	issue	R	2492416	256
10802.136	queue	R	2492672	256
10804.975	cmplt	R	2492416	256
10805.066	issue	R	2492672	256
10805.433	queue	R	2492928	256
10808.271	cmplt	R	2492672	256
10808.363	issue	R	2492928	256
10808.698	queue	R	2493184	256
10811.537	cmplt	R	2492928	256
10811.659	issue	W	1835696	8
10811.720	issue	W	1835528	24
10813.154	cmplt	W	1835696	8
10813.215	issue	W	1835008	8
10813.398	queue	R	2493440	256
10816.450	cmplt	W	1835528	24
10816.512	issue	W	1872416	8
10817.305	cmplt	W	1835008	8
10817.366	issue	W	2654208	1024
10818.251	cmplt	W	1872416	8
10818.312	issue	W	2655232	1024
10850.053	cmplt	W	2654208	1024
10881.032	cmplt	W	2655232	1024
10881.367	issue	R	2493184	512
10887.624	cmplt	R	2493184	512
10887.990	queue	R	2493696	256
10888.265	queue	R	2493952	256
10888.326	issue	R	2493696	512
10894.491	cmplt	R	2493696	512
10894.857	queue	R	2494208	256
10895.132	queue	R	2494464	256
10895.193	issue	R	2494208	512
10901.358	cmplt	R	2494208	512
10901.724	queue	R	2494720	256
10902.030	queue	R	2494976	256
10902.091	issue	R	2494720	512
10908.225	cmplt	R	2494720	512
10908.561	queue	R	2495232	256
10908.897	queue	R	2495488	256
10908.958	issue	R	2495232	512
10915.092	cmplt	R	2495232	512
10915.428	queue	R	2495744	256
10915.733	queue	R	2496000	256
10915.794	issue	R	2495744	512
10921.929	cmplt	R	2495744	512
10922.265	queue	R	2496256	256
10922.570	queue	R	2496512	256
10922.631	issue	R	2496256	512
10928.765	cmplt	R	2496256	512
10929.132	queue	R	2496768	256
10929.406	queue	R	2497024	256
10929.467	issue	R	2496768	512
10935.602	cmplt	R	2496768	512
10935.938	queue	R	2497280	256
10936.243	queue	R	2497536	256
10936.304	issue	R	2497280	512
10942.439	cmplt	R	2497280	512
10942.774	queue	R	2497792	256
10943.080	queue	R	2498048	256
10943.141	issue	R	2497792	512
10949.275	cmplt	R	2497792	512
10949.611	queue	R	2498304	256
10949.886	queue	R	2498560	256
10949.977	issue	R	2498304	512
10956.112	cmplt	R	2498304	512
10956.478	queue	R	2498816	256
10956.753	queue	R	2499072	256
10956.814	issue	R	2498816	512
10962.979	cmplt	R	2498816	512
10963.315	queue	R	2499328	256
10963.589	queue	R	2499584	256
10963.650	issue	R	2499328	512
10969.785	cmplt	R	2499328	512
10970.090	issue	W	2656256	1024
10970.639	issue	W	2657280	1024
10971.280	queue	R	2499840	256
10971.586	queue	R	2500096	256
11002.106	cmplt	W	2656256	1024
11035.159	cmplt	W	2657280	1024
11035.495	issue	R	2499840	512
11049.474	cmplt	R	2499840	512
11049.840	queue	R	2500352	256
11050.175	queue	R	2500608	256
11050.237	issue	R	2500352	512
11057.775	cmplt	R	2500352	512
11058.569	queue	R	2500864	256
11058.874	queue	R	2501120	256
11058.935	issue	R	2500864	512
11065.130	cmplt	R	2500864	512
11065.497	queue	R	2501376	256
11065.802	queue	R	2501632	256
11065.832	issue	R	2501376	512
11071.998	cmplt	R	2501376	512
11072.364	queue	R	2501888	256
11072.700	queue	R	2502144	256
11072.730	issue	R	2501888	512
11078.865	cmplt	R	2501888	512
11079.261	queue	R	2502400	256
11079.536	queue	R	2502656	256
11079.597	issue	R	2502400	512
11085.732	cmplt	R	2502400	512
11086.098	queue	R	2502912	256
11086.403	queue	R	2503168	256
11086.434	issue	R	2502912	512
11092.599	cmplt	R	2502912	512
11092.965	queue	R	2503424	256
11093.270	queue	R	2503680	256
11093.301	issue	R	2503424	512
11099.435	cmplt	R	2503424	512
11099.802	queue	R	2503936	256
11099.893	issue	R	2503936	256
11100.259	queue	R	2504192	256
11103.067	cmplt	R	2503936	256
11103.159	issue	R	2504192	256
11103.525	queue	R	2504448	256
11106.363	cmplt	R	2504192	256
11106.455	issue	R	2504448	256
11106.852	queue	R	2504704	256
11109.660	cmplt	R	2504448	256
11109.751	issue	R	2504704	256
11110.148	queue	R	2504960	256
11112.956	cmplt	R	2504704	256
11113.047	issue	R	2504960	256
11113.414	queue	R	2505216	256
11116.222	cmplt	R	2504960	256
11116.313	issue	R	2505216	256
11116.679	queue	R	2505472	256
11119.518	cmplt	R	2505216	256
11119.609	issue	R	2505472	256
11120.037	queue	R	2505728	256
11122.814	cmplt	R	2505472	256
11122.906	issue	R	2505728	256
11123.272	queue	R	2505984	256
11126.080	cmplt	R	2505728	256
11126.171	issue	R	2505984	256
11126.507	queue	R	2506240	256
11129.345	cmplt	R	2505984	256
11129.437	issue	R	2506240	256
11129.803	queue	R	2506496	256
11132.611	cmplt	R	2506240	256
11132.703	issue	R	2506496	256
11133.069	queue	R	2506752	256
11135.907	cmplt	R	2506496	256
11135.999	issue	R	2506752	256
11136.335	queue	R	2507008	256
11139.173	cmplt	R	2506752	256
11139.264	issue	R	2507008	256
11139.631	queue	R	2507264	256
11142.439	cmplt	R	2507008	256
11142.561	issue	W	2658304	1024
11143.263	issue	W	2659328	1024
11143.965	queue	R	2507520	256
11174.699	cmplt	W	2658304	1024
11174.973	issue	W	2660352	1024
11205.799	cmplt	W	2659328	1024
11206.104	issue	W	2661376	1024
11236.747	cmplt	W	2660352	1024
11267.511	cmplt	W	2661376	1024
11267.816	issue	R	2507264	512
11273.981	cmplt	R	2507264	512
11274.378	queue	R	2507776	256
11274.653	queue	R	2508032	256
11274.714	issue	R	2507776	512
11280.879	cmplt	R	2507776	512
11281.276	queue	R	2508288	256
11281.581	queue	R	2508544	256
11281.642	issue	R	2508288	512
11287.807	cmplt	R	2508288	512
11288.173	queue	R	2508800	256
11288.479	queue	R	2509056	256
11288.540	issue	R	2508800	512
11294.705	cmplt	R	2508800	512
11295.101	queue	R	2509312	256
11295.407	queue	R	2509568	256
11295.437	issue	R	2509312	512
11301.633	cmplt	R	2509312	512
11302.030	queue	R	2509824	256
11302.335	queue	R	2510080	256
11302.365	issue	R	2509824	512
11308.530	cmplt	R	2509824	512
11308.897	queue	R	2510336	256
11309.202	queue	R	2510592	256
11309.232	issue	R	2510336	512
11315.428	cmplt	R	2510336	512
11315.794	queue	R	2510848	256
11316.099	queue	R	2511104	256
11316.130	issue	R	2510848	512
11322.295	cmplt	R	2510848	512
11322.692	queue	R	2511360	256
11322.997	queue	R	2511616	256
11323.028	issue	R	2511360	512
11329.223	cmplt	R	2511360	512
11329.620	queue	R	2511872	256
11329.895	queue	R	2512128	256
11329.956	issue	R	2511872	512
11336.151	cmplt	R	2511872	512
11336.548	queue	R	2512384	256
11336.853	queue	R	2512640	256
11336.884	issue	R	2512384	512
11343.049	cmplt	R	2512384	512
11343.476	queue	R	2512896	256
11343.537	issue	R	2512896	256
11343.904	queue	R	2513152	256
11346.772	cmplt	R	2512896	256
11346.864	issue	R	2513152	256
11347.230	queue	R	2513408	256
11350.069	cmplt	R	2513152	256
11350.160	issue	R	2513408	256
11350.526	queue	R	2513664	256
11353.395	cmplt	R	2513408	256
11353.487	issue	R	2513664	256
11353.853	queue	R	2513920	256
11356.692	cmplt	R	2513664	256
11356.814	issue	R	2513920	256
11357.180	queue	R	2514176	256
11360.049	cmplt	R	2513920	256
11360.140	issue	R	2514176	256
11360.537	queue	R	2514432	256
11363.376	cmplt	R	2514176	256
11363.498	issue	R	2514432	256
11363.864	queue	R	2514688	256
11366.702	cmplt	R	2514432	256
11366.794	issue	R	2514688	256
11367.191	queue	R	2514944	256
11370.060	cmplt	R	2514688	256
11370.182	issue	W	2662400	1024
11371.036	queue	R	2515200	256
11401.923	cmplt	W	2662400	1024
11402.259	issue	W	2663424	1024
11433.786	cmplt	W	2663424	1024
11434.091	issue	W	2664448	1024
11465.863	cmplt	W	2664448	1024
11466.199	issue	R	2514944	512
11472.364	cmplt	R	2514944	512
11472.730	queue	R	2515456	256
11473.005	queue	R	2515712	256
11473.096	issue	R	2515456	512
11479.261	cmplt	R	2515456	512
11479.628	queue	R	2515968	256
11479.902	queue	R	2516224	256
11479.963	issue	R	2515968	512
11486.159	cmplt	R	2515968	512
11486.495	queue	R	2516480	256
11486.800	queue	R	2516736	256
11486.861	issue	R	2516480	512
11493.026	cmplt	R	2516480	512
11493.392	queue	R	2516992	256
11493.667	queue	R	2517248	256
11493.728	issue	R	2516992	512
11499.893	cmplt	R	2516992	512
11500.290	queue	R	2517504	256
11500.595	queue	R	2517760	256
11500.656	issue	R	2517504	512
11506.852	cmplt	R	2517504	512
11507.249	queue	R	2518016	256
11507.554	queue	R	2518272	256
11507.615	issue	R	2518016	512
11513.780	cmplt	R	2518016	512
11514.146	queue	R	2518528	256
11514.451	queue	R	2518784	256
11514.512	issue	R	2518528	512
11520.647	cmplt	R	2518528	512
11521.013	queue	R	2519040	256
11521.288	queue	R	2519296	256
11521.349	issue	R	2519040	512
11527.514	cmplt	R	2519040	512
11527.941	queue	R	2519552	256
11528.216	queue	R	2519808	256
11528.277	issue	R	2519552	512
11534.442	cmplt	R	2519552	512
11534.839	queue	R	2520064	256
11535.114	queue	R	2520320	256
11535.175	issue	R	2520064	512
11541.340	cmplt	R	2520064	512
11541.737	queue	R	2520576	256
11542.011	queue	R	2520832	256
11542.072	issue	R	2520576	512
11548.268	cmplt	R	2520576	512
11548.634	queue	R	2521088	256
11548.939	queue	R	2521344	256
11549.000	issue	R	2521088	512
11555.166	cmplt	R	2521088	512
11555.562	queue	R	2521600	256
11555.868	queue	R	2521856	256
11555.898	issue	R	2521600	512
11562.063	cmplt	R	2521600	512
11562.460	queue	R	2522112	256
11562.735	queue	R	2522368	256
11562.796	issue	R	2522112	512
11568.961	cmplt	R	2522112	512
11569.327	queue	R	2522624	256
11569.632	queue	R	2522880	256
11569.663	issue	R	2522624	512
11575.858	cmplt	R	2522624	512
11576.011	issue	W	2665472	1024
11576.560	issue	W	2666496	1024
11577.262	queue	R	2367488	256
11577.537	queue	R	2367744	256
11608.118	cmplt	W	2665472	1024
11638.791	cmplt	W	2666496	1024
11639.127	issue	R	2367488	512
11645.384	cmplt	R	2367488	512
11645.750	queue	R	2368000	256
11646.025	queue	R	2368256	256
11646.086	issue	R	2368000	512
11652.220	cmplt	R	2368000	512
11652.587	queue	R	2368512	256
11652.861	queue	R	2368768	256
11652.953	issue	R	2368512	512
11659.057	cmplt	R	2368512	512
11659.423	queue	R	2369024	256
11659.698	queue	R	2369280	256
11659.759	issue	R	2369024	512
11665.893	cmplt	R	2369024	512
11666.290	queue	R	2369536	256
11666.565	queue	R	2369792	256
11666.626	issue	R	2369536	512
11672.761	cmplt	R	2369536	512
11673.127	queue	R	2370048	256
11673.432	queue	R	2370304	256
11673.463	issue	R	2370048	512
11679.597	cmplt	R	2370048	512
11680.055	issue	W	2667520	1024
11680.635	issue	W	2668544	1024
11681.123	queue	R	2370560	256
11681.459	queue	R	2370816	256
11718.755	cmplt	W	2667520	1024
11749.825	cmplt	W	2668544	1024
11750.191	issue	R	2370560	512
11756.325	cmplt	R	2370560	512
11756.692	queue	R	2371072	256
11756.997	queue	R	2371328	256
11757.058	issue	R	2371072	512
11763.162	cmplt	R	2371072	512
11764.566	issue	W	2669568	1024
11765.115	issue	W	2670592	1024
11796.612	cmplt	W	2669568	1024
11796.917	issue	W	2671616	1024
11827.621	cmplt	W	2670592	1024
11827.926	issue	W	2672640	1024
11858.508	cmplt	W	2671616	1024
11858.813	issue	W	2673664	1024
11869.525	queue	WS	1916928	8
11889.608	cmplt	W	2672640	1024
11920.494	cmplt	W	2673664	1024
11920.800	issue	WS	1916928	8
11922.234	cmplt	WS	1916928	8
11922.844	queue	WS	1916928	8
11922.875	issue	WS	1916928	8
11923.791	cmplt	WS	1916928	8
11930.047	issue	W	2674688	1024
11930.566	issue	W	2675712	1024
11938.410	queue	WS	2675712	1024
11962.460	cmplt	W	2674688	1024
11993.255	cmplt	W	2675712	1024
11993.560	issue	W	2676736	1024
11994.079	issue	W	2677760	1024
11999.206	queue	W	2732520	1024
11999.603	queue	W	2733544	1024
12000.061	queue	WS	1912920	8
12000.214	queue	W	2734568	1024
12001.251	queue	W	2735592	536
12003.022	queue	W	2736128	1024
12003.418	queue	W	2737152	1024
12003.815	queue	W	2738176	1024
12004.212	queue	W	2739200	1024
12004.609	queue	W	2740224	1024
12005.005	queue	W	2741248	1024
12005.433	queue	W	2742272	1024
12005.829	queue	W	2743296	1024
12006.226	queue	W	2744320	1024
12006.623	queue	W	2745344	1024
12007.020	queue	W	2746368	1024
12007.416	queue	W	2747392	1024
12007.813	queue	W	2748416	1024
12008.210	queue	W	2749440	1024
12008.637	queue	W	2750464	1024
12009.034	queue	W	2751488	1024
12010.835	queue	W	2752512	1024
12011.262	queue	W	2753536	1024
12011.659	queue	W	2754560	1024
12012.056	queue	W	2755584	1024
12012.452	queue	W	2756608	1024
12012.880	queue	W	2757632	1024
12013.276	queue	W	2758656	1024
12013.734	queue	W	2759680	1024
12014.131	queue	W	2760704	1024
12014.528	queue	W	2761728	1024
12014.924	queue	W	2762752	1024
12015.321	queue	W	2763776	1024
12015.718	queue	W	2764800	1024
12016.115	queue	W	2765824	1024
12016.512	queue	W	2766848	1024
12016.908	queue	W	2767872	1024
12017.641	queue	W	2768896	1024
12018.038	queue	W	2769920	1024
12018.434	queue	W	2770944	1024
12018.587	queue	W	2771968	336
12025.240	cmplt	W	2676736	1024
12056.219	cmplt	W	2677760	1024
12056.554	issue	WS	1912920	8
12057.928	cmplt	WS	1912920	8
12060.095	issue	W	2678784	1024
12060.644	issue	W	2679808	1024
12060.827	queue	WS	1845608	8
12060.858	queue	WS	1845616	8
12060.888	queue	WS	1845624	8
12060.919	queue	WS	1845632	8
12060.919	queue	WS	1845640	8
12060.949	queue	WS	1845648	8
12060.980	queue	WS	1845656	8
12092.294	cmplt	W	2678784	1024
12123.058	cmplt	W	2679808	1024
12123.424	issue	WS	1845608	56
12125.530	cmplt	WS	1845608	56
12130.047	issue	W	2680832	1024
12130.566	issue	W	2681856	1024
12162.277	cmplt	W	2680832	1024
12162.582	issue	W	2682880	1024
12193.255	cmplt	W	2681856	1024
12193.591	issue	W	2683904	1024
12224.294	cmplt	W	2682880	1024
12224.630	issue	W	2684928	1024
12267.450	cmplt	W	2683904	1024
12267.755	issue	W	2685952	1024
12298.550	cmplt	W	2684928	1024
12298.886	issue	W	2686976	1024
12329.803	cmplt	W	2685952	1024
12330.139	issue	W	2688000	1024
12360.934	cmplt	W	2686976	1024
12361.270	issue	W	2689024	1024
12391.790	cmplt	W	2688000	1024
12392.126	issue	W	2690048	1024
12422.890	cmplt	W	2689024	1024
12423.226	issue	W	2691072	488
12453.777	cmplt	W	2690048	1024
12454.113	issue	W	2691560	1024
12477.125	cmplt	W	2691072	488
12477.308	issue	W	2692584	1024
12506.669	cmplt	W	2691560	1024
12507.004	issue	W	2693608	1024
12536.029	cmplt	W	2692584	1024
12536.365	issue	W	2694632	1024
12565.298	cmplt	W	2693608	1024
12565.604	issue	W	2695656	1024
12594.537	cmplt	W	2694632	1024
12594.903	issue	W	2696680	1024
12624.050	cmplt	W	2695656	1024
12624.355	issue	W	2697704	1024
12653.716	cmplt	W	2696680	1024
12654.021	issue	W	2698728	1024
12683.168	cmplt	W	2697704	1024
12683.504	issue	W	2699752	1024
12712.651	cmplt	W	2698728	1024
12712.956	issue	W	2700776	1024
12741.828	cmplt	W	2699752	1024
12742.133	issue	W	2701800	1024
12781.840	cmplt	W	2700776	1024
12782.176	issue	W	2702824	536
12810.957	cmplt	W	2701800	1024
12811.262	issue	W	2703360	1024
12832.657	cmplt	W	2702824	536
12832.870	issue	W	2704384	1024
12854.509	cmplt	W	2703360	1024
12854.845	issue	W	2705408	1024
12885.610	cmplt	W	2704384	1024
12885.915	issue	W	2706432	1024
12916.496	cmplt	W	2705408	1024
12916.832	issue	W	2707456	1024
12947.505	cmplt	W	2706432	1024
12947.841	issue	W	2708480	1024
12978.575	cmplt	W	2707456	1024
12978.910	issue	W	2709504	1024
13009.797	cmplt	W	2708480	1024
13010.163	issue	W	2710528	1024
13040.623	cmplt	W	2709504	1024
13040.958	issue	W	2711552	1024
13071.479	cmplt	W	2710528	1024
13071.814	issue	W	2712576	1024
13102.304	cmplt	W	2711552	1024
13102.640	issue	W	2713600	1024
13133.344	cmplt	W	2712576	1024
13133.649	issue	W	2714624	1024
13164.169	cmplt	W	2713600	1024
13164.474	issue	W	2715648	1024
13195.086	cmplt	W	2714624	1024
13195.422	issue	W	2716672	1024
13225.851	cmplt	W	2715648	1024
13226.309	issue	W	2717696	1024
13256.920	cmplt	W	2716672	1024
13257.256	issue	W	2718720	1024
13301.145	cmplt	W	2717696	1024
13301.480	issue	W	2719744	1024
13333.801	cmplt	W	2718720	1024
13334.137	issue	W	2720768	1024
13355.013	cmplt	W	2719744	1024
13355.318	issue	W	2721792	1024
13386.266	cmplt	W	2720768	1024
13386.602	issue	W	2722816	1024
13417.580	cmplt	W	2721792	1024
13417.915	issue	W	2723840	1024
13448.588	cmplt	W	2722816	1024
13448.924	issue	W	2724864	1024
13479.597	cmplt	W	2723840	1024
13479.933	issue	W	2725888	1024
13510.392	cmplt	W	2724864	1024
13510.728	issue	W	2726912	1024
13541.553	cmplt	W	2725888	1024
13541.889	issue	W	2727936	1024
13572.593	cmplt	W	2726912	1024
13572.928	issue	W	2728960	1024
13603.479	cmplt	W	2727936	1024
13603.815	issue	W	2729984	1024
13634.580	cmplt	W	2728960	1024
13634.915	issue	W	2731008	1024
13665.832	cmplt	W	2729984	1024
13666.168	issue	W	2732032	488
13696.719	cmplt	W	2731008	1024
13697.024	issue	W	2732520	1024
13735.968	cmplt	W	2732032	488
13736.151	issue	W	2733544	1024
13765.634	cmplt	W	2732520	1024
13766.000	issue	W	2734568	1024
13795.544	cmplt	W	2733544	1024
13795.849	issue	W	2735592	536
13825.118	cmplt	W	2734568	1024
13825.454	issue	W	2736128	1024
13848.344	cmplt	W	2735592	536
13848.527	issue	W	2737152	1024
13869.464	cmplt	W	2736128	1024
13869.800	issue	W	2738176	1024
13900.809	cmplt	W	2737152	1024
13901.175	issue	W	2739200	1024
13932.184	cmplt	W	2738176	1024
13932.550	issue	W	2740224	1024
13963.559	cmplt	W	2739200	1024
13963.925	issue	W	2741248	1024
13994.781	cmplt	W	2740224	1024
13995.178	issue	W	2742272	1024
14025.973	cmplt	W	2741248	1024
14026.309	issue	W	2743296	1024
14057.256	cmplt	W	2742272	1024
14057.622	issue	W	2744320	1024
14088.295	cmplt	W	2743296	1024
14088.692	issue	W	2745344	1024
14119.274	cmplt	W	2744320	1024
14119.640	issue	W	2746368	1024
14150.221	cmplt	W	2745344	1024
14150.618	issue	W	2747392	1024
14181.169	cmplt	W	2746368	1024
14181.535	issue	W	2748416	1024
14212.300	cmplt	W	2747392	1024
14212.635	issue	W	2749440	1024
14243.736	cmplt	W	2748416	1024
14244.102	issue	W	2750464	1024
14274.989	cmplt	W	2749440	1024
14275.324	issue	W	2751488	1024
14306.425	cmplt	W	2750464	1024
14306.760	issue	W	2752512	1024
14352.388	cmplt	W	2751488	1024
14352.754	issue	W	2753536	1024
14373.905	cmplt	W	2752512	1024
14374.241	issue	W	2754560	1024
14405.311	cmplt	W	2753536	1024
14405.646	issue	W	2755584	1024
14436.960	cmplt	W	2754560	1024
14437.326	issue	W	2756608	1024
14468.244	cmplt	W	2755584	1024
14468.610	issue	W	2757632	1024
14499.130	cmplt	W	2756608	1024
14499.557	issue	W	2758656	1024
14530.200	cmplt	W	2757632	1024
14530.688	issue	W	2759680	1024
14561.209	cmplt	W	2758656	1024
14561.666	issue	W	2760704	1024
14592.278	cmplt	W	2759680	1024
14592.706	issue	W	2761728	1024
14623.592	cmplt	W	2760704	1024
14623.989	issue	W	2762752	1024
14654.815	cmplt	W	2761728	1024
14655.211	issue	W	2763776	1024
14686.190	cmplt	W	2762752	1024
14686.525	issue	W	2764800	1024
14717.748	cmplt	W	2763776	1024
14718.114	issue	W	2765824	1024
14749.000	cmplt	W	2764800	1024
14749.336	issue	W	2766848	1024
14780.528	cmplt	W	2765824	1024
14780.894	issue	W	2767872	1024
14812.208	cmplt	W	2766848	1024
14812.574	issue	W	2768896	1024
14845.628	cmplt	W	2767872	1024
14845.933	issue	W	2769920	1024
14866.656	cmplt	W	2768896	1024
14867.023	issue	W	2770944	1024
14898.154	cmplt	W	2769920	1024
14898.489	issue	W	2771968	336
14929.376	cmplt	W	2770944	1024
14947.108	cmplt	W	2771968	336
14950.038	queue	WS	1845664	8
14960.049	issue	WS	1845664	8
14961.514	cmplt	WS	1845664	8
15131.787	queue	W	2772304	1024
15132.214	queue	W	2773328	1024
15132.611	queue	W	2774352	1024
15133.038	queue	W	2775376	1024
15133.435	issue	W	2772304	1024
15133.435	queue	W	2776400	1024
15133.649	issue	W	2773328	1024
15133.862	queue	W	2777424	1024
15134.259	queue	W	2778448	1024
15134.686	queue	W	2779472	1024
15135.083	queue	W	2780496	1024
15135.510	queue	W	2781520	1024
15135.907	queue	W	2782544	1024
15136.365	queue	W	2783568	1024
15136.914	queue	W	2784592	688
15138.959	queue	W	2785280	1024
15139.387	queue	W	2786304	1024
15139.814	queue	W	2787328	1024
15150.313	queue	W	2788352	1024
15150.740	queue	W	2789376	1024
15151.167	queue	W	2790400	1024
15151.625	queue	W	2791424	1024
15152.083	queue	W	2792448	1024
15152.693	queue	W	2793472	1024
15153.121	queue	W	2794496	1024
15153.548	queue	W	2795520	1024
15154.036	queue	W	2796544	1024
15154.433	queue	W	2797568	1024
15154.860	queue	W	2798592	1024
15155.288	queue	W	2799616	1024
15155.715	queue	W	2800640	1024
15157.333	queue	W	2801664	1024
15157.729	queue	W	2802688	1024
15158.126	queue	W	2803712	1024
15158.584	queue	W	2804736	1024
15159.011	queue	W	2805760	1024
15159.408	queue	W	2806784	1024
15159.835	queue	W	2807808	1024
15162.033	cmplt	W	2772304	1024
15162.338	issue	W	2774352	1024
15170.365	queue	W	2808832	1024
15170.823	queue	W	2809856	1024
15171.250	queue	W	2810880	1024
15171.677	queue	W	2811904	1024
15171.860	queue	W	2812928	384
15191.058	cmplt	W	2773328	1024
15191.363	issue	W	2775376	1024
15222.249	cmplt	W	2774352	1024
15222.585	issue	W	2776400	1024
15251.488	cmplt	W	2775376	1024
15251.793	issue	W	2777424	1024
15279.658	cmplt	W	2776400	1024
15279.963	issue	W	2778448	1024
15281.550	queue	W	1835696	8
15281.611	queue	W	2621984	8
15286.983	queue	W	2813312	1024
15287.410	queue	W	2814336	1024
15287.807	queue	W	2815360	1024
15288.234	queue	W	2816384	1024
15289.272	queue	W	2817408	640
15301.236	queue	W	2818048	1024
15301.846	queue	W	2819072	1024
15302.274	queue	W	2820096	1024
15302.701	queue	W	2821120	1024
15303.128	queue	W	2822144	1024
15303.556	queue	W	2823168	1024
15303.983	queue	W	2824192	1024
15304.380	queue	W	2825216	1024
15304.868	queue	W	2826240	1024
15305.265	queue	W	2827264	1024
15305.356	cmplt	W	2777424	1024
15305.692	issue	W	2779472	1024
15305.692	queue	W	2828288	1024
15306.119	queue	W	2829312	1024
15306.516	queue	W	2830336	1024
15306.974	queue	W	2831360	1024
15307.371	queue	W	2832384	1024
15307.798	queue	W	2833408	1024
15309.873	queue	W	2834432	1024
15320.372	queue	W	2835456	1024
15320.800	queue	W	2836480	1024
15321.227	queue	W	2837504	1024
15321.654	queue	W	2838528	1024
15322.081	queue	W	2839552	1024
15322.478	queue	W	2840576	1024
15323.089	queue	W	2841600	1024
15323.485	queue	W	2842624	1024
15323.913	queue	W	2843648	1024
15324.340	queue	W	2844672	1024
15324.767	queue	W	2845696	1024
15325.195	queue	W	2846720	1024
15325.622	queue	W	2847744	1024
15326.049	queue	W	2848768	1024
15326.446	queue	W	2849792	1024
15327.331	queue	W	2850816	1024
15327.758	queue	W	2851840	1024
15328.216	queue	W	2852864	1024
15328.430	queue	W	2853888	384
15330.383	cmplt	W	2778448	1024
15330.688	issue	W	2780496	1024
15356.051	cmplt	W	2779472	1024
15356.356	issue	W	2781520	1024
15384.129	cmplt	W	2780496	1024
15384.435	issue	W	2782544	1024
15413.185	cmplt	W	2781520	1024
15413.490	issue	W	2783568	1024
15444.682	cmplt	W	2782544	1024
15444.987	issue	W	2784592	688
15474.256	cmplt	W	2783568	1024
15474.592	issue	W	2785280	1024
15498.001	cmplt	W	2784592	688
15498.215	issue	W	2786304	1024
15520.067	cmplt	W	2785280	1024
15520.372	issue	W	2787328	1024
15551.656	cmplt	W	2786304	1024
15551.991	issue	W	2788352	1024
15582.725	cmplt	W	2787328	1024
15583.031	issue	W	2789376	1024
15613.948	cmplt	W	2788352	1024
15614.253	issue	W	2790400	1024
15650.603	cmplt	W	2789376	1024
15650.939	issue	W	2791424	1024
15681.795	cmplt	W	2790400	1024
15682.100	issue	W	2792448	1024
15712.895	cmplt	W	2791424	1024
15713.170	issue	W	2793472	1024
15743.995	cmplt	W	2792448	1024
15744.300	issue	W	2794496	1024
15775.217	cmplt	W	2793472	1024
15775.492	issue	W	2795520	1024
15806.409	cmplt	W	2794496	1024
15806.684	issue	W	2796544	1024
15837.387	cmplt	W	2795520	1024
15837.693	issue	W	2797568	1024
15868.488	cmplt	W	2796544	1024
15868.762	issue	W	2798592	1024
15899.588	cmplt	W	2797568	1024
15899.863	issue	W	2799616	1024
15930.658	cmplt	W	2798592	1024
15930.963	issue	W	2800640	1024
15935.541	queue	W	2854272	1024
15935.968	queue	W	2855296	1024
15936.396	queue	W	2856320	1024
15936.792	queue	W	2857344	1024
15937.189	queue	W	2858368	1024
15937.586	queue	W	2859392	1024
15938.013	queue	W	2860416	1024
15938.410	queue	W	2861440	1024
15938.837	queue	W	2862464	1024
15939.234	queue	W	2863488	1024
15939.661	queue	W	2864512	1024
15950.099	queue	W	2865536	1024
15950.710	queue	W	2866560	640
15952.693	queue	W	2867200	1024
15953.090	queue	W	2868224	1024
15953.487	queue	W	2869248	1024
15953.884	queue	W	2870272	1024
15954.280	queue	W	2871296	1024
15954.677	queue	W	2872320	1024
15955.074	queue	W	2873344	1024
15955.440	queue	W	2874368	1024
15955.837	queue	W	2875392	1024
15956.234	queue	W	2876416	1024
15956.631	queue	W	2877440	1024
15957.027	queue	W	2878464	1024
15957.424	queue	W	2879488	1024
15957.851	queue	W	2880512	1024
15958.218	queue	W	2881536	1024
15958.614	queue	W	2882560	1024
15959.683	queue	R	2883584	8
15961.697	cmplt	W	2799616	1024
15994.323	cmplt	W	2800640	1024
15994.628	issue	R	2883584	8
15995.086	cmplt	R	2883584	8
16000.092	issue	W	2801664	1024
16000.336	issue	W	2802688	1024
16009.461	queue	W	2899968	1024
16009.919	queue	W	2900992	1024
16010.530	queue	W	2902016	1024
16010.957	queue	W	2903040	1024
16011.384	queue	W	2904064	1024
16011.781	queue	W	2905088	1024
16012.208	queue	W	2906112	1024
16012.635	queue	W	2907136	1024
16013.063	queue	W	2908160	1024
16013.459	queue	W	2909184	1024
16013.856	queue	W	2910208	1024
16014.100	queue	W	2911232	512
16021.364	cmplt	W	2801664	1024
16021.639	issue	W	2803712	1024
16052.403	cmplt	W	2802688	1024
16052.678	issue	W	2804736	1024
16083.473	cmplt	W	2803712	1024
16083.809	issue	W	2805760	1024
16114.635	cmplt	W	2804736	1024
16114.940	issue	W	2806784	1024
16145.735	cmplt	W	2805760	1024
16146.009	issue	W	2807808	1024
16176.652	cmplt	W	2806784	1024
16176.957	issue	W	2808832	1024
16207.447	cmplt	W	2807808	1024
16207.752	issue	W	2809856	1024
16238.547	cmplt	W	2808832	1024
16238.822	issue	W	2810880	1024
16269.678	cmplt	W	2809856	1024
16270.014	issue	W	2811904	1024
16300.656	cmplt	W	2810880	1024
16300.931	issue	W	2812928	384
16331.482	cmplt	W	2811904	1024
16331.787	issue	W	2813312	1024
16354.403	cmplt	W	2812928	384
16354.586	issue	W	1835696	8
16379.368	cmplt	W	2813312	1024
16379.704	issue	W	2621984	8
16381.047	cmplt	W	1835696	8
16381.077	issue	W	2814336	1024
16382.481	cmplt	W	2621984	8
16382.512	issue	W	2815360	1024
16407.935	cmplt	W	2814336	1024
16408.240	issue	W	2816384	1024
16440.134	cmplt	W	2815360	1024
16440.470	issue	W	2817408	640
16465.130	cmplt	W	2816384	1024
16465.405	issue	W	2818048	1024
16484.511	cmplt	W	2817408	640
16484.694	issue	W	2819072	1024
16505.692	cmplt	W	2818048	1024
16505.997	issue	W	2820096	1024
16536.762	cmplt	W	2819072	1024
16537.067	issue	W	2821120	1024
16567.862	cmplt	W	2820096	1024
16568.137	issue	W	2822144	1024
16599.115	cmplt	W	2821120	1024
16599.420	issue	W	2823168	1024
16630.124	cmplt	W	2822144	1024
16630.398	issue	W	2824192	1024
16661.102	cmplt	W	2823168	1024
16661.376	issue	W	2825216	1024
16691.927	cmplt	W	2824192	1024
16692.233	issue	W	2826240	1024
16736.212	cmplt	W	2825216	1024
16736.487	issue	W	2827264	1024
16767.435	cmplt	W	2826240	1024
16767.740	issue	W	2828288	1024
16798.413	cmplt	W	2827264	1024
16798.718	issue	W	2829312	1024
16829.574	cmplt	W	2828288	1024
16829.879	issue	W	2830336	1024
16860.552	cmplt	W	2829312	1024
16860.858	issue	W	2831360	1024
16873.371	queue	WS	1916928	8
16891.744	cmplt	W	2830336	1024
16922.967	cmplt	W	2831360	1024
16923.302	issue	WS	1916928	8
16924.828	cmplt	WS	1916928	8
16925.408	queue	WS	1916928	8
16925.469	issue	WS	1916928	8
16926.324	cmplt	WS	1916928	8
16930.169	issue	W	2832384	1024
16930.353	issue	W	2833408	1024
16941.279	queue	WS	2833408	1024
16961.850	cmplt	W	2832384	1024
16994.689	cmplt	W	2833408	1024
16995.025	issue	W	2834432	1024
16995.208	issue	W	2835456	1024
16995.208	queue	WS	1912920	8
17016.359	cmplt	W	2834432	1024
17047.398	cmplt	W	2835456	1024
17047.734	issue	WS	1912920	8
17049.107	cmplt	WS	1912920	8
17060.003	issue	W	2836480	1024
17060.186	issue	W	2837504	1024
17061.712	queue	WS	1845672	8
17061.743	queue	WS	1845680	8
17061.743	queue	WS	1845688	8
17061.773	queue	WS	1845696	8
17061.773	queue	WS	1845704	8
17061.773	queue	WS	1845712	8
17061.804	queue	WS	1845720	8
17061.804	queue	WS	1845728	8
17091.714	cmplt	W	2836480	1024
17122.570	cmplt	W	2837504	1024
17122.875	issue	WS	1845672	64
17125.225	cmplt	WS	1845672	64
17130.047	issue	W	2838528	1024
17130.230	issue	W	2839552	1024
17161.605	cmplt	W	2838528	1024
17161.911	issue	W	2840576	1024
17192.980	cmplt	W	2839552	1024
17193.255	issue	W	2841600	1024
17224.355	cmplt	W	2840576	1024
17224.660	issue	W	2842624	1024
17255.761	cmplt	W	2841600	1024
17256.035	issue	W	2843648	1024
17287.075	cmplt	W	2842624	1024
17287.380	issue	W	2844672	1024
17318.572	cmplt	W	2843648	1024
17318.877	issue	W	2845696	1024
17349.916	cmplt	W	2844672	1024
17350.221	issue	W	2846720	1024
17381.322	cmplt	W	2845696	1024
17381.627	issue	W	2847744	1024
17412.666	cmplt	W	2846720	1024
17412.971	issue	W	2848768	1024
17444.132	cmplt	W	2847744	1024
17444.438	issue	W	2849792	1024
17475.691	cmplt	W	2848768	1024
17475.996	issue	W	2850816	1024
17508.927	cmplt	W	2849792	1024
17509.232	issue	W	2851840	1024
17530.322	cmplt	W	2850816	1024
17530.627	issue	W	2852864	1024
17561.636	cmplt	W	2851840	1024
17561.941	issue	W	2853888	384
17592.858	cmplt	W	2852864	1024
17593.163	issue	W	2854272	1024
17616.176	cmplt	W	2853888	384
17616.328	issue	W	2855296	1024
17641.447	cmplt	W	2854272	1024
17641.752	issue	W	2856320	1024
17666.779	cmplt	W	2855296	1024
17667.084	issue	W	2857344	1024
17692.110	cmplt	W	2856320	1024
17692.416	issue	W	2858368	1024
17717.351	cmplt	W	2857344	1024
17717.687	issue	W	2859392	1024
17742.774	cmplt	W	2858368	1024
17743.080	issue	W	2860416	1024
17768.198	cmplt	W	2859392	1024
17768.503	issue	W	2861440	1024
17793.530	cmplt	W	2860416	1024
17793.865	issue	W	2862464	1024
17818.953	cmplt	W	2861440	1024
17819.258	issue	W	2863488	1024
17844.377	cmplt	W	2862464	1024
17844.682	issue	W	2864512	1024
17869.800	cmplt	W	2863488	1024
17870.166	issue	W	2865536	1024
17908.347	cmplt	W	2864512	1024
17908.653	issue	W	2866560	640
17933.801	cmplt	W	2865536	1024
17934.107	issue	W	2867200	1024
17953.456	cmplt	W	2866560	640
17953.701	issue	W	2868224	1024
17983.488	cmplt	W	2867200	1024
17983.794	issue	W	2869248	1024
18014.345	cmplt	W	2868224	1024
18014.650	issue	W	2870272	1024
18038.059	cmplt	W	2869248	1024
18038.395	issue	W	2871296	1024
18067.206	cmplt	W	2870272	1024
18067.511	issue	W	2872320	1024
18096.597	cmplt	W	2871296	1024
18096.902	issue	W	2873344	1024
18125.927	cmplt	W	2872320	1024
18126.263	issue	W	2874368	1024
18155.318	cmplt	W	2873344	1024
18155.623	issue	W	2875392	1024
18184.648	cmplt	W	2874368	1024
18184.953	issue	W	2876416	1024
18213.948	cmplt	W	2875392	1024
18214.284	issue	W	2877440	1024
18243.247	cmplt	W	2876416	1024
18243.583	issue	W	2878464	1024
18272.547	cmplt	W	2877440	1024
18272.852	issue	W	2879488	1024
18301.908	cmplt	W	2878464	1024
18302.243	issue	W	2880512	1024
18331.360	cmplt	W	2879488	1024
18331.665	issue	W	2881536	1024
18360.781	cmplt	W	2880512	1024
18361.087	issue	W	2882560	1024
18390.111	cmplt	W	2881536	1024
18390.447	issue	W	2899968	1024
18419.747	cmplt	W	2882560	1024
18420.082	issue	W	2900992	1024
18449.138	cmplt	W	2899968	1024
18449.474	issue	W	2902016	1024
18480.085	cmplt	W	2900992	1024
18480.421	issue	W	2903040	1024
18503.922	cmplt	W	2902016	1024
18504.258	issue	W	2904064	1024
18532.916	cmplt	W	2903040	1024
18533.252	issue	W	2905088	1024
18562.063	cmplt	W	2904064	1024
18562.368	issue	W	2906112	1024
18591.149	cmplt	W	2905088	1024
18591.454	issue	W	2907136	1024
18620.357	cmplt	W	2906112	1024
18620.662	issue	W	2908160	1024
18649.321	cmplt	W	2907136	1024
18649.657	issue	W	2909184	1024
18678.529	cmplt	W	2908160	1024
18678.834	issue	W	2910208	1024
18707.615	cmplt	W	2909184	1024
18707.920	issue	W	2911232	512
18737.006	cmplt	W	2910208	1024
18758.340	cmplt	W	2911232	512
18758.584	queue	WS	1845736	8
18759.103	queue	W	2911744	1024
18759.530	queue	W	2912768	1024
18760.018	queue	W	2913792	1024
18760.507	queue	W	2914816	1024
18761.697	queue	W	2915840	512
18763.589	queue	W	2916352	1024
18764.047	queue	W	2917376	1024
18764.474	queue	W	2918400	1024
18764.963	queue	W	2919424	1024
18765.390	queue	W	2920448	1024
18765.848	queue	W	2921472	1024
18766.275	queue	W	2922496	1024
18766.733	queue	W	2923520	1024
18767.191	queue	W	2924544	1024
18767.679	queue	W	2925568	1024
18768.137	queue	W	2926592	1024
18768.595	queue	W	2927616	1024
18769.052	queue	W	2928640	1024
18769.510	queue	W	2929664	1024
18769.998	issue	WS	1845736	8
18769.998	queue	W	2930688	1024
18770.090	issue	W	2911744	1024
18770.456	queue	W	2931712	1024
18771.647	cmplt	WS	1845736	8
18771.708	issue	W	2912768	1024
18772.867	queue	W	2932736	1024
18773.295	queue	W	2933760	1024
18773.691	queue	W	2934784	1024
18774.088	queue	W	2935808	1024
18774.485	queue	W	2936832	1024
18774.882	queue	W	2937856	1024
18775.278	queue	W	2938880	1024
18775.736	queue	W	2939904	1024
18776.133	queue	W	2940928	1024
18776.530	queue	W	2941952	1024
18776.927	queue	W	2942976	1024
18777.323	queue	W	2944000	1024
18777.751	queue	W	2945024	1024
18778.147	queue	W	2946048	1024
18778.544	queue	W	2947072	1024
18778.941	queue	W	2948096	1024
18780.528	queue	W	2949120	1024
18782.725	queue	W	2950144	1024
18784.953	queue	W	2951168	1024
18788.189	queue	WS	1845744	8
18788.219	queue	WS	1845752	8
18788.219	queue	WS	1845760	8
18788.219	queue	WS	1845768	8
18788.250	queue	WS	1845776	8
18788.311	queue	W	2952192	888
18790.050	queue	W	2953080	1024
18790.722	queue	W	2954104	1024
18791.149	queue	W	2955128	1024
18791.607	queue	W	2956152	1024
18792.034	queue	W	2957176	1024
18792.461	queue	W	2958200	1024
18792.889	queue	W	2959224	1024
18792.980	queue	W	2960248	96
18793.530	queue	W	2960344	928
18793.865	queue	W	2961272	488
18794.079	queue	W	2961760	104
18794.171	queue	W	2961864	32
18794.262	queue	W	2961896	24
18794.384	queue	W	2961920	24
18794.506	queue	W	2961944	24
18794.659	queue	W	2961968	24
18794.781	queue	W	2961992	40
18794.903	queue	W	2962032	32
18795.025	queue	W	2962064	24
18795.117	queue	W	2962088	32
18795.239	queue	W	2962120	24
18795.361	queue	W	2962144	32
18795.605	queue	W	2962176	24
18795.758	queue	W	2962200	88
18795.880	queue	W	2962288	32
18796.032	queue	W	2962320	40
18796.154	queue	W	2962360	32
18796.277	queue	W	2962392	32
18796.399	queue	W	2962424	16
18796.551	queue	W	2962440	32
18796.673	queue	W	2962472	48
18796.765	queue	W	2962520	24
18796.856	queue	W	2962544	24
18796.978	queue	W	2962568	24
18797.070	queue	W	2962592	24
18797.192	queue	W	2962616	24
18797.314	queue	W	2962640	24
18797.436	queue	W	2962664	24
18797.528	queue	W	2962688	24
18797.650	queue	W	2962712	24
18797.772	queue	W	2962736	24
18797.864	queue	W	2962760	24
18797.986	queue	W	2962784	16
18798.321	queue	W	2962800	32
18798.443	queue	W	2962832	112
18798.566	queue	W	2962944	32
18798.688	queue	W	2962976	24
18798.779	queue	W	2963000	24
18798.901	queue	W	2963024	24
18799.023	queue	W	2963048	24
18799.115	queue	W	2963072	24
18799.237	queue	W	2963096	24
18799.359	queue	W	2963120	24
18799.451	queue	W	2963144	24
18799.573	queue	W	2963168	32
18799.725	queue	W	2963200	24
18799.847	queue	W	2963224	32
18799.939	queue	W	2963256	32
18800.702	cmplt	W	2911744	1024
18801.099	queue	W	2963288	24
18801.221	queue	W	2963312	32
18801.373	queue	W	2963344	32
18801.495	queue	W	2963376	24
18801.618	queue	W	2963400	24
18801.740	queue	W	2963424	24
18801.862	queue	W	2963448	16
18802.167	queue	W	2963464	24
18802.320	queue	W	2963488	88
18802.472	queue	W	2963576	32
18802.564	queue	W	2963608	24
18802.686	queue	W	2963632	32
18802.808	queue	W	2963664	24
18802.960	queue	W	2963688	24
18803.083	queue	W	2963712	24
18803.235	queue	W	2963736	24
18803.357	queue	W	2963760	32
18803.449	queue	W	2963792	24
18803.571	queue	W	2963816	32
18803.693	queue	W	2963848	24
18803.815	queue	W	2963872	32
18803.937	queue	W	2963904	24
18804.059	queue	W	2963928	24
18804.120	queue	W	2963952	16
18804.242	queue	W	2963968	16
18804.364	queue	W	2963984	32
18804.486	queue	W	2964016	24
18804.609	queue	W	2964040	24
18804.914	queue	W	2964064	24
18805.097	queue	W	2964088	88
18805.188	queue	W	2964176	40
18805.341	queue	W	2964216	32
18805.433	queue	W	2964248	24
18805.585	queue	W	2964272	24
18805.707	queue	W	2964296	32
18805.829	queue	W	2964328	24
18805.982	queue	W	2964352	32
18806.104	queue	W	2964384	24
18806.226	queue	W	2964408	16
18806.348	queue	W	2964424	24
18806.470	queue	W	2964448	24
18806.592	queue	W	2964472	24
18806.745	queue	W	2964496	24
18806.867	queue	W	2964520	24
18806.989	queue	W	2964544	24
18807.111	queue	W	2964568	24
18807.233	queue	W	2964592	24
18807.386	queue	W	2964616	24
18807.508	queue	W	2964640	32
18807.813	queue	W	2964672	24
18807.966	queue	W	2964696	88
18808.088	queue	W	2964784	32
18808.179	queue	W	2964816	32
18808.302	queue	W	2964848	32
18808.424	queue	W	2964880	24
18808.546	queue	W	2964904	24
18808.668	queue	W	2964928	24
18808.790	queue	W	2964952	24
18808.881	queue	W	2964976	24
18809.034	queue	W	2965000	32
18809.156	queue	W	2965032	24
18809.278	queue	W	2965056	24
18809.431	queue	W	2965080	24
18809.583	queue	W	2965104	32
18809.705	queue	W	2965136	32
18809.797	queue	W	2965168	32
18809.950	queue	W	2965200	32
18810.011	queue	W	2965232	16
18810.133	queue	W	2965248	16
18810.224	queue	W	2965264	24
18810.530	queue	W	2965288	32
18810.682	queue	W	2965320	88
18810.835	queue	W	2965408	48
18810.957	queue	W	2965456	32
18811.079	queue	W	2965488	16
18811.231	queue	W	2965504	40
18811.323	queue	W	2965544	24
18811.445	queue	W	2965568	24
18811.537	queue	W	2965592	24
18811.659	queue	W	2965616	24
18811.781	queue	W	2965640	24
18811.872	queue	W	2965664	24
18811.995	queue	W	2965688	24
18812.086	queue	W	2965712	24
18812.208	queue	W	2965736	24
18812.330	queue	W	2965760	24
18812.422	queue	W	2965784	24
18812.544	queue	W	2965808	24
18812.666	queue	W	2965832	24
18812.788	queue	W	2965856	32
18812.880	queue	W	2965888	24
18813.185	queue	W	2965912	24
18813.337	queue	W	2965936	88
18813.459	queue	W	2966024	40
18813.612	queue	W	2966064	24
18813.734	queue	W	2966088	40
18813.856	queue	W	2966128	32
18813.978	queue	W	2966160	32
18814.070	queue	W	2966192	24
18814.192	queue	W	2966216	24
18814.314	queue	W	2966240	24
18814.406	queue	W	2966264	16
18814.528	queue	W	2966280	24
18814.619	queue	W	2966304	24
18814.741	queue	W	2966328	24
18814.894	queue	W	2966352	32
18814.986	queue	W	2966384	24
18815.108	queue	W	2966408	24
18815.230	queue	W	2966432	24
18815.321	queue	W	2966456	24
18815.443	queue	W	2966480	24
18815.504	queue	W	2966504	16
18815.810	queue	W	2966520	24
18815.962	queue	W	2966544	88
18816.084	queue	W	2966632	40
18816.206	queue	W	2966672	32
18816.328	queue	W	2966704	32
18816.389	queue	W	2966736	24
18816.512	queue	W	2966760	24
18816.634	queue	W	2966784	24
18816.756	queue	W	2966808	24
18816.847	queue	W	2966832	24
18816.969	queue	W	2966856	24
18817.061	queue	W	2966880	24
18817.183	queue	W	2966904	16
18817.305	queue	W	2966920	32
18817.427	queue	W	2966952	24
18817.549	queue	W	2966976	32
18817.671	queue	W	2967008	32
18817.793	queue	W	2967040	24
18817.915	queue	W	2967064	24
18818.038	queue	W	2967088	24
18818.160	queue	W	2967112	32
18818.434	queue	W	2967144	24
18818.617	queue	W	2967168	88
18818.740	queue	W	2967256	40
18818.831	queue	W	2967296	24
18818.953	queue	W	2967320	32
18819.075	queue	W	2967352	24
18819.228	queue	W	2967376	32
18819.350	queue	W	2967408	32
18819.472	queue	W	2967440	32
18819.564	queue	W	2967472	24
18819.686	queue	W	2967496	24
18819.808	queue	W	2967520	24
18819.930	queue	W	2967544	16
18820.052	queue	W	2967560	32
18820.174	queue	W	2967592	24
18820.296	queue	W	2967616	32
18820.418	queue	W	2967648	24
18820.540	queue	W	2967672	24
18820.662	queue	W	2967696	24
18820.784	queue	W	2967720	24
18820.876	queue	W	2967744	16
18821.029	queue	W	2967760	32
18821.120	queue	W	2967792	16
18821.242	queue	W	2967808	32
18821.364	queue	W	2967840	24
18821.517	queue	W	2967864	24
18821.639	queue	W	2967888	40
18821.761	queue	W	2967928	24
18821.883	queue	W	2967952	32
18822.005	queue	W	2967984	24
18822.127	queue	W	2968008	24
18822.249	queue	W	2968032	24
18822.341	queue	W	2968056	16
18822.463	queue	W	2968072	32
18822.585	queue	W	2968104	24
18822.707	queue	W	2968128	32
18822.829	queue	W	2968160	24
18822.951	queue	W	2968184	32
18823.073	queue	W	2968216	24
18823.195	queue	W	2968240	24
18823.318	queue	W	2968264	32
18823.440	queue	W	2968296	24
18823.562	queue	W	2968320	24
18823.684	queue	W	2968344	24
18823.806	queue	W	2968368	24
18823.958	queue	W	2968392	32
18824.050	queue	W	2968424	32
18824.172	queue	W	2968456	24
18824.325	queue	W	2968480	24
18824.447	queue	W	2968504	24
18824.569	queue	W	2968528	24
18824.660	queue	W	2968552	24
18824.783	queue	W	2968576	32
18824.905	queue	W	2968608	24
18825.027	queue	W	2968632	24
18825.149	queue	W	2968656	24
18825.271	queue	W	2968680	24
18825.423	queue	W	2968704	24
18825.546	queue	W	2968728	32
18825.637	queue	W	2968760	24
18825.759	queue	W	2968784	24
18825.881	queue	W	2968808	24
18826.003	queue	W	2968832	24
18826.125	queue	W	2968856	24
18826.248	queue	W	2968880	24
18826.370	queue	W	2968904	32
18826.492	queue	W	2968936	24
18826.614	queue	W	2968960	32
18826.736	queue	W	2968992	16
18826.858	queue	W	2969008	32
18826.980	queue	W	2969040	24
18827.072	queue	W	2969064	24
18827.194	queue	W	2969088	32
18827.346	queue	W	2969120	24
18827.438	queue	W	2969144	32
18827.560	queue	W	2969176	24
18827.682	queue	W	2969200	24
18827.804	queue	W	2969224	24
18827.926	queue	W	2969248	24
18828.048	queue	W	2969272	24
18828.170	queue	W	2969296	24
18828.262	queue	W	2969320	24
18828.384	queue	W	2969344	24
18828.506	queue	W	2969368	24
18828.628	queue	W	2969392	24
18828.781	queue	W	2969416	32
18828.903	queue	W	2969448	16
18828.964	queue	W	2969464	16
18829.422	cmplt	W	2912768	1024
18829.818	issue	WS	1845744	40
18834.030	cmplt	WS	1845744	40
18840.073	issue	W	2913792	1024
18840.287	issue	W	2914816	1024
18869.403	cmplt	W	2913792	1024
18869.739	issue	W	2915840	512
18898.520	cmplt	W	2914816	1024
18898.886	issue	W	2916352	1024
18919.640	cmplt	W	2915840	512
18919.854	issue	W	2917376	1024
18948.573	cmplt	W	2916352	1024
18948.909	issue	W	2918400	1024
18957.760	queue	W	2969480	1024
18958.187	queue	W	2970504	1024
18958.614	queue	W	2971528	1024
18959.011	queue	W	2972552	1024
18959.408	queue	W	2973576	1024
18959.866	queue	W	2974600	1024
18960.324	queue	W	2975624	1024
18960.751	queue	W	2976648	1024
18979.094	cmplt	W	2917376	1024
18979.460	issue	W	2919424	1024
19002.503	cmplt	W	2918400	1024
19002.869	issue	W	2920448	1024
19031.650	cmplt	W	2919424	1024
19031.985	issue	W	2921472	1024
19067.938	cmplt	W	2920448	1024
19068.274	issue	W	2922496	1024
19097.329	cmplt	W	2921472	1024
19097.696	issue	W	2923520	1024
19126.202	cmplt	W	2922496	1024
19126.568	issue	W	2924544	1024
19155.074	cmplt	W	2923520	1024
19155.440	issue	W	2925568	1024
19183.824	cmplt	W	2924544	1024
19184.221	issue	W	2926592	1024
19213.032	cmplt	W	2925568	1024
19213.429	issue	W	2927616	1024
19235.678	queue	W	1835696	8
19235.709	queue	W	2621960	8
19235.739	queue	W	2621976	8
19241.508	queue	W	2977672	1024
19241.935	queue	W	2978696	1024
19242.332	queue	W	2979720	1024
19242.362	cmplt	W	2926592	1024
19242.637	issue	W	2928640	1024
19242.973	queue	W	2980744	1024
19243.827	queue	W	2981768	120
19260.674	queue	W	2981888	1024
19261.163	queue	W	2982912	1024
19261.621	queue	W	2983936	1024
19262.048	queue	W	2984960	1024
19262.475	queue	W	2985984	1024
19262.902	queue	W	2987008	1024
19263.360	queue	W	2988032	1024
19263.757	queue	W	2989056	1024
19264.184	queue	W	2990080	1024
19264.612	queue	W	2991104	1024
19265.069	queue	W	2992128	1024
19265.497	queue	W	2993152	1024
19265.924	queue	W	2994176	1024
19266.351	queue	W	2995200	1024
19266.809	queue	W	2996224	1024
19267.206	queue	W	2997248	1024
19269.281	queue	W	2998272	1024
19269.678	queue	W	2999296	1024
19270.136	queue	W	3000320	1024
19270.533	queue	W	3001344	1024
19270.929	queue	W	3002368	1024
19271.326	queue	W	3003392	1024
19271.448	cmplt	W	2927616	1024
19271.753	queue	W	3004416	1024
19271.784	issue	W	2929664	1024
19272.211	queue	W	3005440	1024
19272.638	queue	W	3006464	1024
19273.096	queue	W	3007488	1024
19273.524	queue	W	3008512	1024
19273.951	queue	W	3009536	1024
19274.378	queue	W	3010560	1024
19274.836	queue	W	3011584	1024
19275.263	queue	W	3012608	1024
19275.721	queue	W	3013632	1024
19276.789	queue	W	3014656	1024
19277.217	queue	W	3015680	1024
19277.644	queue	W	3016704	1024
19278.071	queue	W	3017728	1024
19278.498	queue	W	3018752	1024
19278.651	queue	W	3019776	264
19300.443	cmplt	W	2928640	1024
19300.748	issue	W	2930688	1024
19329.498	cmplt	W	2929664	1024
19329.803	issue	W	2931712	1024
19359.011	cmplt	W	2930688	1024
19359.347	issue	W	2932736	1024
19388.433	cmplt	W	2931712	1024
19388.738	issue	W	2933760	1024
19417.519	cmplt	W	2932736	1024
19417.824	issue	W	2934784	1024
19448.344	cmplt	W	2933760	1024
19448.649	issue	W	2935808	1024
19472.211	cmplt	W	2934784	1024
19472.516	issue	W	2936832	1024
19508.164	cmplt	W	2935808	1024
19510.148	issue	W	2937856	1024
19537.281	cmplt	W	2936832	1024
19537.586	issue	W	2938880	1024
19566.336	cmplt	W	2937856	1024
19566.641	issue	W	2939904	1024
19595.452	cmplt	W	2938880	1024
19595.788	issue	W	2940928	1024
19624.935	cmplt	W	2939904	1024
19625.301	issue	W	2941952	1024
19654.418	cmplt	W	2940928	1024
19654.784	issue	W	2942976	1024
19683.534	cmplt	W	2941952	1024
19683.931	issue	W	2944000	1024
19712.651	cmplt	W	2942976	1024
19713.017	issue	W	2945024	1024
19741.981	cmplt	W	2944000	1024
19742.347	issue	W	2946048	1024
19771.250	cmplt	W	2945024	1024
19771.616	issue	W	2947072	1024
19800.885	cmplt	W	2946048	1024
19801.221	issue	W	2948096	1024
19830.459	cmplt	W	2947072	1024
19830.795	issue	W	2949120	1024
19859.637	cmplt	W	2948096	1024
19860.125	issue	W	2950144	1024
19889.181	cmplt	W	2949120	1024
19889.608	issue	W	2951168	1024
19918.175	cmplt	W	2950144	1024
19918.602	issue	W	2952192	888
19947.078	cmplt	W	2951168	1024
19947.474	issue	W	2953080	1024
19975.736	cmplt	W	2952192	888
19976.103	issue	W	2954104	1024
20007.661	cmplt	W	2953080	1024
20007.996	issue	W	2955128	1024
20034.396	cmplt	W	2954104	1024
20034.763	issue	W	2956152	1024
20060.919	cmplt	W	2955128	1024
20061.254	issue	W	2957176	1024
20090.157	cmplt	W	2956152	1024
20090.646	issue	W	2958200	1024
20116.466	cmplt	W	2957176	1024
20116.832	issue	W	2959224	1024
20142.805	cmplt	W	2958200	1024
20143.141	issue	W	2960248	1024
20169.602	cmplt	W	2959224	1024
20169.907	issue	W	2961272	1016
20169.907	queue	WS	1845784	8
20209.278	cmplt	W	2960248	1024
20248.863	cmplt	W	2961272	1016
20249.199	issue	WS	1845784	8
20249.260	issue	W	2962288	1024
20250.786	cmplt	WS	1845784	8
20250.816	issue	W	2963312	1016
20265.161	queue	W	2963312	1016
20279.261	cmplt	W	2962288	1024
20279.658	issue	W	2964328	992
20308.042	cmplt	W	2963312	1016
20308.469	issue	W	2965320	1008
20339.631	cmplt	W	2964328	992
20340.058	issue	W	2966328	1024
20369.083	cmplt	W	2965320	1008
20369.480	issue	W	2967352	1016
20398.504	cmplt	W	2966328	1024
20398.871	issue	W	2968368	1024
20403.510	queue	W	3020040	1024
20403.937	queue	W	3021064	1024
20404.364	queue	W	3022088	1024
20404.761	queue	W	3023112	1024
20405.188	queue	W	3024136	1024
20405.585	queue	W	3025160	1024
20406.013	queue	W	3026184	1024
20406.409	queue	W	3027208	1024
20406.837	queue	W	3028232	1024
20407.264	queue	W	3029256	1024
20407.966	queue	W	3030280	760
20409.950	queue	W	3031040	1024
20410.438	queue	W	3032064	1024
20411.018	queue	W	3033088	1024
20411.445	queue	W	3034112	1024
20411.872	queue	W	3035136	1024
20412.330	queue	W	3036160	1024
20412.758	queue	W	3037184	1024
20413.185	queue	W	3038208	1024
20413.612	queue	W	3039232	1024
20414.100	queue	W	3040256	1024
20414.589	queue	W	3041280	1024
20415.016	queue	W	3042304	1024
20415.413	queue	W	3043328	1024
20415.871	queue	W	3044352	1024
20416.267	queue	W	3045376	1024
20416.695	queue	W	3046400	1024
20418.770	queue	W	3047424	1024
20419.197	queue	W	3048448	1024
20419.594	queue	W	3049472	1024
20419.808	queue	W	3049472	1024
20420.632	queue	W	3050496	1024
20421.059	queue	W	3051520	1024
20421.486	queue	W	3052544	1024
20421.914	queue	W	3053568	1024
20422.463	queue	W	3054592	1024
20422.860	queue	W	3055616	1024
20423.318	queue	W	3056640	1024
20423.714	queue	W	3057664	1024
20424.142	queue	W	3058688	1024
20424.538	queue	W	3059712	1024
20424.966	queue	W	3060736	1024
20425.393	queue	W	3061760	1024
20425.790	queue	W	3062784	1024
20426.431	queue	W	3063808	1024
20426.827	queue	W	3064832	912
20427.621	cmplt	W	2967352	1016
20428.018	issue	W	2969392	88
20455.059	cmplt	W	2968368	1024
20455.486	issue	W	2969480	1024
20457.958	cmplt	W	2969392	88
20458.050	issue	W	2970504	1024
20487.380	cmplt	W	2969480	1024
20487.655	issue	W	2971528	1024
20517.046	cmplt	W	2970504	1024
20517.351	issue	W	2972552	1024
20546.956	cmplt	W	2971528	1024
20547.230	issue	W	2973576	1024
20576.438	cmplt	W	2972552	1024
20576.713	issue	W	2974600	1024
20605.951	cmplt	W	2973576	1024
20606.257	issue	W	2975624	1024
20635.404	cmplt	W	2974600	1024
20635.678	issue	W	2976648	1024
20665.192	cmplt	W	2975624	1024
20665.466	issue	W	2977672	1024
20695.040	cmplt	W	2976648	1024
20695.315	issue	W	1835696	8
20731.329	cmplt	W	2977672	1024
20731.604	issue	W	2621960	8
20732.977	cmplt	W	1835696	8
20733.038	issue	W	2621976	8
20734.473	cmplt	W	2621960	8
20734.534	issue	W	2978696	1024
20735.388	cmplt	W	2621976	8
20735.449	issue	W	2979720	1024
20765.390	cmplt	W	2978696	1024
20765.695	issue	W	2980744	1024
20794.964	cmplt	W	2979720	1024
20795.269	issue	W	2981768	120
20824.355	cmplt	W	2980744	1024
20824.660	issue	W	2981888	1024
20833.633	cmplt	W	2981768	120
20833.725	issue	W	2982912	1024
20859.393	cmplt	W	2981888	1024
20859.698	issue	W	2983936	1024
20884.938	cmplt	W	2982912	1024
20885.274	issue	W	2984960	1024
20910.636	cmplt	W	2983936	1024
20910.942	issue	W	2985984	1024
20936.151	cmplt	W	2984960	1024
20936.487	issue	W	2987008	1024
20961.788	cmplt	W	2985984	1024
20962.124	issue	W	2988032	1024
20987.426	cmplt	W	2987008	1024
20987.731	issue	W	2989056	1024
21013.063	cmplt	W	2988032	1024
21013.368	issue	W	2990080	1024
21038.700	cmplt	W	2989056	1024
21039.005	issue	W	2991104	1024
21064.306	cmplt	W	2990080	1024
21064.612	issue	W	2992128	1024
21090.249	cmplt	W	2991104	1024
21090.523	issue	W	2993152	1024
21115.916	cmplt	W	2992128	1024
21116.252	issue	W	2994176	1024
21141.584	cmplt	W	2993152	1024
21141.889	issue	W	2995200	1024
21180.925	cmplt	W	2994176	1024
21181.230	issue	W	2996224	1024
21206.501	cmplt	W	2995200	1024
21206.806	issue	W	2997248	1024
21232.199	cmplt	W	2996224	1024
21232.504	issue	W	2998272	1024
21257.928	cmplt	W	2997248	1024
21258.233	issue	W	2999296	1024
21283.473	cmplt	W	2998272	1024
21283.748	issue	W	3000320	1024
21309.141	cmplt	W	2999296	1024
21309.446	issue	W	3001344	1024
21334.717	cmplt	W	3000320	1024
21335.022	issue	W	3002368	1024
21360.324	cmplt	W	3001344	1024
21360.598	issue	W	3003392	1024
21398.871	cmplt	W	3002368	1024
21399.176	issue	W	3004416	1024
21424.569	cmplt	W	3003392	1024
21424.996	issue	W	3005440	1024
21450.237	cmplt	W	3004416	1024
21450.572	issue	W	3006464	1024
21476.209	cmplt	W	3005440	1024
21476.576	issue	W	3007488	1024
21502.243	cmplt	W	3006464	1024
21502.518	issue	W	3008512	1024
21528.094	cmplt	W	3007488	1024
21528.369	issue	W	3009536	1024
21554.006	cmplt	W	3008512	1024
21554.311	issue	W	3010560	1024
21580.040	cmplt	W	3009536	1024
21580.375	issue	W	3011584	1024
21619.716	cmplt	W	3010560	1024
21619.991	issue	W	3012608	1024
21645.384	cmplt	W	3011584	1024
21645.658	issue	W	3013632	1024
21671.082	cmplt	W	3012608	1024
21671.387	issue	W	3014656	1024
21696.780	cmplt	W	3013632	1024
21697.085	issue	W	3015680	1024
21722.417	cmplt	W	3014656	1024
21722.722	issue	W	3016704	1024
21747.963	cmplt	W	3015680	1024
21748.268	issue	W	3017728	1024
21773.508	cmplt	W	3016704	1024
21773.814	issue	W	3018752	1024
21799.451	cmplt	W	3017728	1024
21799.756	issue	W	3019776	264
21825.362	cmplt	W	3018752	1024
21825.668	issue	W	3020040	1024
21837.235	cmplt	W	3019776	264
21837.357	issue	W	3021064	1024
21863.238	cmplt	W	3020040	1024
21863.513	issue	W	3022088	1024
21889.791	cmplt	W	3021064	1024
21890.127	issue	W	3023112	1024
21916.069	cmplt	W	3022088	1024
21916.374	issue	W	3024136	1024
21941.950	cmplt	W	3023112	1024
21942.225	issue	W	3025160	1024
21967.801	cmplt	W	3024136	1024
21968.106	issue	W	3026184	1024
21993.804	cmplt	W	3025160	1024
21994.079	issue	W	3027208	1024
22019.777	cmplt	W	3026184	1024
22020.082	issue	W	3028232	1024
22053.960	cmplt	W	3027208	1024
22054.296	issue	W	3029256	1024
22079.750	cmplt	W	3028232	1024
22080.085	issue	W	3030280	760
22106.058	cmplt	W	3029256	1024
22106.333	issue	W	3031040	1024
22127.911	cmplt	W	3030280	760
22128.155	issue	W	3032064	1024
22149.580	cmplt	W	3031040	1024
22149.855	issue	W	3033088	1024
22180.497	cmplt	W	3032064	1024
22180.803	issue	W	3034112	1024
22211.170	cmplt	W	3033088	1024
22211.445	issue	W	3035136	1024
22242.179	cmplt	W	3034112	1024
22242.454	issue	W	3036160	1024
22272.974	cmplt	W	3035136	1024
22273.279	issue	W	3037184	1024
22303.708	cmplt	W	3036160	1024
22304.013	issue	W	3038208	1024
22334.686	cmplt	W	3037184	1024
22334.961	issue	W	3039232	1024
22365.604	cmplt	W	3038208	1024
22365.909	issue	W	3040256	1024
22396.551	cmplt	W	3039232	1024
22396.856	issue	W	3041280	1024
22427.499	cmplt	W	3040256	1024
22427.804	issue	W	3042304	1024
22458.477	cmplt	W	3041280	1024
22458.782	issue	W	3043328	1024
22489.455	cmplt	W	3042304	1024
22489.760	issue	W	3044352	1024
22520.464	cmplt	W	3043328	1024
22520.769	issue	W	3045376	1024
22551.656	cmplt	W	3044352	1024
22551.961	issue	W	3046400	1024
22596.154	cmplt	W	3045376	1024
22596.490	issue	W	3047424	1024
22612.391	queue	WS	1916928	8
22628.872	cmplt	W	3046400	1024
22649.840	cmplt	W	3047424	1024
22650.206	issue	WS	1916928	8
22651.732	cmplt	WS	1916928	8
22652.312	queue	WS	1916928	8
22652.342	issue	WS	1916928	8
22653.197	cmplt	WS	1916928	8
22660.034	issue	W	3048448	1024
22660.461	issue	W	3049472	1024
22667.969	queue	WS	3049472	1024
22692.049	cmplt	W	3048448	1024
22722.783	cmplt	W	3049472	1024
22723.089	issue	W	3050496	1024
22723.241	issue	W	3051520	1024
22723.272	queue	WS	1912920	8
22754.219	cmplt	W	3050496	1024
22785.381	cmplt	W	3051520	1024
22785.686	issue	WS	1912920	8
22786.998	cmplt	WS	1912920	8
22787.853	queue	WS	1845792	8
22787.853	queue	WS	1845800	8
22787.883	queue	WS	1845808	8
22787.883	queue	WS	1845816	8
22787.914	queue	WS	1845824	8
22787.914	queue	WS	1845832	8
22787.914	queue	WS	1845840	8
22788.005	issue	WS	1845792	56
22794.689	cmplt	WS	1845792	56
22800.031	issue	W	3052544	1024
22800.214	issue	W	3053568	1024
22831.924	cmplt	W	3052544	1024
22832.291	issue	W	3054592	1024
22863.421	cmplt	W	3053568	1024
22863.757	issue	W	3055616	1024
22894.857	cmplt	W	3054592	1024
22895.193	issue	W	3056640	1024
22926.629	cmplt	W	3055616	1024
22926.965	issue	W	3057664	1024
22958.340	cmplt	W	3056640	1024
22958.675	issue	W	3058688	1024
22989.654	cmplt	W	3057664	1024
22990.020	issue	W	3059712	1024
23020.967	cmplt	W	3058688	1024
23021.303	issue	W	3060736	1024
23052.281	cmplt	W	3059712	1024
23052.587	issue	W	3061760	1024
23083.412	cmplt	W	3060736	1024
23083.748	issue	W	3062784	1024
23114.635	cmplt	W	3061760	1024
23114.940	issue	W	3063808	1024
23147.352	cmplt	W	3062784	1024
23147.658	issue	W	3064832	912
23168.350	cmplt	W	3063808	1024
23204.456	cmplt	W	3064832	912
23204.792	queue	WS	1845848	8
23204.883	issue	WS	1845848	8
23206.257	cmplt	WS	1845848	8
23206.501	queue	WS	1845856	8
23206.531	queue	WS	1845864	8
23206.623	issue	WS	1845856	16
23207.508	cmplt	WS	1845856	16
23207.569	queue	WS	1845872	8
23207.630	issue	WS	1845872	8
23208.515	cmplt	WS	1845872	8
23218.740	queue	R	1979888	72
23218.831	issue	R	1979888	72
23220.052	cmplt	R	1979888	72
23230.673	queue	WS	1979960	72
23230.765	issue	WS	1979960	72
23231.070	queue	RM	2626112	8
23237.387	cmplt	WS	1979960	72
23237.479	issue	RM	2626112	8
23237.540	queue	WS	1845880	8
23237.540	queue	WS	1845888	8
23237.571	queue	WS	1845896	8
23237.571	queue	WS	1845904	8
23237.571	queue	WS	1845912	8
23237.601	queue	WS	1845920	8
23237.601	queue	WS	1845928	8
23237.906	cmplt	RM	2626112	8
23240.043	issue	WS	1845880	56
23243.858	cmplt	WS	1845880	56
23243.980	queue	WS	1845936	8
23244.010	issue	WS	1845936	8
23244.957	cmplt	WS	1845936	8
25420.082	queue	W	1835696	8
25420.113	queue	W	1835704	8
25420.143	queue	W	2883584	8
25420.266	issue	W	1835696	16
25423.989	issue	W	2883584	8
25424.905	cmplt	W	1835696	16
25426.400	cmplt	W	2883584	8
25427.224	queue	W	3065744	1024
25427.316	issue	W	3065744	1024
25427.682	queue	W	3066768	1024
25427.774	queue	W	3067792	112
25452.800	cmplt	W	3065744	1024
25453.136	issue	W	3066768	1024
25453.350	issue	W	3067792	112
25478.834	cmplt	W	3066768	1024
25485.182	cmplt	W	3067792	112
26893.972	queue	WS	1916928	8
26894.094	issue	WS	1916928	8
26899.588	cmplt	WS	1916928	8
26900.382	queue	WS	1916928	8
26900.443	issue	WS	1916928	8
26901.358	cmplt	WS	1916928	8
26917.534	queue	WS	1912920	8
26917.656	issue	WS	1912920	8
26918.511	cmplt	WS	1912920	8
26918.694	queue	WS	1845944	8
26918.724	queue	WS	1845952	8
26918.724	queue	WS	1845960	8
26918.755	queue	WS	1845968	8
26918.755	queue	WS	1845976	8
26918.755	queue	WS	1845984	8
26918.785	queue	WS	1845992	8
26918.785	queue	WS	1846000	8
26918.785	queue	WS	1846008	8
26918.816	queue	WS	1846016	8
26918.816	queue	WS	1846024	8
26920.037	issue	WS	1845944	88
26922.875	cmplt	WS	1845944	88
26922.997	queue	WS	1846032	8
26923.058	issue	WS	1846032	8
26923.882	cmplt	WS	1846032	8
26924.126	queue	WS	1846040	8
26924.157	queue	WS	1846048	8
26924.187	issue	WS	1846040	16
26925.347	cmplt	WS	1846040	16
26925.408	queue	WS	1846056	8
26925.469	issue	WS	1846056	8
26926.415	cmplt	WS	1846056	8
26950.343	queue	WS	1980032	72
26950.465	issue	WS	1980032	72
26953.151	cmplt	WS	1980032	72
26953.395	queue	WS	1846064	8
26953.426	queue	WS	1846072	8
26953.426	queue	WS	1846080	8
26953.426	queue	WS	1846088	8
26953.456	queue	WS	1846096	8
26953.456	queue	WS	1846104	8
26953.487	queue	WS	1846112	8
26960.049	issue	WS	1846064	56
26962.307	cmplt	WS	1846064	56
26962.460	queue	WS	1846120	8
26962.521	issue	WS	1846120	8
26963.406	cmplt	WS	1846120	8
31900.076	queue	W	2883584	8
31900.168	queue	W	1835696	8
31900.198	queue	W	1835704	8
31900.320	issue	W	1835696	16
31904.044	issue	W	2883584	8
31904.960	cmplt	W	1835696	16
31906.363	cmplt	W	2883584	8
31923.302	queue	WS	1916928	8
31923.424	issue	WS	1916928	8
31924.889	cmplt	WS	1916928	8
31925.652	queue	WS	1916928	8
31925.713	issue	WS	1916928	8
31926.629	cmplt	WS	1916928	8
31942.866	queue	WS	1912920	8
31942.927	issue	WS	1912920	8
31943.873	cmplt	WS	1912920	8
31944.148	queue	WS	1846128	8
31944.178	queue	WS	1846136	8
31944.178	queue	WS	1846144	8
31944.178	queue	WS	1846152	8
31944.209	queue	WS	1846160	8
31944.209	queue	WS	1846168	8
31944.209	queue	WS	1846176	8
31944.239	queue	WS	1846184	8
31944.239	queue	WS	1846192	8
31950.038	issue	WS	1846128	72
31955.074	cmplt	WS	1846128	72
31955.196	queue	WS	1846200	8
31955.257	issue	WS	1846200	8
31956.112	cmplt	WS	1846200	8
31956.386	queue	WS	1846208	8
31956.417	queue	WS	1846216	8
31956.447	issue	WS	1846208	16
31957.424	cmplt	WS	1846208	16
31957.485	queue	WS	1846224	8
31957.546	issue	WS	1846224	8
31958.492	cmplt	WS	1846224	8
31982.634	queue	WS	2633800	72
31982.725	issue	WS	2633800	72
31989.409	cmplt	WS	2633800	72
31989.715	queue	WS	1846232	8
31989.745	queue	WS	1846240	8
31989.745	queue	WS	1846248	8
31989.776	queue	WS	1846256	8
31989.776	queue	WS	1846264	8
31989.776	queue	WS	1846272	8
31989.806	queue	WS	1846280	8
31990.050	issue	WS	1846232	56
31994.659	cmplt	WS	1846232	56
31994.781	queue	WS	1846288	8
31994.873	issue	WS	1846288	8
31995.758	cmplt	WS	1846288	8
36900.107	queue	W	1835696	8
36900.137	queue	W	2621960	8
36900.259	issue	W	1835696	8
36904.380	issue	W	2621960	8
36905.234	cmplt	W	1835696	8
36906.547	cmplt	W	2621960	8
36937.311	queue	WS	1916928	8
36937.433	issue	WS	1916928	8
36938.898	cmplt	WS	1916928	8
36939.631	queue	WS	1916928	8
36939.692	issue	WS	1916928	8
36940.546	cmplt	WS	1916928	8
36956.722	queue	WS	1912920	8
36956.814	issue	WS	1912920	8
36957.729	cmplt	WS	1912920	8
36957.943	queue	WS	1846296	8
36957.943	queue	WS	1846304	8
36957.973	queue	WS	1846312	8
36957.973	queue	WS	1846320	8
36957.973	queue	WS	1846328	8
36958.004	queue	WS	1846336	8
36958.004	queue	WS	1846344	8
36958.034	queue	WS	1846352	8
36958.034	queue	WS	1846360	8
36960.049	issue	WS	1846296	72
36966.641	cmplt	WS	1846296	72
36966.763	queue	WS	1846368	8
36966.824	issue	WS	1846368	8
36967.648	cmplt	WS	1846368	8
36967.923	queue	WS	1846376	8
36967.923	queue	WS	1846384	8
36967.984	issue	WS	1846376	16
36969.693	cmplt	WS	1846376	16
36969.754	queue	WS	1846392	8
36969.846	issue	WS	1846392	8
36970.670	cmplt	WS	1846392	8
36994.659	queue	WS	1980104	72
36994.750	issue	WS	1980104	72
36997.192	cmplt	WS	1980104	72
36997.436	queue	WS	1846400	8
36997.467	queue	WS	1846408	8
36997.467	queue	WS	1846416	8
36997.467	queue	WS	1846424	8
36997.497	queue	WS	1846432	8
36997.497	queue	WS	1846440	8
36997.528	queue	WS	1846448	8
37000.092	issue	WS	1846400	56
37002.503	cmplt	WS	1846400	56
37002.655	queue	WS	1846456	8
37002.716	issue	WS	1846456	8
37003.632	cmplt	WS	1846456	8
41940.089	queue	W	1835528	8
41940.150	queue	W	1835696	8
41940.241	issue	W	1835696	8
41944.331	issue	W	1835528	8
41945.216	cmplt	W	1835696	8
41946.132	cmplt	W	1835528	8
41964.352	queue	WS	1916928	8
41964.474	issue	WS	1916928	8
41965.542	cmplt	WS	1916928	8
41966.275	queue	WS	1916928	8
41966.306	issue	WS	1916928	8
41967.160	cmplt	WS	1916928	8
41983.397	queue	WS	1912920	8
41983.458	issue	WS	1912920	8
41984.313	cmplt	WS	1912920	8
41984.587	queue	WS	1846464	8
41984.587	queue	WS	1846472	8
41984.618	queue	WS	1846480	8
41984.618	queue	WS	1846488	8
41984.648	queue	WS	1846496	8
41984.648	queue	WS	1846504	8
41984.648	queue	WS	1846512	8
41984.679	queue	WS	1846520	8
41984.679	queue	WS	1846528	8
41990.050	issue	WS	1846464	72
41992.584	cmplt	WS	1846464	72
41992.675	queue	WS	1846536	8
41992.736	issue	WS	1846536	8
41993.560	cmplt	WS	1846536	8
41993.835	queue	WS	1846544	8
41993.865	queue	WS	1846552	8
41993.926	issue	WS	1846544	16
41994.873	cmplt	WS	1846544	16
41994.934	queue	WS	1846560	8
41994.995	issue	WS	1846560	8
41995.941	cmplt	WS	1846560	8
42020.052	queue	WS	2633872	72
42020.143	issue	WS	2633872	72
42027.041	cmplt	WS	2633872	72
42027.285	queue	WS	1846568	8
42027.316	queue	WS	1846576	8
42027.346	queue	WS	1846584	8
42027.346	queue	WS	1846592	8
42027.346	queue	WS	1846600	8
42027.377	queue	WS	1846608	8
42027.377	queue	WS	1846616	8
42030.032	issue	WS	1846568	56
42036.441	cmplt	WS	1846568	56
42036.563	queue	WS	1846624	8
42036.655	issue	WS	1846624	8
42037.479	cmplt	WS	1846624	8
46716.038	queue	WS	1916928	8
46716.130	issue	WS	1916928	8
46721.166	cmplt	WS	1916928	8
46721.898	queue	WS	1916928	8
46721.929	issue	WS	1916928	8
46722.844	cmplt	WS	1916928	8
46739.570	queue	WS	1912920	8
46739.661	issue	WS	1912920	8
46740.607	cmplt	WS	1912920	8
46740.821	queue	WS	1846632	8
46740.821	queue	WS	1846640	8
46740.852	queue	WS	1846648	8
46740.852	queue	WS	1846656	8
46740.882	queue	WS	1846664	8
46740.882	queue	WS	1846672	8
46740.882	queue	WS	1846680	8
46740.913	queue	WS	1846688	8
46740.913	queue	WS	1846696	8
46750.038	issue	WS	1846632	72
46756.753	cmplt	WS	1846632	72
46756.875	queue	WS	1846704	8
46756.936	issue	WS	1846704	8
46757.821	cmplt	WS	1846704	8
46758.065	queue	WS	1846712	8
46758.096	queue	WS	1846720	8
46758.126	issue	WS	1846712	16
46759.255	cmplt	WS	1846712	16
46759.316	queue	WS	1846728	8
46759.377	issue	WS	1846728	8
46760.201	cmplt	WS	1846728	8
46784.618	queue	WS	1980176	72
46784.709	issue	WS	1980176	72
46791.332	cmplt	WS	1980176	72
46791.607	queue	WS	1846736	8
46791.637	queue	WS	1846744	8
46791.637	queue	WS	1846752	8
46791.637	queue	WS	1846760	8
46791.668	queue	WS	1846768	8
46791.668	queue	WS	1846776	8
46791.698	queue	WS	1846784	8
46800.061	issue	WS	1846736	56
46802.716	cmplt	WS	1846736	56
46802.869	queue	WS	1846792	8
46802.930	issue	WS	1846792	8
46803.815	cmplt	WS	1846792	8
46940.150	queue	W	1835528	8
46940.180	queue	W	1835696	8
46940.302	issue	W	1835696	8
46940.394	issue	W	1835528	8
46941.187	cmplt	W	1835696	8
46942.072	cmplt	W	1835528	8
52014.833	queue	WS	1916928	8
52014.894	queue	WS	1846800	8
52014.924	issue	WS	1916928	8
52014.924	queue	WS	1846808	8
52014.924	queue	WS	1846816	8
52014.924	queue	WS	1846824	8
52014.955	queue	WS	1846832	8
52014.955	queue	WS	1846840	8
52014.985	queue	WS	1846848	8
52014.985	queue	WS	1846856	8
52014.985	queue	WS	1846864	8
52061.834	issue	WS	1846800	72
52062.872	cmplt	WS	1916928	8
52065.466	cmplt	WS	1846800	72
52065.588	queue	WS	1846872	8
52065.649	issue	WS	1846872	8
52066.077	queue	WS	1916928	8
52066.504	cmplt	WS	1846872	8
52066.565	issue	WS	1916928	8
52067.633	cmplt	WS	1916928	8
52083.900	queue	WS	1912920	8
52083.992	issue	WS	1912920	8
52084.938	cmplt	WS	1912920	8
52085.091	queue	WS	1846880	8
52085.121	queue	WS	1846888	8
52085.121	queue	WS	1846896	8
52090.005	issue	WS	1846880	24
52091.897	cmplt	WS	1846880	24
52091.958	queue	WS	1846904	8
52092.019	issue	WS	1846904	8
52092.904	cmplt	WS	1846904	8
52093.118	queue	WS	1846912	8
52093.118	queue	WS	1846920	8
52093.179	issue	WS	1846912	16
52094.155	cmplt	WS	1846912	16
52094.216	queue	WS	1846928	8
52094.277	issue	WS	1846928	8
52095.224	cmplt	WS	1846928	8
52119.304	queue	WS	1980248	72
52119.396	issue	WS	1980248	72
52125.988	cmplt	WS	1980248	72
52126.263	queue	WS	1846936	8
52126.263	queue	WS	1846944	8
52126.293	queue	WS	1846952	8
52126.293	queue	WS	1846960	8
52126.324	queue	WS	1846968	8
52126.324	queue	WS	1846976	8
52126.324	queue	WS	1846984	8
52130.047	issue	WS	1846936	56
52134.015	cmplt	WS	1846936	56
52134.168	queue	WS	1846992	8
52134.229	issue	WS	1846992	8
52135.175	cmplt	WS	1846992	8
56960.140	queue	W	1835696	8
56960.171	queue	W	2621960	8
56960.262	issue	W	1835696	8
56964.383	issue	W	2621960	8
56965.237	cmplt	W	1835696	8
56966.733	cmplt	W	2621960	8
57038.028	queue	WS	1916928	8
57038.150	issue	WS	1916928	8
57039.615	cmplt	WS	1916928	8
57040.378	queue	WS	1916928	8
57040.439	issue	WS	1916928	8
57041.294	cmplt	WS	1916928	8
57057.470	queue	WS	1912920	8
57057.561	issue	WS	1912920	8
57058.508	cmplt	WS	1912920	8
57058.691	queue	WS	1847000	8
57058.721	queue	WS	1847008	8
57058.721	queue	WS	1847016	8
57058.752	queue	WS	1847024	8
57058.752	queue	WS	1847032	8
57058.782	queue	WS	1847040	8
57058.782	queue	WS	1847048	8
57058.782	queue	WS	1847056	8
57058.813	queue	WS	1847064	8
57060.034	issue	WS	1847000	72
57066.748	cmplt	WS	1847000	72
57066.870	queue	WS	1847072	8
57066.931	issue	WS	1847072	8
57067.786	cmplt	WS	1847072	8
57068.030	queue	WS	1847080	8
57068.060	queue	WS	1847088	8
57068.121	issue	WS	1847080	16
57069.739	cmplt	WS	1847080	16
57069.831	queue	WS	1847096	8
57069.892	issue	WS	1847096	8
57070.716	cmplt	WS	1847096	8
57094.705	queue	WS	1980320	72
57094.796	issue	WS	1980320	72
57097.146	cmplt	WS	1980320	72
57097.421	queue	WS	1847104	8
57097.421	queue	WS	1847112	8
57097.452	queue	WS	1847120	8
57097.452	queue	WS	1847128	8
57097.452	queue	WS	1847136	8
57097.482	queue	WS	1847144	8
57097.482	queue	WS	1847152	8
57100.046	issue	WS	1847104	56
57103.800	cmplt	WS	1847104	56
57103.952	queue	WS	1847160	8
57104.013	issue	WS	1847160	8
57104.899	cmplt	WS	1847160	8
62040.104	queue	W	1835696	8
62040.226	issue	W	1835696	8
62045.170	cmplt	W	1835696	8
62068.427	queue	WS	1916928	8
62068.518	issue	WS	1916928	8
62069.556	cmplt	WS	1916928	8
62070.349	queue	WS	1916928	8
62070.410	issue	WS	1916928	8
62071.265	cmplt	WS	1916928	8
62087.441	queue	WS	1912920	8
62087.563	issue	WS	1912920	8
62088.448	cmplt	WS	1912920	8
62088.631	queue	WS	1847168	8
62088.631	queue	WS	1847176	8
62088.662	queue	WS	1847184	8
62088.662	queue	WS	1847192	8
62088.662	queue	WS	1847200	8
62088.692	queue	WS	1847208	8
62088.692	queue	WS	1847216	8
62088.723	queue	WS	1847224	8
62088.723	queue	WS	1847232	8
62090.035	issue	WS	1847168	72
62092.690	cmplt	WS	1847168	72
62092.812	queue	WS	1847240	8
62092.873	issue	WS	1847240	8
62093.698	cmplt	WS	1847240	8
62093.942	queue	WS	1847248	8
62093.972	queue	WS	1847256	8
62094.003	issue	WS	1847248	16
62094.918	cmplt	WS	1847248	16
62094.979	queue	WS	1847264	8
62095.040	issue	WS	1847264	8
62095.987	cmplt	WS	1847264	8
62119.853	queue	WS	1980392	72
62120.006	issue	WS	1980392	72
62122.570	cmplt	WS	1980392	72
62122.844	queue	WS	1847272	8
62122.875	queue	WS	1847280	8
62122.875	queue	WS	1847288	8
62122.875	queue	WS	1847296	8
62122.906	queue	WS	1847304	8
62122.906	queue	WS	1847312	8
62122.936	queue	WS	1847320	8
62130.047	issue	WS	1847272	56
62134.595	cmplt	WS	1847272	56
62134.747	queue	WS	1847328	8
62134.808	issue	WS	1847328	8
62135.755	cmplt	WS	1847328	8
66812.574	queue	WS	1916928	8
66812.666	issue	WS	1916928	8
66817.732	cmplt	WS	1916928	8
66818.465	queue	WS	1916928	8
66818.526	issue	WS	1916928	8
66819.441	cmplt	WS	1916928	8
66835.648	queue	WS	1912920	8
66835.739	issue	WS	1912920	8
66836.624	cmplt	WS	1912920	8
66836.808	queue	WS	1847336	8
66836.838	queue	WS	1847344	8
66836.838	queue	WS	1847352	8
66836.838	queue	WS	1847360	8
66836.869	queue	WS	1847368	8
66836.869	queue	WS	1847376	8
66836.899	queue	WS	1847384	8
66836.899	queue	WS	1847392	8
66836.899	queue	WS	1847400	8
66840.043	issue	WS	1847336	72
66846.788	cmplt	WS	1847336	72
66846.910	queue	WS	1847408	8
66846.971	issue	WS	1847408	8
66847.825	cmplt	WS	1847408	8
66848.070	queue	WS	1847416	8
66848.070	queue	WS	1847424	8
66848.131	issue	WS	1847416	16
66849.687	cmplt	WS	1847416	16
66849.779	queue	WS	1847432	8
66849.840	issue	WS	1847432	8
66850.664	cmplt	WS	1847432	8
66874.683	queue	WS	1980464	72
66874.775	issue	WS	1980464	72
66881.337	cmplt	WS	1980464	72
66881.642	queue	WS	1847440	8
66881.673	queue	WS	1847448	8
66881.673	queue	WS	1847456	8
66881.673	queue	WS	1847464	8
66881.703	queue	WS	1847472	8
66881.703	queue	WS	1847480	8
66881.703	queue	WS	1847488	8
66890.035	issue	WS	1847440	56
66894.522	cmplt	WS	1847440	56
66894.644	queue	WS	1847496	8
66894.705	issue	WS	1847496	8
66895.620	cmplt	WS	1847496	8
67040.043	queue	W	1835696	8
67040.256	issue	W	1835696	8
67041.080	cmplt	W	1835696	8
72121.410	queue	WS	1916928	8
72121.471	queue	WS	1847504	8
72121.471	queue	WS	1847512	8
72121.502	issue	WS	1916928	8
72121.502	queue	WS	1847520	8
72121.502	queue	WS	1847528	8
72121.532	queue	WS	1847536	8
72121.532	queue	WS	1847544	8
72121.532	queue	WS	1847552	8
72121.563	queue	WS	1847560	8
72121.563	queue	WS	1847568	8
72168.472	issue	WS	1847504	72
72169.480	cmplt	WS	1916928	8
72172.196	cmplt	WS	1847504	72
72172.318	queue	WS	1847576	8
72172.379	issue	WS	1847576	8
72172.806	queue	WS	1916928	8
72173.264	cmplt	WS	1847576	8
72173.325	issue	WS	1916928	8
72174.332	cmplt	WS	1916928	8
72190.539	queue	WS	1912920	8
72190.630	issue	WS	1912920	8
72191.576	cmplt	WS	1912920	8
72191.698	queue	WS	1847584	8
72191.729	queue	WS	1847592	8
72191.759	queue	WS	1847600	8
72200.031	issue	WS	1847584	24
72201.984	cmplt	WS	1847584	24
72202.075	queue	WS	1847608	8
72202.136	issue	WS	1847608	8
72203.052	cmplt	WS	1847608	8
72203.266	queue	WS	1847616	8
72203.296	queue	WS	1847624	8
72203.327	issue	WS	1847616	16
72204.242	cmplt	WS	1847616	16
72204.303	queue	WS	1847632	8
72204.364	issue	WS	1847632	8
72205.188	cmplt	WS	1847632	8
72229.757	queue	WS	1980536	72
72229.849	issue	WS	1980536	72
72236.472	cmplt	WS	1980536	72
72236.747	queue	WS	1847640	8
72236.777	queue	WS	1847648	8
72236.777	queue	WS	1847656	8
72236.808	queue	WS	1847664	8
72236.808	queue	WS	1847672	8
72236.808	queue	WS	1847680	8
72236.838	queue	WS	1847688	8
72240.043	issue	WS	1847640	56
72242.362	cmplt	WS	1847640	56
72242.515	queue	WS	1847696	8
72242.545	issue	WS	1847696	8
72243.430	cmplt	WS	1847696	8
77040.104	queue	W	1835696	8
77040.226	issue	W	1835696	8
77045.109	cmplt	W	1835696	8
77138.868	queue	WS	1916928	8
77138.990	issue	WS	1916928	8
77140.027	cmplt	WS	1916928	8
77140.821	queue	WS	1916928	8
77140.852	issue	WS	1916928	8
77141.706	cmplt	WS	1916928	8
77157.851	queue	WS	1912920	8
77157.973	issue	WS	1912920	8
77158.889	cmplt	WS	1912920	8
77159.072	queue	WS	1847704	8
77159.072	queue	WS	1847712	8
77159.103	queue	WS	1847720	8
77159.103	queue	WS	1847728	8
77159.133	queue	WS	1847736	8
77159.133	queue	WS	1847744	8
77159.133	queue	WS	1847752	8
77159.164	queue	WS	1847760	8
77159.164	queue	WS	1847768	8
77160.049	issue	WS	1847704	72
77166.824	cmplt	WS	1847704	72
77166.946	queue	WS	1847776	8
77167.007	issue	WS	1847776	8
77167.923	cmplt	WS	1847776	8
77168.167	queue	WS	1847784	8
77168.167	queue	WS	1847792	8
77168.228	issue	WS	1847784	16
77169.724	cmplt	WS	1847784	16
77169.785	queue	WS	1847800	8
77169.846	issue	WS	1847800	8
77170.792	cmplt	WS	1847800	8
77194.812	queue	WS	1980608	72
77194.903	issue	WS	1980608	72
77197.589	cmplt	WS	1980608	72
77197.833	queue	WS	1847808	8
77197.864	queue	WS	1847816	8
77197.864	queue	WS	1847824	8
77197.894	queue	WS	1847832	8
77197.894	queue	WS	1847840	8
77197.894	queue	WS	1847848	8
77197.925	queue	WS	1847856	8
77200.061	issue	WS	1847808	56
77206.684	cmplt	WS	1847808	56
77206.837	queue	WS	1847864	8
77206.898	issue	WS	1847864	8
77207.844	cmplt	WS	1847864	8
82140.119	queue	W	1835696	8
82140.272	issue	W	1835696	8
82145.185	cmplt	W	1835696	8
82175.462	queue	WS	1916928	8
82175.584	issue	WS	1916928	8
82176.652	cmplt	WS	1916928	8
82177.354	queue	WS	1916928	8
82177.415	issue	WS	1916928	8
82178.239	cmplt	WS	1916928	8
82194.506	queue	WS	1912920	8
82194.598	issue	WS	1912920	8
82195.452	cmplt	WS	1912920	8
82195.636	queue	WS	1847872	8
82195.666	queue	WS	1847880	8
82195.666	queue	WS	1847888	8
82195.697	queue	WS	1847896	8
82195.697	queue	WS	1847904	8
82195.697	queue	WS	1847912	8
82195.727	queue	WS	1847920	8
82195.727	queue	WS	1847928	8
82195.727	queue	WS	1847936	8
82200.061	issue	WS	1847872	72
82202.625	cmplt	WS	1847872	72
82202.747	queue	WS	1847944	8
82202.777	issue	WS	1847944	8
82203.693	cmplt	WS	1847944	8
82203.937	queue	WS	1847952	8
82203.968	queue	WS	1847960	8
82203.998	issue	WS	1847952	16
82204.944	cmplt	WS	1847952	16
82205.005	queue	WS	1847968	8
82205.066	issue	WS	1847968	8
82205.921	cmplt	WS	1847968	8
82230.276	queue	WS	1980680	72
82230.368	issue	WS	1980680	72
82232.840	cmplt	WS	1980680	72
82233.084	queue	WS	1847976	8
82233.115	queue	WS	1847984	8
82233.115	queue	WS	1847992	8
82233.115	queue	WS	1848000	8
82233.145	queue	WS	1848008	8
82233.145	queue	WS	1848016	8
82233.176	queue	WS	1848024	8
82240.043	issue	WS	1847976	56
82242.271	cmplt	WS	1847976	56
82242.454	queue	WS	1848032	8
82242.484	issue	WS	1848032	8
82243.369	cmplt	WS	1848032	8
86209.553	queue	WS	1916928	8
86209.644	issue	WS	1916928	8
86215.291	cmplt	WS	1916928	8
86216.023	queue	WS	1916928	8
86216.084	issue	WS	1916928	8
86217.030	cmplt	WS	1916928	8
86234.061	queue	WS	1912920	8
86234.152	issue	WS	1912920	8
86235.037	cmplt	WS	1912920	8
86235.221	queue	WS	1848040	8
86235.221	queue	WS	1848048	8
86235.251	queue	WS	1848056	8
86235.251	queue	WS	1848064	8
86235.282	queue	WS	1848072	8
86235.282	queue	WS	1848080	8
86235.282	queue	WS	1848088	8
86235.312	queue	WS	1848096	8
86235.312	queue	WS	1848104	8
86240.043	issue	WS	1848040	72
86258.599	cmplt	WS	1848040	72
86258.721	queue	WS	1848112	8
86258.782	issue	WS	1848112	8
86259.698	cmplt	WS	1848112	8
86259.942	queue	WS	1848120	8
86259.973	queue	WS	1848128	8
86260.064	issue	WS	1848120	16
86261.468	cmplt	WS	1848120	16
86261.529	queue	WS	1848136	8
86261.590	issue	WS	1848136	8
86262.506	cmplt	WS	1848136	8
86286.739	queue	WS	1980752	72
86286.830	issue	WS	1980752	72
86293.545	cmplt	WS	1980752	72
86293.820	queue	WS	1848144	8
86293.820	queue	WS	1848152	8
86293.850	queue	WS	1848160	8
86293.850	queue	WS	1848168	8
86293.881	queue	WS	1848176	8
86293.881	queue	WS	1848184	8
86293.881	queue	WS	1848192	8
86300.046	issue	WS	1848144	56
86304.013	cmplt	WS	1848144	56
86304.136	queue	WS	1848200	8
86304.227	issue	WS	1848200	8
86305.082	cmplt	WS	1848200	8
87140.088	queue	W	1835696	8
87140.241	issue	W	1835696	8
87145.094	cmplt	W	1835696	8
91226.370	queue	WS	1916928	8
91226.492	issue	WS	1916928	8
91231.192	cmplt	WS	1916928	8
91231.924	queue	WS	1916928	8
91231.985	issue	WS	1916928	8
91232.901	cmplt	WS	1916928	8
91249.138	queue	WS	1912920	8
91249.229	issue	WS	1912920	8
91250.175	cmplt	WS	1912920	8
91250.359	queue	WS	1848208	8
91250.389	queue	WS	1848216	8
91250.420	queue	WS	1848224	8
91250.420	queue	WS	1848232	8
91250.420	queue	WS	1848240	8
91250.450	queue	WS	1848248	8
91250.450	queue	WS	1848256	8
91250.450	queue	WS	1848264	8
91250.481	queue	WS	1848272	8
91260.003	issue	WS	1848208	72
91264.673	cmplt	WS	1848208	72
91264.764	queue	WS	1848280	8
91264.856	issue	WS	1848280	8
91265.802	cmplt	WS	1848280	8
91266.046	queue	WS	1848288	8
91266.077	queue	WS	1848296	8
91266.138	issue	WS	1848288	16
91267.023	cmplt	WS	1848288	16
91267.084	queue	WS	1848304	8
91267.175	issue	WS	1848304	8
91268.060	cmplt	WS	1848304	8
91292.294	queue	WS	1980824	72
91292.385	issue	WS	1980824	72
91299.100	cmplt	WS	1980824	72
91299.374	queue	WS	1848312	8
91299.405	queue	WS	1848320	8
91299.405	queue	WS	1848328	8
91299.405	queue	WS	1848336	8
91299.435	queue	WS	1848344	8
91299.435	queue	WS	1848352	8
91299.435	queue	WS	1848360	8
91300.046	issue	WS	1848312	56
91302.335	cmplt	WS	1848312	56
91302.487	queue	WS	1848368	8
91302.548	issue	WS	1848368	8
91303.403	cmplt	WS	1848368	8
96248.436	queue	WS	1916928	8
96248.527	issue	WS	1916928	8
96253.655	cmplt	WS	1916928	8
96254.448	queue	WS	1916928	8
96254.479	issue	WS	1916928	8
96255.333	cmplt	WS	1916928	8
96271.875	queue	WS	1912920	8
96271.967	issue	WS	1912920	8
96272.913	cmplt	WS	1912920	8
96273.096	queue	WS	1848376	8
96273.127	queue	WS	1848384	8
96273.127	queue	WS	1848392	8
96273.157	queue	WS	1848400	8
96273.157	queue	WS	1848408	8
96273.188	queue	WS	1848416	8
96273.188	queue	WS	1848424	8
96273.188	queue	WS	1848432	8
96273.218	queue	WS	1848440	8
96280.055	issue	WS	1848376	72
96282.527	cmplt	WS	1848376	72
96282.649	queue	WS	1848448	8
96282.710	issue	WS	1848448	8
96283.626	cmplt	WS	1848448	8
96283.870	queue	WS	1848456	8
96283.900	queue	WS	1848464	8
96283.962	issue	WS	1848456	16
96285.518	cmplt	WS	1848456	16
96285.579	queue	WS	1848472	8
96285.671	issue	WS	1848472	8
96286.556	cmplt	WS	1848472	8
96310.758	queue	WS	1980896	72
96310.850	issue	WS	1980896	72
96313.597	cmplt	WS	1980896	72
96313.841	queue	WS	1848480	8
96313.871	queue	WS	1848488	8
96313.902	queue	WS	1848496	8
96313.902	queue	WS	1848504	8
96313.902	queue	WS	1848512	8
96313.933	queue	WS	1848520	8
96313.933	queue	WS	1848528	8
96320.037	issue	WS	1848480	56
96326.782	cmplt	WS	1848480	56
96326.934	queue	WS	1848536	8
96327.026	issue	WS	1848536	8
96327.941	cmplt	WS	1848536	8
97140.119	queue	W	1835696	8
97140.241	issue	W	1835696	8
97145.002	cmplt	W	1835696	8
101269.312	queue	WS	1916928	8
101269.434	issue	WS	1916928	8
101274.134	cmplt	WS	1916928	8
101274.866	queue	WS	1916928	8
101274.928	issue	WS	1916928	8
101275.782	cmplt	WS	1916928	8
101292.019	queue	WS	1912920	8
101292.110	issue	WS	1912920	8
101292.996	cmplt	WS	1912920	8
101293.179	queue	WS	1848544	8
101293.179	queue	WS	1848552	8
101293.209	queue	WS	1848560	8
101293.209	queue	WS	1848568	8
101293.240	queue	WS	1848576	8
101293.240	queue	WS	1848584	8
101293.240	queue	WS	1848592	8
101293.270	queue	WS	1848600	8
101293.270	queue	WS	1848608	8
101300.046	issue	WS	1848544	72
101307.279	cmplt	WS	1848544	72
101307.401	queue	WS	1848616	8
101307.462	issue	WS	1848616	8
101308.286	cmplt	WS	1848616	8
101308.530	queue	WS	1848624	8
101308.561	queue	WS	1848632	8
101308.622	issue	WS	1848624	16
101309.568	cmplt	WS	1848624	16
101309.660	queue	WS	1848640	8
101309.721	issue	WS	1848640	8
101310.545	cmplt	WS	1848640	8
101334.717	queue	WS	1980968	72
101334.808	issue	WS	1980968	72
101337.494	cmplt	WS	1980968	72
101337.738	queue	WS	1848648	8
101337.769	queue	WS	1848656	8
101337.799	queue	WS	1848664	8
101337.799	queue	WS	1848672	8
101337.799	queue	WS	1848680	8
101337.830	queue	WS	1848688	8
101337.830	queue	WS	1848696	8
101340.058	issue	WS	1848648	56
101342.255	cmplt	WS	1848648	56
101342.408	queue	WS	1848704	8
101342.469	issue	WS	1848704	8
101343.324	cmplt	WS	1848704	8
106290.951	queue	WS	1916928	8
106291.042	issue	WS	1916928	8
106296.170	cmplt	WS	1916928	8
106296.902	queue	WS	1916928	8
106296.933	issue	WS	1916928	8
106297.848	cmplt	WS	1916928	8
106313.963	queue	WS	1912920	8
106314.085	issue	WS	1912920	8
106314.970	cmplt	WS	1912920	8
106315.123	queue	WS	1848712	8
106315.153	queue	WS	1848720	8
106315.153	queue	WS	1848728	8
106315.184	queue	WS	1848736	8
106315.184	queue	WS	1848744	8
106315.214	queue	WS	1848752	8
106315.214	queue	WS	1848760	8
106315.214	queue	WS	1848768	8
106315.245	queue	WS	1848776	8
106320.037	issue	WS	1848712	72
106322.509	cmplt	WS	1848712	72
106322.631	queue	WS	1848784	8
106322.692	issue	WS	1848784	8
106323.516	cmplt	WS	1848784	8
106323.760	queue	WS	1848792	8
106323.760	queue	WS	1848800	8
106323.821	issue	WS	1848792	16
106325.195	cmplt	WS	1848792	16
106325.286	queue	WS	1848808	8
106325.347	issue	WS	1848808	8
106326.263	cmplt	WS	1848808	8
106350.313	queue	WS	1981040	72
106350.404	issue	WS	1981040	72
106357.149	cmplt	WS	1981040	72
106357.424	queue	WS	1848816	8
106357.424	queue	WS	1848824	8
106357.455	queue	WS	1848832	8
106357.455	queue	WS	1848840	8
106357.485	queue	WS	1848848	8
106357.485	queue	WS	1848856	8
106357.485	queue	WS	1848864	8
106370.060	issue	WS	1848816	56
106374.088	cmplt	WS	1848816	56
106374.210	queue	WS	1848872	8
106374.271	issue	WS	1848872	8
106375.156	cmplt	WS	1848872	8
107140.119	queue	W	1835696	8
107140.241	issue	W	1835696	8
107145.063	cmplt	W	1835696	8
111303.495	queue	WS	1916928	8
111303.617	issue	WS	1916928	8
111308.744	cmplt	WS	1916928	8
111309.477	queue	WS	1916928	8
111309.507	issue	WS	1916928	8
111310.423	cmplt	WS	1916928	8
111326.904	queue	WS	1912920	8
111326.995	issue	WS	1912920	8
111327.941	cmplt	WS	1912920	8
111328.155	queue	WS	1848880	8
111328.155	queue	WS	1848888	8
111328.186	queue	WS	1848896	8
111328.186	queue	WS	1848904	8
111328.186	queue	WS	1848912	8
111328.216	queue	WS	1848920	8
111328.216	queue	WS	1848928	8
111328.216	queue	WS	1848936	8
111328.247	queue	WS	1848944	8
111330.047	issue	WS	1848880	72
111336.914	cmplt	WS	1848880	72
111337.036	queue	WS	1848952	8
111337.098	issue	WS	1848952	8
111337.922	cmplt	WS	1848952	8
111338.166	queue	WS	1848960	8
111338.196	queue	WS	1848968	8
111338.257	issue	WS	1848960	16
111339.142	cmplt	WS	1848960	16
111339.234	queue	WS	1848976	8
111339.295	issue	WS	1848976	8
111340.241	cmplt	WS	1848976	8
111364.596	queue	WS	1981112	72
111364.688	issue	WS	1981112	72
111371.250	cmplt	WS	1981112	72
111371.524	queue	WS	1848984	8
111371.555	queue	WS	1848992	8
111371.586	queue	WS	1849000	8
111371.586	queue	WS	1849008	8
111371.586	queue	WS	1849016	8
111371.616	queue	WS	1849024	8
111371.616	queue	WS	1849032	8
111380.040	issue	WS	1848984	56
111383.794	cmplt	WS	1848984	56
111383.977	queue	WS	1849040	8
111384.007	issue	WS	1849040	8
111384.892	cmplt	WS	1849040	8
114368.045	queue	RM	1910368	8
114368.259	issue	RM	1910368	8
114372.684	cmplt	RM	1910368	8
114551.808	queue	R	898160	8
114551.839	queue	R	898200	8
114551.930	issue	R	898160	8
114551.991	issue	R	898200	8
114552.419	cmplt	R	898160	8
114552.693	cmplt	R	898200	8
114556.783	queue	R	1060536	8
114556.875	issue	R	1060536	8
114557.333	cmplt	R	1060536	8
114557.790	queue	R	1060408	24
114557.821	queue	R	1060472	64
114557.882	issue	R	1060472	64
114557.943	issue	R	1060408	24
114558.889	cmplt	R	1060472	64
114559.133	queue	R	1075120	8
114559.347	cmplt	R	1060408	24
114559.408	issue	R	1075120	8
114559.835	cmplt	R	1075120	8
114560.262	queue	R	1075184	32
114560.324	issue	R	1075184	32
114560.934	cmplt	R	1075184	32
114563.314	queue	R	1075088	8
114563.376	issue	R	1075088	8
114563.711	cmplt	R	1075088	8
114564.108	queue	R	1075176	8
114564.169	issue	R	1075176	8
114564.505	cmplt	R	1075176	8
114564.841	queue	R	1075152	8
114564.902	issue	R	1075152	8
114565.237	cmplt	R	1075152	8
114565.512	queue	R	1075128	16
114565.573	issue	R	1075128	16
114566.000	cmplt	R	1075128	16
114566.397	queue	R	1060384	8
114566.458	issue	R	1060384	8
114566.855	cmplt	R	1060384	8
114567.191	queue	R	1060344	40
114567.252	issue	R	1060344	40
114567.954	cmplt	R	1060344	40
114568.198	queue	R	1028896	8
114568.259	issue	R	1028896	8
114568.564	cmplt	R	1028896	8
114568.900	queue	R	1028880	8
114568.961	issue	R	1028880	8
114569.266	cmplt	R	1028880	8
114653.472	queue	R	914976	8
114653.563	issue	R	914976	8
114654.052	cmplt	R	914976	8
116333.160	queue	WS	1916928	8
116333.282	issue	WS	1916928	8
116338.318	cmplt	WS	1916928	8
116339.051	queue	WS	1916928	8
116339.112	issue	WS	1916928	8
116339.966	cmplt	WS	1916928	8
116356.631	queue	WS	1912920	8
116356.753	issue	WS	1912920	8
116357.699	cmplt	WS	1912920	8
116357.943	queue	WS	1849048	8
116357.943	queue	WS	1849056	8
116357.973	queue	WS	1849064	8
116357.973	queue	WS	1849072	8
116357.973	queue	WS	1849080	8
116358.004	queue	WS	1849088	8
116358.004	queue	WS	1849096	8
116358.034	queue	WS	1849104	8
116358.034	queue	WS	1849112	8
116358.034	queue	WS	1849120	8
116358.065	queue	WS	1849128	8
116358.065	queue	WS	1849136	8
116360.049	issue	WS	1849048	96
116363.284	cmplt	WS	1849048	96
116363.437	queue	WS	1849144	8
116363.467	issue	WS	1849144	8
116364.413	cmplt	WS	1849144	8
116364.657	queue	WS	1849152	8
116364.688	queue	WS	1849160	8
116364.718	issue	WS	1849152	16
116365.634	cmplt	WS	1849152	16
116365.695	queue	WS	1849168	8
116365.756	issue	WS	1849168	8
116366.641	cmplt	WS	1849168	8
116390.630	queue	WS	1981184	72
116390.722	issue	WS	1981184	72
116393.072	cmplt	WS	1981184	72
116393.316	queue	WS	1849176	8
116393.347	queue	WS	1849184	8
116393.347	queue	WS	1849192	8
116393.377	queue	WS	1849200	8
116393.377	queue	WS	1849208	8
116393.377	queue	WS	1849216	8
116393.408	queue	WS	1849224	8
116400.214	issue	WS	1849176	56
116402.533	cmplt	WS	1849176	56
116402.686	queue	WS	1849232	8
116402.747	issue	WS	1849232	8
116403.601	cmplt	WS	1849232	8
117140.119	queue	W	1835536	8
117140.150	queue	W	1835640	8
117140.180	queue	W	1835696	8
117140.180	queue	W	1910368	8
117140.333	issue	W	1835696	8
117144.331	issue	W	1835640	8
117145.216	cmplt	W	1835696	8
117145.277	issue	W	1835536	8
117146.101	cmplt	W	1835640	8
117146.162	issue	W	1910368	8
117146.986	cmplt	W	1835536	8
117148.054	cmplt	W	1910368	8
121363.284	queue	WS	1916928	8
121363.406	issue	WS	1916928	8
121368.289	cmplt	WS	1916928	8
121369.052	queue	WS	1916928	8
121369.113	issue	WS	1916928	8
121370.029	cmplt	WS	1916928	8
121386.632	queue	WS	1912920	8
121386.724	issue	WS	1912920	8
121387.670	cmplt	WS	1912920	8
121387.853	queue	WS	1849240	8
121387.883	queue	WS	1849248	8
121387.914	queue	WS	1849256	8
121387.914	queue	WS	1849264	8
121387.914	queue	WS	1849272	8
121387.944	queue	WS	1849280	8
121387.944	queue	WS	1849288	8
121387.944	queue	WS	1849296	8
121387.975	queue	WS	1849304	8
121390.081	issue	WS	1849240	72
121396.765	cmplt	WS	1849240	72
121396.887	queue	WS	1849312	8
121396.948	issue	WS	1849312	8
121397.803	cmplt	WS	1849312	8
121398.047	queue	WS	1849320	8
121398.077	queue	WS	1849328	8
121398.138	issue	WS	1849320	16
121399.756	cmplt	WS	1849320	16
121399.817	queue	WS	1849336	8
121399.878	issue	WS	1849336	8
121400.732	cmplt	WS	1849336	8
121424.844	queue	WS	1981256	72
121424.935	issue	WS	1981256	72
121427.377	cmplt	WS	1981256	72
121427.651	queue	WS	1849344	8
121427.651	queue	WS	1849352	8
121427.682	queue	WS	1849360	8
121427.682	queue	WS	1849368	8
121427.712	queue	WS	1849376	8
121427.712	queue	WS	1849384	8
121427.712	queue	WS	1849392	8
121430.063	issue	WS	1849344	56
121436.685	cmplt	WS	1849344	56
121436.838	queue	WS	1849400	8
121436.899	issue	WS	1849400	8
121437.815	cmplt	WS	1849400	8
126372.349	queue	WS	1916928	8
126372.440	issue	WS	1916928	8
126377.506	cmplt	WS	1916928	8
126378.239	queue	WS	1916928	8
126378.300	issue	WS	1916928	8
126379.155	cmplt	WS	1916928	8
126395.239	queue	WS	1912920	8
126395.330	issue	WS	1912920	8
126396.215	cmplt	WS	1912920	8
126396.399	queue	WS	1849408	8
126396.399	queue	WS	1849416	8
126396.429	queue	WS	1849424	8
126396.429	queue	WS	1849432	8
126396.460	queue	WS	1849440	8
126396.460	queue	WS	1849448	8
126396.460	queue	WS	1849456	8
126396.490	queue	WS	1849464	8
126396.490	queue	WS	1849472	8
126400.061	issue	WS	1849408	72
126402.716	cmplt	WS	1849408	72
126402.838	queue	WS	1849480	8
126402.899	issue	WS	1849480	8
126403.785	cmplt	WS	1849480	8
126404.029	queue	WS	1849488	8
126404.029	queue	WS	1849496	8
126404.090	issue	WS	1849488	16
126404.975	cmplt	WS	1849488	16
126405.036	queue	WS	1849504	8
126405.097	issue	WS	1849504	8
126405.921	cmplt	WS	1849504	8
126430.612	queue	WS	1981328	72
126430.703	issue	WS	1981328	72
126437.357	cmplt	WS	1981328	72
126437.632	queue	WS	1849512	8
126437.632	queue	WS	1849520	8
126437.662	queue	WS	1849528	8
126437.662	queue	WS	1849536	8
126437.693	queue	WS	1849544	8
126437.693	queue	WS	1849552	8
126437.693	queue	WS	1849560	8
126440.043	issue	WS	1849512	56
126442.301	cmplt	WS	1849512	56
126442.454	queue	WS	1849568	8
126442.515	issue	WS	1849568	8
126443.430	cmplt	WS	1849568	8
127140.119	queue	W	1835696	8
127140.211	issue	W	1835696	8
127145.124	cmplt	W	1835696	8
131399.023	queue	WS	1916928	8
131399.145	issue	WS	1916928	8
131404.273	cmplt	WS	1916928	8
131405.036	queue	WS	1916928	8
131405.066	issue	WS	1916928	8
131405.982	cmplt	WS	1916928	8
131422.249	queue	WS	1912920	8
131422.341	issue	WS	1912920	8
131423.195	cmplt	WS	1912920	8
131423.440	queue	WS	1849576	8
131423.470	queue	WS	1849584	8
131423.470	queue	WS	1849592	8
131423.501	queue	WS	1849600	8
131423.501	queue	WS	1849608	8
131423.531	queue	WS	1849616	8
131423.531	queue	WS	1849624	8
131423.531	queue	WS	1849632	8
131423.562	queue	WS	1849640	8
131430.002	issue	WS	1849576	72
131437.174	cmplt	WS	1849576	72
131437.296	queue	WS	1849648	8
131437.357	issue	WS	1849648	8
131438.181	cmplt	WS	1849648	8
131438.456	queue	WS	1849656	8
131438.486	queue	WS	1849664	8
131438.517	issue	WS	1849656	16
131439.982	cmplt	WS	1849656	16
131440.073	queue	WS	1849672	8
131440.134	issue	WS	1849672	8
131440.989	cmplt	WS	1849672	8
131465.008	queue	WS	2633944	72
131465.100	issue	WS	2633944	72
131467.572	cmplt	WS	2633944	72
131467.816	queue	WS	1849680	8
131467.847	queue	WS	1849688	8
131467.877	queue	WS	1849696	8
131467.877	queue	WS	1849704	8
131467.877	queue	WS	1849712	8
131467.908	queue	WS	1849720	8
131467.908	queue	WS	1849728	8
131470.044	issue	WS	1849680	56
131474.103	cmplt	WS	1849680	56
131474.256	queue	WS	1849736	8
131474.317	issue	WS	1849736	8
131475.202	cmplt	WS	1849736	8
136415.077	queue	WS	1916928	8
136415.169	issue	WS	1916928	8
136419.899	cmplt	WS	1916928	8
136420.693	queue	WS	1916928	8
136420.754	issue	WS	1916928	8
136421.700	cmplt	WS	1916928	8
136438.303	queue	WS	1912920	8
136438.395	issue	WS	1912920	8
136439.341	cmplt	WS	1912920	8
136439.554	queue	WS	1849744	8
136439.554	queue	WS	1849752	8
136439.585	queue	WS	1849760	8
136439.585	queue	WS	1849768	8
136439.615	queue	WS	1849776	8
136439.615	queue	WS	1849784	8
136439.615	queue	WS	1849792	8
136439.646	queue	WS	1849800	8
136439.646	queue	WS	1849808	8
136440.043	issue	WS	1849744	72
136443.827	cmplt	WS	1849744	72
136443.949	queue	WS	1849816	8
136444.010	issue	WS	1849816	8
136444.895	cmplt	WS	1849816	8
136445.140	queue	WS	1849824	8
136445.140	queue	WS	1849832	8
136445.201	issue	WS	1849824	16
136446.147	cmplt	WS	1849824	16
136446.238	queue	WS	1849840	8
136446.299	issue	WS	1849840	8
136447.184	cmplt	WS	1849840	8
136471.204	queue	WS	1981400	72
136471.296	issue	WS	1981400	72
136478.010	cmplt	WS	1981400	72
136478.285	queue	WS	1849848	8
136478.285	queue	WS	1849856	8
136478.315	queue	WS	1849864	8
136478.315	queue	WS	1849872	8
136478.346	queue	WS	1849880	8
136478.346	queue	WS	1849888	8
136478.346	queue	WS	1849896	8
136480.055	issue	WS	1849848	56
136482.283	cmplt	WS	1849848	56
136482.436	queue	WS	1849904	8
136482.497	issue	WS	1849904	8
136483.382	cmplt	WS	1849904	8
137140.058	queue	W	1835696	8
137140.180	queue	W	1835528	8
137140.272	issue	W	1835696	8
137144.270	issue	W	1835528	8
137145.155	cmplt	W	1835696	8
137145.979	cmplt	W	1835528	8
141432.535	queue	WS	1916928	8
141432.657	issue	WS	1916928	8
141437.693	cmplt	WS	1916928	8
141438.425	queue	WS	1916928	8
141438.486	issue	WS	1916928	8
141439.310	cmplt	WS	1916928	8
141455.883	queue	WS	1912920	8
141456.005	issue	WS	1912920	8
141456.951	cmplt	WS	1912920	8
141457.134	queue	WS	1849912	8
141457.134	queue	WS	1849920	8
141457.165	queue	WS	1849928	8
141457.165	queue	WS	1849936	8
141457.195	queue	WS	1849944	8
141457.195	queue	WS	1849952	8
141457.195	queue	WS	1849960	8
141457.226	queue	WS	1849968	8
141457.226	queue	WS	1849976	8
141460.034	issue	WS	1849912	72
141462.475	cmplt	WS	1849912	72
141462.597	queue	WS	1849984	8
141462.658	issue	WS	1849984	8
141463.574	cmplt	WS	1849984	8
141463.818	queue	WS	1849992	8
141463.849	queue	WS	1850000	8
141463.910	issue	WS	1849992	16
141465.069	cmplt	WS	1849992	16
141465.130	queue	WS	1850008	8
141465.191	issue	WS	1850008	8
141466.077	cmplt	WS	1850008	8
141490.066	queue	WS	1981472	72
141490.157	issue	WS	1981472	72
141492.568	cmplt	WS	1981472	72
141492.812	queue	WS	1850016	8
141492.843	queue	WS	1850024	8
141492.843	queue	WS	1850032	8
141492.843	queue	WS	1850040	8
141492.873	queue	WS	1850048	8
141492.873	queue	WS	1850056	8
141492.873	queue	WS	1850064	8
141500.046	issue	WS	1850016	56
141506.730	cmplt	WS	1850016	56
141506.913	queue	WS	1850072	8
141506.943	issue	WS	1850072	8
141507.920	cmplt	WS	1850072	8
146451.366	queue	WS	1916928	8
146451.457	issue	WS	1916928	8
146456.585	cmplt	WS	1916928	8
146457.317	queue	WS	1916928	8
146457.378	issue	WS	1916928	8
146458.233	cmplt	WS	1916928	8
146474.561	queue	WS	1912920	8
146474.653	issue	WS	1912920	8
146475.507	cmplt	WS	1912920	8
146475.752	queue	WS	1850080	8
146475.782	queue	WS	1850088	8
146475.782	queue	WS	1850096	8
146475.813	queue	WS	1850104	8
146475.813	queue	WS	1850112	8
146475.813	queue	WS	1850120	8
146475.843	queue	WS	1850128	8
146475.843	queue	WS	1850136	8
146475.843	queue	WS	1850144	8
146480.055	issue	WS	1850080	72
146486.586	cmplt	WS	1850080	72
146486.708	queue	WS	1850152	8
146486.739	issue	WS	1850152	8
146487.593	cmplt	WS	1850152	8
146487.838	queue	WS	1850160	8
146487.868	queue	WS	1850168	8
146487.899	issue	WS	1850160	16
146488.784	cmplt	WS	1850160	16
146488.845	queue	WS	1850176	8
146488.906	issue	WS	1850176	8
146489.821	cmplt	WS	1850176	8
146513.902	queue	WS	2634016	72
146513.994	issue	WS	2634016	72
146516.130	cmplt	WS	2634016	72
146516.405	queue	WS	1850184	8
146516.405	queue	WS	1850192	8
146516.435	queue	WS	1850200	8
146516.435	queue	WS	1850208	8
146516.466	queue	WS	1850216	8
146516.466	queue	WS	1850224	8
146516.466	queue	WS	1850232	8
146520.037	issue	WS	1850184	56
146521.929	cmplt	WS	1850184	56
146522.112	queue	WS	1850240	8
146522.143	issue	WS	1850240	8
146523.058	cmplt	WS	1850240	8
147140.088	queue	W	1835696	8
147140.119	queue	W	2621960	8
147140.241	issue	W	1835696	8
147144.270	issue	W	2621960	8
147145.063	cmplt	W	1835696	8
147146.406	cmplt	W	2621960	8
151495.529	queue	WS	1916928	8
151495.651	issue	WS	1916928	8
151501.175	cmplt	WS	1916928	8
151501.908	queue	WS	1916928	8
151501.969	issue	WS	1916928	8
151502.884	cmplt	WS	1916928	8
151519.060	queue	WS	1912920	8
151519.152	issue	WS	1912920	8
151520.037	cmplt	WS	1912920	8
151520.220	queue	WS	1850248	8
151520.250	queue	WS	1850256	8
151520.281	queue	WS	1850264	8
151520.281	queue	WS	1850272	8
151520.281	queue	WS	1850280	8
151520.311	queue	WS	1850288	8
151520.311	queue	WS	1850296	8
151520.311	queue	WS	1850304	8
151520.342	queue	WS	1850312	8
151530.047	issue	WS	1850248	72
151532.764	cmplt	WS	1850248	72
151532.886	queue	WS	1850320	8
151532.916	issue	WS	1850320	8
151533.862	cmplt	WS	1850320	8
151534.106	queue	WS	1850328	8
151534.137	queue	WS	1850336	8
151534.198	issue	WS	1850328	16
151535.266	cmplt	WS	1850328	16
151535.327	queue	WS	1850344	8
151535.388	issue	WS	1850344	8
151536.243	cmplt	WS	1850344	8
151560.415	queue	WS	1981544	72
151560.507	issue	WS	1981544	72
151563.192	cmplt	WS	1981544	72
151563.437	queue	WS	1850352	8
151563.467	queue	WS	1850360	8
151563.498	queue	WS	1850368	8
151563.498	queue	WS	1850376	8
151563.528	queue	WS	1850384	8
151563.528	queue	WS	1850392	8
151563.528	queue	WS	1850400	8
151570.059	issue	WS	1850352	56
151574.119	cmplt	WS	1850352	56
151574.302	queue	WS	1850408	8
151574.332	issue	WS	1850408	8
151575.156	cmplt	WS	1850408	8
156509.202	queue	WS	1916928	8
156509.293	issue	WS	1916928	8
156514.360	cmplt	WS	1916928	8
156515.062	queue	WS	1916928	8
156515.123	issue	WS	1916928	8
156516.038	cmplt	WS	1916928	8
156532.703	queue	WS	1912920	8
156532.825	issue	WS	1912920	8
156533.771	cmplt	WS	1912920	8
156533.923	queue	WS	1850416	8
156533.954	queue	WS	1850424	8
156533.984	queue	WS	1850432	8
156533.984	queue	WS	1850440	8
156533.984	queue	WS	1850448	8
156534.015	queue	WS	1850456	8
156534.015	queue	WS	1850464	8
156534.015	queue	WS	1850472	8
156534.045	queue	WS	1850480	8
156540.058	issue	WS	1850416	72
156546.864	cmplt	WS	1850416	72
156546.986	queue	WS	1850488	8
156547.047	issue	WS	1850488	8
156547.993	cmplt	WS	1850488	8
156548.237	queue	WS	1850496	8
156548.237	queue	WS	1850504	8
156548.298	issue	WS	1850496	16
156549.245	cmplt	WS	1850496	16
156549.336	queue	WS	1850512	8
156549.397	issue	WS	1850512	8
156550.221	cmplt	WS	1850512	8
156574.332	queue	WS	1981616	72
156574.424	issue	WS	1981616	72
156581.199	cmplt	WS	1981616	72
156581.474	queue	WS	1850520	8
156581.505	queue	WS	1850528	8
156581.505	queue	WS	1850536	8
156581.505	queue	WS	1850544	8
156581.535	queue	WS	1850552	8
156581.535	queue	WS	1850560	8
156581.535	queue	WS	1850568	8
156590.050	issue	WS	1850520	56
156593.835	cmplt	WS	1850520	56
156593.987	queue	WS	1850576	8
156594.049	issue	WS	1850576	8
156594.964	cmplt	WS	1850576	8
157140.088	queue	W	1835696	8
157140.119	queue	W	2621960	8
157140.241	issue	W	1835696	8
157144.270	issue	W	2621960	8
157145.063	cmplt	W	1835696	8
157146.559	cmplt	W	2621960	8
161534.473	queue	WS	1916928	8
161534.595	issue	WS	1916928	8
161540.058	cmplt	WS	1916928	8
161540.790	queue	WS	1916928	8
161540.852	issue	WS	1916928	8
161541.706	cmplt	WS	1916928	8
161557.882	queue	WS	1912920	8
161557.973	issue	WS	1912920	8
161558.920	cmplt	WS	1912920	8
161559.103	queue	WS	1850584	8
161559.103	queue	WS	1850592	8
161559.133	queue	WS	1850600	8
161559.133	queue	WS	1850608	8
161559.164	queue	WS	1850616	8
161559.164	queue	WS	1850624	8
161559.164	queue	WS	1850632	8
161559.194	queue	WS	1850640	8
161559.194	queue	WS	1850648	8
161560.049	issue	WS	1850584	72
161562.490	cmplt	WS	1850584	72
161562.613	queue	WS	1850656	8
161562.674	issue	WS	1850656	8
161563.589	cmplt	WS	1850656	8
161563.864	queue	WS	1850664	8
161563.864	queue	WS	1850672	8
161563.925	issue	WS	1850664	16
161565.085	cmplt	WS	1850664	16
161565.146	queue	WS	1850680	8
161565.207	issue	WS	1850680	8
161566.061	cmplt	WS	1850680	8
161590.081	queue	WS	1981688	72
161590.172	issue	WS	1981688	72
161596.887	cmplt	WS	1981688	72
161597.131	queue	WS	1850688	8
161597.162	queue	WS	1850696	8
161597.192	queue	WS	1850704	8
161597.192	queue	WS	1850712	8
161597.192	queue	WS	1850720	8
161597.223	queue	WS	1850728	8
161597.223	queue	WS	1850736	8
161600.214	issue	WS	1850688	56
161602.472	cmplt	WS	1850688	56
161602.594	queue	WS	1850744	8
161602.655	issue	WS	1850744	8
161603.571	cmplt	WS	1850744	8
166576.041	queue	WS	1916928	8
166576.133	issue	WS	1916928	8
166581.199	cmplt	WS	1916928	8
166581.993	queue	WS	1916928	8
166582.054	issue	WS	1916928	8
166582.878	cmplt	WS	1916928	8
166599.054	queue	WS	1912920	8
166599.145	issue	WS	1912920	8
166600.031	cmplt	WS	1912920	8
166600.305	queue	WS	1850752	8
166600.336	queue	WS	1850760	8
166600.336	queue	WS	1850768	8
166600.366	queue	WS	1850776	8
166600.366	queue	WS	1850784	8
166600.397	queue	WS	1850792	8
166600.397	queue	WS	1850800	8
166600.397	queue	WS	1850808	8
166600.427	queue	WS	1850816	8
166610.011	issue	WS	1850752	72
166616.786	cmplt	WS	1850752	72
166616.908	queue	WS	1850824	8
166616.969	issue	WS	1850824	8
166617.793	cmplt	WS	1850824	8
166618.038	queue	WS	1850832	8
166618.068	queue	WS	1850840	8
166618.099	issue	WS	1850832	16
166619.014	cmplt	WS	1850832	16
166619.075	queue	WS	1850848	8
166619.136	issue	WS	1850848	8
166620.052	cmplt	WS	1850848	8
166644.132	queue	WS	1981760	72
166644.224	issue	WS	1981760	72
166646.849	cmplt	WS	1981760	72
166647.123	queue	WS	1850856	8
166647.123	queue	WS	1850864	8
166647.154	queue	WS	1850872	8
166647.154	queue	WS	1850880	8
166647.154	queue	WS	1850888	8
166647.184	queue	WS	1850896	8
166647.184	queue	WS	1850904	8
166650.053	issue	WS	1850856	56
166656.737	cmplt	WS	1850856	56
166656.890	queue	WS	1850912	8
166656.951	issue	WS	1850912	8
166657.867	cmplt	WS	1850912	8
167140.088	queue	W	1835696	8
167140.241	issue	W	1835696	8
167145.033	cmplt	W	1835696	8
171297.909	queue	WS	1916928	8
171298.031	issue	WS	1916928	8
171303.067	cmplt	WS	1916928	8
171303.800	queue	WS	1916928	8
171303.861	issue	WS	1916928	8
171304.776	cmplt	WS	1916928	8
171321.349	queue	WS	1912920	8
171321.441	issue	WS	1912920	8
171322.326	cmplt	WS	1912920	8
171322.509	queue	WS	1850920	8
171322.539	queue	WS	1850928	8
171322.570	queue	WS	1850936	8
171322.570	queue	WS	1850944	8
171322.570	queue	WS	1850952	8
171322.600	queue	WS	1850960	8
171322.600	queue	WS	1850968	8
171322.600	queue	WS	1850976	8
171322.631	queue	WS	1850984	8
171330.047	issue	WS	1850920	72
171332.703	cmplt	WS	1850920	72
171332.825	queue	WS	1850992	8
171332.886	issue	WS	1850992	8
171333.771	cmplt	WS	1850992	8
171334.015	queue	WS	1851000	8
171334.045	queue	WS	1851008	8
171334.076	issue	WS	1851000	16
171335.144	cmplt	WS	1851000	16
171335.205	queue	WS	1851016	8
171335.266	issue	WS	1851016	8
171336.090	cmplt	WS	1851016	8
171360.385	queue	WS	1981832	72
171360.476	issue	WS	1981832	72
171362.918	cmplt	WS	1981832	72
171363.192	queue	WS	1851024	8
171363.192	queue	WS	1851032	8
171363.223	queue	WS	1851040	8
171363.223	queue	WS	1851048	8
171363.253	queue	WS	1851056	8
171363.253	queue	WS	1851064	8
171363.253	queue	WS	1851072	8
171370.059	issue	WS	1851024	56
171372.410	cmplt	WS	1851024	56
171372.562	queue	WS	1851080	8
171372.593	issue	WS	1851080	8
171373.478	cmplt	WS	1851080	8
176335.083	queue	WS	1916928	8
176335.175	issue	WS	1916928	8
176340.241	cmplt	WS	1916928	8
176341.004	queue	WS	1916928	8
176341.065	issue	WS	1916928	8
176341.981	cmplt	WS	1916928	8
176358.523	queue	WS	1912920	8
176358.614	issue	WS	1912920	8
176359.560	cmplt	WS	1912920	8
176359.744	queue	WS	1851088	8
176359.774	queue	WS	1851096	8
176359.774	queue	WS	1851104	8
176359.805	queue	WS	1851112	8
176359.805	queue	WS	1851120	8
176359.835	queue	WS	1851128	8
176359.835	queue	WS	1851136	8
176359.835	queue	WS	1851144	8
176359.866	queue	WS	1851152	8
176360.079	issue	WS	1851088	72
176365.115	cmplt	WS	1851088	72
176365.237	queue	WS	1851160	8
176365.298	issue	WS	1851160	8
176366.244	cmplt	WS	1851160	8
176366.489	queue	WS	1851168	8
176366.489	queue	WS	1851176	8
176366.550	issue	WS	1851168	16
176367.496	cmplt	WS	1851168	16
176367.587	queue	WS	1851184	8
176367.648	issue	WS	1851184	8
176368.472	cmplt	WS	1851184	8
176392.553	queue	WS	1981904	72
176392.675	issue	WS	1981904	72
176399.267	cmplt	WS	1981904	72
176399.542	queue	WS	1851192	8
176399.573	queue	WS	1851200	8
176399.573	queue	WS	1851208	8
176399.573	queue	WS	1851216	8
176399.603	queue	WS	1851224	8
176399.603	queue	WS	1851232	8
176399.603	queue	WS	1851240	8
176400.061	issue	WS	1851192	56
176403.907	cmplt	WS	1851192	56
176404.029	queue	WS	1851248	8
176404.090	issue	WS	1851248	8
176405.036	cmplt	WS	1851248	8
177140.119	queue	W	1835696	8
177140.241	issue	W	1835696	8
177145.063	cmplt	W	1835696	8
181441.569	queue	WS	1851256	8
181441.599	queue	WS	1851264	8
181441.630	queue	WS	1851272	8
181441.630	queue	WS	1851280	8
181441.660	queue	WS	1851288	8
181441.660	queue	WS	1851296	8
181441.660	queue	WS	1851304	8
181441.691	queue	WS	1851312	8
181441.691	queue	WS	1851320	8
181441.691	queue	WS	1851328	8
181441.721	queue	WS	1851336	8
181441.721	queue	WS	1851344	8
181441.721	queue	WS	1851352	8
181441.752	queue	WS	1851360	8
181441.752	queue	WS	1851368	8
181441.752	queue	WS	1851376	8
181441.874	issue	WS	1851256	128
181451.915	cmplt	WS	1851256	128
181452.098	queue	WS	1851384	8
181452.159	issue	WS	1851384	8
181453.105	cmplt	WS	1851384	8
181665.863	queue	WS	1916928	8
181665.955	issue	WS	1916928	8
181671.082	cmplt	WS	1916928	8
181671.753	queue	WS	1916928	8
181671.814	issue	WS	1916928	8
181672.700	cmplt	WS	1916928	8
181687.624	queue	WS	1912920	8
181687.716	issue	WS	1912920	8
181688.631	cmplt	WS	1912920	8
181688.753	queue	WS	1851392	8
181688.784	queue	WS	1851400	8
181688.814	queue	WS	1851408	8
181690.035	issue	WS	1851392	24
181692.019	cmplt	WS	1851392	24
181692.110	queue	WS	1851416	8
181692.172	issue	WS	1851416	8
181693.026	cmplt	WS	1851416	8
181693.240	queue	WS	1851424	8
181693.270	queue	WS	1851432	8
181693.301	issue	WS	1851424	16
181694.216	cmplt	WS	1851424	16
181694.277	queue	WS	1851440	8
181694.338	issue	WS	1851440	8
181695.193	cmplt	WS	1851440	8
181716.069	queue	WS	1981976	72
181716.161	issue	WS	1981976	72
181722.936	cmplt	WS	1981976	72
181723.211	queue	WS	1851448	8
181723.211	queue	WS	1851456	8
181723.241	queue	WS	1851464	8
181723.241	queue	WS	1851472	8
181723.241	queue	WS	1851480	8
181723.272	queue	WS	1851488	8
181723.272	queue	WS	1851496	8
181730.047	issue	WS	1851448	56
181732.336	cmplt	WS	1851448	56
181732.489	queue	WS	1851504	8
181732.519	issue	WS	1851504	8
181733.405	cmplt	WS	1851504	8
186559.744	queue	WS	1916928	8
186559.835	issue	WS	1916928	8
186564.932	cmplt	WS	1916928	8
186565.634	queue	WS	1916928	8
186565.665	issue	WS	1916928	8
186566.519	cmplt	WS	1916928	8
186581.993	queue	WS	1912920	8
186582.085	issue	WS	1912920	8
186582.970	cmplt	WS	1912920	8
186583.153	queue	WS	1851512	8
186583.153	queue	WS	1851520	8
186583.183	queue	WS	1851528	8
186583.183	queue	WS	1851536	8
186583.183	queue	WS	1851544	8
186583.214	queue	WS	1851552	8
186583.214	queue	WS	1851560	8
186583.244	queue	WS	1851568	8
186583.244	queue	WS	1851576	8
186590.050	issue	WS	1851512	72
186596.734	cmplt	WS	1851512	72
186596.856	queue	WS	1851584	8
186596.917	issue	WS	1851584	8
186597.864	cmplt	WS	1851584	8
186598.077	queue	WS	1851592	8
186598.108	queue	WS	1851600	8
186598.169	issue	WS	1851592	16
186599.298	cmplt	WS	1851592	16
186599.359	queue	WS	1851608	8
186599.420	issue	WS	1851608	8
186600.244	cmplt	WS	1851608	8
186621.303	queue	WS	1982048	72
186621.425	issue	WS	1982048	72
186623.897	cmplt	WS	1982048	72
186624.142	queue	WS	1851616	8
186624.172	queue	WS	1851624	8
186624.203	queue	WS	1851632	8
186624.203	queue	WS	1851640	8
186624.203	queue	WS	1851648	8
186624.233	queue	WS	1851656	8
186624.233	queue	WS	1851664	8
186630.032	issue	WS	1851616	56
186636.563	cmplt	WS	1851616	56
186636.685	queue	WS	1851672	8
186636.777	issue	WS	1851672	8
186637.723	cmplt	WS	1851672	8
187140.058	queue	W	2883584	8
187140.119	queue	W	1835536	8
187140.150	queue	W	1835544	8
187140.180	queue	W	1835696	8
187140.180	queue	W	1835704	8
187140.211	queue	W	1872416	8
187140.241	queue	W	2097672	8
187140.241	queue	W	2359296	8
187140.272	queue	W	2621960	8
187140.424	issue	W	1872416	8
187144.453	issue	W	2097672	8
187145.338	cmplt	W	1872416	8
187145.399	issue	W	2359296	8
187146.406	cmplt	W	2097672	8
187146.467	issue	W	2621960	8
187147.902	cmplt	W	2359296	8
187147.963	issue	W	2883584	8
187148.909	cmplt	W	2621960	8
187148.970	issue	W	1835536	16
187149.916	cmplt	W	2883584	8
187150.008	issue	W	1835696	16
187151.289	cmplt	W	1835536	16
187152.144	cmplt	W	1835696	16
191529.498	queue	R	893760	8
191529.651	issue	R	893760	8
191534.168	cmplt	R	893760	8
191580.681	queue	WS	1916928	8
191580.772	issue	WS	1916928	8
191581.840	cmplt	WS	1916928	8
191582.481	queue	WS	1916928	8
191582.542	issue	WS	1916928	8
191583.458	cmplt	WS	1916928	8
191605.982	queue	WS	1912920	8
191606.074	issue	WS	1912920	8
191606.928	cmplt	WS	1912920	8
191607.142	queue	WS	1851680	8
191607.142	queue	WS	1851688	8
191607.172	queue	WS	1851696	8
191607.172	queue	WS	1851704	8
191607.203	queue	WS	1851712	8
191607.203	queue	WS	1851720	8
191607.203	queue	WS	1851728	8
191607.233	queue	WS	1851736	8
191607.233	queue	WS	1851744	8
191610.072	issue	WS	1851680	72
191612.727	cmplt	WS	1851680	72
191612.880	queue	WS	1851752	8
191612.941	issue	WS	1851752	8
191613.826	cmplt	WS	1851752	8
191614.131	queue	WS	1851760	8
191614.161	queue	WS	1851768	8
191614.192	issue	WS	1851760	16
191615.108	cmplt	WS	1851760	16
191615.199	queue	WS	1851776	8
191615.230	issue	WS	1851776	8
191616.054	cmplt	WS	1851776	8
191660.583	queue	WS	2634088	72
191660.674	issue	WS	2634088	72
191667.419	cmplt	WS	2634088	72
191667.664	queue	WS	1851784	8
191667.694	queue	WS	1851792	8
191667.694	queue	WS	1851800	8
191667.725	queue	WS	1851808	8
191667.725	queue	WS	1851816	8
191667.755	queue	WS	1851824	8
191667.755	queue	WS	1851832	8
191670.075	issue	WS	1851784	56
191671.998	cmplt	WS	1851784	56
191672.089	queue	WS	1851840	8
191672.150	issue	WS	1851840	8
191673.066	cmplt	WS	1851840	8
191681.795	queue	R	938600	8
191681.886	issue	R	938600	8
191682.344	cmplt	R	938600	8
191682.954	queue	R	938592	8
191683.015	issue	R	938592	8
191683.321	cmplt	R	938592	8
191685.060	queue	R	938568	24
191685.121	issue	R	938568	24
191685.671	cmplt	R	938568	24
191685.945	queue	RM	2626072	8
191686.006	issue	RM	2626072	8
191686.403	cmplt	RM	2626072	8
191686.586	queue	R	2633048	32
191686.647	issue	R	2633048	32
191687.258	cmplt	R	2633048	32
191687.349	queue	R	2633112	8
191687.410	issue	R	2633112	8
191687.716	cmplt	R	2633112	8
191687.899	queue	R	2633080	32
191687.899	queue	R	2633120	8
191687.990	issue	R	2633120	8
191688.021	issue	R	2633080	32
191688.356	cmplt	R	2633120	8
191688.906	cmplt	R	2633080	32
191699.496	queue	R	1015768	24
191699.557	queue	R	1015808	72
191699.588	queue	R	1015904	8
191699.588	queue	R	1015944	8
191699.710	issue	R	1015768	24
191699.802	issue	R	1015808	72
191700.412	cmplt	R	1015768	24
191700.473	issue	R	1015904	8
191701.450	cmplt	R	1015808	72
191701.511	issue	R	1015944	8
191701.724	cmplt	R	1015904	8
191701.938	cmplt	R	1015944	8
191787.456	queue	R	1967272	256
191787.822	issue	R	1967272	256
191791.363	cmplt	R	1967272	256
197012.910	queue	WS	1916928	8
197012.971	issue	WS	1916928	8
197012.971	queue	WS	1851848	8
197013.002	queue	WS	1851856	8
197013.032	queue	WS	1851864	8
197013.032	queue	WS	1851872	8
197013.032	queue	WS	1851880	8
197013.063	queue	WS	1851888	8
197013.063	queue	WS	1851896	8
197013.063	queue	WS	1851904	8
197013.093	queue	WS	1851912	8
197059.973	issue	WS	1851848	72
197060.980	cmplt	WS	1916928	8
197067.725	cmplt	WS	1851848	72
197067.847	queue	WS	1851920	8
197067.908	issue	WS	1851920	8
197068.274	queue	WS	1916928	8
197068.854	cmplt	WS	1851920	8
197068.915	issue	WS	1916928	8
197069.922	cmplt	WS	1916928	8
197084.969	queue	WS	1912920	8
197085.060	issue	WS	1912920	8
197085.976	cmplt	WS	1912920	8
197086.128	queue	WS	1851928	8
197086.128	queue	WS	1851936	8
197086.159	queue	WS	1851944	8
197090.005	issue	WS	1851928	24
197091.775	cmplt	WS	1851928	24
197091.866	queue	WS	1851952	8
197091.927	issue	WS	1851952	8
197092.843	cmplt	WS	1851952	8
197093.026	queue	WS	1851960	8
197093.057	queue	WS	1851968	8
197093.118	issue	WS	1851960	16
197094.430	cmplt	WS	1851960	16
197094.522	queue	WS	1851976	8
197094.583	issue	WS	1851976	8
197095.468	cmplt	WS	1851976	8
197116.527	queue	WS	1982120	72
197116.618	issue	WS	1982120	72
197116.649	queue	R	2626088	8
197116.710	queue	R	2626104	8
197116.740	queue	R	2626120	8
197116.771	queue	R	2626128	8
197116.771	queue	R	2626136	8
197116.801	queue	R	2626144	8
197116.832	queue	R	2626152	8
197116.832	queue	R	2626160	8
197116.832	queue	R	2626168	8
197119.304	cmplt	WS	1982120	72
197119.396	issue	R	2626088	8
197119.457	issue	R	2626104	8
197119.609	queue	WS	1851984	8
197119.640	queue	WS	1851992	8
197119.640	queue	WS	1852000	8
197119.670	queue	WS	1852008	8
197119.670	queue	WS	1852016	8
197119.701	queue	WS	1852024	8
197119.701	queue	WS	1852032	8
197119.853	cmplt	R	2626088	8
197119.884	issue	R	2626120	56
197120.128	cmplt	R	2626104	8
197120.922	cmplt	R	2626120	56
197130.047	issue	WS	1851984	56
197139.356	cmplt	WS	1851984	56
197139.539	queue	WS	1852040	8
197139.570	issue	WS	1852040	8
197140.119	queue	W	1835008	8
197140.180	queue	W	1835696	8
197140.211	queue	W	2621960	8
197140.455	cmplt	WS	1852040	8
197140.516	issue	W	1835696	8
197140.577	issue	W	1835008	8
197141.492	cmplt	W	1835696	8
197141.523	issue	W	2621960	8
197142.378	cmplt	W	1835008	8
197143.873	cmplt	W	2621960	8
201623.195	queue	WS	1916928	8
201623.318	issue	WS	1916928	8
201628.781	cmplt	WS	1916928	8
201629.422	queue	WS	1916928	8
201629.483	issue	WS	1916928	8
201630.337	cmplt	WS	1916928	8
201645.597	queue	WS	1912920	8
201645.689	issue	WS	1912920	8
201646.635	cmplt	WS	1912920	8
201646.818	queue	WS	1852048	8
201646.818	queue	WS	1852056	8
201646.849	queue	WS	1852064	8
201646.849	queue	WS	1852072	8
201646.879	queue	WS	1852080	8
201646.879	queue	WS	1852088	8
201646.879	queue	WS	1852096	8
201646.910	queue	WS	1852104	8
201646.910	queue	WS	1852112	8
201650.053	issue	WS	1852048	72
201653.991	cmplt	WS	1852048	72
201654.113	queue	WS	1852120	8
201654.174	issue	WS	1852120	8
201655.059	cmplt	WS	1852120	8
201655.303	queue	WS	1852128	8
201655.303	queue	WS	1852136	8
201655.364	issue	WS	1852128	16
201656.341	cmplt	WS	1852128	16
201656.402	queue	WS	1852144	8
201656.463	issue	WS	1852144	8
201657.409	cmplt	WS	1852144	8
201678.468	queue	WS	1982192	72
201678.559	issue	WS	1982192	72
201685.335	cmplt	WS	1982192	72
201685.610	queue	WS	1852152	8
201685.640	queue	WS	1852160	8
201685.671	queue	WS	1852168	8
201685.671	queue	WS	1852176	8
201685.671	queue	WS	1852184	8
201685.701	queue	WS	1852192	8
201685.701	queue	WS	1852200	8
201690.035	issue	WS	1852152	56
201692.568	cmplt	WS	1852152	56
201692.721	queue	WS	1852208	8
201692.782	issue	WS	1852208	8
201693.698	cmplt	WS	1852208	8
202140.119	queue	W	1835696	8
202140.150	queue	W	2621960	8
202140.241	issue	W	1835696	8
202144.300	issue	W	2621960	8
202145.155	cmplt	W	1835696	8
202146.650	cmplt	W	2621960	8
206624.966	queue	WS	1916928	8
206625.088	issue	WS	1916928	8
206630.612	cmplt	WS	1916928	8
206631.253	queue	WS	1916928	8
206631.314	issue	WS	1916928	8
206632.168	cmplt	WS	1916928	8
206647.429	queue	WS	1912920	8
206647.520	issue	WS	1912920	8
206648.344	cmplt	WS	1912920	8
206648.619	queue	WS	1852216	8
206648.619	queue	WS	1852224	8
206648.649	queue	WS	1852232	8
206648.649	queue	WS	1852240	8
206648.680	queue	WS	1852248	8
206648.680	queue	WS	1852256	8
206648.680	queue	WS	1852264	8
206648.710	queue	WS	1852272	8
206648.710	queue	WS	1852280	8
206650.053	issue	WS	1852216	72
206652.556	cmplt	WS	1852216	72
206652.678	queue	WS	1852288	8
206652.739	issue	WS	1852288	8
206653.594	cmplt	WS	1852288	8
206653.868	queue	WS	1852296	8
206653.899	queue	WS	1852304	8
206653.960	issue	WS	1852296	16
206655.547	cmplt	WS	1852296	16
206655.639	queue	WS	1852312	8
206655.700	issue	WS	1852312	8
206656.524	cmplt	WS	1852312	8
206677.888	queue	WS	2634160	72
206677.980	issue	WS	2634160	72
206685.060	cmplt	WS	2634160	72
206685.335	queue	WS	1852320	8
206685.365	queue	WS	1852328	8
206685.365	queue	WS	1852336	8
206685.396	queue	WS	1852344	8
206685.396	queue	WS	1852352	8
206685.426	queue	WS	1852360	8
206685.426	queue	WS	1852368	8
206690.066	issue	WS	1852320	56
206696.322	cmplt	WS	1852320	56
206696.475	queue	WS	1852376	8
206696.536	issue	WS	1852376	8
206697.421	cmplt	WS	1852376	8
211647.490	queue	WS	1916928	8
211647.612	issue	WS	1916928	8
211652.312	cmplt	WS	1916928	8
211652.953	queue	WS	1916928	8
211653.014	issue	WS	1916928	8
211653.929	cmplt	WS	1916928	8
211669.159	queue	WS	1912920	8
211669.251	issue	WS	1912920	8
211670.105	cmplt	WS	1912920	8
211670.349	queue	WS	1852384	8
211670.380	queue	WS	1852392	8
211670.380	queue	WS	1852400	8
211670.380	queue	WS	1852408	8
211670.410	queue	WS	1852416	8
211670.410	queue	WS	1852424	8
211670.441	queue	WS	1852432	8
211670.441	queue	WS	1852440	8
211670.441	queue	WS	1852448	8
211680.055	issue	WS	1852384	72
211686.769	cmplt	WS	1852384	72
211686.922	queue	WS	1852456	8
211686.953	issue	WS	1852456	8
211687.868	cmplt	WS	1852456	8
211688.112	queue	WS	1852464	8
211688.112	queue	WS	1852472	8
211688.173	issue	WS	1852464	16
211689.028	cmplt	WS	1852464	16
211689.119	queue	WS	1852480	8
211689.181	issue	WS	1852480	8
211690.035	cmplt	WS	1852480	8
211711.033	queue	WS	2634232	72
211711.125	issue	WS	2634232	72
211713.627	cmplt	WS	2634232	72
211713.871	queue	WS	1852488	8
211713.902	queue	WS	1852496	8
211713.933	queue	WS	1852504	8
211713.933	queue	WS	1852512	8
211713.933	queue	WS	1852520	8
211713.963	queue	WS	1852528	8
211713.963	queue	WS	1852536	8
211720.067	issue	WS	1852488	56
211721.990	cmplt	WS	1852488	56
211722.112	queue	WS	1852544	8
211722.173	issue	WS	1852544	8
211723.089	cmplt	WS	1852544	8
212140.088	queue	W	1835528	8
212140.119	queue	W	1835696	8
212140.241	issue	W	1835696	8
212144.270	issue	W	1835528	8
212145.094	cmplt	W	1835696	8
212145.918	cmplt	W	1835528	8
216681.734	queue	WS	1916928	8
216681.856	issue	WS	1916928	8
216686.891	cmplt	WS	1916928	8
216687.532	queue	WS	1916928	8
216687.593	issue	WS	1916928	8
216688.509	cmplt	WS	1916928	8
216703.830	queue	WS	1912920	8
216703.891	issue	WS	1912920	8
216704.868	cmplt	WS	1912920	8
216705.082	queue	WS	1852552	8
216705.112	queue	WS	1852560	8
216705.143	queue	WS	1852568	8
216705.143	queue	WS	1852576	8
216705.143	queue	WS	1852584	8
216705.173	queue	WS	1852592	8
216705.173	queue	WS	1852600	8
216705.204	queue	WS	1852608	8
216705.204	queue	WS	1852616	8
216710.056	issue	WS	1852552	72
216712.468	cmplt	WS	1852552	72
216712.620	queue	WS	1852624	8
216712.681	issue	WS	1852624	8
216713.566	cmplt	WS	1852624	8
216713.810	queue	WS	1852632	8
216713.841	queue	WS	1852640	8
216713.871	issue	WS	1852632	16
216715.001	cmplt	WS	1852632	16
216715.092	queue	WS	1852648	8
216715.153	issue	WS	1852648	8
216715.977	cmplt	WS	1852648	8
216736.975	queue	WS	2634304	72
216737.067	issue	WS	2634304	72
216739.417	cmplt	WS	2634304	72
216739.692	queue	WS	1852656	8
216739.722	queue	WS	1852664	8
216739.722	queue	WS	1852672	8
216739.722	queue	WS	1852680	8
216739.753	queue	WS	1852688	8
216739.753	queue	WS	1852696	8
216739.783	queue	WS	1852704	8
216740.088	issue	WS	1852656	56
216744.941	cmplt	WS	1852656	56
216745.094	queue	WS	1852712	8
216745.155	issue	WS	1852712	8
216746.040	cmplt	WS	1852712	8
221684.969	queue	WS	1916928	8
221685.060	issue	WS	1916928	8
221701.938	cmplt	WS	1916928	8
221702.579	queue	WS	1916928	8
221702.640	issue	WS	1916928	8
221703.525	cmplt	WS	1916928	8
221718.450	queue	WS	1912920	8
221718.541	issue	WS	1912920	8
221719.487	cmplt	WS	1912920	8
221719.731	queue	WS	1852720	8
221719.731	queue	WS	1852728	8
221719.762	queue	WS	1852736	8
221719.762	queue	WS	1852744	8
221719.792	queue	WS	1852752	8
221719.792	queue	WS	1852760	8
221719.792	queue	WS	1852768	8
221719.823	queue	WS	1852776	8
221719.823	queue	WS	1852784	8
221720.037	issue	WS	1852720	72
221727.026	cmplt	WS	1852720	72
221727.148	queue	WS	1852792	8
221727.209	issue	WS	1852792	8
221728.216	cmplt	WS	1852792	8
221728.460	queue	WS	1852800	8
221728.491	queue	WS	1852808	8
221728.521	issue	WS	1852800	16
221729.467	cmplt	WS	1852800	16
221729.559	queue	WS	1852816	8
221729.620	issue	WS	1852816	8
221730.505	cmplt	WS	1852816	8
221751.473	queue	WS	1982264	72
221751.564	issue	WS	1982264	72
221758.187	cmplt	WS	1982264	72
221758.462	queue	WS	1852824	8
221758.492	queue	WS	1852832	8
221758.492	queue	WS	1852840	8
221758.523	queue	WS	1852848	8
221758.523	queue	WS	1852856	8
221758.523	queue	WS	1852864	8
221758.553	queue	WS	1852872	8
221760.049	issue	WS	1852824	56
221769.663	cmplt	WS	1852824	56
221769.785	queue	WS	1852880	8
221769.876	issue	WS	1852880	8
221770.792	cmplt	WS	1852880	8
222140.027	queue	W	1835696	8
222140.150	queue	W	1835528	8
222140.241	issue	W	1835696	8
222144.300	issue	W	1835528	8
222145.155	cmplt	W	1835696	8
222146.040	cmplt	W	1835528	8

[-- Attachment #3: packing_parallel_read_write.txt --]
[-- Type: text/plain, Size: 208323 bytes --]

3.632	queue	R	1061976	8
4.395	queue	R	1061872	8
4.395	queue	R	1061968	8
4.975	queue	R	1095968	8
5.768	queue	R	1095784	184
8.454	queue	R	1114152	8
9.095	queue	R	1113976	176
11.811	queue	R	1097832	24
12.666	queue	R	1013880	8
13.765	queue	R	1013808	8
13.795	queue	R	1013824	16
13.795	queue	R	1013864	16
16.786	queue	R	1074440	8
17.458	queue	R	1074424	8
18.221	queue	R	985616	8
18.892	queue	R	985552	8
19.380	queue	R	984696	8
19.380	queue	R	984720	8
20.113	queue	R	984744	8
20.723	queue	R	988072	8
21.334	queue	R	987928	144
23.562	queue	R	1013448	8
24.172	queue	R	1013416	8
24.203	queue	R	1013440	8
24.996	queue	R	987472	8
25.027	queue	R	987528	8
25.057	queue	R	987560	16
25.088	queue	R	987592	8
26.461	queue	R	987688	8
26.461	queue	R	987736	32
26.522	queue	R	987800	128
31.100	queue	R	1009080	8
31.772	queue	R	1008944	136
37.265	queue	R	1005728	8
37.296	queue	R	1005744	56
37.326	queue	R	1005808	8
37.357	queue	R	1005824	32
42.790	queue	R	1096072	8
43.522	queue	R	1095984	88
45.048	queue	R	1096128	16
45.781	queue	R	1096120	8
46.330	queue	R	1096088	32
53.929	queue	R	1093688	128
65.253	queue	R	1071600	8
65.924	queue	R	1071512	88
67.908	queue	R	1016400	8
68.579	queue	R	1016320	80
74.439	queue	RM	910544	8
75.141	queue	R	915120	32
76.148	queue	R	915152	8
87.899	queue	R	941384	32
177.354	queue	R	1081368	8
178.178	queue	R	979680	8
178.849	queue	R	979544	136
181.016	queue	R	997200	8
181.688	queue	R	997064	136
183.763	queue	R	996704	144
183.824	queue	R	996856	104
187.883	queue	R	988968	8
187.944	queue	R	988984	112
190.874	queue	R	996960	104
198.108	queue	R	998896	8
198.779	queue	R	998760	136
201.434	queue	R	997568	8
201.495	queue	R	997584	112
205.250	queue	R	978912	128
208.210	queue	R	1081344	8
208.271	issue	R	1081344	8
208.729	cmplt	R	1081344	8
212.696	queue	R	956264	32
212.788	issue	R	956264	32
213.582	cmplt	R	956264	32
213.917	queue	R	956296	32
213.948	queue	R	956344	16
214.009	issue	R	956296	32
214.070	issue	R	956344	16
214.711	cmplt	R	956296	32
215.047	cmplt	R	956344	16
282.558	queue	R	1125224	8
282.649	issue	R	1125224	8
283.504	queue	R	1125000	224
288.906	queue	R	1105000	8
289.547	queue	R	1104864	136
291.927	queue	R	1100008	8
291.958	queue	R	1100024	112
293.972	queue	R	1104728	136
310.118	queue	R	1115880	16
310.179	queue	R	1115928	88
310.942	queue	R	1124184	256
315.886	queue	R	1124440	256
316.405	queue	R	1124696	256
321.624	queue	R	1124952	48
511.369	queue	RM	1178400	8
518.419	queue	R	1179424	8
526.690	queue	R	1179360	64
730.902	queue	R	891456	16
901.419	queue	R	1075072	8
905.570	queue	R	1074936	8
905.600	queue	R	1074952	8
905.631	queue	R	1074968	8
905.662	queue	R	1075032	40
914.879	queue	R	1014768	8
958.797	queue	R	1014720	8
958.828	queue	R	1014736	8
966.397	queue	R	1075296	8
974.363	queue	R	1034528	8
974.393	queue	R	1034544	8
982.298	queue	R	1075232	8
982.329	queue	R	1075248	48
990.905	queue	R	1074768	8
990.935	queue	R	1074800	64
990.966	queue	R	1074872	16
990.996	queue	R	1074912	24
1260.308	queue	R	950096	32
1290.829	queue	R	950128	64
1293.759	queue	R	950192	128
1305.478	queue	R	950624	8
1462.506	queue	WS	1845352	8
1462.536	queue	WS	1845360	8
1462.567	queue	WS	1845368	8
1462.567	queue	WS	1845376	8
1462.567	queue	WS	1845384	8
1462.597	queue	WS	1845392	8
1462.597	queue	WS	1845400	8
1462.597	queue	WS	1845408	8
1462.628	queue	WS	1845416	8
1462.628	queue	WS	1845424	8
1462.658	queue	WS	1845432	8
1462.658	queue	WS	1845440	8
1462.658	queue	WS	1845448	8
1629.177	queue	R	950504	120
1629.239	queue	R	950632	128
1634.793	queue	R	947040	32
1707.340	queue	R	947072	64
1708.927	queue	R	947032	8
1790.356	queue	R	947024	8
1822.829	queue	R	947016	8
1897.452	queue	R	947008	8
1977.140	queue	R	947000	8
2046.452	queue	R	946992	8
2070.075	issue	R	2048000	256
2070.258	issue	R	2048256	256
2116.618	queue	R	946984	8
2199.176	queue	R	946976	8
2281.093	queue	R	946968	8
2354.708	queue	R	946960	8
2434.488	queue	R	946952	8
2517.870	queue	R	955720	8
2580.070	issue	R	2072064	512
2598.169	queue	R	955712	8
2598.199	queue	R	955728	16
2679.292	queue	R	947496	8
2759.042	queue	R	947376	120
2759.103	queue	R	947504	128
2898.978	queue	R	947136	32
3080.330	queue	R	947168	64
3085.488	queue	R	947232	128
3159.408	queue	R	947760	8
3237.723	queue	R	947712	32
3320.220	queue	R	947632	80
3320.250	queue	R	947744	16
3320.311	queue	R	947768	104
3428.994	queue	R	947872	256
3466.016	queue	R	955744	384
3497.818	queue	R	948128	256
3529.132	queue	R	949576	32
3591.790	queue	R	954440	8
3766.916	queue	R	948384	256
3773.112	queue	R	949608	64
3786.327	queue	R	949672	128
3822.432	queue	R	949824	8
3862.475	queue	R	949832	32
3904.868	queue	R	949864	64
3970.121	issue	R	949864	64
3995.086	queue	R	950080	16
4023.379	queue	R	950072	8
4099.527	queue	R	950064	8
4151.106	cmplt	R	2161664	512
4151.534	queue	R	2162176	256
4151.900	queue	R	2162432	256
4151.961	issue	R	2162176	512
4158.462	cmplt	R	2162176	512
4158.889	queue	R	2162688	256
4159.255	queue	R	2162944	256
4159.316	issue	R	2162688	512
4166.641	queue	R	2163200	256
4167.007	queue	R	2163456	256
4172.196	queue	R	950056	8
4252.342	queue	R	950024	32
4256.615	queue	R	2163712	256
4256.982	queue	R	2163968	256
4262.780	queue	R	954248	32
4264.367	queue	R	2164224	256
4264.703	queue	R	2164480	256
4272.120	queue	R	2164736	256
4272.669	queue	R	2164992	256
4285.427	queue	R	954280	64
4299.405	queue	R	950008	16
4373.539	queue	R	2165248	256
4373.905	queue	R	2165504	256
4407.905	queue	R	946944	8
4485.549	queue	R	2165760	256
4486.067	queue	R	2166016	256
4487.014	queue	R	948896	32
4622.738	queue	R	2166272	256
4623.104	queue	R	2166528	256
4694.949	queue	R	2166784	256
4695.376	queue	R	2167040	256
4734.045	queue	R	2167296	256
4734.442	queue	R	2167552	256
4773.051	queue	R	2167808	256
4773.447	queue	R	2168064	256
4812.025	queue	R	2168320	256
4812.422	queue	R	2168576	256
4857.806	queue	R	2168832	256
4858.355	queue	R	2169088	256
4913.139	queue	R	2169344	256
4913.688	queue	R	2169600	256
4968.747	queue	R	2169856	256
4969.297	queue	R	2170112	256
5040.562	queue	R	2170368	256
5041.111	queue	R	2170624	256
5129.071	queue	R	2170880	256
5129.620	queue	R	2171136	256
5217.549	queue	R	2171392	256
5218.099	queue	R	2171648	256
5316.985	queue	R	2171904	256
5317.503	queue	R	2172160	256
5439.066	queue	R	2172416	256
5439.463	queue	R	2172672	256
5471.937	queue	R	2172928	256
5472.364	queue	R	2173184	256
5504.929	queue	R	2173440	256
5505.356	queue	R	2173696	256
5537.769	queue	R	2173952	256
5538.135	queue	R	2174208	256
5551.351	queue	WS	1845456	8
5567.099	queue	R	2174464	256
5567.465	queue	R	2174720	256
5575.431	queue	R	2174976	256
5575.797	queue	R	2175232	256
5579.368	queue	R	2175488	256
5582.878	queue	R	2175744	256
5586.449	queue	R	2176000	256
5589.959	queue	R	2176256	256
5593.469	queue	R	2176512	256
5597.009	queue	R	2176768	256
5600.610	queue	R	2177024	256
5604.151	queue	R	2177280	256
5607.722	queue	R	2177536	256
5672.791	queue	W	2652408	1024
5674.103	queue	W	2653432	776
5675.996	queue	W	2654208	1024
5676.392	queue	W	2655232	1024
5676.850	queue	W	2656256	1024
5677.430	queue	W	2657280	1024
5677.857	queue	W	2658304	1024
5678.285	queue	W	2659328	1024
5678.773	queue	W	2660352	1024
5679.231	queue	W	2661376	1024
5679.658	queue	W	2662400	1024
5690.127	queue	W	2663424	1024
5690.646	queue	W	2664448	1024
5691.195	queue	W	2665472	1024
5691.683	queue	W	2666496	1024
5692.141	queue	W	2667520	1024
5692.599	queue	W	2668544	1024
5693.026	queue	W	2669568	1024
5695.101	queue	W	2670592	1024
5695.559	queue	W	2671616	1024
5695.987	queue	W	2672640	1024
5696.597	queue	W	2673664	1024
5697.024	queue	W	2674688	1024
5697.452	queue	W	2675712	1024
5698.001	queue	W	2676736	1024
5698.489	queue	W	2677760	1024
5698.917	queue	W	2678784	1024
5699.344	queue	W	2679808	1024
5699.863	queue	W	2680832	1024
5710.331	queue	W	2681856	1024
5710.758	queue	W	2682880	1024
5711.216	queue	W	2683904	1024
5711.735	queue	W	2684928	1024
5712.315	queue	W	2685952	1024
5713.414	queue	W	2686976	1024
5713.810	queue	W	2688000	1024
5714.238	queue	W	2689024	1024
5714.696	queue	W	2690048	1024
5715.153	queue	W	2691072	1024
5715.703	queue	W	2692096	1024
5715.947	queue	W	2693120	384
5717.412	queue	W	2693504	1024
5718.053	queue	W	2694528	1024
5718.480	queue	W	2695552	1024
5719.060	queue	W	2696576	1024
5719.487	queue	W	2697600	1024
5719.823	queue	W	2698624	832
5743.110	issue	R	2187264	256
5743.690	queue	R	2187520	256
5746.498	cmplt	R	2187264	256
5746.589	issue	R	2187520	256
5747.169	queue	R	2187776	256
5749.947	cmplt	R	2187520	256
5750.099	issue	R	2187776	256
5750.404	queue	R	2188032	256
5753.487	cmplt	R	2187776	256
5753.609	issue	R	2188032	256
5753.884	queue	R	2188288	256
5757.027	cmplt	R	2188032	256
5757.119	issue	R	2188288	256
5757.424	queue	R	2188544	256
5760.537	cmplt	R	2188288	256
5760.720	issue	W	2652408	1024
5760.751	issue	W	2653432	776
5760.781	issue	W	2654208	1024
5760.995	queue	R	2188800	256
5815.718	cmplt	W	2652408	1024
5816.023	cmplt	W	2653432	776
5816.237	cmplt	W	2654208	1024
5816.573	issue	W	2655232	1024
5816.634	issue	W	2656256	1024
5816.634	issue	W	2657280	1024
5867.175	queue	W	2699456	1024
5867.603	queue	W	2700480	1024
5868.030	queue	W	2701504	1024
5868.671	queue	W	2702528	832
5869.525	queue	W	2703360	1024
5869.922	queue	W	2704384	1024
5870.441	queue	W	2705408	1024
5870.868	queue	W	2706432	1024
5870.960	queue	W	2707456	192
5874.195	cmplt	W	2655232	1024
5874.500	cmplt	W	2656256	1024
5874.805	cmplt	W	2657280	1024
5875.141	issue	R	2188544	512
5881.825	cmplt	R	2188544	512
5882.008	issue	W	2658304	1024
5882.313	queue	R	2189056	256
5882.741	queue	R	2189312	256
5899.405	queue	W	1835536	8
5899.466	queue	W	1835544	8
5899.466	queue	W	1872416	8
5899.496	queue	W	2359296	8
5899.527	queue	W	2621968	8
5899.527	queue	W	2621984	8
5899.557	queue	W	2626080	8
5899.588	queue	W	1835008	8
5905.356	queue	W	2707648	1024
5905.784	queue	W	2708672	1024
5906.211	queue	W	2709696	1024
5906.638	queue	W	2710720	1024
5907.035	queue	W	2711744	1024
5907.462	queue	W	2712768	1024
5907.828	cmplt	W	2658304	1024
5908.042	queue	W	2713792	1024
5908.164	issue	R	2189056	512
5908.653	queue	W	2714816	1024
5909.110	queue	W	2715840	1024
5909.507	queue	W	2716864	1024
5909.934	queue	W	2717888	1024
5914.665	cmplt	R	2189056	512
5914.848	issue	W	2659328	1024
5915.153	queue	R	2189568	256
5915.581	queue	R	2189824	256
5916.313	queue	W	2718912	832
5918.266	queue	W	2719744	1024
5918.694	queue	W	2720768	1024
5919.274	queue	W	2721792	1024
5919.670	queue	W	2722816	1024
5920.128	queue	W	2723840	1024
5920.555	queue	W	2724864	1024
5920.952	queue	W	2725888	1024
5921.349	queue	W	2726912	1024
5921.776	queue	W	2727936	1024
5922.173	queue	W	2728960	1024
5922.600	queue	W	2729984	1024
5923.028	queue	W	2731008	1024
5923.424	queue	W	2732032	1024
5923.852	queue	W	2733056	1024
5924.248	queue	W	2734080	1024
5924.645	queue	W	2735104	1024
5926.537	queue	W	2736128	1024
5926.965	queue	W	2737152	1024
5927.392	queue	W	2738176	1024
5927.789	queue	W	2739200	1024
5928.186	queue	W	2740224	1024
5928.582	queue	W	2741248	1024
5928.979	queue	W	2742272	1024
5929.559	queue	W	2743296	1024
5929.956	queue	W	2744320	1024
5940.760	cmplt	W	2659328	1024
5941.126	issue	R	2189568	512
5947.688	cmplt	R	2189568	512
5947.902	issue	W	2660352	1024
5948.207	queue	R	2190080	256
5948.634	queue	R	2190336	256
5949.092	queue	W	2745344	1024
5949.519	queue	W	2746368	1024
5949.947	queue	W	2747392	1024
5950.404	queue	W	2748416	1024
5950.862	queue	W	2749440	1024
5951.045	queue	W	2750464	384
5973.783	cmplt	W	2660352	1024
5974.149	issue	R	2190080	512
5980.650	cmplt	R	2190080	512
5980.833	issue	W	2661376	1024
5981.138	queue	R	2190592	256
5981.566	queue	R	2190848	256
6012.117	cmplt	W	2661376	1024
6012.452	issue	R	2190592	512
6018.953	cmplt	R	2190592	512
6019.106	issue	W	2662400	1024
6019.472	queue	R	2191104	256
6019.869	queue	R	2191360	256
6045.109	cmplt	W	2662400	1024
6045.445	issue	R	2191104	512
6051.915	cmplt	R	2191104	512
6052.068	issue	W	2663424	1024
6052.434	queue	R	2191616	256
6052.861	queue	R	2191872	256
6062.902	queue	R	2191872	256
6078.010	cmplt	W	2663424	1024
6078.315	issue	R	2191616	512
6084.786	cmplt	R	2191616	512
6084.969	issue	W	2664448	1024
6085.030	issue	W	2665472	1024
6085.274	queue	R	2192128	256
6085.793	queue	R	2192384	256
6127.056	cmplt	W	2664448	1024
6127.362	cmplt	W	2665472	1024
6127.667	issue	R	2192128	512
6134.259	cmplt	R	2192128	512
6134.381	issue	W	2666496	1024
6134.442	issue	W	2667520	1024
6134.747	queue	R	2192640	256
6135.297	queue	R	2192896	256
6176.835	cmplt	W	2666496	1024
6177.110	cmplt	W	2667520	1024
6177.445	issue	R	2192640	512
6183.885	cmplt	R	2192640	512
6184.038	issue	W	2668544	1024
6184.068	issue	W	2669568	1024
6184.099	issue	W	2670592	1024
6184.374	queue	R	2193152	256
6184.892	queue	R	2193408	256
6242.240	cmplt	W	2668544	1024
6242.545	cmplt	W	2669568	1024
6242.820	cmplt	W	2670592	1024
6243.156	issue	R	2193152	512
6249.687	cmplt	R	2193152	512
6249.870	issue	W	2671616	1024
6249.901	issue	W	2672640	1024
6249.931	issue	W	2673664	1024
6250.145	queue	R	2193664	256
6250.694	queue	R	2193920	256
6308.256	cmplt	W	2671616	1024
6308.530	cmplt	W	2672640	1024
6308.775	cmplt	W	2673664	1024
6309.080	issue	R	2193664	512
6315.581	cmplt	R	2193664	512
6315.733	issue	W	2674688	1024
6315.794	issue	W	2675712	1024
6315.825	issue	W	2676736	1024
6315.825	issue	W	2677760	1024
6316.008	queue	R	2194176	256
6316.557	queue	R	2194432	256
6395.544	cmplt	W	2674688	1024
6395.819	cmplt	W	2675712	1024
6396.063	cmplt	W	2676736	1024
6396.307	cmplt	W	2677760	1024
6396.612	issue	R	2194176	512
6403.113	cmplt	R	2194176	512
6403.266	issue	W	2678784	1024
6403.327	issue	W	2679808	1024
6403.357	issue	W	2680832	1024
6403.357	issue	W	2681856	1024
6403.388	issue	W	2682880	1024
6403.479	queue	R	2194688	256
6404.029	queue	R	2194944	256
6493.759	cmplt	W	2678784	1024
6494.064	cmplt	W	2679808	1024
6494.308	cmplt	W	2680832	1024
6494.552	cmplt	W	2681856	1024
6494.796	cmplt	W	2682880	1024
6495.101	issue	R	2194688	512
6501.541	cmplt	R	2194688	512
6501.694	issue	W	2683904	1024
6501.724	issue	W	2684928	1024
6501.755	issue	W	2685952	1024
6501.785	issue	W	2686976	1024
6501.816	issue	W	2688000	1024
6501.846	issue	W	2689024	1024
6501.938	queue	R	2195200	256
6502.487	queue	R	2195456	256
6608.057	cmplt	W	2683904	1024
6608.118	queue	WS	1845464	8
6608.302	cmplt	W	2684928	1024
6608.546	cmplt	W	2685952	1024
6608.790	cmplt	W	2686976	1024
6608.790	queue	WS	1845472	8
6608.790	queue	WS	1845480	8
6608.820	queue	WS	1845488	8
6608.820	queue	WS	1845496	8
6609.034	cmplt	W	2688000	1024
6609.370	cmplt	W	2689024	1024
6609.736	issue	R	2195200	512
6616.359	cmplt	R	2195200	512
6616.481	issue	WS	1845464	40
6616.756	queue	R	2195712	256
6617.122	queue	R	2195968	256
6618.434	cmplt	WS	1845464	40
6618.526	issue	W	2690048	1024
6618.556	issue	W	2691072	1024
6618.587	issue	W	2692096	1024
6618.587	issue	W	2693120	384
6681.550	cmplt	W	2690048	1024
6681.886	cmplt	W	2691072	1024
6682.222	cmplt	W	2692096	1024
6682.527	cmplt	W	2693120	384
6682.741	issue	W	2693504	1024
6682.771	issue	W	2694528	1024
6682.802	issue	W	2695552	1024
6682.802	issue	W	2696576	1024
6682.832	issue	W	2697600	1024
6785.778	cmplt	W	2693504	1024
6786.144	cmplt	W	2694528	1024
6786.449	cmplt	W	2695552	1024
6786.785	cmplt	W	2696576	1024
6787.090	cmplt	W	2697600	1024
6787.487	issue	R	2195712	512
6794.018	cmplt	R	2195712	512
6794.171	issue	W	2698624	832
6794.537	queue	R	2196224	256
6794.903	queue	R	2196480	256
6824.477	cmplt	W	2698624	832
6824.813	issue	R	2196224	512
6831.283	cmplt	R	2196224	512
6831.405	issue	W	2699456	1024
6831.772	queue	R	2196736	256
6832.168	queue	R	2196992	256
6860.247	cmplt	W	2699456	1024
6860.644	issue	R	2196736	512
6867.114	cmplt	R	2196736	512
6867.267	issue	W	2700480	1024
6867.633	queue	R	2197248	256
6868.030	queue	R	2197504	256
6895.956	cmplt	W	2700480	1024
6896.353	issue	R	2197248	512
6902.823	cmplt	R	2197248	512
6902.976	issue	W	2701504	1024
6903.311	queue	R	2197760	256
6903.739	queue	R	2198016	256
6931.543	cmplt	W	2701504	1024
6931.940	issue	R	2197760	512
6938.440	cmplt	R	2197760	512
6938.593	issue	W	2702528	832
6938.959	queue	R	2198272	256
6939.325	queue	R	2198528	256
6964.200	cmplt	W	2702528	832
6964.535	issue	R	2198272	512
6971.006	cmplt	R	2198272	512
6971.158	issue	W	2703360	1024
6971.524	queue	R	2198784	256
6971.921	queue	R	2199040	256
7012.056	cmplt	W	2703360	1024
7012.422	issue	R	2198784	512
7019.045	cmplt	R	2198784	512
7019.197	issue	W	2704384	1024
7019.228	issue	W	2705408	1024
7019.533	queue	R	2199296	256
7020.113	queue	R	2199552	256
7061.621	cmplt	W	2704384	1024
7062.017	cmplt	W	2705408	1024
7062.414	issue	R	2199296	512
7068.946	cmplt	R	2199296	512
7069.129	issue	W	2706432	1024
7069.190	issue	W	2707456	192
7069.403	queue	R	2199808	256
7069.831	queue	R	2200064	256
7098.642	cmplt	W	2706432	1024
7099.039	cmplt	W	2707456	192
7099.191	issue	R	2199808	512
7106.638	cmplt	R	2199808	512
7106.852	issue	W	1835536	16
7106.882	issue	W	1835008	8
7106.913	issue	W	1872416	8
7107.035	queue	R	2200320	256
7107.401	queue	R	2200576	256
7109.812	cmplt	W	1835536	16
7109.843	cmplt	W	1835008	8
7109.873	cmplt	W	1872416	8
7109.934	issue	R	2200320	512
7116.649	cmplt	R	2200320	512
7116.832	issue	W	2359296	8
7116.893	issue	W	2621968	8
7116.924	issue	W	2621984	8
7117.046	queue	R	2200832	256
7117.412	queue	R	2201088	256
7120.189	cmplt	W	2359296	8
7120.250	cmplt	W	2621968	8
7120.250	cmplt	W	2621984	8
7120.342	issue	R	2200832	512
7126.965	cmplt	R	2200832	512
7127.148	issue	W	2626080	8
7127.209	issue	W	2707648	1024
7127.209	issue	W	2708672	1024
7127.423	queue	R	2201344	256
7127.972	queue	R	2201600	256
7175.736	cmplt	W	2626080	8
7175.797	cmplt	W	2707648	1024
7176.164	cmplt	W	2708672	1024
7176.591	issue	R	2201344	512
7183.214	cmplt	R	2201344	512
7183.397	issue	W	2709696	1024
7183.427	issue	W	2710720	1024
7183.458	issue	W	2711744	1024
7183.641	queue	R	2201856	256
7184.190	queue	R	2202112	256
7251.610	cmplt	W	2709696	1024
7252.007	cmplt	W	2710720	1024
7252.373	cmplt	W	2711744	1024
7252.770	issue	R	2201856	512
7259.332	cmplt	R	2201856	512
7259.515	issue	W	2712768	1024
7259.576	issue	W	2713792	1024
7259.576	issue	W	2714816	1024
7259.606	issue	W	2715840	1024
7259.728	queue	R	2202368	256
7260.308	queue	R	2202624	256
7338.410	cmplt	W	2712768	1024
7338.837	cmplt	W	2713792	1024
7339.203	cmplt	W	2714816	1024
7339.600	cmplt	W	2715840	1024
7340.058	issue	R	2202368	512
7346.559	cmplt	R	2202368	512
7346.742	issue	W	2716864	1024
7346.803	issue	W	2717888	1024
7346.803	issue	W	2718912	832
7346.834	issue	W	2719744	1024
7346.864	issue	W	2720768	1024
7346.956	queue	R	2202880	256
7347.505	queue	R	2203136	256
7386.754	queue	R	948984	8
7445.964	cmplt	W	2716864	1024
7446.330	cmplt	W	2717888	1024
7446.635	cmplt	W	2718912	832
7446.879	cmplt	W	2719744	1024
7447.184	cmplt	W	2720768	1024
7447.581	issue	R	2202880	512
7454.113	cmplt	R	2202880	512
7454.204	issue	W	2721792	1024
7454.265	issue	W	2722816	1024
7454.296	issue	W	2723840	1024
7454.326	issue	W	2724864	1024
7454.540	queue	R	2203392	256
7455.089	queue	R	2203648	256
7456.188	issue	R	2203392	512
7529.162	cmplt	W	2721792	1024
7529.498	cmplt	W	2722816	1024
7529.803	cmplt	W	2723840	1024
7530.139	cmplt	W	2724864	1024
7530.475	issue	R	948984	8
7534.168	cmplt	R	2203392	512
7534.351	cmplt	R	948984	8
7534.473	issue	W	2725888	1024
7534.534	queue	R	2203904	256
7534.992	queue	R	2204160	256
7535.327	queue	R	948864	32
7535.358	queue	R	948928	56
7535.419	queue	R	948992	128
7560.964	cmplt	W	2725888	1024
7561.361	issue	R	2203904	512
7561.666	issue	R	948864	32
7568.015	cmplt	R	2203904	512
7568.045	issue	R	948928	56
7568.381	queue	R	2204416	256
7568.564	cmplt	R	948864	32
7568.595	issue	R	948992	128
7568.747	queue	R	2204672	256
7569.388	cmplt	R	948928	56
7569.449	issue	R	2204416	512
7571.067	cmplt	R	948992	128
7577.354	cmplt	R	2204416	512
7577.568	issue	W	2726912	1024
7577.842	queue	R	2204928	256
7578.269	queue	R	2205184	256
7583.580	queue	R	949120	456
7603.998	cmplt	W	2726912	1024
7604.395	issue	R	2204928	512
7604.700	issue	R	949120	456
7610.957	cmplt	R	2204928	512
7611.323	queue	R	2205440	256
7611.689	queue	R	2205696	256
7616.420	cmplt	R	949120	456
7616.512	issue	R	2205440	512
7623.134	cmplt	R	2205440	512
7623.318	issue	W	2727936	1024
7623.623	queue	R	2205952	256
7624.020	queue	R	2206208	256
7638.944	queue	R	946928	16
7649.931	cmplt	W	2727936	1024
7650.328	issue	R	2205952	512
7650.664	issue	R	946928	16
7656.890	cmplt	R	2205952	512
7657.165	cmplt	R	946928	16
7657.256	issue	W	2728960	1024
7657.287	queue	R	2206464	256
7657.745	queue	R	2206720	256
7663.269	queue	R	946920	8
7683.595	cmplt	W	2728960	1024
7684.023	issue	R	2206464	512
7684.358	issue	R	946920	8
7690.707	cmplt	R	2206464	512
7690.890	cmplt	R	946920	8
7690.981	issue	W	2729984	1024
7691.103	queue	R	2206976	256
7691.531	queue	R	2207232	256
7717.381	cmplt	W	2729984	1024
7717.778	issue	R	2206976	512
7724.401	cmplt	R	2206976	512
7724.554	issue	W	2731008	1024
7724.889	queue	R	2207488	256
7725.286	queue	R	2207744	256
7746.040	queue	R	946896	24
7750.801	cmplt	W	2731008	1024
7751.198	issue	R	2207488	512
7757.668	cmplt	R	2207488	512
7757.821	issue	W	2732032	1024
7757.851	issue	W	2733056	1024
7758.126	queue	R	2208000	256
7758.675	queue	R	2208256	256
7800.397	cmplt	W	2732032	1024
7800.732	cmplt	W	2733056	1024
7801.068	issue	R	2208000	512
7807.508	cmplt	R	2208000	512
7807.661	issue	R	946896	24
7807.874	queue	R	2208512	256
7808.241	queue	R	2208768	256
7808.302	cmplt	R	946896	24
7810.102	issue	R	2208512	512
7816.695	cmplt	R	2208512	512
7817.122	queue	R	2209024	256
7817.488	queue	R	2209280	256
7817.549	issue	R	2209024	512
7824.081	cmplt	R	2209024	512
7824.508	queue	R	2209536	256
7824.874	queue	R	2209792	256
7824.935	issue	R	2209536	512
7831.467	cmplt	R	2209536	512
7831.894	queue	R	2210048	256
7832.230	queue	R	2210304	256
7832.291	issue	R	2210048	512
7838.791	cmplt	R	2210048	512
7839.249	queue	R	2210560	256
7839.585	queue	R	2210816	256
7839.646	issue	R	2210560	512
7846.177	cmplt	R	2210560	512
7846.605	queue	R	2211072	256
7846.971	queue	R	2211328	256
7847.032	issue	R	2211072	512
7853.563	cmplt	R	2211072	512
7853.991	queue	R	2211584	256
7854.326	queue	R	2211840	256
7854.387	issue	R	2211584	512
7860.980	cmplt	R	2211584	512
7861.407	queue	R	2212096	256
7861.773	queue	R	2212352	256
7861.834	issue	R	2212096	512
7868.335	cmplt	R	2212096	512
7868.762	queue	R	2212608	256
7869.129	queue	R	2212864	256
7869.190	issue	R	2212608	512
7875.691	cmplt	R	2212608	512
7876.148	queue	R	2213120	256
7876.545	queue	R	2213376	256
7876.606	issue	R	2213120	512
7883.168	cmplt	R	2213120	512
7883.290	issue	W	2734080	1024
7883.321	issue	W	2735104	1024
7883.351	issue	W	2736128	1024
7885.243	queue	R	2213632	256
7885.701	queue	R	2213888	256
7892.507	queue	R	987240	8
7949.061	cmplt	W	2734080	1024
7949.397	cmplt	W	2735104	1024
7949.733	cmplt	W	2736128	1024
7950.130	issue	R	2213632	512
7950.465	issue	R	987240	8
7956.722	cmplt	R	2213632	512
7956.936	cmplt	R	987240	8
7957.027	issue	W	2737152	1024
7957.058	issue	W	2738176	1024
7957.088	issue	W	2739200	1024
7957.088	issue	W	2740224	1024
7957.088	queue	R	2214144	256
7957.607	queue	R	2214400	256
7957.912	queue	R	987152	8
7957.943	queue	R	987176	8
7957.973	queue	R	987232	8
7958.950	issue	R	2214144	512
8031.985	cmplt	W	2737152	1024
8032.321	cmplt	W	2738176	1024
8032.626	cmplt	W	2739200	1024
8032.901	cmplt	W	2740224	1024
8033.267	issue	R	987152	8
8037.082	cmplt	R	2214144	512
8037.143	issue	R	987176	8
8037.357	cmplt	R	987152	8
8037.387	issue	R	987232	8
8037.448	queue	R	2214656	256
8037.662	cmplt	R	987176	8
8037.723	issue	R	2214656	256
8037.876	queue	R	2214912	256
8037.967	cmplt	R	987232	8
8037.998	issue	R	2214912	256
8038.303	queue	R	1098664	8
8041.325	cmplt	R	2214656	256
8041.386	issue	R	1098664	8
8041.691	queue	R	2215168	256
8044.468	cmplt	R	2214912	256
8044.743	cmplt	R	1098664	8
8044.834	queue	R	2215424	256
8044.865	issue	R	2215168	256
8045.048	issue	R	2215424	256
8045.201	queue	R	1087552	8
8048.405	cmplt	R	2215168	256
8048.772	queue	R	2215680	256
8051.488	cmplt	R	2215424	256
8051.579	issue	R	2215680	256
8051.854	queue	R	2215936	256
8054.967	cmplt	R	2215680	256
8055.059	issue	R	2215936	256
8055.333	queue	R	2216192	256
8058.416	cmplt	R	2215936	256
8058.508	issue	R	2216192	256
8058.813	queue	R	2216448	256
8061.865	cmplt	R	2216192	256
8061.956	issue	R	2216448	256
8062.231	queue	R	2216704	256
8065.344	cmplt	R	2216448	256
8065.436	issue	R	2216704	256
8065.710	queue	R	2216960	256
8068.793	cmplt	R	2216704	256
8068.884	issue	R	2216960	256
8069.190	queue	R	2217216	256
8072.242	cmplt	R	2216960	256
8072.333	issue	R	2217216	256
8072.638	queue	R	2217472	256
8075.721	cmplt	R	2217216	256
8075.813	issue	R	2217472	256
8076.087	queue	R	2217728	256
8079.170	cmplt	R	2217472	256
8079.261	issue	R	2217728	256
8079.567	queue	R	2217984	256
8082.649	cmplt	R	2217728	256
8082.741	issue	R	2217984	256
8083.015	queue	R	2218240	256
8086.098	cmplt	R	2217984	256
8086.190	issue	R	2218240	256
8086.495	queue	R	2218496	256
8089.577	cmplt	R	2218240	256
8089.669	issue	R	2218496	256
8089.944	queue	R	2218752	256
8093.026	cmplt	R	2218496	256
8093.118	issue	R	2218752	256
8093.423	queue	R	2219008	256
8096.505	cmplt	R	2218752	256
8096.597	issue	R	2219008	256
8096.872	queue	R	2219264	256
8099.954	cmplt	R	2219008	256
8100.046	issue	R	2219264	256
8100.351	queue	R	2219520	256
8103.403	cmplt	R	2219264	256
8103.495	issue	R	2219520	256
8103.800	queue	R	2219776	256
8106.882	cmplt	R	2219520	256
8106.974	issue	R	2219776	256
8107.249	queue	R	2220032	256
8110.331	cmplt	R	2219776	256
8110.423	issue	R	2220032	256
8110.728	queue	R	2220288	256
8113.810	cmplt	R	2220032	256
8113.902	issue	R	2220288	256
8114.177	queue	R	2220544	256
8117.259	cmplt	R	2220288	256
8117.351	issue	R	2220544	256
8117.626	queue	R	2220800	256
8120.708	cmplt	R	2220544	256
8120.800	issue	R	2220800	256
8121.074	queue	R	2221056	256
8124.187	cmplt	R	2220800	256
8124.279	issue	R	2221056	256
8124.554	queue	R	2221312	256
8127.636	cmplt	R	2221056	256
8127.728	issue	R	2221312	256
8128.033	queue	R	2221568	256
8131.116	cmplt	R	2221312	256
8131.207	issue	R	2221568	256
8131.482	queue	R	2221824	256
8134.564	cmplt	R	2221568	256
8134.656	issue	R	2221824	256
8134.931	queue	R	2222080	256
8138.013	cmplt	R	2221824	256
8138.105	issue	R	2222080	256
8138.379	queue	R	2222336	256
8141.492	cmplt	R	2222080	256
8141.615	issue	W	2741248	1024
8141.676	issue	W	2742272	1024
8141.706	issue	W	2743296	1024
8141.706	issue	W	2744320	1024
8141.859	queue	R	2222592	256
8216.450	cmplt	W	2741248	1024
8216.786	cmplt	W	2742272	1024
8217.122	cmplt	W	2743296	1024
8217.427	cmplt	W	2744320	1024
8217.824	issue	W	2745344	1024
8217.854	issue	W	2746368	1024
8217.885	issue	W	2747392	1024
8217.885	issue	W	2748416	1024
8217.915	issue	W	2749440	1024
8308.805	cmplt	W	2745344	1024
8309.141	cmplt	W	2746368	1024
8309.477	cmplt	W	2747392	1024
8309.751	cmplt	W	2748416	1024
8310.118	cmplt	W	2749440	1024
8310.453	issue	R	1087552	8
8310.881	cmplt	R	1087552	8
8310.972	issue	R	2222336	512
8312.223	queue	R	1087488	16
8312.254	queue	R	1087536	16
8317.564	cmplt	R	2222336	512
8317.748	issue	R	1087488	16
8317.809	issue	R	1087536	16
8317.961	queue	R	2222848	256
8318.327	queue	R	2223104	256
8318.389	cmplt	R	1087488	16
8318.724	cmplt	R	1087536	16
8318.816	issue	R	2222848	512
8325.500	cmplt	R	2222848	512
8325.622	issue	W	2750464	384
8326.232	queue	R	2223360	256
8326.660	queue	R	2223616	256
8326.812	queue	R	988672	8
8340.546	cmplt	W	2750464	384
8340.760	issue	R	2223360	512
8340.760	queue	WS	1845504	8
8341.401	queue	W	2750848	1024
8342.835	queue	W	2751872	640
8347.352	cmplt	R	2223360	512
8347.810	queue	R	2223872	256
8348.207	queue	R	2224128	256
8348.268	issue	WS	1845504	8
8348.298	issue	R	2223872	512
8348.298	queue	R	2223872	512
8348.360	issue	R	2223872	512
8349.947	cmplt	WS	1845504	8
8356.295	cmplt	R	2223872	512
8356.753	queue	R	2224384	256
8357.149	queue	R	2224640	256
8357.241	issue	R	2224384	512
8358.279	queue	W	2752512	1024
8358.797	queue	W	2753536	1024
8359.286	queue	W	2754560	1024
8359.835	queue	W	2755584	1024
8360.354	queue	W	2756608	1024
8360.842	queue	W	2757632	1024
8361.361	queue	W	2758656	1024
8361.880	queue	W	2759680	1024
8362.399	queue	W	2760704	1024
8362.887	queue	W	2761728	1024
8363.376	queue	W	2762752	1024
8363.742	cmplt	R	2224384	512
8364.200	queue	R	2224896	256
8364.596	queue	R	2225152	256
8364.657	issue	R	2224896	512
8365.481	queue	W	2763776	1024
8366.000	queue	W	2764800	1024
8366.489	queue	W	2765824	1024
8366.977	queue	W	2766848	1024
8367.465	queue	W	2767872	1024
8369.663	queue	W	2768896	1024
8370.212	queue	W	2769920	1024
8370.670	queue	W	2770944	1024
8371.189	cmplt	R	2224896	512
8371.311	issue	R	988672	8
8371.830	queue	R	2225408	256
8372.226	queue	R	2225664	256
8372.257	cmplt	R	988672	8
8372.349	issue	W	2750848	1024
8372.532	queue	R	988624	48
8373.264	queue	W	2771968	1024
8373.783	queue	W	2772992	1024
8374.454	queue	W	2774016	1024
8374.973	queue	W	2775040	1024
8375.492	queue	W	2776064	1024
8376.011	queue	W	2777088	1024
8376.499	queue	W	2778112	1024
8377.018	queue	W	2779136	1024
8377.568	queue	W	2780160	1024
8378.086	queue	W	2781184	1024
8378.575	queue	W	2782208	1024
8379.094	queue	W	2783232	1024
8379.612	queue	W	2784256	1024
8380.955	queue	W	2785280	1024
8381.444	queue	W	2786304	1024
8381.901	queue	W	2787328	1024
8382.420	queue	W	2788352	1024
8382.909	queue	W	2789376	1024
8383.397	queue	W	2790400	1024
8383.702	queue	W	2791424	576
8402.625	cmplt	W	2750848	1024
8402.991	issue	R	988624	48
8403.937	cmplt	R	988624	48
8404.029	issue	R	2225408	512
8404.212	queue	R	1016248	24
8410.682	cmplt	R	2225408	512
8410.835	issue	R	1016248	24
8411.293	queue	R	2225920	256
8411.750	queue	R	2226176	256
8411.811	cmplt	R	1016248	24
8411.933	issue	R	2225920	512
8412.361	queue	R	1092648	8
8418.587	cmplt	R	2225920	512
8419.045	queue	R	2226432	256
8419.503	queue	R	2226688	256
8419.564	issue	R	2226432	512
8426.125	cmplt	R	2226432	512
8426.614	queue	R	2226944	256
8427.011	queue	R	2227200	256
8427.072	issue	R	2226944	512
8433.603	cmplt	R	2226944	512
8434.091	queue	R	2227456	256
8434.488	queue	R	2227712	256
8434.549	issue	R	2227456	512
8441.080	cmplt	R	2227456	512
8441.538	queue	R	2227968	256
8441.935	queue	R	2228224	256
8441.996	issue	R	2227968	512
8448.588	cmplt	R	2227968	512
8449.077	queue	R	2228480	256
8449.474	queue	R	2228736	256
8449.535	issue	R	2228480	512
8456.096	cmplt	R	2228480	512
8456.554	queue	R	2228992	256
8456.951	queue	R	2229248	256
8457.043	issue	R	2228992	512
8463.574	cmplt	R	2228992	512
8464.032	queue	R	2229504	256
8464.459	queue	R	2229760	256
8464.520	issue	R	2229504	512
8471.082	cmplt	R	2229504	512
8471.540	queue	R	2230016	256
8471.937	queue	R	2230272	256
8471.998	issue	R	2230016	512
8478.559	cmplt	R	2230016	512
8479.048	queue	R	2230528	256
8479.414	queue	R	2230784	256
8479.475	issue	R	2230528	512
8484.725	queue	W	2792000	1024
8485.152	queue	W	2793024	1024
8485.549	queue	W	2794048	1024
8485.976	cmplt	R	2230528	512
8486.098	queue	W	2795072	1024
8486.403	queue	R	2231040	256
8486.769	queue	R	2231296	256
8486.830	issue	R	2231040	512
8490.066	queue	W	2796096	1024
8490.523	queue	W	2797120	1024
8490.981	queue	W	2798144	1024
8491.409	queue	W	2799168	1024
8491.836	queue	W	2800192	1024
8492.599	queue	W	2801216	448
8493.331	cmplt	R	2231040	512
8493.759	queue	R	2231552	256
8494.125	queue	R	2231808	256
8494.216	issue	R	2231552	512
8494.705	queue	W	2801664	1024
8495.132	queue	W	2802688	1024
8495.559	queue	W	2803712	1024
8495.956	queue	W	2804736	1024
8496.383	queue	W	2805760	1024
8496.780	queue	W	2806784	1024
8497.207	queue	W	2807808	1024
8497.604	queue	W	2808832	1024
8498.031	queue	W	2809856	1024
8498.459	queue	W	2810880	1024
8498.855	queue	W	2811904	1024
8499.252	queue	W	2812928	1024
8499.649	queue	W	2813952	1024
8500.717	cmplt	R	2231552	512
8501.145	queue	R	2232064	256
8501.541	queue	R	2232320	256
8501.602	issue	R	2232064	512
8508.164	cmplt	R	2232064	512
8508.622	queue	R	2232576	256
8509.049	queue	R	2232832	256
8509.110	issue	R	2232576	512
8510.118	queue	W	2814976	1024
8510.606	queue	W	2816000	1024
8511.033	queue	W	2817024	1024
8512.925	queue	W	2818048	1024
8513.353	queue	W	2819072	1024
8513.749	queue	W	2820096	1024
8514.146	queue	W	2821120	1024
8514.512	queue	W	2822144	1024
8514.940	queue	W	2823168	1024
8515.336	queue	W	2824192	1024
8515.642	cmplt	R	2232576	512
8515.916	queue	W	2825216	1024
8516.069	queue	R	2233088	256
8516.435	queue	R	2233344	256
8516.435	queue	W	2826240	1024
8516.496	issue	W	2751872	640
8516.527	issue	W	2752512	1024
8517.137	queue	W	2827264	1024
8517.564	queue	W	2828288	1024
8517.992	queue	W	2829312	1024
8518.389	queue	W	2830336	1024
8518.816	queue	W	2831360	1024
8519.090	queue	W	2832384	640
8564.841	cmplt	W	2751872	640
8565.054	cmplt	W	2752512	1024
8565.390	issue	W	2753536	1024
8565.451	issue	W	2754560	1024
8608.088	cmplt	W	2753536	1024
8608.393	cmplt	W	2754560	1024
8608.698	issue	R	1092648	8
8609.126	cmplt	R	1092648	8
8609.217	issue	R	2233088	512
8609.461	queue	R	1092496	40
8609.492	queue	R	1092592	8
8609.522	queue	R	1092624	24
8615.779	cmplt	R	2233088	512
8616.206	queue	R	2233600	256
8616.573	queue	R	2233856	256
8616.634	issue	R	2233600	512
8623.073	cmplt	R	2233600	512
8623.470	queue	R	2234112	256
8623.836	queue	R	2234368	256
8623.897	issue	R	2234112	512
8630.368	cmplt	R	2234112	512
8630.490	issue	R	1092496	40
8630.581	issue	R	1092592	8
8630.978	queue	R	2234624	256
8631.375	queue	R	2234880	256
8631.467	cmplt	R	1092496	40
8631.497	issue	R	1092624	24
8631.741	cmplt	R	1092592	8
8632.168	cmplt	R	1092624	24
8632.321	issue	R	2234624	512
8632.382	queue	R	988704	8
8638.913	cmplt	R	2234624	512
8639.036	issue	R	988704	8
8639.493	queue	R	2235136	256
8639.860	queue	R	2235392	256
8639.921	cmplt	R	988704	8
8640.043	issue	R	2235136	512
8640.531	queue	R	988688	16
8646.666	cmplt	R	2235136	512
8646.788	issue	R	988688	16
8647.215	queue	R	2235648	256
8647.612	queue	R	2235904	256
8647.642	cmplt	R	988688	16
8647.734	issue	R	2235648	512
8648.772	queue	R	1092384	112
8654.326	cmplt	R	2235648	512
8654.448	issue	R	1092384	112
8654.906	queue	R	2236160	256
8655.272	queue	R	2236416	256
8656.188	cmplt	R	1092384	112
8656.280	issue	R	2236160	512
8658.630	queue	R	988416	40
8658.660	queue	R	988512	8
8662.872	cmplt	R	2236160	512
8662.994	issue	R	988416	40
8663.086	issue	R	988512	8
8663.482	queue	R	2236672	256
8663.879	queue	R	2236928	256
8663.971	cmplt	R	988416	40
8669.251	queue	R	1001896	8
8669.281	cmplt	R	988512	8
8669.373	issue	R	1001896	8
8669.739	cmplt	R	1001896	8
8669.800	issue	R	2236672	512
8670.990	queue	R	1001848	16
8671.021	queue	R	1001880	16
8676.454	cmplt	R	2236672	512
8676.576	issue	R	1001848	16
8676.637	issue	R	1001880	16
8677.003	queue	R	2237184	256
8677.400	queue	R	2237440	256
8677.491	cmplt	R	1001848	16
8677.857	cmplt	R	1001880	16
8677.919	issue	R	2237184	512
8679.597	queue	R	1062664	8
8684.511	cmplt	R	2237184	512
8684.633	issue	R	1062664	8
8685.091	queue	R	2237696	256
8685.457	queue	R	2237952	256
8685.488	cmplt	R	1062664	8
8685.579	issue	R	2237696	512
8686.128	queue	R	1062528	136
8692.172	cmplt	R	2237696	512
8692.263	issue	R	1062528	136
8692.751	queue	R	2238208	256
8693.087	queue	R	2238464	256
8694.277	cmplt	R	1062528	136
8694.369	issue	R	2238208	512
8694.857	queue	R	1096392	8
8700.931	cmplt	R	2238208	512
8701.053	issue	R	1096392	8
8701.511	queue	R	2238720	256
8701.877	queue	R	2238976	256
8701.908	cmplt	R	1096392	8
8701.999	issue	R	2238720	512
8703.220	queue	R	1096312	80
8708.591	cmplt	R	2238720	512
8708.714	issue	R	1096312	80
8709.171	queue	R	2239232	256
8709.538	queue	R	2239488	256
8710.056	cmplt	R	1096312	80
8710.148	issue	R	2239232	512
8714.818	queue	R	1062248	8
8714.879	queue	R	1062264	16
8714.909	queue	R	1062288	88
8716.771	cmplt	R	2239232	512
8716.893	issue	R	1062248	8
8716.954	issue	R	1062264	16
8717.351	queue	R	2239744	256
8717.717	queue	R	2240000	256
8717.809	cmplt	R	1062248	8
8717.839	issue	R	1062288	88
8718.175	cmplt	R	1062264	16
8719.365	cmplt	R	1062288	88
8719.426	issue	R	2239744	512
8724.187	queue	R	1035096	8
8726.019	cmplt	R	2239744	512
8726.141	issue	R	1035096	8
8726.599	queue	R	2240256	256
8726.965	queue	R	2240512	256
8726.995	cmplt	R	1035096	8
8727.087	issue	R	2240256	512
8727.667	queue	R	1034960	136
8733.679	cmplt	R	2240256	512
8733.771	issue	R	1034960	136
8734.229	queue	R	2240768	256
8734.595	queue	R	2241024	256
8735.755	cmplt	R	1034960	136
8735.877	issue	R	2240768	512
8737.555	queue	R	1034872	88
8742.439	cmplt	R	2240768	512
8742.561	issue	R	1034872	88
8743.018	queue	R	2241280	256
8743.354	queue	R	2241536	256
8743.995	cmplt	R	1034872	88
8744.087	issue	R	2241280	512
8745.887	queue	R	1098656	8
8750.679	cmplt	R	2241280	512
8750.771	issue	R	1098656	8
8751.228	queue	R	2241792	256
8751.595	queue	R	2242048	256
8751.625	cmplt	R	1098656	8
8751.717	issue	R	2241792	512
8758.340	cmplt	R	2241792	512
8758.492	issue	W	2755584	1024
8759.347	queue	R	2242304	256
8759.744	queue	R	2242560	256
8761.544	queue	R	974352	8
8784.801	cmplt	W	2755584	1024
8785.137	issue	R	2242304	512
8791.607	cmplt	R	2242304	512
8792.004	queue	R	2242816	256
8792.370	queue	R	2243072	256
8792.431	issue	R	2242816	512
8798.962	cmplt	R	2242816	512
8799.329	queue	R	2243328	256
8799.695	queue	R	2243584	256
8799.756	issue	R	2243328	512
8806.257	cmplt	R	2243328	512
8806.653	queue	R	2243840	256
8807.020	queue	R	2244096	256
8807.081	issue	R	2243840	512
8813.521	cmplt	R	2243840	512
8813.917	queue	R	2244352	256
8814.284	queue	R	2244608	256
8814.345	issue	R	2244352	512
8820.876	cmplt	R	2244352	512
8821.273	queue	R	2244864	256
8821.639	queue	R	2245120	256
8821.700	issue	R	2244864	512
8828.140	cmplt	R	2244864	512
8828.537	queue	R	2245376	256
8828.903	queue	R	2245632	256
8828.964	issue	R	2245376	512
8835.434	cmplt	R	2245376	512
8835.831	queue	R	2245888	256
8836.228	queue	R	2246144	256
8836.289	issue	R	2245888	512
8842.759	cmplt	R	2245888	512
8843.156	queue	R	2246400	256
8843.522	queue	R	2246656	256
8843.583	issue	R	2246400	512
8850.023	cmplt	R	2246400	512
8850.450	queue	R	2246912	256
8850.816	queue	R	2247168	256
8850.877	issue	R	2246912	512
8857.348	cmplt	R	2246912	512
8857.745	queue	R	2247424	256
8858.111	queue	R	2247680	256
8858.172	issue	R	2247424	512
8864.612	cmplt	R	2247424	512
8865.008	queue	R	2247936	256
8865.375	queue	R	2248192	256
8865.436	issue	R	2247936	512
8871.906	cmplt	R	2247936	512
8872.303	queue	R	2248448	256
8872.669	queue	R	2248704	256
8872.730	issue	R	2248448	512
8879.170	cmplt	R	2248448	512
8879.597	queue	R	2248960	256
8879.963	queue	R	2249216	256
8880.055	issue	R	2248960	512
8886.495	cmplt	R	2248960	512
8886.892	queue	R	2249472	256
8887.258	queue	R	2249728	256
8887.319	issue	R	2249472	512
8893.759	cmplt	R	2249472	512
8894.186	queue	R	2249984	256
8894.552	queue	R	2250240	256
8894.644	issue	R	974352	8
8895.071	cmplt	R	974352	8
8895.437	queue	R	1087320	8
8895.529	issue	R	1087320	8
8895.956	cmplt	R	1087320	8
8896.475	queue	R	1087280	8
8896.505	queue	R	1087312	8
8896.566	issue	R	1087312	8
8896.627	issue	R	1087280	8
8896.933	cmplt	R	1087312	8
8897.146	cmplt	R	1087280	8
8897.360	queue	R	1087328	8
8897.391	queue	R	1087344	8
8897.452	issue	R	1087328	8
8897.513	issue	R	1087344	8
8897.818	cmplt	R	1087328	8
8898.062	cmplt	R	1087344	8
8898.459	queue	R	974288	8
8898.489	queue	R	974312	8
8898.489	queue	R	974344	8
8898.581	issue	R	974288	8
8898.642	issue	R	974312	8
8899.069	cmplt	R	974288	8
8899.741	issue	R	974344	8
8899.863	queue	R	1916928	8
8900.046	cmplt	R	974312	8
8900.076	issue	R	1916928	8
8900.320	cmplt	R	974344	8
8900.687	cmplt	R	1916928	8
8900.778	queue	WS	1916928	8
8900.839	issue	WS	1916928	8
8902.213	cmplt	WS	1916928	8
8902.487	issue	W	2756608	1024
8902.823	queue	WS	1916928	8
8929.528	cmplt	W	2756608	1024
8929.834	issue	WS	1916928	8
8931.207	cmplt	WS	1916928	8
8931.482	issue	R	2249984	512
8931.665	queue	RM	2626096	8
8932.001	issue	RM	2626096	8
8938.349	cmplt	R	2249984	512
8938.746	queue	R	2250496	256
8939.112	queue	R	2250752	256
8939.142	cmplt	RM	2626096	8
8939.264	queue	R	2626104	8
8939.325	issue	R	2626104	8
8939.661	cmplt	R	2626104	8
8939.905	issue	R	2250496	512
8946.467	cmplt	R	2250496	512
8946.895	queue	R	2251008	256
8947.261	queue	R	2251264	256
8947.444	issue	R	2251008	512
8951.564	queue	R	1912920	8
8954.006	cmplt	R	2251008	512
8954.403	queue	R	2251520	256
8954.769	queue	R	2251776	256
8954.830	issue	R	1912920	8
8954.952	issue	R	2251520	512
8955.288	cmplt	R	1912920	8
8961.483	cmplt	R	2251520	512
8961.636	issue	W	2757632	1024
8962.521	queue	R	2252032	256
8962.887	queue	R	2252288	256
8963.162	queue	WS	1912920	8
8988.463	cmplt	W	2757632	1024
8988.799	issue	R	2252032	512
8989.104	issue	WS	1912920	8
8995.452	cmplt	R	2252032	512
8995.819	queue	R	2252544	256
8996.246	queue	R	2252800	256
8996.307	issue	R	2252544	512
8996.765	cmplt	WS	1912920	8
9003.907	queue	WS	1845512	8
9003.907	queue	WS	1845520	8
9003.937	queue	WS	1845528	8
9003.937	queue	WS	1845536	8
9003.968	queue	WS	1845544	8
9003.968	queue	WS	1845552	8
9004.212	cmplt	R	2252544	512
9004.609	queue	R	2253056	256
9004.975	queue	R	2253312	256
9005.036	issue	R	2253056	512
9011.506	cmplt	R	2253056	512
9011.903	queue	R	2253568	256
9012.269	queue	R	2253824	256
9012.330	issue	R	2253568	512
9018.770	cmplt	R	2253568	512
9019.167	queue	R	2254080	256
9019.533	queue	R	2254336	256
9019.594	issue	R	2254080	512
9026.034	cmplt	R	2254080	512
9026.431	queue	R	2254592	256
9026.797	queue	R	2254848	256
9026.858	issue	R	2254592	512
9033.328	cmplt	R	2254592	512
9033.725	queue	R	2255104	256
9034.091	queue	R	2255360	256
9034.152	issue	R	2255104	512
9040.623	cmplt	R	2255104	512
9041.019	queue	R	2255616	256
9041.386	queue	R	2255872	256
9041.416	issue	R	2255616	512
9047.886	cmplt	R	2255616	512
9048.283	queue	R	2256128	256
9048.649	queue	R	2256384	256
9048.711	issue	R	2256128	512
9055.181	cmplt	R	2256128	512
9055.547	queue	R	2256640	256
9055.913	queue	R	2256896	256
9055.974	issue	R	2256640	512
9062.445	cmplt	R	2256640	512
9062.841	queue	R	2257152	256
9063.208	queue	R	2257408	256
9063.269	issue	R	2257152	512
9070.227	cmplt	R	2257152	512
9070.410	issue	W	2758656	1024
9070.716	queue	R	2257664	256
9071.143	queue	R	2257920	256
9097.482	cmplt	W	2758656	1024
9097.970	issue	R	2257664	512
9104.624	cmplt	R	2257664	512
9104.807	issue	WS	1845512	48
9105.021	queue	R	2258176	256
9105.387	queue	R	2258432	256
9121.624	cmplt	WS	1845512	48
9121.746	issue	R	2258176	512
9128.369	cmplt	R	2258176	512
9128.521	issue	W	2759680	1024
9128.857	queue	R	2258688	256
9129.315	queue	R	2258944	256
9155.318	cmplt	W	2759680	1024
9155.776	issue	R	2258688	512
9162.429	cmplt	R	2258688	512
9162.552	issue	W	2760704	1024
9163.437	queue	R	2259200	256
9163.833	queue	R	2259456	256
9189.013	cmplt	W	2760704	1024
9189.379	issue	R	2259200	512
9195.880	cmplt	R	2259200	512
9196.246	queue	R	2259712	256
9196.612	queue	R	2259968	256
9196.673	issue	R	2259712	512
9203.144	cmplt	R	2259712	512
9203.510	queue	R	2260224	256
9203.876	queue	R	2260480	256
9203.968	issue	R	2260224	512
9210.438	cmplt	R	2260224	512
9210.804	queue	R	2260736	256
9211.170	queue	R	2260992	256
9211.231	issue	R	2260736	512
9217.763	cmplt	R	2260736	512
9218.160	queue	R	2261248	256
9218.495	queue	R	2261504	256
9218.556	issue	R	2261248	512
9225.027	cmplt	R	2261248	512
9225.423	queue	R	2261760	256
9225.820	queue	R	2262016	256
9225.881	issue	R	2261760	512
9235.984	cmplt	R	2261760	512
9236.411	queue	R	2262272	256
9236.777	queue	R	2262528	256
9236.808	issue	R	2262272	512
9243.278	cmplt	R	2262272	512
9243.675	queue	R	2262784	256
9244.041	queue	R	2263040	256
9244.102	issue	R	2262784	512
9250.572	cmplt	R	2262784	512
9250.969	queue	R	2263296	256
9251.305	queue	R	2263552	256
9251.366	issue	R	2263296	512
9257.836	cmplt	R	2263296	512
9258.233	queue	R	2263808	256
9258.599	queue	R	2264064	256
9258.660	issue	R	2263808	512
9265.100	cmplt	R	2263808	512
9265.497	queue	R	2264320	256
9265.863	queue	R	2264576	256
9265.924	issue	R	2264320	512
9272.394	cmplt	R	2264320	512
9272.791	queue	R	2264832	256
9273.157	queue	R	2265088	256
9273.218	issue	R	2264832	512
9279.658	cmplt	R	2264832	512
9280.085	queue	R	2265344	256
9280.452	queue	R	2265600	256
9280.513	issue	R	2265344	512
9286.983	cmplt	R	2265344	512
9287.380	queue	R	2265856	256
9287.716	queue	R	2266112	256
9287.777	issue	R	2265856	512
9294.247	cmplt	R	2265856	512
9294.674	queue	R	2266368	256
9295.040	queue	R	2266624	256
9295.101	issue	W	2761728	1024
9321.441	cmplt	W	2761728	1024
9321.807	issue	W	2762752	1024
9321.837	issue	W	2763776	1024
9364.322	cmplt	W	2762752	1024
9364.596	cmplt	W	2763776	1024
9364.932	issue	R	2266368	512
9371.372	cmplt	R	2266368	512
9371.738	queue	R	2266880	256
9372.104	queue	R	2267136	256
9372.165	issue	R	2266880	512
9378.636	cmplt	R	2266880	512
9379.002	queue	R	2267392	256
9379.368	queue	R	2267648	256
9379.429	issue	R	2267392	512
9385.900	cmplt	R	2267392	512
9386.296	queue	R	2267904	256
9386.663	queue	R	2268160	256
9386.724	issue	R	2267904	512
9393.194	cmplt	R	2267904	512
9393.591	queue	R	2268416	256
9393.987	queue	R	2268672	256
9394.049	issue	R	2268416	512
9400.488	cmplt	R	2268416	512
9400.885	queue	R	2268928	256
9401.282	queue	R	2269184	256
9401.343	issue	R	2268928	512
9407.783	cmplt	R	2268928	512
9408.179	queue	R	2269440	256
9408.546	queue	R	2269696	256
9408.637	issue	R	2269440	512
9415.077	cmplt	R	2269440	512
9415.474	queue	R	2269952	256
9415.871	queue	R	2270208	256
9415.932	issue	R	2269952	512
9422.402	cmplt	R	2269952	512
9422.799	queue	R	2270464	256
9423.165	queue	R	2270720	256
9423.226	issue	R	2270464	512
9429.696	cmplt	R	2270464	512
9430.124	queue	R	2270976	256
9430.520	queue	R	2271232	256
9430.581	issue	R	2270976	512
9437.021	cmplt	R	2270976	512
9437.448	queue	R	2271488	256
9437.815	queue	R	2271744	256
9437.876	issue	R	2271488	512
9444.316	cmplt	R	2271488	512
9444.743	queue	R	2272000	256
9445.140	queue	R	2272256	256
9445.201	issue	R	2272000	512
9451.671	cmplt	R	2272000	512
9452.098	queue	R	2272512	256
9452.465	queue	R	2272768	256
9452.526	issue	R	2272512	512
9458.965	cmplt	R	2272512	512
9459.393	queue	R	2273024	256
9459.759	queue	R	2273280	256
9459.820	issue	R	2273024	512
9466.321	cmplt	R	2273024	512
9466.718	queue	R	2273536	256
9467.084	queue	R	2273792	256
9467.145	issue	R	2273536	512
9473.615	cmplt	R	2273536	512
9474.165	queue	R	2274048	256
9475.263	queue	R	2274304	256
9475.324	issue	R	2274048	512
9481.642	cmplt	R	2274048	512
9483.443	queue	R	2274560	256
9484.358	issue	R	2274560	256
9487.624	cmplt	R	2274560	256
9487.777	issue	W	2764800	1024
9487.838	issue	W	2765824	1024
9487.868	issue	W	2766848	1024
9490.768	queue	R	2274816	256
9491.836	queue	R	2275072	256
9547.108	cmplt	W	2764800	1024
9547.413	cmplt	W	2765824	1024
9547.780	cmplt	W	2766848	1024
9548.115	issue	R	2274816	512
9554.311	cmplt	R	2274816	512
9554.433	issue	W	2767872	1024
9554.494	issue	W	2768896	1024
9554.494	issue	W	2769920	1024
9554.525	issue	W	2770944	1024
9554.677	queue	R	2275328	256
9555.166	queue	R	2275584	256
9635.953	cmplt	W	2767872	1024
9636.319	cmplt	W	2768896	1024
9636.624	cmplt	W	2769920	1024
9636.960	cmplt	W	2770944	1024
9637.296	issue	R	2275328	512
9643.858	cmplt	R	2275328	512
9644.010	issue	W	2771968	1024
9644.071	issue	W	2772992	1024
9644.102	issue	W	2774016	1024
9644.132	issue	W	2775040	1024
9644.132	issue	W	2776064	1024
9644.255	queue	R	2275840	256
9644.804	queue	R	2276096	256
9735.205	cmplt	W	2771968	1024
9735.541	cmplt	W	2772992	1024
9735.877	cmplt	W	2774016	1024
9736.151	cmplt	W	2775040	1024
9736.487	cmplt	W	2776064	1024
9736.853	issue	R	2275840	512
9743.415	cmplt	R	2275840	512
9743.568	issue	W	2777088	1024
9743.598	issue	W	2778112	1024
9743.629	issue	W	2779136	1024
9743.659	issue	W	2780160	1024
9743.690	issue	W	2781184	1024
9743.690	issue	W	2782208	1024
9743.781	queue	R	2276352	256
9744.300	queue	R	2276608	256
9835.984	queue	R	2276608	256
9845.781	queue	R	2276608	256
9851.122	cmplt	W	2777088	1024
9851.518	cmplt	W	2778112	1024
9851.885	cmplt	W	2779136	1024
9852.251	cmplt	W	2780160	1024
9852.617	cmplt	W	2781184	1024
9853.014	cmplt	W	2782208	1024
9853.441	issue	R	2276352	512
9860.125	cmplt	R	2276352	512
9860.308	issue	W	2783232	1024
9860.613	queue	R	2276864	256
9861.010	queue	R	2277120	256
9886.617	cmplt	W	2783232	1024
9887.075	issue	R	2276864	512
9893.637	cmplt	R	2276864	512
9893.820	issue	W	2784256	1024
9894.674	queue	R	2277376	256
9895.651	queue	R	2277632	256
9920.220	cmplt	W	2784256	1024
9920.678	issue	R	2277376	512
9926.873	cmplt	R	2277376	512
9927.026	issue	W	2785280	1024
9927.911	queue	R	2277888	256
9928.888	queue	R	2278144	256
9949.397	cmplt	W	2785280	1024
9949.855	issue	R	2277888	512
9956.203	cmplt	R	2277888	512
9956.325	issue	W	2786304	1024
9956.966	queue	R	2278400	256
9957.271	queue	R	2278656	256
9988.005	cmplt	W	2786304	1024
9988.463	issue	R	2278400	512
9994.659	cmplt	R	2278400	512
9994.781	issue	W	2787328	1024
9995.056	queue	R	2278912	256
9995.422	queue	R	2279168	256
10026.522	cmplt	W	2787328	1024
10026.980	issue	R	2278912	512
10033.206	cmplt	R	2278912	512
10033.328	issue	W	2788352	1024
10033.603	queue	R	2279424	256
10033.969	queue	R	2279680	256
10065.100	cmplt	W	2788352	1024
10065.588	issue	R	2279424	512
10071.784	cmplt	R	2279424	512
10071.906	issue	W	2789376	1024
10071.937	issue	W	2790400	1024
10072.181	queue	R	2279936	256
10072.669	queue	R	2280192	256
10119.670	cmplt	W	2789376	1024
10120.037	cmplt	W	2790400	1024
10120.433	issue	R	2279936	512
10126.629	cmplt	R	2279936	512
10126.782	issue	W	2791424	576
10126.812	issue	W	2792000	1024
10127.453	queue	R	2280448	256
10127.728	queue	R	2280704	256
10169.083	cmplt	W	2791424	576
10169.297	cmplt	W	2792000	1024
10169.724	issue	R	2280448	512
10175.919	cmplt	R	2280448	512
10176.072	issue	W	2793024	1024
10176.103	issue	W	2794048	1024
10176.133	issue	W	2795072	1024
10176.286	queue	R	2280960	256
10176.774	queue	R	2281216	256
10237.021	cmplt	W	2793024	1024
10237.418	cmplt	W	2794048	1024
10237.784	cmplt	W	2795072	1024
10238.212	issue	R	2280960	512
10244.407	cmplt	R	2280960	512
10244.529	issue	W	2796096	1024
10244.560	issue	W	2797120	1024
10244.590	issue	W	2798144	1024
10244.804	queue	R	2281472	256
10245.323	queue	R	2281728	256
10305.356	cmplt	W	2796096	1024
10305.753	cmplt	W	2797120	1024
10306.119	cmplt	W	2798144	1024
10306.547	issue	R	2281472	512
10312.773	cmplt	R	2281472	512
10312.895	issue	W	2799168	1024
10312.925	issue	W	2800192	1024
10312.925	issue	W	2801216	448
10312.956	issue	W	2801664	1024
10313.170	queue	R	2281984	256
10313.688	queue	R	2282240	256
10386.083	cmplt	W	2799168	1024
10386.479	cmplt	W	2800192	1024
10386.876	cmplt	W	2801216	448
10387.029	cmplt	W	2801664	1024
10387.487	issue	R	2281984	512
10393.682	cmplt	R	2281984	512
10393.835	issue	W	2802688	1024
10393.865	issue	W	2803712	1024
10393.865	issue	W	2804736	1024
10393.896	issue	W	2805760	1024
10393.896	issue	W	2806784	1024
10393.987	queue	R	2282496	256
10394.476	queue	R	2282752	256
10490.523	cmplt	W	2802688	1024
10490.890	cmplt	W	2803712	1024
10491.256	cmplt	W	2804736	1024
10491.622	cmplt	W	2805760	1024
10492.019	cmplt	W	2806784	1024
10492.446	issue	R	2282496	512
10498.642	cmplt	R	2282496	512
10498.764	issue	W	2807808	1024
10498.794	issue	W	2808832	1024
10498.825	issue	W	2809856	1024
10498.855	issue	W	2810880	1024
10498.855	issue	W	2811904	1024
10498.886	issue	W	2812928	1024
10498.947	queue	R	2283008	256
10499.435	queue	R	2283264	256
10611.354	cmplt	W	2807808	1024
10611.750	cmplt	W	2808832	1024
10612.117	cmplt	W	2809856	1024
10612.483	cmplt	W	2810880	1024
10612.880	cmplt	W	2811904	1024
10613.246	cmplt	W	2812928	1024
10613.673	issue	R	2283008	512
10619.808	cmplt	R	2283008	512
10619.930	issue	W	2813952	1024
10620.266	queue	R	2283520	256
10620.601	queue	R	2283776	256
10665.558	cmplt	W	2813952	1024
10666.016	issue	R	2283520	512
10672.150	cmplt	R	2283520	512
10672.272	issue	W	2814976	1024
10672.577	queue	R	2284032	256
10672.913	queue	R	2284288	256
10704.441	cmplt	W	2814976	1024
10704.899	issue	R	2284032	512
10711.094	cmplt	R	2284032	512
10711.216	issue	W	2816000	1024
10711.521	queue	R	2284544	256
10711.857	queue	R	2284800	256
10743.507	cmplt	W	2816000	1024
10743.965	issue	R	2284544	512
10750.130	cmplt	R	2284544	512
10750.252	issue	W	2817024	1024
10750.526	queue	R	2285056	256
10750.893	queue	R	2285312	256
10784.038	cmplt	W	2817024	1024
10784.526	issue	R	2285056	512
10790.661	cmplt	R	2285056	512
10790.813	issue	W	2818048	1024
10791.332	queue	R	2285568	256
10791.637	queue	R	2285824	256
10812.574	cmplt	W	2818048	1024
10813.032	issue	R	2285568	512
10819.197	cmplt	R	2285568	512
10819.319	issue	W	2819072	1024
10819.350	issue	W	2820096	1024
10819.594	queue	R	2286080	256
10820.113	queue	R	2286336	256
10867.267	cmplt	W	2819072	1024
10867.694	cmplt	W	2820096	1024
10868.121	issue	R	2286080	512
10874.256	cmplt	R	2286080	512
10874.378	issue	W	2821120	1024
10874.409	issue	W	2822144	1024
10874.958	queue	R	2286592	256
10875.324	queue	R	2286848	256
10922.265	cmplt	W	2821120	1024
10922.661	cmplt	W	2822144	1024
10923.058	issue	R	2286592	512
10929.254	cmplt	R	2286592	512
10929.376	issue	W	2823168	1024
10929.406	issue	W	2824192	1024
10929.437	issue	W	2825216	1024
10929.651	queue	R	2287104	256
10930.200	queue	R	2287360	256
10993.499	cmplt	W	2823168	1024
10993.865	cmplt	W	2824192	1024
10994.262	cmplt	W	2825216	1024
10994.689	issue	R	2287104	512
11000.855	cmplt	R	2287104	512
11000.977	issue	W	2826240	1024
11001.007	issue	W	2827264	1024
11001.038	issue	W	2828288	1024
11001.282	queue	R	2287616	256
11002.197	queue	R	2287872	256
11064.947	cmplt	W	2826240	1024
11065.375	cmplt	W	2827264	1024
11065.741	cmplt	W	2828288	1024
11066.168	issue	R	2287616	512
11072.425	cmplt	R	2287616	512
11072.547	issue	W	2829312	1024
11072.577	issue	W	2830336	1024
11072.608	issue	W	2831360	1024
11072.608	issue	W	2832384	640
11072.791	queue	R	2288128	256
11073.279	queue	R	2288384	256
11147.780	cmplt	W	2829312	1024
11148.115	cmplt	W	2830336	1024
11148.451	cmplt	W	2831360	1024
11148.787	cmplt	W	2832384	640
11149.061	issue	R	2288128	512
11149.092	queue	WS	1845560	8
11155.227	cmplt	R	2288128	512
11155.318	issue	WS	1845560	8
11155.562	queue	R	2288640	256
11155.837	queue	R	2288896	256
11156.844	cmplt	WS	1845560	8
11156.905	issue	R	2288640	512
11163.223	cmplt	R	2288640	512
11163.528	queue	R	2289152	256
11163.620	issue	R	2289152	256
11163.864	queue	R	2289408	256
11167.099	cmplt	R	2289152	256
11167.191	issue	R	2289408	256
11167.465	queue	R	2289664	256
11170.670	cmplt	R	2289408	256
11170.792	issue	R	2289664	256
11171.067	queue	R	2289920	256
11174.271	cmplt	R	2289664	256
11174.363	issue	R	2289920	256
11174.668	queue	R	2290176	256
11177.873	cmplt	R	2289920	256
11177.964	issue	R	2290176	256
11178.269	queue	R	2290432	256
11181.474	cmplt	R	2290176	256
11181.566	issue	R	2290432	256
11181.871	queue	R	2290688	256
11185.076	cmplt	R	2290432	256
11185.198	issue	R	2290688	256
11185.472	queue	R	2290944	256
11188.677	cmplt	R	2290688	256
11188.799	issue	R	2290944	256
11189.074	queue	R	2291200	256
11192.248	cmplt	R	2290944	256
11192.370	issue	R	2291200	256
11192.645	queue	R	2291456	256
11195.819	cmplt	R	2291200	256
11195.941	issue	R	2291456	256
11196.215	queue	R	2291712	256
11199.420	cmplt	R	2291456	256
11199.512	issue	R	2291712	256
11199.817	queue	R	2291968	256
11202.991	cmplt	R	2291712	256
11203.113	issue	R	2291968	256
11203.388	queue	R	2292224	256
11206.531	cmplt	R	2291968	256
11206.653	issue	R	2292224	256
11206.928	queue	R	2292480	256
11210.102	cmplt	R	2292224	256
11210.224	issue	R	2292480	256
11210.530	queue	R	2292736	256
11213.673	cmplt	R	2292480	256
11213.795	issue	R	2292736	256
11214.070	queue	R	2292992	256
11217.275	cmplt	R	2292736	256
11217.397	issue	R	2292992	256
11217.671	queue	R	2293248	256
11220.784	cmplt	R	2292992	256
11220.906	issue	R	2293248	256
11221.181	queue	R	2293504	256
11221.669	queue	W	1835016	8
11221.669	queue	W	1835696	8
11221.700	queue	W	2621960	8
11221.731	queue	W	2621984	8
11224.325	cmplt	R	2293248	256
11224.447	issue	R	2293504	256
11224.722	queue	R	2293760	256
11227.865	cmplt	R	2293504	256
11227.987	issue	R	2293760	256
11228.262	queue	R	2294016	256
11231.589	cmplt	R	2293760	256
11231.680	issue	R	2294016	256
11231.985	queue	R	2294272	256
11235.098	cmplt	R	2294016	256
11235.190	issue	R	2294272	256
11235.465	queue	R	2294528	256
11238.578	cmplt	R	2294272	256
11238.700	issue	R	2294528	256
11238.975	queue	R	2294784	256
11242.088	cmplt	R	2294528	256
11242.210	issue	R	2294784	256
11242.484	queue	R	2295040	256
11245.597	cmplt	R	2294784	256
11245.720	issue	R	2295040	256
11245.994	queue	R	2295296	256
11249.107	cmplt	R	2295040	256
11249.229	issue	R	2295296	256
11249.504	queue	R	2295552	256
11252.617	cmplt	R	2295296	256
11252.770	issue	W	2621960	8
11252.831	issue	W	2621984	8
11252.861	issue	W	1835016	8
11252.892	issue	W	1835696	8
11253.014	queue	R	2295808	256
11257.134	cmplt	W	2621960	8
11257.165	cmplt	W	2621984	8
11257.195	cmplt	W	1835016	8
11257.226	cmplt	W	1835696	8
11257.287	issue	R	2295552	512
11257.836	queue	W	2833024	1024
11259.118	queue	W	2834048	384
11263.910	cmplt	R	2295552	512
11264.093	issue	W	2833024	1024
11264.154	issue	W	2834048	384
11264.398	queue	R	2296064	256
11264.856	queue	R	2296320	256
11265.497	queue	W	2834432	1024
11265.924	queue	W	2835456	1024
11266.351	queue	W	2836480	1024
11266.809	queue	W	2837504	1024
11267.206	queue	W	2838528	1024
11267.633	queue	W	2839552	1024
11268.060	queue	W	2840576	1024
11268.488	queue	W	2841600	1024
11268.915	queue	W	2842624	1024
11269.312	queue	W	2843648	1024
11269.770	queue	W	2844672	1024
11270.227	queue	W	2845696	1024
11270.685	queue	W	2846720	1024
11271.112	queue	W	2847744	1024
11271.540	queue	W	2848768	1024
11271.967	queue	W	2849792	1024
11274.012	queue	W	2850816	1024
11274.439	queue	W	2851840	1024
11274.866	queue	W	2852864	1024
11275.477	queue	W	2853888	1024
11275.904	queue	W	2854912	1024
11276.301	queue	W	2855936	1024
11276.759	queue	W	2856960	1024
11277.186	queue	W	2857984	1024
11277.613	queue	W	2859008	1024
11278.041	queue	W	2860032	1024
11278.468	queue	W	2861056	1024
11278.895	queue	W	2862080	1024
11279.353	queue	W	2863104	1024
11279.780	queue	W	2864128	1024
11296.444	cmplt	W	2833024	1024
11296.750	cmplt	W	2834048	384
11296.902	issue	R	2296064	512
11300.168	queue	R	2296064	512
11303.556	cmplt	R	2296064	512
11303.739	issue	W	2834432	1024
11303.800	issue	W	2835456	1024
11303.830	issue	W	2836480	1024
11303.830	issue	W	2837504	1024
11303.861	issue	W	2838528	1024
11303.861	issue	W	2839552	1024
11303.952	queue	R	2296576	256
11304.471	queue	R	2296832	256
11304.960	queue	W	2865152	1024
11305.814	queue	W	2866176	1024
11307.065	queue	W	2867200	1024
11307.493	queue	W	2868224	1024
11307.951	queue	W	2869248	1024
11308.378	queue	W	2870272	1024
11308.775	queue	W	2871296	1024
11309.202	queue	W	2872320	1024
11309.538	queue	W	2873344	704
11311.369	queue	W	2874048	1024
11311.857	queue	W	2875072	1024
11312.284	queue	W	2876096	1024
11312.803	queue	W	2877120	1024
11313.200	queue	W	2878144	1024
11313.658	queue	W	2879168	1024
11314.085	queue	W	2880192	1000
11405.402	cmplt	W	2834432	1024
11405.707	cmplt	W	2835456	1024
11405.951	cmplt	W	2836480	1024
11406.196	cmplt	W	2837504	1024
11406.440	cmplt	W	2838528	1024
11406.684	cmplt	W	2839552	1024
11407.020	issue	R	2296576	512
11413.582	cmplt	R	2296576	512
11413.765	issue	W	2840576	1024
11413.826	issue	W	2841600	1024
11413.856	issue	W	2842624	1024
11413.856	issue	W	2843648	1024
11413.887	issue	W	2844672	1024
11413.887	issue	W	2845696	1024
11413.917	issue	W	2846720	1024
11413.917	issue	W	2847744	1024
11413.978	queue	R	2297088	256
11414.497	queue	R	2297344	256
11443.339	queue	W	2881192	1024
11443.766	queue	W	2882216	1024
11444.346	queue	W	2883240	344
11444.834	queue	R	2883584	8
11557.546	cmplt	W	2840576	1024
11557.851	cmplt	W	2841600	1024
11558.096	cmplt	W	2842624	1024
11558.340	cmplt	W	2843648	1024
11558.584	cmplt	W	2844672	1024
11558.828	cmplt	W	2845696	1024
11559.072	cmplt	W	2846720	1024
11559.286	cmplt	W	2847744	1024
11559.591	issue	R	2297088	512
11565.787	cmplt	R	2297088	512
11565.939	issue	W	2848768	1024
11566.244	queue	R	2297600	256
11566.580	queue	R	2297856	256
11598.443	cmplt	W	2848768	1024
11598.779	issue	R	2297600	512
11604.944	cmplt	R	2297600	512
11605.097	issue	R	2883584	8
11605.280	queue	R	2298112	256
11605.524	cmplt	R	2883584	8
11605.616	issue	R	2298112	256
11605.616	queue	R	2298368	256
11605.707	issue	R	2298368	256
11606.318	queue	W	2899968	1024
11606.776	queue	W	2900992	1024
11607.233	queue	W	2902016	1024
11607.661	queue	W	2903040	1024
11608.088	queue	W	2904064	1024
11608.424	queue	W	2905088	680
11609.034	cmplt	R	2298112	256
11609.370	queue	R	2298624	256
11612.117	cmplt	R	2298368	256
11612.208	issue	R	2298624	256
11612.452	queue	R	2298880	256
11615.474	cmplt	R	2298624	256
11615.565	issue	R	2298880	256
11615.779	queue	R	2299136	256
11618.862	cmplt	R	2298880	256
11618.953	issue	R	2299136	256
11619.167	queue	R	2299392	256
11622.219	cmplt	R	2299136	256
11622.310	issue	R	2299392	256
11622.524	queue	R	2299648	256
11625.576	cmplt	R	2299392	256
11625.668	issue	R	2299648	256
11625.881	queue	R	2299904	256
11628.903	cmplt	R	2299648	256
11629.025	issue	R	2299904	256
11629.208	queue	R	2300160	256
11632.260	cmplt	R	2299904	256
11632.352	issue	R	2300160	256
11632.565	queue	R	2300416	256
11635.556	cmplt	R	2300160	256
11635.648	issue	R	2300416	256
11635.861	queue	R	2300672	256
11638.883	cmplt	R	2300416	256
11638.975	issue	R	2300672	256
11639.188	queue	R	2300928	256
11641.935	queue	W	2905768	1024
11642.240	cmplt	R	2300672	256
11642.332	issue	R	2300928	256
11642.545	queue	R	2301184	256
11642.698	queue	W	2906792	1024
11643.125	queue	W	2907816	1024
11643.553	queue	W	2908840	1024
11643.980	queue	W	2909864	1024
11644.407	queue	W	2910888	1024
11644.834	queue	W	2911912	1024
11645.292	queue	W	2912936	1024
11645.536	cmplt	R	2300928	256
11645.628	issue	R	2301184	256
11645.842	queue	R	2301440	256
11648.863	cmplt	R	2301184	256
11648.955	issue	R	2301440	256
11649.168	queue	R	2301696	256
11649.382	queue	W	2913960	1024
11649.840	queue	W	2914984	1024
11652.190	cmplt	R	2301440	256
11652.281	issue	R	2301696	256
11652.495	queue	R	2301952	256
11653.044	queue	W	2916008	344
11654.906	queue	W	2916352	1024
11655.333	queue	W	2917376	1024
11655.517	cmplt	R	2301696	256
11655.608	issue	R	2301952	256
11655.822	queue	R	2302208	256
11658.874	cmplt	R	2301952	256
11658.965	issue	R	2302208	256
11659.179	queue	R	2302464	256
11659.484	queue	W	2918400	1024
11659.942	queue	W	2919424	1024
11660.400	queue	W	2920448	1024
11660.827	queue	W	2921472	1024
11661.285	queue	W	2922496	1024
11661.712	queue	W	2923520	1024
11662.139	queue	W	2924544	1024
11662.170	cmplt	R	2302208	256
11662.262	issue	R	2302464	256
11662.475	queue	R	2302720	256
11665.527	cmplt	R	2302464	256
11665.619	issue	R	2302720	256
11665.832	queue	R	2302976	256
11666.229	queue	W	2925568	1024
11666.687	queue	W	2926592	1024
11667.114	queue	W	2927616	1024
11667.725	queue	W	2928640	1024
11668.152	queue	W	2929664	1024
11668.610	queue	W	2930688	1024
11668.823	cmplt	R	2302720	256
11668.915	issue	R	2302976	256
11669.129	queue	R	2303232	256
11672.120	cmplt	R	2302976	256
11672.242	issue	R	2303232	256
11672.455	queue	R	2303488	256
11672.700	queue	W	2931712	1024
11674.561	queue	W	2932736	1024
11674.989	queue	W	2933760	1024
11675.416	queue	W	2934784	1024
11675.446	cmplt	R	2303232	256
11675.538	issue	R	2303488	256
11675.752	queue	R	2303744	256
11678.773	cmplt	R	2303488	256
11678.865	issue	R	2303744	256
11679.078	queue	R	2304000	256
11679.506	queue	W	2935808	1024
11679.933	queue	W	2936832	1024
11680.391	queue	W	2937856	1024
11680.848	queue	W	2938880	1024
11681.276	queue	W	2939904	1024
11681.703	queue	W	2940928	1024
11682.069	cmplt	R	2303744	256
11682.161	issue	R	2304000	256
11682.374	queue	R	2304256	256
11685.457	cmplt	R	2304000	256
11685.549	issue	R	2304256	256
11685.762	queue	R	2304512	256
11685.823	queue	W	2941952	1024
11686.281	queue	W	2942976	1024
11686.708	queue	W	2944000	1024
11687.136	queue	W	2945024	1024
11687.593	queue	W	2946048	1024
11687.868	queue	W	2947072	704
11688.753	cmplt	R	2304256	256
11688.845	issue	R	2304512	256
11689.058	queue	R	2304768	256
11692.080	cmplt	R	2304512	256
11692.172	issue	R	2304768	256
11692.385	queue	R	2305024	256
11695.437	cmplt	R	2304768	256
11695.529	issue	R	2305024	256
11695.742	queue	R	2305280	256
11698.794	cmplt	R	2305024	256
11698.886	issue	R	2305280	256
11699.100	queue	R	2305536	256
11702.121	cmplt	R	2305280	256
11702.274	issue	R	2305536	256
11702.426	queue	R	2305792	256
11705.509	cmplt	R	2305536	256
11705.600	issue	R	2305792	256
11705.814	queue	R	2306048	256
11708.836	cmplt	R	2305792	256
11708.927	issue	R	2306048	256
11709.141	queue	R	2306304	256
11712.162	cmplt	R	2306048	256
11712.254	issue	R	2306304	256
11712.468	queue	R	2306560	256
11715.550	cmplt	R	2306304	256
11715.642	issue	R	2306560	256
11715.855	queue	R	2306816	256
11718.938	cmplt	R	2306560	256
11719.029	issue	R	2306816	256
11719.243	queue	R	2307072	256
11722.295	cmplt	R	2306816	256
11722.387	issue	R	2307072	256
11722.600	queue	R	2307328	256
11725.652	cmplt	R	2307072	256
11725.744	issue	R	2307328	256
11725.958	queue	R	2307584	256
11728.979	cmplt	R	2307328	256
11729.071	issue	R	2307584	256
11729.315	queue	R	2307840	256
11732.306	cmplt	R	2307584	256
11732.397	issue	R	2307840	256
11732.611	queue	R	2308096	256
11735.602	cmplt	R	2307840	256
11735.694	issue	R	2308096	256
11735.907	queue	R	2308352	256
11738.898	cmplt	R	2308096	256
11738.990	issue	R	2308352	256
11739.234	queue	R	2308608	256
11742.194	cmplt	R	2308352	256
11742.286	issue	R	2308608	256
11742.530	queue	R	2308864	256
11745.521	cmplt	R	2308608	256
11745.582	issue	R	2308864	256
11745.826	queue	R	2309120	256
11748.817	cmplt	R	2308864	256
11748.909	issue	R	2309120	256
11749.153	queue	R	2309376	256
11752.114	cmplt	R	2309120	256
11752.205	issue	R	2309376	256
11752.449	queue	R	2309632	256
11755.410	cmplt	R	2309376	256
11755.501	issue	R	2309632	256
11755.745	queue	R	2309888	256
11758.736	cmplt	R	2309632	256
11758.828	issue	R	2309888	256
11759.042	queue	R	2310144	256
11762.033	cmplt	R	2309888	256
11762.124	issue	R	2310144	256
11762.368	queue	R	2310400	256
11765.329	cmplt	R	2310144	256
11765.420	issue	R	2310400	256
11765.665	queue	R	2310656	256
11768.625	cmplt	R	2310400	256
11768.717	issue	R	2310656	256
11768.961	queue	R	2310912	256
11771.952	cmplt	R	2310656	256
11772.043	issue	R	2310912	256
11772.257	queue	R	2311168	256
11775.248	cmplt	R	2310912	256
11775.340	issue	R	2311168	256
11775.553	queue	R	2311424	256
11778.544	cmplt	R	2311168	256
11778.636	issue	R	2311424	256
11778.849	queue	R	2311680	256
11781.840	cmplt	R	2311424	256
11781.932	issue	R	2311680	256
11782.176	queue	R	2311936	256
11785.137	cmplt	R	2311680	256
11785.228	issue	R	2311936	256
11785.472	queue	R	2312192	256
11788.433	cmplt	R	2311936	256
11788.494	issue	R	2312192	256
11788.738	queue	R	2312448	256
11791.698	cmplt	R	2312192	256
11791.759	issue	R	2312448	256
11792.034	queue	R	2312704	256
11794.964	cmplt	R	2312448	256
11795.056	issue	R	2312704	256
11795.269	queue	R	2312960	256
11798.260	cmplt	R	2312704	256
11798.352	issue	R	2312960	256
11798.596	queue	R	2313216	256
11801.557	cmplt	R	2312960	256
11801.679	issue	W	2849792	1024
11801.709	issue	W	2850816	1024
11801.953	queue	R	2313472	256
11856.615	cmplt	W	2849792	1024
11856.890	cmplt	W	2850816	1024
11857.195	issue	W	2851840	1024
11857.256	issue	W	2852864	1024
11905.204	cmplt	W	2851840	1024
11905.509	cmplt	W	2852864	1024
11905.845	issue	R	2313216	512
11912.040	cmplt	R	2313216	512
11912.162	issue	W	2853888	1024
11912.437	queue	R	2313728	256
11912.803	queue	R	2313984	256
11918.175	queue	WS	1916928	8
11943.812	cmplt	W	2853888	1024
11944.148	issue	R	2313728	512
11950.282	cmplt	R	2313728	512
11950.404	issue	WS	1916928	8
11950.588	queue	R	2314240	256
11950.862	queue	R	2314496	256
11951.991	cmplt	WS	1916928	8
11952.205	issue	W	2854912	1024
11953.182	queue	WS	1916928	8
11984.526	cmplt	W	2854912	1024
11984.892	issue	WS	1916928	8
11986.357	cmplt	WS	1916928	8
11986.602	issue	R	2314240	512
11992.919	cmplt	R	2314240	512
11993.041	issue	W	2855936	1024
11993.347	queue	R	2314752	256
11993.682	queue	R	2315008	256
12000.855	queue	WS	2315008	256
12025.332	cmplt	W	2855936	1024
12025.698	issue	R	2314752	512
12025.881	queue	WS	1912920	8
12031.955	cmplt	R	2314752	512
12032.046	issue	WS	1912920	8
12032.260	queue	R	2315264	256
12032.535	queue	R	2315520	256
12033.572	cmplt	WS	1912920	8
12033.694	issue	R	2315264	512
12039.951	cmplt	R	2315264	512
12040.287	queue	R	2315776	256
12040.592	queue	R	2316032	256
12040.592	queue	WS	1845568	8
12040.592	queue	WS	1845576	8
12040.623	queue	WS	1845584	8
12040.623	queue	WS	1845592	8
12040.623	queue	WS	1845600	8
12040.653	issue	R	2315776	512
12040.653	queue	WS	1845608	8
12040.653	queue	WS	1845616	8
12040.653	queue	WS	1845624	8
12046.849	cmplt	R	2315776	512
12047.184	queue	R	2316288	256
12047.459	queue	R	2316544	256
12047.520	issue	R	2316288	512
12053.655	cmplt	R	2316288	512
12053.991	queue	R	2316800	256
12054.265	queue	R	2317056	256
12054.326	issue	R	2316800	512
12060.461	cmplt	R	2316800	512
12060.797	queue	R	2317312	256
12061.071	queue	R	2317568	256
12061.132	issue	R	2317312	512
12067.267	cmplt	R	2317312	512
12067.603	queue	R	2317824	256
12067.908	queue	R	2318080	256
12067.969	issue	R	2317824	512
12074.103	cmplt	R	2317824	512
12074.439	queue	R	2318336	256
12074.714	queue	R	2318592	256
12074.775	issue	R	2318336	512
12080.910	cmplt	R	2318336	512
12081.245	queue	R	2318848	256
12081.550	queue	R	2319104	256
12081.581	issue	R	2318848	512
12087.716	cmplt	R	2318848	512
12088.051	queue	R	2319360	256
12088.356	queue	R	2319616	256
12088.418	issue	R	2319360	512
12094.552	cmplt	R	2319360	512
12094.888	queue	R	2319872	256
12095.193	queue	R	2320128	256
12095.254	issue	R	2319872	512
12101.389	cmplt	R	2319872	512
12101.724	queue	R	2320384	256
12101.999	queue	R	2320640	256
12102.060	issue	R	2320384	512
12108.195	cmplt	R	2320384	512
12108.530	queue	R	2320896	256
12108.805	queue	R	2321152	256
12108.866	issue	R	2320896	512
12115.001	cmplt	R	2320896	512
12115.184	issue	W	2856960	1024
12115.214	issue	W	2857984	1024
12116.069	queue	R	2321408	256
12116.374	queue	R	2321664	256
12162.887	cmplt	W	2856960	1024
12163.253	cmplt	W	2857984	1024
12163.620	issue	R	2321408	512
12169.876	cmplt	R	2321408	512
12170.182	queue	R	2321920	256
12170.517	queue	R	2322176	256
12170.578	issue	R	2321920	512
12176.682	cmplt	R	2321920	512
12177.018	queue	R	2322432	256
12177.323	queue	R	2322688	256
12177.384	issue	R	2322432	512
12183.488	cmplt	R	2322432	512
12183.824	queue	R	2322944	256
12184.129	queue	R	2323200	256
12184.190	issue	R	2322944	512
12190.325	cmplt	R	2322944	512
12190.661	queue	R	2323456	256
12190.935	queue	R	2323712	256
12190.996	issue	R	2323456	512
12197.131	cmplt	R	2323456	512
12197.467	queue	R	2323968	256
12197.772	queue	R	2324224	256
12197.833	issue	R	2323968	512
12203.968	cmplt	R	2323968	512
12204.090	issue	WS	1845568	64
12204.425	queue	R	2324480	256
12204.700	queue	R	2324736	256
12210.468	cmplt	WS	1845568	64
12210.591	issue	R	2324480	512
12216.847	cmplt	R	2324480	512
12217.152	queue	R	2324992	256
12217.458	queue	R	2325248	256
12217.519	issue	R	2324992	512
12223.653	cmplt	R	2324992	512
12223.989	queue	R	2325504	256
12224.264	queue	R	2325760	256
12224.325	issue	R	2325504	512
12230.459	cmplt	R	2325504	512
12230.795	queue	R	2326016	256
12231.070	queue	R	2326272	256
12231.131	issue	R	2326016	512
12237.265	cmplt	R	2326016	512
12237.632	queue	R	2326528	256
12237.906	queue	R	2326784	256
12237.967	issue	R	2326528	512
12244.102	cmplt	R	2326528	512
12244.438	queue	R	2327040	256
12244.743	queue	R	2327296	256
12244.773	issue	R	2327040	512
12250.908	cmplt	R	2327040	512
12251.244	queue	R	2327552	256
12251.518	queue	R	2327808	256
12251.579	issue	R	2327552	512
12257.714	cmplt	R	2327552	512
12258.050	queue	R	2328064	256
12258.355	queue	R	2328320	256
12258.416	issue	R	2328064	512
12264.551	cmplt	R	2328064	512
12264.886	queue	R	2328576	256
12265.161	queue	R	2328832	256
12265.222	issue	R	2328576	512
12271.357	cmplt	R	2328576	512
12271.479	issue	W	2859008	1024
12272.059	queue	R	2329088	256
12272.364	queue	R	2329344	256
12303.159	cmplt	W	2859008	1024
12303.617	issue	R	2329088	512
12309.843	cmplt	R	2329088	512
12310.179	queue	R	2329600	256
12310.514	queue	R	2329856	256
12310.575	issue	R	2329600	512
12316.679	cmplt	R	2329600	512
12317.015	queue	R	2330112	256
12317.290	queue	R	2330368	256
12317.351	issue	R	2330112	512
12323.485	cmplt	R	2330112	512
12323.821	queue	R	2330624	256
12324.096	queue	R	2330880	256
12324.157	issue	R	2330624	512
12330.291	cmplt	R	2330624	512
12330.414	issue	W	2860032	1024
12331.360	queue	R	2331136	256
12331.665	queue	R	2331392	256
12362.277	cmplt	W	2860032	1024
12362.674	issue	R	2331136	512
12368.808	cmplt	R	2331136	512
12369.144	queue	R	2331648	256
12369.419	queue	R	2331904	256
12369.480	issue	R	2331648	512
12375.614	cmplt	R	2331648	512
12375.950	queue	R	2332160	256
12376.255	queue	R	2332416	256
12376.286	issue	R	2332160	512
12382.420	cmplt	R	2332160	512
12382.787	queue	R	2332672	256
12383.092	queue	R	2332928	256
12383.153	issue	R	2332672	512
12389.287	cmplt	R	2332672	512
12389.593	queue	R	2333184	256
12389.898	queue	R	2333440	256
12389.959	issue	R	2333184	512
12396.124	cmplt	R	2333184	512
12396.460	queue	R	2333696	256
12396.734	queue	R	2333952	256
12396.795	issue	R	2333696	512
12402.930	cmplt	R	2333696	512
12403.052	issue	W	2861056	1024
12404.059	queue	R	2334208	256
12404.364	queue	R	2334464	256
12435.282	cmplt	W	2861056	1024
12435.709	issue	R	2334208	512
12441.843	cmplt	R	2334208	512
12442.179	queue	R	2334720	256
12442.454	queue	R	2334976	256
12442.515	issue	R	2334720	512
12448.649	cmplt	R	2334720	512
12448.985	queue	R	2335232	256
12449.260	queue	R	2335488	256
12449.321	issue	R	2335232	512
12455.456	cmplt	R	2335232	512
12455.791	queue	R	2335744	256
12456.066	queue	R	2336000	256
12456.127	issue	R	2335744	512
12462.262	cmplt	R	2335744	512
12462.597	queue	R	2336256	256
12462.902	queue	R	2336512	256
12462.933	issue	R	2336256	512
12469.068	cmplt	R	2336256	512
12469.403	queue	R	2336768	256
12469.709	queue	R	2337024	256
12469.770	issue	R	2336768	512
12475.904	cmplt	R	2336768	512
12476.026	issue	W	2862080	1024
12476.057	issue	W	2863104	1024
12477.705	queue	R	2337280	256
12478.010	queue	R	2337536	256
12524.493	cmplt	W	2862080	1024
12524.828	cmplt	W	2863104	1024
12525.225	issue	R	2337280	512
12531.360	cmplt	R	2337280	512
12531.695	queue	R	2337792	256
12532.001	queue	R	2338048	256
12532.062	issue	R	2337792	512
12538.196	cmplt	R	2337792	512
12538.532	queue	R	2338304	256
12538.807	queue	R	2338560	256
12538.868	issue	R	2338304	512
12545.002	cmplt	R	2338304	512
12545.338	queue	R	2338816	256
12545.613	queue	R	2339072	256
12545.674	issue	R	2338816	512
12551.808	cmplt	R	2338816	512
12552.175	queue	R	2339328	256
12552.449	queue	R	2339584	256
12552.510	issue	R	2339328	512
12558.645	cmplt	R	2339328	512
12558.981	queue	R	2339840	256
12559.286	queue	R	2340096	256
12559.347	issue	R	2339840	512
12565.481	cmplt	R	2339840	512
12565.817	queue	R	2340352	256
12566.092	queue	R	2340608	256
12566.153	issue	R	2340352	512
12572.288	cmplt	R	2340352	512
12572.623	queue	R	2340864	256
12572.898	queue	R	2341120	256
12572.959	issue	R	2340864	512
12579.094	cmplt	R	2340864	512
12579.429	queue	R	2341376	256
12579.704	queue	R	2341632	256
12579.796	issue	R	2341376	512
12585.900	cmplt	R	2341376	512
12586.235	queue	R	2341888	256
12586.541	queue	R	2342144	256
12586.602	issue	R	2341888	512
12592.736	cmplt	R	2341888	512
12592.858	issue	W	2864128	1024
12592.889	issue	W	2865152	1024
12592.889	issue	W	2866176	1024
12593.438	queue	R	2342400	256
12593.957	queue	R	2342656	256
12658.996	cmplt	W	2864128	1024
12659.332	cmplt	W	2865152	1024
12659.667	cmplt	W	2866176	1024
12660.064	issue	R	2342400	512
12666.199	cmplt	R	2342400	512
12666.321	issue	W	2867200	1024
12666.351	issue	W	2868224	1024
12666.351	issue	W	2869248	1024
12666.382	issue	W	2870272	1024
12666.504	queue	R	2342912	256
12666.992	queue	R	2343168	256
12752.449	cmplt	W	2867200	1024
12752.785	cmplt	W	2868224	1024
12753.090	cmplt	W	2869248	1024
12753.395	cmplt	W	2870272	1024
12753.762	issue	R	2342912	512
12759.988	cmplt	R	2342912	512
12760.110	issue	W	2871296	1024
12760.140	issue	W	2872320	1024
12760.171	issue	W	2873344	704
12760.171	issue	W	2874048	1024
12760.201	issue	W	2875072	1024
12760.293	queue	R	2343424	256
12760.781	queue	R	2343680	256
12850.786	cmplt	W	2871296	1024
12851.122	cmplt	W	2872320	1024
12851.427	cmplt	W	2873344	704
12851.610	cmplt	W	2874048	1024
12851.946	cmplt	W	2875072	1024
12852.342	issue	R	2343424	512
12858.447	cmplt	R	2343424	512
12858.569	issue	W	2876096	1024
12858.599	issue	W	2877120	1024
12858.630	issue	W	2878144	1024
12858.630	issue	W	2879168	1024
12858.660	issue	W	2880192	1000
12858.660	issue	W	2881192	1024
12858.752	queue	R	2343936	256
12859.210	queue	R	2344192	256
12965.909	cmplt	W	2876096	1024
12966.244	cmplt	W	2877120	1024
12966.550	cmplt	W	2878144	1024
12966.885	cmplt	W	2879168	1024
12967.221	cmplt	W	2880192	1000
12967.526	cmplt	W	2881192	1024
12967.862	issue	R	2343936	512
12973.997	cmplt	R	2343936	512
12974.119	issue	W	2882216	1024
12974.393	queue	R	2344448	256
12974.760	queue	R	2344704	256
13000.519	cmplt	W	2882216	1024
13000.916	issue	R	2344448	512
13007.050	cmplt	R	2344448	512
13007.172	issue	W	2883240	344
13007.386	queue	R	2344960	256
13007.691	queue	R	2345216	256
13021.059	cmplt	W	2883240	344
13021.242	issue	R	2344960	512
13027.377	cmplt	R	2344960	512
13027.499	issue	W	2899968	1024
13027.774	queue	R	2345472	256
13028.140	queue	R	2345728	256
13057.439	cmplt	W	2899968	1024
13057.836	issue	R	2345472	512
13063.940	cmplt	R	2345472	512
13064.062	issue	W	2900992	1024
13064.367	queue	R	2345984	256
13064.703	queue	R	2346240	256
13095.407	cmplt	W	2900992	1024
13095.803	issue	R	2345984	512
13101.908	cmplt	R	2345984	512
13102.030	issue	W	2902016	1024
13102.487	queue	R	2346496	256
13102.793	queue	R	2346752	256
13126.263	cmplt	W	2902016	1024
13126.629	issue	R	2346496	512
13132.764	cmplt	R	2346496	512
13132.886	issue	W	2903040	1024
13133.160	queue	R	2347008	256
13133.496	queue	R	2347264	256
13162.582	cmplt	W	2903040	1024
13162.979	issue	R	2347008	512
13169.083	cmplt	R	2347008	512
13169.205	issue	W	2904064	1024
13169.388	queue	R	2347520	256
13169.693	queue	R	2347776	256
13198.321	cmplt	W	2904064	1024
13198.749	issue	R	2347520	512
13204.853	cmplt	R	2347520	512
13204.975	issue	W	2905088	680
13205.005	issue	W	2905768	1024
13205.158	queue	R	2348032	256
13205.463	queue	R	2348288	256
13245.506	cmplt	W	2905088	680
13245.750	cmplt	W	2905768	1024
13246.147	issue	R	2348032	512
13252.251	cmplt	R	2348032	512
13252.373	issue	W	2906792	1024
13252.403	issue	W	2907816	1024
13252.556	queue	R	2348544	256
13252.861	queue	R	2348800	256
13293.118	cmplt	W	2906792	1024
13293.453	cmplt	W	2907816	1024
13293.850	issue	R	2348544	512
13299.985	cmplt	R	2348544	512
13300.107	issue	W	2908840	1024
13300.137	issue	W	2909864	1024
13300.137	issue	W	2910888	1024
13300.320	queue	R	2349056	256
13300.626	queue	R	2349312	256
13356.417	cmplt	W	2908840	1024
13356.722	cmplt	W	2909864	1024
13357.058	cmplt	W	2910888	1024
13357.455	issue	R	2349056	512
13363.559	cmplt	R	2349056	512
13363.681	issue	W	2911912	1024
13363.711	issue	W	2912936	1024
13363.711	issue	W	2913960	1024
13363.864	queue	R	2349568	256
13364.169	queue	R	2349824	256
13419.930	cmplt	W	2911912	1024
13420.296	cmplt	W	2912936	1024
13420.632	cmplt	W	2913960	1024
13420.998	issue	R	2349568	512
13427.133	cmplt	R	2349568	512
13427.255	issue	W	2914984	1024
13427.285	issue	W	2916008	344
13427.285	issue	W	2916352	1024
13427.316	issue	W	2917376	1024
13427.438	queue	R	2350080	256
13427.743	queue	R	2350336	256
13501.816	cmplt	W	2914984	1024
13502.152	cmplt	W	2916008	344
13502.274	cmplt	W	2916352	1024
13502.609	cmplt	W	2917376	1024
13502.976	issue	R	2350080	512
13509.110	cmplt	R	2350080	512
13509.202	issue	W	2918400	1024
13509.232	issue	W	2919424	1024
13509.263	issue	W	2920448	1024
13509.263	issue	W	2921472	1024
13509.293	issue	W	2922496	1024
13509.385	queue	R	2350592	256
13509.721	queue	R	2350848	256
13594.873	cmplt	W	2918400	1024
13595.208	cmplt	W	2919424	1024
13595.544	cmplt	W	2920448	1024
13595.849	cmplt	W	2921472	1024
13596.154	cmplt	W	2922496	1024
13596.521	issue	R	2350592	512
13602.655	cmplt	R	2350592	512
13602.747	issue	W	2923520	1024
13602.777	issue	W	2924544	1024
13602.808	issue	W	2925568	1024
13602.808	issue	W	2926592	1024
13602.838	issue	W	2927616	1024
13602.838	issue	W	2928640	1024
13602.930	queue	R	2351104	256
13603.296	queue	R	2351360	256
13709.293	cmplt	W	2923520	1024
13709.660	cmplt	W	2924544	1024
13710.026	cmplt	W	2925568	1024
13710.331	cmplt	W	2926592	1024
13710.636	cmplt	W	2927616	1024
13710.972	cmplt	W	2928640	1024
13711.369	issue	R	2351104	512
13717.473	cmplt	R	2351104	512
13717.595	issue	W	2929664	1024
13717.626	issue	W	2930688	1024
13717.656	issue	W	2931712	1024
13717.656	issue	W	2932736	1024
13717.687	issue	W	2933760	1024
13717.687	issue	W	2934784	1024
13717.717	issue	W	2935808	1024
13718.236	queue	R	2351616	256
13718.511	queue	R	2351872	256
13846.879	cmplt	W	2929664	1024
13847.215	cmplt	W	2930688	1024
13847.551	cmplt	W	2931712	1024
13847.856	cmplt	W	2932736	1024
13848.161	cmplt	W	2933760	1024
13848.436	cmplt	W	2934784	1024
13848.741	cmplt	W	2935808	1024
13849.107	issue	R	2351616	512
13855.272	cmplt	R	2351616	512
13855.394	issue	W	2936832	1024
13855.578	queue	R	2352128	256
13855.883	queue	R	2352384	256
13884.450	cmplt	W	2936832	1024
13884.877	issue	R	2352128	512
13890.981	cmplt	R	2352128	512
13891.103	issue	W	2937856	1024
13891.286	queue	R	2352640	256
13891.561	queue	R	2352896	256
13920.220	cmplt	W	2937856	1024
13920.647	issue	R	2352640	512
13926.751	cmplt	R	2352640	512
13926.873	issue	W	2938880	1024
13927.056	queue	R	2353152	256
13927.362	queue	R	2353408	256
13955.868	cmplt	W	2938880	1024
13956.295	issue	R	2353152	512
13962.399	cmplt	R	2353152	512
13962.521	issue	W	2939904	1024
13962.704	queue	R	2353664	256
13963.009	queue	R	2353920	256
13991.729	cmplt	W	2939904	1024
13992.156	issue	R	2353664	512
13998.291	cmplt	R	2353664	512
13998.382	issue	W	2940928	1024
13998.566	queue	R	2354176	256
13998.871	queue	R	2354432	256
14027.316	cmplt	W	2940928	1024
14027.743	issue	R	2354176	512
14033.847	cmplt	R	2354176	512
14033.969	issue	W	2941952	1024
14034.152	queue	R	2354688	256
14034.427	queue	R	2354944	256
14063.177	cmplt	W	2941952	1024
14063.574	issue	R	2354688	512
14069.709	cmplt	R	2354688	512
14069.800	issue	W	2942976	1024
14069.831	issue	W	2944000	1024
14070.044	queue	R	2355200	256
14070.319	queue	R	2355456	256
14114.543	cmplt	W	2942976	1024
14115.001	cmplt	W	2944000	1024
14115.428	issue	R	2355200	512
14121.563	cmplt	R	2355200	512
14121.685	issue	W	2945024	1024
14121.715	issue	W	2946048	1024
14121.868	queue	R	2355712	256
14122.173	queue	R	2355968	256
14166.550	cmplt	W	2945024	1024
14166.916	cmplt	W	2946048	1024
14167.313	issue	R	2355712	512
14173.417	cmplt	R	2355712	512
14173.539	issue	W	2947072	704
14173.722	queue	R	2356224	256
14173.997	queue	R	2356480	256
14198.901	cmplt	W	2947072	704
14199.206	issue	R	2356224	512
14205.402	cmplt	R	2356224	512
14205.799	queue	R	2356736	256
14206.104	queue	R	2356992	256
14206.165	issue	R	2356736	512
14206.379	queue	WS	1845632	8
14212.330	cmplt	R	2356736	512
14212.483	issue	WS	1845632	8
14212.880	queue	R	2357248	256
14213.185	queue	R	2357504	256
14214.009	cmplt	WS	1845632	8
14214.131	issue	R	2357248	512
14214.375	queue	WS	1845640	8
14214.406	queue	WS	1845648	8
14214.406	queue	WS	1845656	8
14220.388	cmplt	R	2357248	512
14220.754	queue	R	2357760	256
14221.029	queue	R	2358016	256
14221.090	issue	R	2357760	512
14227.224	cmplt	R	2357760	512
14227.346	issue	WS	1845640	24
14227.682	queue	R	2358272	256
14227.987	queue	R	2358528	256
14228.506	cmplt	WS	1845640	24
14228.628	queue	WS	1845664	8
14228.689	issue	WS	1845664	8
14228.720	issue	R	2358272	512
14228.720	queue	R	2358272	512
14228.781	issue	R	2358272	512
14229.605	cmplt	WS	1845664	8
14235.648	cmplt	R	2358272	512
14235.984	queue	R	2358784	256
14236.289	queue	R	2359040	256
14236.350	issue	R	2358784	512
14240.958	queue	R	2635568	80
14242.515	cmplt	R	2358784	512
14242.637	issue	R	2635568	80
14243.034	queue	R	2375680	256
14243.369	queue	R	2375936	256
14243.919	cmplt	R	2635568	80
14243.980	issue	R	2375680	512
14250.237	cmplt	R	2375680	512
14250.633	queue	R	2376192	256
14250.908	queue	R	2376448	256
14250.969	issue	R	2376192	512
14257.195	cmplt	R	2376192	512
14257.561	queue	R	2376704	256
14257.867	queue	R	2376960	256
14257.897	issue	R	2376704	512
14259.057	queue	WS	1974280	80
14264.123	cmplt	R	2376704	512
14264.245	issue	WS	1974280	80
14264.642	queue	R	2377216	256
14264.947	queue	R	2377472	256
14272.577	queue	W	2947776	1024
14273.707	queue	W	2948800	320
14273.737	cmplt	WS	1974280	80
14273.890	issue	R	2377216	512
14275.416	queue	W	2949120	1024
14275.843	queue	W	2950144	1024
14276.240	queue	W	2951168	1024
14276.667	queue	W	2952192	1024
14277.064	queue	W	2953216	1024
14277.461	queue	W	2954240	1024
14277.888	queue	W	2955264	1024
14278.285	queue	W	2956288	1024
14278.682	queue	W	2957312	1024
14279.109	queue	W	2958336	1024
14279.506	queue	W	2959360	1024
14279.902	queue	W	2960384	1024
14280.208	cmplt	R	2377216	512
14280.330	issue	W	2947776	1024
14280.360	issue	W	2948800	320
14280.360	issue	W	2949120	1024
14280.391	issue	W	2950144	1024
14281.245	queue	R	2377728	256
14281.581	queue	R	2377984	256
14290.401	queue	W	2961408	1024
14290.859	queue	W	2962432	1024
14291.317	queue	W	2963456	1024
14291.744	queue	W	2964480	1024
14293.759	queue	W	2965504	1024
14294.155	queue	W	2966528	1024
14294.552	queue	W	2967552	1024
14295.132	queue	W	2968576	1024
14300.351	queue	W	2969600	1024
14300.809	queue	W	2970624	1024
14301.267	queue	W	2971648	1024
14301.694	queue	W	2972672	1024
14302.121	queue	W	2973696	1024
14302.548	queue	W	2974720	1024
14302.976	queue	W	2975744	1024
14303.403	queue	W	2976768	1024
14303.800	queue	W	2977792	1024
14304.227	queue	W	2978816	1024
14304.685	queue	W	2979840	1024
14305.112	queue	W	2980864	1024
14308.775	queue	WS	1845672	8
14308.805	queue	WS	1845680	8
14308.805	queue	WS	1845688	8
14308.836	queue	WS	1845696	8
14308.836	queue	WS	1845704	8
14308.866	queue	WS	1845712	8
14308.866	queue	WS	1845720	8
14308.866	queue	WS	1845728	8
14308.897	queue	WS	1845736	8
14351.686	cmplt	W	2947776	1024
14351.991	cmplt	W	2948800	320
14352.083	cmplt	W	2949120	1024
14352.358	cmplt	W	2950144	1024
14352.663	issue	R	2377728	512
14358.950	cmplt	R	2377728	512
14359.316	queue	R	2378240	256
14359.622	queue	R	2378496	256
14359.683	issue	R	2378240	512
14365.878	cmplt	R	2378240	512
14366.244	queue	R	2378752	256
14366.519	queue	R	2379008	256
14366.580	issue	R	2378752	512
14372.715	cmplt	R	2378752	512
14373.051	queue	R	2379264	256
14373.325	queue	R	2379520	256
14373.386	issue	R	2379264	512
14379.521	cmplt	R	2379264	512
14379.857	queue	R	2379776	256
14380.314	queue	R	2380032	256
14380.375	issue	R	2379776	512
14386.571	cmplt	R	2379776	512
14386.907	queue	R	2380288	256
14387.181	queue	R	2380544	256
14387.242	issue	R	2380288	512
14393.408	cmplt	R	2380288	512
14393.774	queue	R	2380800	256
14394.049	queue	R	2381056	256
14394.110	issue	R	2380800	512
14400.244	cmplt	R	2380800	512
14400.580	queue	R	2381312	256
14400.885	queue	R	2381568	256
14400.946	issue	R	2381312	512
14407.081	cmplt	R	2381312	512
14407.203	issue	WS	1845672	72
14407.600	queue	R	2381824	256
14407.905	queue	R	2382080	256
14409.522	cmplt	WS	1845672	72
14409.644	issue	W	2951168	1024
14409.675	issue	W	2952192	1024
14409.675	issue	W	2953216	1024
14409.705	issue	W	2954240	1024
14482.527	cmplt	W	2951168	1024
14482.802	cmplt	W	2952192	1024
14483.046	cmplt	W	2953216	1024
14483.290	cmplt	W	2954240	1024
14483.595	issue	W	2955264	1024
14483.626	issue	W	2956288	1024
14483.656	issue	W	2957312	1024
14483.656	issue	W	2958336	1024
14483.687	issue	W	2959360	1024
14571.647	cmplt	W	2955264	1024
14571.952	cmplt	W	2956288	1024
14572.196	cmplt	W	2957312	1024
14572.471	cmplt	W	2958336	1024
14572.745	cmplt	W	2959360	1024
14573.051	issue	R	2381824	512
14579.338	cmplt	R	2381824	512
14579.673	queue	R	2382336	256
14580.009	queue	R	2382592	256
14580.070	issue	R	2382336	512
14586.205	cmplt	R	2382336	512
14586.510	queue	R	2382848	256
14586.785	queue	R	2383104	256
14586.876	issue	R	2382848	512
14592.980	cmplt	R	2382848	512
14593.286	queue	R	2383360	256
14593.591	queue	R	2383616	256
14593.652	issue	R	2383360	512
14599.756	cmplt	R	2383360	512
14600.092	queue	R	2383872	256
14600.397	queue	R	2384128	256
14600.458	issue	R	2383872	512
14606.562	cmplt	R	2383872	512
14606.898	queue	R	2384384	256
14607.172	queue	R	2384640	256
14607.233	issue	R	2384384	512
14613.337	cmplt	R	2384384	512
14613.673	queue	R	2384896	256
14613.978	queue	R	2385152	256
14614.039	issue	R	2384896	512
14620.143	cmplt	R	2384896	512
14620.479	queue	R	2385408	256
14620.754	queue	R	2385664	256
14620.815	issue	R	2385408	512
14626.919	cmplt	R	2385408	512
14627.255	queue	R	2385920	256
14627.560	queue	R	2386176	256
14627.621	issue	R	2385920	512
14633.725	cmplt	R	2385920	512
14634.061	queue	R	2386432	256
14634.335	queue	R	2386688	256
14634.396	issue	R	2386432	512
14640.531	cmplt	R	2386432	512
14640.836	queue	R	2386944	256
14641.141	queue	R	2387200	256
14641.203	issue	R	2386944	512
14647.307	cmplt	R	2386944	512
14647.642	queue	R	2387456	256
14647.917	queue	R	2387712	256
14647.978	issue	R	2387456	512
14654.113	cmplt	R	2387456	512
14654.418	queue	R	2387968	256
14654.723	queue	R	2388224	256
14654.784	issue	R	2387968	512
14660.888	cmplt	R	2387968	512
14661.254	queue	R	2388480	256
14661.529	queue	R	2388736	256
14661.590	issue	R	2388480	512
14667.725	cmplt	R	2388480	512
14668.030	queue	R	2388992	256
14668.335	queue	R	2389248	256
14668.396	issue	R	2388992	512
14674.500	cmplt	R	2388992	512
14674.836	queue	R	2389504	256
14675.141	queue	R	2389760	256
14675.202	issue	R	2389504	512
14681.337	cmplt	R	2389504	512
14681.459	issue	W	2960384	1024
14681.947	queue	R	2390016	256
14682.252	queue	R	2390272	256
14707.340	cmplt	W	2960384	1024
14707.737	issue	R	2390016	512
14713.810	cmplt	R	2390016	512
14714.146	queue	R	2390528	256
14714.451	queue	R	2390784	256
14714.512	issue	R	2390528	512
14720.647	cmplt	R	2390528	512
14720.983	queue	R	2391040	256
14721.257	queue	R	2391296	256
14721.318	issue	R	2391040	512
14731.329	cmplt	R	2391040	512
14731.665	queue	R	2391552	256
14731.970	queue	R	2391808	256
14732.031	issue	R	2391552	512
14738.227	cmplt	R	2391552	512
14738.593	queue	R	2392064	256
14738.898	queue	R	2392320	256
14738.959	issue	R	2392064	512
14745.094	cmplt	R	2392064	512
14745.216	issue	W	2961408	1024
14745.399	queue	R	2392576	256
14745.704	queue	R	2392832	256
14787.609	cmplt	W	2961408	1024
14788.005	issue	R	2392576	512
14794.171	cmplt	R	2392576	512
14794.354	issue	W	2962432	1024
14794.384	issue	W	2963456	1024
14795.056	queue	R	2393088	256
14795.971	queue	R	2393344	256
14835.800	cmplt	W	2962432	1024
14836.136	cmplt	W	2963456	1024
14836.533	issue	R	2393088	512
14842.698	cmplt	R	2393088	512
14842.820	issue	W	2964480	1024
14842.851	issue	W	2965504	1024
14843.492	queue	R	2393600	256
14844.468	queue	R	2393856	256
14884.084	cmplt	W	2964480	1024
14884.419	cmplt	W	2965504	1024
14884.786	issue	R	2393600	512
14890.890	cmplt	R	2393600	512
14891.012	issue	W	2966528	1024
14891.042	issue	W	2967552	1024
14891.042	issue	W	2968576	1024
14891.378	queue	R	2394112	256
14891.683	queue	R	2394368	256
14947.749	cmplt	W	2966528	1024
14948.115	cmplt	W	2967552	1024
14948.451	cmplt	W	2968576	1024
14948.787	issue	R	2394112	512
14954.891	cmplt	R	2394112	512
14955.013	issue	W	2969600	1024
14955.043	issue	W	2970624	1024
14955.043	issue	W	2971648	1024
14955.196	queue	R	2394624	256
14955.501	queue	R	2394880	256
15011.659	cmplt	W	2969600	1024
15012.117	cmplt	W	2970624	1024
15012.422	cmplt	W	2971648	1024
15012.880	issue	R	2394624	512
15018.984	cmplt	R	2394624	512
15019.075	issue	W	2972672	1024
15019.106	issue	W	2973696	1024
15019.136	issue	W	2974720	1024
15019.136	issue	W	2975744	1024
15019.319	queue	R	2395136	256
15019.625	queue	R	2395392	256
15076.667	queue	R	2395392	256
15076.728	queue	R	2395392	256
15091.256	cmplt	W	2972672	1024
15091.622	cmplt	W	2973696	1024
15091.958	cmplt	W	2974720	1024
15092.263	cmplt	W	2975744	1024
15092.629	issue	R	2395136	512
15098.764	cmplt	R	2395136	512
15098.917	issue	W	2976768	1024
15098.947	issue	W	2977792	1024
15098.947	issue	W	2978816	1024
15098.978	issue	W	2979840	1024
15098.978	issue	W	2980864	1024
15099.771	queue	R	2395648	256
15100.839	queue	R	2395904	256
15193.438	cmplt	W	2976768	1024
15193.804	cmplt	W	2977792	1024
15194.140	cmplt	W	2978816	1024
15194.476	cmplt	W	2979840	1024
15194.781	cmplt	W	2980864	1024
15195.178	issue	R	2395648	512
15195.208	queue	WS	1845744	8
15195.880	queue	W	2981888	1024
15196.307	queue	W	2982912	1024
15196.795	queue	W	2983936	1024
15197.253	queue	W	2984960	1024
15197.680	queue	W	2985984	1024
15198.169	queue	W	2987008	1024
15198.505	queue	W	2988032	824
15201.465	cmplt	R	2395648	512
15201.557	issue	WS	1845744	8
15201.587	issue	W	2981888	1024
15201.618	issue	W	2982912	1024
15201.618	issue	W	2983936	1024
15201.648	issue	W	2984960	1024
15201.648	issue	W	2985984	1024
15201.679	issue	W	2987008	1024
15210.316	queue	R	2396160	256
15210.652	queue	R	2396416	256
15292.721	queue	W	1835696	8
15292.751	queue	W	2621960	8
15298.123	queue	W	2988856	1024
15298.611	queue	W	2989880	1024
15306.241	cmplt	WS	1845744	8
15306.272	cmplt	W	2981888	1024
15306.547	cmplt	W	2982912	1024
15306.760	queue	W	2990904	1024
15306.821	cmplt	W	2983936	1024
15307.065	cmplt	W	2984960	1024
15307.340	cmplt	W	2985984	1024
15307.584	cmplt	W	2987008	1024
15307.767	queue	W	2991928	1024
15308.286	queue	W	2992952	1024
15308.805	queue	W	2993976	1024
15309.354	queue	W	2995000	1024
15309.873	queue	W	2996024	1024
15310.056	issue	R	2396160	512
15310.362	queue	W	2997048	1024
15311.003	queue	W	2998072	200
15312.895	queue	W	2998272	1024
15313.353	queue	W	2999296	1024
15313.749	queue	W	3000320	1024
15314.238	queue	W	3001344	1024
15314.665	queue	W	3002368	1024
15315.123	queue	W	3003392	1024
15315.550	queue	W	3004416	1024
15315.947	queue	W	3005440	1024
15316.344	cmplt	R	2396160	512
15316.374	queue	W	3006464	1024
15316.496	issue	W	2988032	824
15316.527	issue	W	2988856	1024
15316.527	issue	W	2989880	1024
15316.557	issue	W	2990904	1024
15316.588	issue	W	2991928	1024
15316.588	issue	W	2992952	1024
15316.618	issue	W	2993976	1024
15317.229	queue	R	2396672	256
15318.205	queue	R	2396928	256
15330.505	queue	W	3007488	1024
15331.085	queue	W	3008512	1024
15331.512	queue	W	3009536	1024
15331.940	queue	W	3010560	1024
15332.397	queue	W	3011584	1024
15332.794	queue	W	3012608	1024
15333.221	queue	W	3013632	1024
15335.114	queue	W	3014656	1024
15335.633	queue	W	3015680	1024
15336.060	queue	W	3016704	1024
15336.487	queue	W	3017728	1024
15336.884	queue	W	3018752	1024
15337.311	queue	W	3019776	1024
15337.738	queue	W	3020800	1024
15338.135	queue	W	3021824	1024
15338.562	queue	W	3022848	1024
15338.990	queue	W	3023872	1024
15339.417	queue	W	3024896	1024
15339.814	queue	W	3025920	1024
15341.889	queue	W	3026944	1024
15342.347	queue	W	3027968	1024
15342.713	queue	W	3028992	832
15438.242	cmplt	W	2988032	824
15438.456	cmplt	W	2988856	1024
15438.730	cmplt	W	2989880	1024
15438.975	cmplt	W	2990904	1024
15439.219	cmplt	W	2991928	1024
15439.463	cmplt	W	2992952	1024
15439.707	cmplt	W	2993976	1024
15440.043	issue	R	2396672	512
15446.360	cmplt	R	2396672	512
15446.513	issue	W	2995000	1024
15447.337	queue	R	2397184	256
15448.375	queue	R	2397440	256
15472.028	cmplt	W	2995000	1024
15472.364	issue	R	2397184	512
15478.559	cmplt	R	2397184	512
15478.712	issue	W	2996024	1024
15478.895	queue	R	2397696	256
15479.200	queue	R	2397952	256
15504.288	cmplt	W	2996024	1024
15504.624	issue	R	2397696	512
15510.179	queue	R	2397696	512
15510.911	cmplt	R	2397696	512
15511.033	issue	W	2997048	1024
15511.277	queue	R	2398208	256
15511.582	queue	R	2398464	256
15536.823	cmplt	W	2997048	1024
15537.189	issue	R	2398208	512
15543.324	cmplt	R	2398208	512
15543.446	issue	W	1835696	8
15543.659	queue	R	2398720	256
15543.965	queue	R	2398976	256
15544.972	cmplt	W	1835696	8
15545.094	issue	R	2398720	512
15551.320	cmplt	R	2398720	512
15551.473	issue	W	2621960	8
15552.358	queue	R	2399232	256
15552.999	cmplt	W	2621960	8
15553.090	issue	R	2399232	256
15553.304	queue	R	2399488	256
15556.417	cmplt	R	2399232	256
15556.508	issue	R	2399488	256
15557.394	queue	R	2399744	256
15559.744	cmplt	R	2399488	256
15559.805	issue	R	2399744	256
15560.751	queue	R	2400000	256
15563.040	cmplt	R	2399744	256
15563.101	issue	R	2400000	256
15563.986	queue	R	2400256	256
15566.336	cmplt	R	2400000	256
15566.428	issue	R	2400256	256
15567.313	queue	R	2400512	256
15569.632	cmplt	R	2400256	256
15569.724	issue	R	2400512	256
15570.578	queue	R	2400768	256
15572.898	cmplt	R	2400512	256
15572.989	issue	R	2400768	256
15573.905	queue	R	2401024	256
15576.164	cmplt	R	2400768	256
15576.255	issue	R	2401024	256
15576.499	queue	R	2401280	256
15579.429	cmplt	R	2401024	256
15579.490	issue	R	2401280	256
15580.559	queue	R	2401536	256
15582.695	cmplt	R	2401280	256
15582.787	issue	R	2401536	256
15583.061	queue	R	2401792	256
15585.930	cmplt	R	2401536	256
15586.022	issue	R	2401792	256
15586.266	queue	R	2402048	256
15589.196	cmplt	R	2401792	256
15589.287	issue	R	2402048	256
15589.501	queue	R	2402304	256
15592.461	cmplt	R	2402048	256
15592.553	issue	R	2402304	256
15592.797	queue	R	2402560	256
15595.727	cmplt	R	2402304	256
15595.819	issue	R	2402560	256
15596.124	queue	R	2402816	256
15598.993	cmplt	R	2402560	256
15599.054	issue	R	2402816	256
15599.420	queue	R	2403072	256
15602.228	cmplt	R	2402816	256
15602.320	issue	R	2403072	256
15602.564	queue	R	2403328	256
15605.494	cmplt	R	2403072	256
15605.585	issue	R	2403328	256
15605.829	queue	R	2403584	256
15608.759	cmplt	R	2403328	256
15608.851	issue	R	2403584	256
15609.065	queue	R	2403840	256
15611.995	cmplt	R	2403584	256
15612.086	issue	R	2403840	256
15612.300	queue	R	2404096	256
15615.230	cmplt	R	2403840	256
15615.321	issue	R	2404096	256
15615.535	queue	R	2404352	256
15618.465	cmplt	R	2404096	256
15618.556	issue	R	2404352	256
15618.801	queue	R	2404608	256
15621.731	cmplt	R	2404352	256
15621.792	issue	R	2404608	256
15622.005	queue	R	2404864	256
15624.935	cmplt	R	2404608	256
15625.027	issue	R	2404864	256
15625.240	queue	R	2405120	256
15628.170	cmplt	R	2404864	256
15628.231	issue	R	2405120	256
15628.476	queue	R	2405376	256
15631.405	cmplt	R	2405120	256
15631.467	issue	R	2405376	256
15631.711	queue	R	2405632	256
15634.641	cmplt	R	2405376	256
15634.702	issue	R	2405632	256
15634.946	queue	R	2405888	256
15637.876	cmplt	R	2405632	256
15637.967	issue	R	2405888	256
15638.181	queue	R	2406144	256
15641.111	cmplt	R	2405888	256
15641.203	issue	R	2406144	256
15641.447	queue	R	2406400	256
15644.377	cmplt	R	2406144	256
15644.438	issue	R	2406400	256
15644.682	queue	R	2406656	256
15647.612	cmplt	R	2406400	256
15647.703	issue	R	2406656	256
15647.948	queue	R	2406912	256
15650.877	cmplt	R	2406656	256
15651.000	issue	W	2998072	200
15651.030	issue	W	2998272	1024
15651.183	queue	R	2407168	256
15680.848	cmplt	W	2998072	200
15680.940	cmplt	W	2998272	1024
15681.276	issue	W	2999296	1024
15681.306	issue	W	3000320	1024
15693.545	queue	W	3000320	1024
15722.417	cmplt	W	2999296	1024
15722.753	cmplt	W	3000320	1024
15723.089	issue	R	2406912	512
15729.284	cmplt	R	2406912	512
15729.406	issue	W	3001344	1024
15729.437	issue	W	3002368	1024
15729.620	queue	R	2407424	256
15729.925	queue	R	2407680	256
15770.548	cmplt	W	3001344	1024
15770.853	cmplt	W	3002368	1024
15771.189	issue	R	2407424	512
15777.293	cmplt	R	2407424	512
15777.415	issue	W	3003392	1024
15777.445	issue	W	3004416	1024
15777.445	issue	W	3005440	1024
15777.629	queue	R	2407936	256
15777.934	queue	R	2408192	256
15834.061	cmplt	W	3003392	1024
15834.366	cmplt	W	3004416	1024
15834.641	cmplt	W	3005440	1024
15834.946	issue	R	2407936	512
15841.080	cmplt	R	2407936	512
15841.203	issue	W	3006464	1024
15841.233	issue	W	3007488	1024
15841.264	issue	W	3008512	1024
15841.264	issue	W	3009536	1024
15841.416	queue	R	2408448	256
15841.752	queue	R	2408704	256
15913.078	cmplt	W	3006464	1024
15913.353	cmplt	W	3007488	1024
15913.658	cmplt	W	3008512	1024
15913.902	cmplt	W	3009536	1024
15914.207	issue	R	2408448	512
15920.342	cmplt	R	2408448	512
15920.464	issue	W	3010560	1024
15920.494	issue	W	3011584	1024
15920.525	issue	W	3012608	1024
15920.525	issue	W	3013632	1024
15920.678	queue	R	2408960	256
15921.013	queue	R	2409216	256
16006.348	cmplt	W	3010560	1024
16006.653	cmplt	W	3011584	1024
16006.959	cmplt	W	3012608	1024
16007.203	cmplt	W	3013632	1024
16007.508	issue	R	2408960	512
16013.612	cmplt	R	2408960	512
16013.734	issue	W	3014656	1024
16013.765	issue	W	3015680	1024
16013.765	issue	W	3016704	1024
16013.795	issue	W	3017728	1024
16013.795	issue	W	3018752	1024
16013.948	queue	R	2409472	256
16014.284	queue	R	2409728	256
16101.633	cmplt	W	3014656	1024
16101.938	cmplt	W	3015680	1024
16102.213	cmplt	W	3016704	1024
16102.487	cmplt	W	3017728	1024
16102.732	cmplt	W	3018752	1024
16103.067	issue	R	2409472	512
16109.232	cmplt	R	2409472	512
16109.354	issue	W	3019776	1024
16109.416	issue	W	3020800	1024
16109.416	issue	W	3021824	1024
16109.446	issue	W	3022848	1024
16109.446	issue	W	3023872	1024
16109.477	issue	W	3024896	1024
16110.240	queue	R	2409984	256
16111.003	queue	R	2410240	256
16212.513	cmplt	W	3019776	1024
16212.819	cmplt	W	3020800	1024
16213.124	cmplt	W	3021824	1024
16213.368	cmplt	W	3022848	1024
16213.612	cmplt	W	3023872	1024
16213.856	cmplt	W	3024896	1024
16214.192	issue	R	2409984	512
16220.388	cmplt	R	2409984	512
16220.479	issue	W	3025920	1024
16220.510	issue	W	3026944	1024
16220.540	issue	W	3027968	1024
16220.571	issue	W	3028992	832
16221.120	queue	R	2410496	256
16221.425	queue	R	2410752	256
16296.353	cmplt	W	3025920	1024
16296.658	cmplt	W	3026944	1024
16296.933	cmplt	W	3027968	1024
16297.177	cmplt	W	3028992	832
16297.452	issue	R	2410496	512
16303.647	cmplt	R	2410496	512
16303.983	queue	R	2411008	256
16304.044	issue	R	2411008	256
16304.258	queue	R	2411264	256
16307.218	cmplt	R	2411008	256
16307.279	issue	R	2411264	256
16307.493	queue	R	2411520	256
16310.423	cmplt	R	2411264	256
16310.514	issue	R	2411520	256
16310.728	queue	R	2411776	256
16313.688	cmplt	R	2411520	256
16313.749	issue	R	2411776	256
16313.963	queue	R	2412032	256
16316.893	cmplt	R	2411776	256
16316.985	issue	R	2412032	256
16317.198	queue	R	2412288	256
16320.128	cmplt	R	2412032	256
16320.220	issue	R	2412288	256
16320.433	queue	R	2412544	256
16323.363	cmplt	R	2412288	256
16323.455	issue	R	2412544	256
16323.669	queue	R	2412800	256
16326.599	cmplt	R	2412544	256
16326.690	issue	R	2412800	256
16326.904	queue	R	2413056	256
16329.834	cmplt	R	2412800	256
16329.925	issue	R	2413056	256
16330.169	queue	R	2413312	256
16333.099	cmplt	R	2413056	256
16333.160	issue	R	2413312	256
16333.405	queue	R	2413568	256
16336.335	cmplt	R	2413312	256
16336.396	issue	R	2413568	256
16336.640	queue	R	2413824	256
16339.570	cmplt	R	2413568	256
16339.661	issue	R	2413824	256
16339.905	queue	R	2414080	256
16342.835	cmplt	R	2413824	256
16342.896	issue	R	2414080	256
16343.141	queue	R	2414336	256
16346.071	cmplt	R	2414080	256
16346.132	issue	R	2414336	256
16346.376	queue	R	2414592	256
16349.306	cmplt	R	2414336	256
16349.397	issue	R	2414592	256
16349.611	queue	R	2414848	256
16352.541	cmplt	R	2414592	256
16352.632	issue	R	2414848	256
16352.846	queue	R	2415104	256
16355.776	cmplt	R	2414848	256
16355.868	issue	R	2415104	256
16356.081	queue	R	2415360	256
16359.011	cmplt	R	2415104	256
16359.103	issue	R	2415360	256
16359.316	queue	R	2415616	256
16362.246	cmplt	R	2415360	256
16362.338	issue	R	2415616	256
16362.552	queue	R	2415872	256
16365.481	cmplt	R	2415616	256
16365.573	issue	R	2415872	256
16365.787	queue	R	2416128	256
16368.717	cmplt	R	2415872	256
16368.778	issue	R	2416128	256
16369.022	queue	R	2416384	256
16371.952	cmplt	R	2416128	256
16372.043	issue	R	2416384	256
16372.257	queue	R	2416640	256
16375.187	cmplt	R	2416384	256
16375.248	issue	R	2416640	256
16375.492	queue	R	2416896	256
16378.422	cmplt	R	2416640	256
16378.514	issue	R	2416896	256
16378.727	queue	R	2417152	256
16381.657	cmplt	R	2416896	256
16381.749	issue	R	2417152	256
16381.962	queue	R	2417408	256
16384.892	cmplt	R	2417152	256
16384.984	issue	R	2417408	256
16385.198	queue	R	2417664	256
16388.128	cmplt	R	2417408	256
16388.189	issue	R	2417664	256
16388.433	queue	R	2417920	256
16391.363	cmplt	R	2417664	256
16391.424	issue	R	2417920	256
16391.637	queue	R	2418176	256
16394.567	cmplt	R	2417920	256
16394.659	issue	R	2418176	256
16394.903	queue	R	2418432	256
16397.833	cmplt	R	2418176	256
16397.894	issue	R	2418432	256
16398.108	queue	R	2418688	256
16401.038	cmplt	R	2418432	256
16401.160	issue	R	2418688	256
16401.343	queue	R	2418944	256
16404.303	cmplt	R	2418688	256
16404.425	issue	R	2418944	256
16404.639	queue	R	2419200	256
16407.569	cmplt	R	2418944	256
16407.661	issue	R	2419200	256
16407.874	queue	R	2419456	256
16410.804	cmplt	R	2419200	256
16410.896	issue	R	2419456	256
16411.109	queue	R	2419712	256
16414.070	cmplt	R	2419456	256
16414.131	issue	R	2419712	256
16414.345	queue	R	2419968	256
16417.305	cmplt	R	2419712	256
16417.366	issue	R	2419968	256
16417.610	queue	R	2420224	256
16420.540	cmplt	R	2419968	256
16420.632	issue	R	2420224	256
16420.845	queue	R	2420480	256
16423.775	cmplt	R	2420224	256
16423.867	issue	R	2420480	256
16424.081	queue	R	2420736	256
16427.011	cmplt	R	2420480	256
16427.072	issue	R	2420736	256
16427.316	queue	R	2420992	256
16430.215	cmplt	R	2420736	256
16430.307	issue	R	2420992	256
16430.520	queue	R	2421248	256
16433.450	cmplt	R	2420992	256
16433.542	issue	R	2421248	256
16433.756	queue	R	2421504	256
16436.685	cmplt	R	2421248	256
16436.777	issue	R	2421504	256
16436.991	queue	R	2421760	256
16439.951	cmplt	R	2421504	256
16440.043	issue	R	2421760	256
16440.287	queue	R	2422016	256
16443.217	cmplt	R	2421760	256
16443.308	issue	R	2422016	256
16443.522	queue	R	2422272	256
16446.483	cmplt	R	2422016	256
16446.544	issue	R	2422272	256
16446.788	queue	R	2422528	256
16449.718	cmplt	R	2422272	256
16449.779	issue	R	2422528	256
16450.206	queue	R	2422784	256
16452.953	cmplt	R	2422528	256
16453.044	issue	R	2422784	256
16453.258	queue	R	2423040	256
16456.219	cmplt	R	2422784	256
16456.280	issue	R	2423040	256
16456.524	queue	R	2423296	256
16459.454	cmplt	R	2423040	256
16459.545	issue	R	2423296	256
16459.759	queue	R	2423552	256
16462.689	cmplt	R	2423296	256
16462.780	issue	R	2423552	256
16463.025	queue	R	2423808	256
16465.955	cmplt	R	2423552	256
16466.046	issue	R	2423808	256
16466.290	queue	R	2424064	256
16469.220	cmplt	R	2423808	256
16469.312	issue	R	2424064	256
16469.556	queue	R	2424320	256
16472.516	cmplt	R	2424064	256
16472.608	issue	R	2424320	256
16472.822	queue	R	2424576	256
16475.782	cmplt	R	2424320	256
16475.874	issue	R	2424576	256
16476.118	queue	R	2424832	256
16479.078	cmplt	R	2424576	256
16479.170	issue	R	2424832	256
16479.383	queue	R	2425088	256
16482.374	cmplt	R	2424832	256
16482.466	issue	R	2425088	256
16482.710	queue	R	2425344	256
16485.640	cmplt	R	2425088	256
16485.732	issue	R	2425344	256
16486.006	queue	R	2425600	256
16488.936	cmplt	R	2425344	256
16489.028	issue	R	2425600	256
16489.272	queue	R	2425856	256
16492.202	cmplt	R	2425600	256
16492.294	issue	R	2425856	256
16492.538	queue	R	2426112	256
16495.498	cmplt	R	2425856	256
16495.590	issue	R	2426112	256
16495.834	queue	R	2426368	256
16498.764	cmplt	R	2426112	256
16498.855	issue	R	2426368	256
16499.100	queue	R	2426624	256
16502.030	cmplt	R	2426368	256
16502.152	issue	R	2426624	256
16502.365	queue	R	2426880	256
16505.326	cmplt	R	2426624	256
16505.417	issue	R	2426880	256
16505.662	queue	R	2427136	256
16508.622	cmplt	R	2426880	256
16508.714	issue	R	2427136	256
16508.927	queue	R	2427392	256
16511.888	cmplt	R	2427136	256
16511.979	issue	R	2427392	256
16512.193	queue	R	2427648	256
16515.153	cmplt	R	2427392	256
16515.275	issue	R	2427648	256
16515.489	queue	R	2427904	256
16518.450	cmplt	R	2427648	256
16518.541	issue	R	2427904	256
16518.755	queue	R	2428160	256
16521.715	cmplt	R	2427904	256
16521.807	issue	R	2428160	256
16522.051	queue	R	2428416	256
16524.981	cmplt	R	2428160	256
16525.072	issue	R	2428416	256
16525.317	queue	R	2428672	256
16528.277	cmplt	R	2428416	256
16528.369	issue	R	2428672	256
16528.582	queue	R	2428928	256
16531.543	cmplt	R	2428672	256
16531.634	issue	R	2428928	256
16531.879	queue	R	2429184	256
16534.839	cmplt	R	2428928	256
16534.931	issue	R	2429184	256
16535.144	queue	R	2429440	256
16538.105	cmplt	R	2429184	256
16538.196	issue	R	2429440	256
16538.440	queue	R	2429696	256
16541.401	cmplt	R	2429440	256
16541.492	issue	R	2429696	256
16541.706	queue	R	2429952	256
16544.667	cmplt	R	2429696	256
16544.758	issue	R	2429952	256
16544.972	queue	R	2430208	256
16547.932	cmplt	R	2429952	256
16548.024	issue	R	2430208	256
16548.268	queue	R	2430464	256
16551.198	cmplt	R	2430208	256
16551.289	issue	R	2430464	256
16551.534	queue	R	2430720	256
16554.494	cmplt	R	2430464	256
16554.586	issue	R	2430720	256
16554.830	queue	R	2430976	256
16557.760	cmplt	R	2430720	256
16557.851	issue	R	2430976	256
16558.096	queue	R	2431232	256
16561.025	cmplt	R	2430976	256
16561.148	issue	R	2431232	256
16561.361	queue	R	2431488	256
16564.322	cmplt	R	2431232	256
16564.413	issue	R	2431488	256
16564.657	queue	R	2431744	256
16567.587	cmplt	R	2431488	256
16567.679	issue	R	2431744	256
16567.923	queue	R	2432000	256
16570.853	cmplt	R	2431744	256
16570.945	issue	R	2432000	256
16571.189	queue	R	2432256	256
16574.149	cmplt	R	2432000	256
16574.241	issue	R	2432256	256
16574.485	queue	R	2432512	256
16577.415	cmplt	R	2432256	256
16577.506	issue	R	2432512	256
16577.751	queue	R	2432768	256
16580.681	cmplt	R	2432512	256
16580.772	issue	R	2432768	256
16581.016	queue	R	2433024	256
16583.977	cmplt	R	2432768	256
16584.068	issue	R	2433024	256
16584.313	queue	R	2433280	256
16587.242	cmplt	R	2433024	256
16587.334	issue	R	2433280	256
16587.578	queue	R	2433536	256
16590.508	cmplt	R	2433280	256
16590.630	issue	R	2433536	256
16590.844	queue	R	2433792	256
16593.804	cmplt	R	2433536	256
16593.896	issue	R	2433792	256
16594.140	queue	R	2434048	256
16597.070	cmplt	R	2433792	256
16597.162	issue	R	2434048	256
16597.406	queue	R	2434304	256
16600.366	cmplt	R	2434048	256
16600.458	issue	R	2434304	256
16600.671	queue	R	2434560	256
16603.662	cmplt	R	2434304	256
16603.754	issue	R	2434560	256
16603.968	queue	R	2434816	256
16606.928	cmplt	R	2434560	256
16607.020	issue	R	2434816	256
16607.264	queue	R	2435072	256
16610.194	cmplt	R	2434816	256
16610.316	issue	R	2435072	256
16610.530	queue	R	2435328	256
16613.490	cmplt	R	2435072	256
16613.582	issue	R	2435328	256
16613.795	queue	R	2435584	256
16616.786	cmplt	R	2435328	256
16616.878	issue	R	2435584	256
16617.091	queue	R	2435840	256
16620.082	cmplt	R	2435584	256
16620.143	issue	R	2435840	256
16620.357	queue	R	2436096	256
16623.318	cmplt	R	2435840	256
16623.409	issue	R	2436096	256
16623.653	queue	R	2436352	256
16626.614	cmplt	R	2436096	256
16626.705	issue	R	2436352	256
16626.919	queue	R	2436608	256
16629.879	cmplt	R	2436352	256
16630.002	issue	R	2436608	256
16630.246	queue	R	2436864	256
16633.206	cmplt	R	2436608	256
16633.298	issue	R	2436864	256
16633.542	queue	R	2437120	256
16636.472	cmplt	R	2436864	256
16636.563	issue	R	2437120	256
16636.808	queue	R	2437376	256
16639.768	cmplt	R	2437120	256
16639.860	issue	R	2437376	256
16640.134	queue	R	2437632	256
16643.034	cmplt	R	2437376	256
16643.125	issue	R	2437632	256
16643.339	queue	R	2437888	256
16646.299	cmplt	R	2437632	256
16646.391	issue	R	2437888	256
16646.635	queue	R	2438144	256
16649.596	cmplt	R	2437888	256
16649.687	issue	R	2438144	256
16649.901	queue	R	2438400	256
16652.861	cmplt	R	2438144	256
16652.953	issue	R	2438400	256
16653.197	queue	R	2438656	256
16656.127	cmplt	R	2438400	256
16656.219	issue	R	2438656	256
16656.463	queue	R	2438912	256
16659.423	cmplt	R	2438656	256
16659.515	issue	R	2438912	256
16659.759	queue	R	2439168	256
16662.689	cmplt	R	2438912	256
16662.811	issue	R	2439168	256
16663.025	queue	R	2439424	256
16665.985	cmplt	R	2439168	256
16666.077	issue	R	2439424	256
16666.321	queue	R	2439680	256
16669.281	cmplt	R	2439424	256
16669.373	issue	R	2439680	256
16669.617	queue	R	2439936	256
16672.547	cmplt	R	2439680	256
16672.638	issue	R	2439936	256
16672.883	queue	R	2440192	256
16675.843	cmplt	R	2439936	256
16675.935	issue	R	2440192	256
16676.179	queue	R	2440448	256
16679.109	cmplt	R	2440192	256
16679.200	issue	R	2440448	256
16679.445	queue	R	2440704	256
16682.405	cmplt	R	2440448	256
16682.497	issue	R	2440704	256
16682.710	queue	R	2440960	256
16685.671	cmplt	R	2440704	256
16685.762	issue	R	2440960	256
16686.006	queue	R	2441216	256
16688.936	cmplt	R	2440960	256
16689.028	issue	R	2441216	256
16689.272	queue	R	2441472	256
16692.263	cmplt	R	2441216	256
16692.355	issue	R	2441472	256
16692.568	queue	R	2441728	256
16695.529	cmplt	R	2441472	256
16695.620	issue	R	2441728	256
16695.834	queue	R	2441984	256
16698.794	cmplt	R	2441728	256
16698.886	issue	R	2441984	256
16699.130	queue	R	2442240	256
16702.060	cmplt	R	2441984	256
16702.182	issue	R	2442240	256
16702.396	queue	R	2442496	256
16705.356	cmplt	R	2442240	256
16705.478	issue	R	2442496	256
16705.692	queue	R	2442752	256
16708.653	cmplt	R	2442496	256
16708.744	issue	R	2442752	256
16708.958	queue	R	2443008	256
16711.918	cmplt	R	2442752	256
16712.010	issue	R	2443008	256
16712.223	queue	R	2443264	256
16715.214	cmplt	R	2443008	256
16715.306	issue	R	2443264	256
16715.520	queue	R	2443520	256
16718.480	cmplt	R	2443264	256
16718.572	issue	R	2443520	256
16718.816	queue	R	2443776	256
16721.746	cmplt	R	2443520	256
16721.837	issue	R	2443776	256
16722.081	queue	R	2444032	256
16725.042	cmplt	R	2443776	256
16725.134	issue	R	2444032	256
16725.347	queue	R	2444288	256
16728.308	cmplt	R	2444032	256
16728.369	issue	R	2444288	256
16728.613	queue	R	2444544	256
16731.543	cmplt	R	2444288	256
16731.665	issue	R	2444544	256
16731.879	queue	R	2444800	256
16734.839	cmplt	R	2444544	256
16734.931	issue	R	2444800	256
16735.144	queue	R	2445056	256
16738.105	cmplt	R	2444800	256
16738.196	issue	R	2445056	256
16738.440	queue	R	2445312	256
16741.370	cmplt	R	2445056	256
16741.462	issue	R	2445312	256
16741.706	queue	R	2445568	256
16744.667	cmplt	R	2445312	256
16744.758	issue	R	2445568	256
16745.002	queue	R	2445824	256
16747.932	cmplt	R	2445568	256
16748.024	issue	R	2445824	256
16748.268	queue	R	2446080	256
16751.198	cmplt	R	2445824	256
16751.289	issue	R	2446080	256
16751.534	queue	R	2446336	256
16754.494	cmplt	R	2446080	256
16754.586	issue	R	2446336	256
16754.799	queue	R	2446592	256
16757.760	cmplt	R	2446336	256
16757.851	issue	R	2446592	256
16758.096	queue	R	2446848	256
16761.025	cmplt	R	2446592	256
16761.148	issue	R	2446848	256
16761.361	queue	R	2447104	256
16764.322	cmplt	R	2446848	256
16764.413	issue	R	2447104	256
16764.657	queue	R	2447360	256
16767.587	cmplt	R	2447104	256
16767.709	issue	R	2447360	256
16767.923	queue	R	2447616	256
16770.884	cmplt	R	2447360	256
16770.975	issue	R	2447616	256
16771.189	queue	R	2447872	256
16774.149	cmplt	R	2447616	256
16774.241	issue	R	2447872	256
16774.485	queue	R	2448128	256
16777.415	cmplt	R	2447872	256
16777.506	issue	R	2448128	256
16777.751	queue	R	2448384	256
16780.681	cmplt	R	2448128	256
16780.772	issue	R	2448384	256
16781.016	queue	R	2448640	256
16783.977	cmplt	R	2448384	256
16784.068	issue	R	2448640	256
16784.282	queue	R	2448896	256
16787.242	cmplt	R	2448640	256
16787.334	issue	R	2448896	256
16787.578	queue	R	2449152	256
16790.508	cmplt	R	2448896	256
16790.600	issue	R	2449152	256
16790.844	queue	R	2449408	256
16793.804	cmplt	R	2449152	256
16793.896	issue	R	2449408	256
16794.140	queue	R	2449664	256
16797.070	cmplt	R	2449408	256
16797.162	issue	R	2449664	256
16797.406	queue	R	2449920	256
16800.366	cmplt	R	2449664	256
16800.488	issue	R	2449920	256
16800.702	queue	R	2450176	256
16803.662	cmplt	R	2449920	256
16803.754	issue	R	2450176	256
16803.998	queue	R	2450432	256
16806.959	cmplt	R	2450176	256
16807.050	issue	R	2450432	256
16807.264	queue	R	2450688	256
16810.224	cmplt	R	2450432	256
16810.316	issue	R	2450688	256
16810.530	queue	R	2450944	256
16813.490	cmplt	R	2450688	256
16813.582	issue	R	2450944	256
16813.826	queue	R	2451200	256
16816.786	cmplt	R	2450944	256
16816.878	issue	R	2451200	256
16817.091	queue	R	2451456	256
16820.082	cmplt	R	2451200	256
16820.174	issue	R	2451456	256
16820.388	queue	R	2451712	256
16823.379	cmplt	R	2451456	256
16823.470	issue	R	2451712	256
16823.684	queue	R	2451968	256
16826.644	cmplt	R	2451712	256
16826.736	issue	R	2451968	256
16826.980	queue	R	2452224	256
16829.940	cmplt	R	2451968	256
16830.063	issue	R	2452224	256
16830.307	queue	R	2452480	256
16833.267	cmplt	R	2452224	256
16833.359	issue	R	2452480	256
16833.603	queue	R	2452736	256
16836.563	cmplt	R	2452480	256
16836.655	issue	R	2452736	256
16836.899	queue	R	2452992	256
16839.860	cmplt	R	2452736	256
16839.921	issue	R	2452992	256
16840.195	queue	R	2453248	256
16843.156	cmplt	R	2452992	256
16843.247	issue	R	2453248	256
16843.492	queue	R	2453504	256
16846.421	cmplt	R	2453248	256
16846.513	issue	R	2453504	256
16846.757	queue	R	2453760	256
16849.718	cmplt	R	2453504	256
16849.809	issue	R	2453760	256
16850.053	queue	R	2454016	256
16852.983	cmplt	R	2453760	256
16853.075	issue	R	2454016	256
16853.319	queue	R	2454272	256
16856.280	cmplt	R	2454016	256
16856.371	issue	R	2454272	256
16856.585	queue	R	2454528	256
16859.545	cmplt	R	2454272	256
16859.637	issue	R	2454528	256
16859.881	queue	R	2454784	256
16862.811	cmplt	R	2454528	256
16862.902	issue	R	2454784	256
16863.147	queue	R	2455040	256
16866.107	cmplt	R	2454784	256
16866.199	issue	R	2455040	256
16866.412	queue	R	2455296	256
16869.373	cmplt	R	2455040	256
16869.464	issue	R	2455296	256
16869.709	queue	R	2455552	256
16872.669	cmplt	R	2455296	256
16872.761	issue	R	2455552	256
16873.005	queue	R	2455808	256
16875.935	cmplt	R	2455552	256
16876.026	issue	R	2455808	256
16876.270	queue	R	2456064	256
16879.231	cmplt	R	2455808	256
16879.322	issue	R	2456064	256
16879.567	queue	R	2456320	256
16882.527	cmplt	R	2456064	256
16882.619	issue	R	2456320	256
16882.832	queue	R	2456576	256
16885.793	cmplt	R	2456320	256
16885.884	issue	R	2456576	256
16886.128	queue	R	2456832	256
16889.089	cmplt	R	2456576	256
16889.181	issue	R	2456832	256
16889.394	queue	R	2457088	256
16892.355	cmplt	R	2456832	256
16892.446	issue	R	2457088	256
16892.690	queue	R	2457344	256
16895.651	cmplt	R	2457088	256
16895.742	issue	R	2457344	256
16895.956	queue	R	2457600	256
16898.947	cmplt	R	2457344	256
16899.039	issue	R	2457600	256
16899.283	queue	R	2457856	256
16902.335	cmplt	R	2457600	256
16902.457	issue	R	2457856	256
16902.671	queue	R	2458112	256
16905.662	cmplt	R	2457856	256
16905.784	issue	R	2458112	256
16905.997	queue	R	2458368	256
16908.988	cmplt	R	2458112	256
16909.080	issue	R	2458368	256
16909.324	queue	R	2458624	256
16912.315	cmplt	R	2458368	256
16912.407	issue	R	2458624	256
16912.620	queue	R	2458880	256
16915.611	cmplt	R	2458624	256
16915.703	issue	R	2458880	256
16915.947	queue	R	2459136	256
16918.907	cmplt	R	2458880	256
16919.029	issue	R	2459136	256
16919.243	queue	R	2459392	256
16922.234	cmplt	R	2459136	256
16922.326	issue	R	2459392	256
16922.600	queue	R	2459648	256
16925.561	cmplt	R	2459392	256
16925.683	issue	R	2459648	256
16925.958	queue	R	2459904	256
16928.918	cmplt	R	2459648	256
16929.040	issue	R	2459904	256
16929.315	queue	R	2460160	256
16932.275	cmplt	R	2459904	256
16932.336	issue	R	2460160	256
16932.580	queue	R	2460416	256
16935.541	cmplt	R	2460160	256
16935.663	issue	R	2460416	256
16935.907	queue	R	2460672	256
16938.868	cmplt	R	2460416	256
16938.959	issue	R	2460672	256
16939.203	queue	R	2460928	256
16942.164	cmplt	R	2460672	256
16942.255	issue	R	2460928	256
16942.500	queue	R	2461184	256
16945.460	cmplt	R	2460928	256
16945.552	issue	R	2461184	256
16945.796	queue	R	2461440	256
16948.787	cmplt	R	2461184	256
16948.878	issue	R	2461440	256
16949.092	queue	R	2461696	256
16952.083	cmplt	R	2461440	256
16952.175	issue	R	2461696	256
16952.419	queue	R	2461952	256
16955.379	cmplt	R	2461696	256
16955.471	issue	R	2461952	256
16955.715	queue	R	2462208	256
16958.675	cmplt	R	2461952	256
16958.767	issue	R	2462208	256
16959.011	queue	R	2462464	256
16961.972	cmplt	R	2462208	256
16962.063	issue	R	2462464	256
16962.307	queue	R	2462720	256
16965.268	cmplt	R	2462464	256
16965.359	issue	R	2462720	256
16965.604	queue	R	2462976	256
16968.564	cmplt	R	2462720	256
16968.686	issue	R	2462976	256
16968.900	queue	R	2463232	256
16971.860	cmplt	R	2462976	256
16971.952	issue	R	2463232	256
16972.196	queue	R	2463488	256
16975.187	cmplt	R	2463232	256
16975.278	issue	R	2463488	256
16975.523	queue	R	2463744	256
16978.483	cmplt	R	2463488	256
16978.575	issue	R	2463744	256
16978.819	queue	R	2464000	256
16981.779	cmplt	R	2463744	256
16981.871	issue	R	2464000	256
16982.115	queue	R	2464256	256
16985.076	cmplt	R	2464000	256
16985.167	issue	R	2464256	256
16985.411	queue	R	2464512	256
16988.372	cmplt	R	2464256	256
16988.463	issue	R	2464512	256
16988.707	queue	R	2464768	256
16991.668	cmplt	R	2464512	256
16991.790	issue	R	2464768	256
16992.004	queue	R	2465024	256
16994.995	cmplt	R	2464768	256
16995.086	issue	R	2465024	256
16995.300	queue	R	2465280	256
16998.291	cmplt	R	2465024	256
16998.382	issue	R	2465280	256
16998.627	queue	R	2465536	256
17001.587	cmplt	R	2465280	256
17001.709	issue	R	2465536	256
17001.923	queue	R	2465792	256
17004.914	cmplt	R	2465536	256
17005.036	issue	R	2465792	256
17005.250	queue	R	2466048	256
17008.240	cmplt	R	2465792	256
17008.332	issue	R	2466048	256
17008.546	queue	R	2466304	256
17011.537	cmplt	R	2466048	256
17011.628	issue	R	2466304	256
17011.842	queue	R	2466560	256
17014.833	cmplt	R	2466304	256
17014.924	issue	R	2466560	256
17015.169	queue	R	2466816	256
17018.129	cmplt	R	2466560	256
17018.221	issue	R	2466816	256
17018.465	queue	R	2467072	256
17021.456	cmplt	R	2466816	256
17021.547	issue	R	2467072	256
17021.761	queue	R	2467328	256
17024.752	cmplt	R	2467072	256
17024.844	issue	R	2467328	256
17025.088	queue	R	2467584	256
17028.048	cmplt	R	2467328	256
17028.140	issue	R	2467584	256
17028.384	queue	R	2467840	256
17031.344	cmplt	R	2467584	256
17031.436	issue	R	2467840	256
17031.680	queue	R	2468096	256
17034.641	cmplt	R	2467840	256
17034.732	issue	R	2468096	256
17034.976	queue	R	2468352	256
17037.937	cmplt	R	2468096	256
17038.028	issue	R	2468352	256
17038.273	queue	R	2468608	256
17041.233	cmplt	R	2468352	256
17041.325	issue	R	2468608	256
17041.569	queue	R	2468864	256
17044.529	cmplt	R	2468608	256
17044.621	issue	R	2468864	256
17044.865	queue	R	2469120	256
17047.825	cmplt	R	2468864	256
17047.917	issue	R	2469120	256
17048.161	queue	R	2469376	256
17051.122	cmplt	R	2469120	256
17051.213	issue	R	2469376	256
17051.457	queue	R	2469632	256
17054.448	cmplt	R	2469376	256
17054.540	issue	R	2469632	256
17054.754	queue	R	2469888	256
17057.745	cmplt	R	2469632	256
17057.836	issue	R	2469888	256
17058.080	queue	R	2470144	256
17061.041	cmplt	R	2469888	256
17061.132	issue	R	2470144	256
17061.376	queue	R	2470400	256
17064.337	cmplt	R	2470144	256
17064.429	issue	R	2470400	256
17064.673	queue	R	2470656	256
17067.633	cmplt	R	2470400	256
17067.725	issue	R	2470656	256
17067.969	queue	R	2470912	256
17070.929	cmplt	R	2470656	256
17071.021	issue	R	2470912	256
17071.265	queue	R	2471168	256
17074.226	cmplt	R	2470912	256
17074.317	issue	R	2471168	256
17074.561	queue	R	2471424	256
17077.522	cmplt	R	2471168	256
17077.644	issue	R	2471424	256
17077.857	queue	R	2471680	256
17080.848	cmplt	R	2471424	256
17080.940	issue	R	2471680	256
17081.154	queue	R	2471936	256
17084.145	cmplt	R	2471680	256
17084.236	issue	R	2471936	256
17084.480	queue	R	2472192	256
17087.441	cmplt	R	2471936	256
17087.532	issue	R	2472192	256
17087.777	queue	R	2472448	256
17090.737	cmplt	R	2472192	256
17090.829	issue	R	2472448	256
17091.073	queue	R	2472704	256
17094.033	cmplt	R	2472448	256
17094.125	issue	R	2472704	256
17094.338	queue	R	2472960	256
17097.299	cmplt	R	2472704	256
17097.391	issue	R	2472960	256
17097.604	queue	R	2473216	256
17100.565	cmplt	R	2472960	256
17100.656	issue	R	2473216	256
17100.870	queue	R	2473472	256
17103.891	cmplt	R	2473216	256
17103.983	issue	R	2473472	256
17104.197	queue	R	2473728	256
17107.188	cmplt	R	2473472	256
17107.279	issue	R	2473728	256
17107.523	queue	R	2473984	256
17110.514	cmplt	R	2473728	256
17110.606	issue	R	2473984	256
17110.819	queue	R	2474240	256
17113.780	cmplt	R	2473984	256
17113.872	issue	R	2474240	256
17114.116	queue	R	2474496	256
17117.076	cmplt	R	2474240	256
17117.168	issue	R	2474496	256
17117.412	queue	R	2474752	256
17120.372	cmplt	R	2474496	256
17120.464	issue	R	2474752	256
17120.678	queue	R	2475008	256
17123.669	cmplt	R	2474752	256
17123.760	issue	R	2475008	256
17124.004	queue	R	2475264	256
17126.965	cmplt	R	2475008	256
17127.026	issue	R	2475264	256
17127.239	queue	R	2475520	256
17130.200	cmplt	R	2475264	256
17130.261	issue	R	2475520	256
17130.475	queue	R	2475776	256
17133.435	cmplt	R	2475520	256
17133.527	issue	R	2475776	256
17133.740	queue	R	2476032	256
17136.701	cmplt	R	2475776	256
17136.823	issue	R	2476032	256
17137.036	queue	R	2476288	256
17140.058	cmplt	R	2476032	256
17140.150	issue	R	2476288	256
17140.394	queue	R	2476544	256
17143.354	cmplt	R	2476288	256
17143.446	issue	R	2476544	256
17143.690	queue	R	2476800	256
17146.650	cmplt	R	2476544	256
17146.742	issue	R	2476800	256
17146.986	queue	R	2477056	256
17149.977	cmplt	R	2476800	256
17150.099	issue	R	2477056	256
17150.313	queue	R	2477312	256
17153.304	cmplt	R	2477056	256
17153.395	issue	R	2477312	256
17153.640	queue	R	2477568	256
17156.600	cmplt	R	2477312	256
17156.692	issue	R	2477568	256
17156.936	queue	R	2477824	256
17159.927	cmplt	R	2477568	256
17160.049	issue	R	2477824	256
17160.262	queue	R	2478080	256
17163.253	cmplt	R	2477824	256
17163.345	issue	R	2478080	256
17163.589	queue	R	2478336	256
17166.550	cmplt	R	2478080	256
17166.641	issue	R	2478336	256
17166.885	queue	R	2478592	256
17169.846	cmplt	R	2478336	256
17169.937	issue	R	2478592	256
17170.212	queue	R	2478848	256
17173.173	cmplt	R	2478592	256
17173.264	issue	R	2478848	256
17173.569	queue	R	2479104	256
17176.469	cmplt	R	2478848	256
17176.530	issue	R	2479104	256
17176.774	queue	R	2479360	256
17179.734	cmplt	R	2479104	256
17179.826	issue	R	2479360	256
17180.101	queue	R	2479616	256
17183.031	cmplt	R	2479360	256
17183.122	issue	R	2479616	256
17183.550	queue	R	2479872	256
17186.357	cmplt	R	2479616	256
17186.449	issue	R	2479872	256
17186.968	queue	R	2480128	256
17189.745	cmplt	R	2479872	256
17189.837	issue	R	2480128	256
17190.295	queue	R	2480384	256
17193.072	cmplt	R	2480128	256
17193.163	issue	R	2480384	256
17193.560	queue	R	2480640	256
17196.368	cmplt	R	2480384	256
17196.460	issue	R	2480640	256
17196.887	queue	R	2480896	256
17199.664	cmplt	R	2480640	256
17199.756	issue	R	2480896	256
17200.153	queue	R	2481152	256
17202.960	cmplt	R	2480896	256
17203.083	issue	R	2481152	256
17203.479	queue	R	2481408	256
17206.287	cmplt	R	2481152	256
17206.379	issue	R	2481408	256
17206.776	queue	R	2481664	256
17209.583	cmplt	R	2481408	256
17209.644	issue	R	2481664	256
17210.041	queue	R	2481920	256
17212.849	cmplt	R	2481664	256
17212.941	issue	R	2481920	256
17213.337	queue	R	2482176	256
17216.145	cmplt	R	2481920	256
17216.237	issue	R	2482176	256
17216.603	queue	R	2482432	256
17219.441	cmplt	R	2482176	256
17219.533	issue	R	2482432	256
17219.930	queue	R	2482688	256
17222.738	cmplt	R	2482432	256
17222.799	issue	R	2482688	256
17223.165	queue	R	2482944	256
17226.003	cmplt	R	2482688	256
17226.125	issue	R	2482944	256
17226.492	queue	R	2483200	256
17229.330	cmplt	R	2482944	256
17229.452	issue	R	2483200	256
17229.818	queue	R	2483456	256
17232.657	cmplt	R	2483200	256
17232.779	issue	R	2483456	256
17233.176	queue	R	2483712	256
17235.831	queue	WS	1916928	8
17235.953	cmplt	R	2483456	256
17236.045	issue	R	2483712	256
17236.441	queue	R	2483968	256
17239.249	cmplt	R	2483712	256
17239.310	issue	R	2483968	256
17239.646	queue	R	2484224	256
17242.484	cmplt	R	2483968	256
17242.545	issue	R	2484224	256
17242.881	queue	R	2484480	256
17245.720	cmplt	R	2484224	256
17245.781	issue	R	2484480	256
17246.147	queue	R	2484736	256
17248.955	cmplt	R	2484480	256
17249.016	issue	R	2484736	256
17249.382	queue	R	2484992	256
17252.220	cmplt	R	2484736	256
17252.281	issue	R	2484992	256
17252.678	queue	R	2485248	256
17255.486	cmplt	R	2484992	256
17255.547	issue	R	2485248	256
17255.913	queue	R	2485504	256
17258.752	cmplt	R	2485248	256
17258.813	issue	R	2485504	256
17259.179	queue	R	2485760	256
17261.987	cmplt	R	2485504	256
17262.078	issue	R	2485760	256
17262.414	queue	R	2486016	256
17265.253	cmplt	R	2485760	256
17265.314	issue	R	2486016	256
17265.680	queue	R	2486272	256
17268.518	cmplt	R	2486016	256
17268.579	issue	R	2486272	256
17268.946	queue	R	2486528	256
17271.753	cmplt	R	2486272	256
17271.845	issue	R	2486528	256
17272.211	queue	R	2486784	256
17275.019	cmplt	R	2486528	256
17275.111	issue	R	2486784	256
17275.446	queue	R	2487040	256
17278.285	cmplt	R	2486784	256
17278.376	issue	R	2487040	256
17278.743	queue	R	2487296	256
17281.550	cmplt	R	2487040	256
17281.642	issue	R	2487296	256
17282.008	queue	R	2487552	256
17284.847	cmplt	R	2487296	256
17284.908	issue	R	2487552	256
17285.274	queue	R	2487808	256
17288.112	cmplt	R	2487552	256
17288.173	issue	R	2487808	256
17288.540	queue	R	2488064	256
17291.378	cmplt	R	2487808	256
17291.470	issue	R	2488064	256
17291.805	queue	R	2488320	256
17294.644	cmplt	R	2488064	256
17294.735	issue	R	2488320	256
17295.071	queue	R	2488576	256
17297.909	cmplt	R	2488320	256
17298.001	issue	R	2488576	256
17298.337	queue	R	2488832	256
17301.175	cmplt	R	2488576	256
17301.297	issue	WS	1916928	8
17301.663	queue	R	2489088	256
17302.732	cmplt	WS	1916928	8
17303.067	issue	R	2488832	512
17303.434	queue	WS	1916928	8
17309.324	cmplt	R	2488832	512
17309.446	issue	WS	1916928	8
17309.843	queue	R	2489344	256
17310.148	queue	R	2489600	256
17310.331	cmplt	WS	1916928	8
17310.636	issue	R	2489344	512
17316.740	cmplt	R	2489344	512
17317.107	queue	R	2489856	256
17317.381	queue	R	2490112	256
17317.442	issue	R	2489856	512
17323.760	cmplt	R	2489856	512
17324.187	queue	R	2490368	256
17324.493	queue	R	2490624	256
17324.554	issue	R	2490368	512
17325.195	queue	WS	2490368	512
17330.658	cmplt	R	2490368	512
17330.963	queue	WS	1912920	8
17331.054	queue	R	2490880	256
17331.329	queue	R	2491136	256
17331.390	issue	WS	1912920	8
17332.306	cmplt	WS	1912920	8
17332.397	issue	R	2490880	512
17338.532	cmplt	R	2490880	512
17338.898	queue	R	2491392	256
17339.203	queue	R	2491648	256
17339.234	issue	R	2491392	512
17343.141	queue	WS	1845752	8
17343.171	queue	WS	1845760	8
17343.171	queue	WS	1845768	8
17343.202	queue	WS	1845776	8
17343.202	queue	WS	1845784	8
17343.202	queue	WS	1845792	8
17343.232	queue	WS	1845800	8
17345.399	cmplt	R	2491392	512
17345.491	issue	WS	1845752	56
17345.857	queue	R	2491904	256
17346.162	queue	R	2492160	256
17347.932	cmplt	WS	1845752	56
17348.024	queue	WS	1845808	8
17348.054	issue	R	2491904	512
17354.280	cmplt	R	2491904	512
17354.342	issue	WS	1845808	8
17354.708	queue	R	2492416	256
17355.013	queue	R	2492672	256
17355.227	cmplt	WS	1845808	8
17355.288	issue	R	2492416	512
17355.501	queue	WS	1845816	8
17355.532	queue	WS	1845824	8
17361.422	cmplt	R	2492416	512
17361.544	issue	WS	1845816	16
17361.880	queue	R	2492928	256
17362.216	queue	R	2493184	256
17362.979	cmplt	WS	1845816	16
17363.040	queue	WS	1845832	8
17363.070	issue	R	2492928	512
17369.205	cmplt	R	2492928	512
17369.297	issue	WS	1845832	8
17369.632	queue	R	2493440	256
17369.937	queue	R	2493696	256
17370.151	cmplt	WS	1845832	8
17370.182	issue	R	2493440	512
17376.316	cmplt	R	2493440	512
17376.743	queue	R	2493952	256
17377.018	queue	R	2494208	256
17377.079	issue	R	2493952	512
17383.244	cmplt	R	2493952	512
17383.611	queue	R	2494464	256
17383.916	queue	R	2494720	256
17383.977	issue	R	2494464	512
17390.142	cmplt	R	2494464	512
17390.508	queue	R	2494976	256
17390.813	queue	R	2495232	256
17390.874	issue	R	2494976	512
17394.018	queue	WS	2635648	80
17397.070	cmplt	R	2494976	512
17397.192	issue	WS	2635648	80
17397.558	queue	R	2495488	256
17397.833	queue	R	2495744	256
17399.359	cmplt	WS	2635648	80
17399.481	issue	R	2495488	512
17399.542	queue	WS	1845840	8
17399.573	queue	WS	1845848	8
17399.573	queue	WS	1845856	8
17399.603	queue	WS	1845864	8
17399.603	queue	WS	1845872	8
17399.603	queue	WS	1845880	8
17399.634	queue	WS	1845888	8
17399.634	queue	WS	1845896	8
17399.634	queue	WS	1845904	8
17405.768	cmplt	R	2495488	512
17405.890	issue	WS	1845840	72
17406.287	queue	R	2496000	256
17406.562	queue	R	2496256	256
17412.849	cmplt	WS	1845840	72
17412.971	issue	R	2496000	512
17412.971	queue	WS	1845912	8
17419.228	cmplt	R	2496000	512
17419.289	issue	WS	1845912	8
17419.655	queue	R	2496512	256
17419.991	queue	R	2496768	256
17420.266	cmplt	WS	1845912	8
17420.296	issue	R	2496512	512
17421.059	queue	R	2496512	512
17426.492	cmplt	R	2496512	512
17426.827	queue	R	2497024	256
17426.888	issue	R	2497024	256
17427.133	queue	R	2497280	256
17430.093	cmplt	R	2497024	256
17430.185	issue	R	2497280	256
17430.459	queue	R	2497536	256
17433.359	cmplt	R	2497280	256
17433.420	issue	R	2497536	256
17433.694	queue	R	2497792	256
17436.624	cmplt	R	2497536	256
17436.716	issue	R	2497792	256
17436.960	queue	R	2498048	256
17439.951	cmplt	R	2497792	256
17440.073	issue	R	2498048	256
17440.287	queue	R	2498304	256
17443.247	cmplt	R	2498048	256
17443.339	issue	R	2498304	256
17443.583	queue	R	2498560	256
17446.513	cmplt	R	2498304	256
17446.605	issue	R	2498560	256
17446.849	queue	R	2498816	256
17449.809	cmplt	R	2498560	256
17449.870	issue	R	2498816	256
17450.175	queue	R	2499072	256
17453.075	cmplt	R	2498816	256
17453.136	issue	R	2499072	256
17453.380	queue	R	2499328	256
17456.402	cmplt	R	2499072	256
17456.463	issue	R	2499328	256
17456.737	queue	R	2499584	256
17459.667	cmplt	R	2499328	256
17459.759	issue	R	2499584	256
17460.064	queue	R	2499840	256
17462.964	cmplt	R	2499584	256
17463.055	issue	R	2499840	256
17463.482	queue	R	2500096	256
17466.260	cmplt	R	2499840	256
17466.321	issue	R	2500096	256
17466.687	queue	R	2500352	256
17469.525	cmplt	R	2500096	256
17469.586	issue	R	2500352	256
17469.922	queue	R	2500608	256
17472.761	cmplt	R	2500352	256
17472.852	issue	R	2500608	256
17473.188	queue	R	2500864	256
17476.026	cmplt	R	2500608	256
17476.087	issue	R	2500864	256
17476.454	queue	R	2501120	256
17479.261	cmplt	R	2500864	256
17479.322	issue	R	2501120	256
17479.689	queue	R	2501376	256
17482.527	cmplt	R	2501120	256
17482.588	issue	R	2501376	256
17482.954	queue	R	2501632	256
17485.762	cmplt	R	2501376	256
17485.854	issue	R	2501632	256
17486.190	queue	R	2501888	256
17489.028	cmplt	R	2501632	256
17489.089	issue	R	2501888	256
17489.455	queue	R	2502144	256
17492.263	cmplt	R	2501888	256
17492.355	issue	R	2502144	256
17492.690	queue	R	2502400	256
17495.529	cmplt	R	2502144	256
17495.590	issue	R	2502400	256
17495.956	queue	R	2502656	256
17498.764	cmplt	R	2502400	256
17498.855	issue	R	2502656	256
17499.191	queue	R	2502912	256
17502.030	cmplt	R	2502656	256
17502.121	issue	R	2502912	256
17502.487	queue	R	2503168	256
17505.326	cmplt	R	2502912	256
17505.387	issue	R	2503168	256
17505.753	queue	R	2503424	256
17508.591	cmplt	R	2503168	256
17508.683	issue	R	2503424	256
17509.019	queue	R	2503680	256
17511.857	cmplt	R	2503424	256
17511.949	issue	R	2503680	256
17512.315	queue	R	2503936	256
17515.153	cmplt	R	2503680	256
17515.245	issue	R	2503936	256
17515.581	queue	R	2504192	256
17518.419	cmplt	R	2503936	256
17518.511	issue	R	2504192	256
17518.846	queue	R	2504448	256
17521.685	cmplt	R	2504192	256
17521.776	issue	R	2504448	256
17522.143	queue	R	2504704	256
17524.950	cmplt	R	2504448	256
17525.042	issue	R	2504704	256
17525.378	queue	R	2504960	256
17528.216	cmplt	R	2504704	256
17528.308	issue	R	2504960	256
17528.643	queue	R	2505216	256
17531.482	cmplt	R	2504960	256
17531.573	issue	R	2505216	256
17531.940	queue	R	2505472	256
17534.747	cmplt	R	2505216	256
17534.839	issue	R	2505472	256
17535.205	queue	R	2505728	256
17538.044	cmplt	R	2505472	256
17538.105	issue	R	2505728	256
17538.471	queue	R	2505984	256
17541.309	cmplt	R	2505728	256
17541.370	issue	R	2505984	256
17541.737	queue	R	2506240	256
17544.575	cmplt	R	2505984	256
17544.636	issue	R	2506240	256
17545.002	queue	R	2506496	256
17547.841	cmplt	R	2506240	256
17547.932	issue	R	2506496	256
17548.268	queue	R	2506752	256
17551.106	cmplt	R	2506496	256
17551.198	issue	R	2506752	256
17551.534	queue	R	2507008	256
17554.372	cmplt	R	2506752	256
17554.433	issue	R	2507008	256
17554.799	queue	R	2507264	256
17557.638	cmplt	R	2507008	256
17557.699	issue	R	2507264	256
17558.065	queue	R	2507520	256
17560.903	cmplt	R	2507264	256
17560.964	issue	R	2507520	256
17561.331	queue	R	2507776	256
17564.169	cmplt	R	2507520	256
17564.230	issue	R	2507776	256
17564.596	queue	R	2508032	256
17567.435	cmplt	R	2507776	256
17567.526	issue	R	2508032	256
17567.862	queue	R	2508288	256
17570.700	cmplt	R	2508032	256
17570.792	issue	R	2508288	256
17571.128	queue	R	2508544	256
17573.966	cmplt	R	2508288	256
17574.058	issue	R	2508544	256
17574.393	queue	R	2508800	256
17577.232	cmplt	R	2508544	256
17577.323	issue	R	2508800	256
17577.659	queue	R	2509056	256
17580.497	cmplt	R	2508800	256
17580.589	issue	R	2509056	256
17580.955	queue	R	2509312	256
17583.763	cmplt	R	2509056	256
17583.855	issue	R	2509312	256
17584.221	queue	R	2509568	256
17587.059	cmplt	R	2509312	256
17587.120	issue	R	2509568	256
17587.487	queue	R	2509824	256
17590.325	cmplt	R	2509568	256
17590.417	issue	R	2509824	256
17590.752	queue	R	2510080	256
17593.591	cmplt	R	2509824	256
17593.682	issue	R	2510080	256
17594.018	queue	R	2510336	256
17596.856	cmplt	R	2510080	256
17596.948	issue	R	2510336	256
17597.284	queue	R	2510592	256
17600.122	cmplt	R	2510336	256
17600.183	issue	R	2510592	256
17600.580	queue	R	2510848	256
17603.388	cmplt	R	2510592	256
17603.449	issue	R	2510848	256
17603.815	queue	R	2511104	256
17606.653	cmplt	R	2510848	256
17606.714	issue	R	2511104	256
17607.081	queue	R	2511360	256
17609.889	cmplt	R	2511104	256
17609.980	issue	R	2511360	256
17610.346	queue	R	2511616	256
17613.154	cmplt	R	2511360	256
17613.246	issue	R	2511616	256
17613.612	queue	R	2511872	256
17616.420	cmplt	R	2511616	256
17616.512	issue	R	2511872	256
17616.878	queue	R	2512128	256
17619.686	cmplt	R	2511872	256
17619.777	issue	R	2512128	256
17620.143	queue	R	2512384	256
17622.951	cmplt	R	2512128	256
17623.043	issue	R	2512384	256
17623.379	queue	R	2512640	256
17626.217	cmplt	R	2512384	256
17626.278	issue	R	2512640	256
17626.644	queue	R	2512896	256
17629.483	cmplt	R	2512640	256
17629.544	issue	R	2512896	256
17629.910	queue	R	2513152	256
17632.718	cmplt	R	2512896	256
17632.809	issue	R	2513152	256
17633.176	queue	R	2513408	256
17635.984	cmplt	R	2513152	256
17636.075	issue	R	2513408	256
17636.411	queue	R	2513664	256
17639.249	cmplt	R	2513408	256
17639.310	issue	R	2513664	256
17639.676	queue	R	2513920	256
17642.484	cmplt	R	2513664	256
17642.576	issue	R	2513920	256
17642.942	queue	R	2514176	256
17645.750	cmplt	R	2513920	256
17645.842	issue	R	2514176	256
17646.177	queue	R	2514432	256
17649.016	cmplt	R	2514176	256
17649.077	issue	R	2514432	256
17649.443	queue	R	2514688	256
17652.281	cmplt	R	2514432	256
17652.342	issue	R	2514688	256
17652.709	queue	R	2514944	256
17655.547	cmplt	R	2514688	256
17655.608	issue	R	2514944	256
17655.944	queue	R	2515200	256
17658.782	cmplt	R	2514944	256
17658.843	issue	R	2515200	256
17659.210	queue	R	2515456	256
17662.048	cmplt	R	2515200	256
17662.109	issue	R	2515456	256
17662.475	queue	R	2515712	256
17665.314	cmplt	R	2515456	256
17665.375	issue	R	2515712	256
17665.741	queue	R	2515968	256
17668.549	cmplt	R	2515712	256
17668.640	issue	R	2515968	256
17668.976	queue	R	2516224	256
17671.814	cmplt	R	2515968	256
17671.906	issue	R	2516224	256
17672.242	queue	R	2516480	256
17675.080	cmplt	R	2516224	256
17675.141	issue	R	2516480	256
17675.507	queue	R	2516736	256
17678.346	cmplt	R	2516480	256
17678.407	issue	R	2516736	256
17678.773	queue	R	2516992	256
17681.581	cmplt	R	2516736	256
17681.673	issue	R	2516992	256
17682.008	queue	R	2517248	256
17684.847	cmplt	R	2516992	256
17684.908	issue	R	2517248	256
17685.304	queue	R	2517504	256
17688.112	cmplt	R	2517248	256
17688.173	issue	R	2517504	256
17688.540	queue	R	2517760	256
17691.347	cmplt	R	2517504	256
17691.439	issue	R	2517760	256
17691.775	queue	R	2518016	256
17694.613	cmplt	R	2517760	256
17694.705	issue	R	2518016	256
17695.040	queue	R	2518272	256
17697.879	cmplt	R	2518016	256
17697.940	issue	R	2518272	256
17698.306	queue	R	2518528	256
17701.145	cmplt	R	2518272	256
17701.206	issue	R	2518528	256
17701.572	queue	R	2518784	256
17704.380	cmplt	R	2518528	256
17704.471	issue	R	2518784	256
17704.837	queue	R	2519040	256
17707.645	cmplt	R	2518784	256
17707.737	issue	R	2519040	256
17708.073	queue	R	2519296	256
17710.911	cmplt	R	2519040	256
17711.003	issue	R	2519296	256
17711.369	queue	R	2519552	256
17714.207	cmplt	R	2519296	256
17714.268	issue	R	2519552	256
17714.635	queue	R	2519808	256
17717.442	cmplt	R	2519552	256
17717.503	issue	R	2519808	256
17717.870	queue	R	2520064	256
17720.647	cmplt	R	2519808	256
17720.739	issue	R	2520064	256
17721.105	queue	R	2520320	256
17723.882	cmplt	R	2520064	256
17723.974	issue	R	2520320	256
17724.309	queue	R	2520576	256
17727.117	cmplt	R	2520320	256
17727.209	issue	R	2520576	256
17727.545	queue	R	2520832	256
17730.353	cmplt	R	2520576	256
17730.444	issue	R	2520832	256
17730.810	queue	R	2521088	256
17733.588	cmplt	R	2520832	256
17733.679	issue	R	2521088	256
17734.015	queue	R	2521344	256
17736.823	cmplt	R	2521088	256
17736.914	issue	R	2521344	256
17737.250	queue	R	2521600	256
17740.058	cmplt	R	2521344	256
17740.150	issue	R	2521600	256
17740.485	queue	R	2521856	256
17743.293	cmplt	R	2521600	256
17743.385	issue	R	2521856	256
17743.720	queue	R	2522112	256
17746.528	cmplt	R	2521856	256
17746.589	issue	R	2522112	256
17746.956	queue	R	2522368	256
17749.763	cmplt	R	2522112	256
17749.825	issue	R	2522368	256
17750.221	queue	R	2522624	256
17752.999	cmplt	R	2522368	256
17753.060	issue	R	2522624	256
17753.426	queue	R	2522880	256
17756.234	cmplt	R	2522624	256
17756.295	issue	R	2522880	256
17756.661	queue	R	2367488	256
17759.469	cmplt	R	2522880	256
17759.530	issue	R	2367488	256
17759.896	queue	R	2367744	256
17762.826	cmplt	R	2367488	256
17762.918	issue	R	2367744	256
17763.284	queue	R	2368000	256
17766.092	cmplt	R	2367744	256
17766.183	issue	R	2368000	256
17766.550	queue	R	2368256	256
17769.358	cmplt	R	2368000	256
17769.419	issue	R	2368256	256
17769.815	queue	R	2368512	256
17772.623	cmplt	R	2368256	256
17772.684	issue	R	2368512	256
17773.051	queue	R	2368768	256
17775.889	cmplt	R	2368512	256
17775.950	issue	R	2368768	256
17776.316	queue	R	2369024	256
17779.124	cmplt	R	2368768	256
17779.185	issue	R	2369024	256
17779.551	queue	R	2369280	256
17782.390	cmplt	R	2369024	256
17782.451	issue	R	2369280	256
17782.817	queue	R	2369536	256
17785.655	cmplt	R	2369280	256
17785.716	issue	R	2369536	256
17786.083	queue	R	2369792	256
17788.891	cmplt	R	2369536	256
17788.982	issue	R	2369792	256
17789.348	queue	R	2370048	256
17792.156	cmplt	R	2369792	256
17792.248	issue	R	2370048	256
17792.584	queue	R	2370304	256
17795.422	cmplt	R	2370048	256
17795.483	issue	R	2370304	256
17795.849	queue	R	2370560	256
17798.688	cmplt	R	2370304	256
17798.749	issue	R	2370560	256
17799.115	queue	R	2370816	256
17801.953	cmplt	R	2370560	256
17802.014	issue	R	2370816	256
17802.381	queue	R	2371072	256
17805.188	cmplt	R	2370816	256
17805.280	issue	R	2371072	256
17805.646	queue	R	2371328	256
17808.454	cmplt	R	2371072	256
17808.546	issue	R	2371328	256
17811.720	cmplt	R	2371328	256
20345.338	queue	W	3029824	1024
20345.460	issue	W	3029824	1024
20346.620	queue	W	3030848	192
20348.421	queue	W	3031040	1024
20348.848	queue	W	3032064	1024
20349.123	issue	W	3030848	192
20349.153	issue	W	3031040	1024
20349.184	issue	W	3032064	1024
20349.275	queue	W	3033088	1024
20349.702	queue	W	3034112	1024
20349.733	issue	W	3033088	1024
20349.794	issue	W	3034112	1024
20350.160	queue	W	3035136	1024
20350.588	queue	W	3036160	1024
20350.984	queue	W	3037184	1024
20351.381	queue	W	3038208	1024
20351.778	queue	W	3039232	1024
20352.205	queue	W	3040256	1024
20352.632	queue	W	3041280	1024
20353.060	queue	W	3042304	1024
20353.456	queue	W	3043328	1024
20353.884	queue	W	3044352	1024
20354.311	queue	W	3045376	1024
20354.708	queue	W	3046400	1024
20356.722	queue	W	3047424	1024
20357.149	queue	W	3048448	1024
20357.546	queue	W	3049472	1024
20358.126	queue	W	3050496	1024
20358.523	queue	W	3051520	1024
20358.950	queue	W	3052544	1024
20359.347	queue	W	3053568	1024
20359.744	queue	W	3054592	1024
20360.201	queue	W	3055616	1024
20360.598	queue	W	3056640	1024
20360.995	queue	W	3057664	1024
20361.422	queue	W	3058688	1024
20361.819	queue	W	3059712	1024
20362.216	queue	W	3060736	1024
20362.643	queue	W	3061760	1024
20363.070	queue	W	3062784	1024
20363.925	queue	W	2891776	1024
20364.322	queue	W	2892800	1024
20364.718	queue	W	2893824	1024
20365.115	queue	W	2894848	1024
20365.207	queue	W	1835528	8
20365.237	queue	W	1835696	8
20419.777	cmplt	W	3029824	1024
20420.082	cmplt	W	3030848	192
20420.143	cmplt	W	3031040	1024
20420.388	cmplt	W	3032064	1024
20420.662	issue	W	3035136	1024
20420.693	issue	W	3036160	1024
20420.693	issue	W	3037184	1024
20420.723	issue	W	3038208	1024
20420.723	issue	W	3039232	1024
20420.754	issue	W	3040256	1024
20420.754	issue	W	3041280	1024
20420.784	issue	W	3042304	1024
20420.784	issue	W	3043328	1024
20420.815	issue	W	3044352	1024
20420.815	issue	W	3045376	1024
20420.845	issue	W	3046400	1024
20420.845	issue	W	3047424	1024
20420.876	issue	W	3048448	1024
20420.876	issue	W	3049472	1024
20420.906	issue	W	3050496	1024
20420.906	issue	W	3051520	1024
20420.937	issue	W	3052544	1024
20420.937	issue	W	3053568	1024
20420.967	issue	W	3054592	1024
20420.967	issue	W	3055616	1024
20420.998	issue	W	3056640	1024
20420.998	issue	W	3057664	1024
20421.029	issue	W	3058688	1024
20421.029	issue	W	3059712	1024
20421.059	issue	W	3060736	1024
20421.059	issue	W	3061760	1024
20421.090	issue	W	3062784	1024
20421.090	issue	W	1835528	8
20421.120	issue	W	1835696	8
20421.120	issue	W	2891776	1024
20421.151	issue	W	2892800	1024
20421.151	issue	W	2893824	1024
20421.181	issue	W	2894848	1024
20463.116	cmplt	W	3033088	1024
20463.391	cmplt	W	3034112	1024
21002.564	cmplt	W	3035136	1024
21002.869	cmplt	W	3036160	1024
21003.144	cmplt	W	3037184	1024
21003.388	cmplt	W	3038208	1024
21003.662	cmplt	W	3039232	1024
21003.907	cmplt	W	3040256	1024
21004.151	cmplt	W	3041280	1024
21004.425	cmplt	W	3042304	1024
21004.670	cmplt	W	3043328	1024
21004.914	cmplt	W	3044352	1024
21005.158	cmplt	W	3045376	1024
21005.402	cmplt	W	3046400	1024
21005.646	cmplt	W	3047424	1024
21005.890	cmplt	W	3048448	1024
21006.135	cmplt	W	3049472	1024
21006.379	cmplt	W	3050496	1024
21006.623	cmplt	W	3051520	1024
21006.867	cmplt	W	3052544	1024
21007.111	cmplt	W	3053568	1024
21007.355	cmplt	W	3054592	1024
21007.600	cmplt	W	3055616	1024
21007.844	cmplt	W	3056640	1024
21008.088	cmplt	W	3057664	1024
21008.332	cmplt	W	3058688	1024
21008.576	cmplt	W	3059712	1024
21008.820	cmplt	W	3060736	1024
21009.095	cmplt	W	3061760	1024
21009.339	cmplt	W	3062784	1024
21009.583	cmplt	W	1835528	8
21009.614	cmplt	W	1835696	8
21009.614	cmplt	W	2891776	1024
21009.889	cmplt	W	2892800	1024
21020.021	cmplt	W	2893824	1024
21020.296	cmplt	W	2894848	1024
21897.299	queue	WS	1916928	8
21897.421	issue	WS	1916928	8
21902.915	cmplt	WS	1916928	8
21903.708	queue	WS	1916928	8
21903.739	issue	WS	1916928	8
21904.593	cmplt	WS	1916928	8
21920.861	queue	WS	1912920	8
21920.983	issue	WS	1912920	8
21921.868	cmplt	WS	1912920	8
21922.081	queue	WS	1845920	8
21922.081	queue	WS	1845928	8
21922.112	queue	WS	1845936	8
21922.112	queue	WS	1845944	8
21922.112	queue	WS	1845952	8
21922.143	queue	WS	1845960	8
21922.143	queue	WS	1845968	8
21922.173	queue	WS	1845976	8
21922.173	queue	WS	1845984	8
21922.173	queue	WS	1845992	8
21922.204	queue	WS	1846000	8
21922.265	issue	WS	1845920	88
21929.712	cmplt	WS	1845920	88
21929.834	queue	WS	1846008	8
21929.895	issue	WS	1846008	8
21930.749	cmplt	WS	1846008	8
21931.024	queue	WS	1846016	8
21931.024	queue	WS	1846024	8
21931.085	issue	WS	1846016	16
21932.062	cmplt	WS	1846016	16
21932.123	queue	WS	1846032	8
21932.214	issue	WS	1846032	8
21933.130	cmplt	WS	1846032	8
21957.821	queue	WS	2635728	80
21957.943	issue	WS	2635728	80
21960.324	cmplt	WS	2635728	80
21960.568	queue	WS	1846040	8
21960.598	queue	WS	1846048	8
21960.598	queue	WS	1846056	8
21960.629	queue	WS	1846064	8
21960.629	queue	WS	1846072	8
21960.629	queue	WS	1846080	8
21960.659	queue	WS	1846088	8
21960.720	issue	WS	1846040	56
21963.162	cmplt	WS	1846040	56
21963.315	queue	WS	1846096	8
21963.376	issue	WS	1846096	8
21964.291	cmplt	WS	1846096	8
26900.137	queue	W	2883584	8
26900.198	queue	W	1835696	8
26900.198	queue	W	1835704	8
26900.351	issue	W	1835696	16
26904.410	issue	W	2883584	8
26906.821	cmplt	W	1835696	16
26906.852	cmplt	W	2883584	8
26937.036	queue	WS	1916928	8
26937.159	issue	WS	1916928	8
26938.685	cmplt	WS	1916928	8
26939.417	queue	WS	1916928	8
26939.448	issue	WS	1916928	8
26940.363	cmplt	WS	1916928	8
26956.875	queue	WS	1912920	8
26956.997	issue	WS	1912920	8
26957.851	cmplt	WS	1912920	8
26958.034	queue	WS	1846104	8
26958.065	queue	WS	1846112	8
26958.065	queue	WS	1846120	8
26958.096	queue	WS	1846128	8
26958.096	queue	WS	1846136	8
26958.126	queue	WS	1846144	8
26958.126	queue	WS	1846152	8
26958.126	queue	WS	1846160	8
26958.157	queue	WS	1846168	8
26958.218	issue	WS	1846104	72
26960.629	cmplt	WS	1846104	72
26960.720	queue	WS	1846176	8
26960.781	issue	WS	1846176	8
26961.636	cmplt	WS	1846176	8
26961.880	queue	WS	1846184	8
26961.880	queue	WS	1846192	8
26961.941	issue	WS	1846184	16
26963.650	cmplt	WS	1846184	16
26963.742	queue	WS	1846200	8
26963.803	issue	WS	1846200	8
26964.688	cmplt	WS	1846200	8
26988.830	queue	WS	2635808	80
26988.952	issue	WS	2635808	80
27000.641	cmplt	WS	2635808	80
27000.916	queue	WS	1846208	8
27000.946	queue	WS	1846216	8
27000.946	queue	WS	1846224	8
27000.977	queue	WS	1846232	8
27000.977	queue	WS	1846240	8
27000.977	queue	WS	1846248	8
27001.007	queue	WS	1846256	8
27001.068	issue	WS	1846208	56
27007.447	cmplt	WS	1846208	56
27007.600	queue	WS	1846264	8
27007.661	issue	WS	1846264	8
27008.515	cmplt	WS	1846264	8
31900.168	queue	W	1835696	8
31900.320	issue	W	1835696	8
31905.234	cmplt	W	1835696	8
31937.952	queue	WS	1916928	8
31938.074	issue	WS	1916928	8
31939.142	cmplt	WS	1916928	8
31939.844	queue	WS	1916928	8
31939.875	issue	WS	1916928	8
31940.790	cmplt	WS	1916928	8
31957.302	queue	WS	1912920	8
31957.424	issue	WS	1912920	8
31958.370	cmplt	WS	1912920	8
31958.553	queue	WS	1846272	8
31958.584	queue	WS	1846280	8
31958.584	queue	WS	1846288	8
31958.584	queue	WS	1846296	8
31958.614	queue	WS	1846304	8
31958.614	queue	WS	1846312	8
31958.614	queue	WS	1846320	8
31958.645	queue	WS	1846328	8
31958.645	queue	WS	1846336	8
31958.736	issue	WS	1846272	72
31965.298	cmplt	WS	1846272	72
31965.390	queue	WS	1846344	8
31965.481	issue	WS	1846344	8
31966.306	cmplt	WS	1846344	8
31966.550	queue	WS	1846352	8
31966.580	queue	WS	1846360	8
31966.611	issue	WS	1846352	16
31967.526	cmplt	WS	1846352	16
31967.587	queue	WS	1846368	8
31967.648	issue	WS	1846368	8
31968.595	cmplt	WS	1846368	8
31992.919	queue	WS	2635888	80
31993.041	issue	WS	2635888	80
31999.847	cmplt	WS	2635888	80
32000.122	queue	WS	1846376	8
32000.153	queue	WS	1846384	8
32000.153	queue	WS	1846392	8
32000.183	queue	WS	1846400	8
32000.183	queue	WS	1846408	8
32000.183	queue	WS	1846416	8
32000.214	queue	WS	1846424	8
32000.275	issue	WS	1846376	56
32002.228	cmplt	WS	1846376	56
32002.381	queue	WS	1846432	8
32002.411	issue	WS	1846432	8
32003.327	cmplt	WS	1846432	8
36940.058	queue	W	1835696	8
36940.241	issue	W	1835696	8
36945.155	cmplt	W	1835696	8
36950.404	queue	WS	1916928	8
36950.526	issue	WS	1916928	8
36951.595	cmplt	WS	1916928	8
36952.327	queue	WS	1916928	8
36952.388	issue	WS	1916928	8
36953.243	cmplt	WS	1916928	8
36970.029	queue	WS	1912920	8
36970.121	issue	WS	1912920	8
36971.067	cmplt	WS	1912920	8
36971.219	queue	WS	1846440	8
36971.250	queue	WS	1846448	8
36971.250	queue	WS	1846456	8
36971.280	queue	WS	1846464	8
36971.280	queue	WS	1846472	8
36971.311	queue	WS	1846480	8
36971.311	queue	WS	1846488	8
36971.311	queue	WS	1846496	8
36971.341	queue	WS	1846504	8
36971.402	issue	WS	1846440	72
36973.844	cmplt	WS	1846440	72
36973.966	queue	WS	1846512	8
36974.027	issue	WS	1846512	8
36974.912	cmplt	WS	1846512	8
36975.156	queue	WS	1846520	8
36975.187	queue	WS	1846528	8
36975.248	issue	WS	1846520	16
36976.743	cmplt	WS	1846520	16
36976.805	queue	WS	1846536	8
36976.866	issue	WS	1846536	8
36977.720	cmplt	WS	1846536	8
37002.075	queue	WS	2635968	80
37002.167	issue	WS	2635968	80
37004.609	cmplt	WS	2635968	80
37004.853	queue	WS	1846544	8
37004.883	queue	WS	1846552	8
37004.883	queue	WS	1846560	8
37004.914	queue	WS	1846568	8
37004.914	queue	WS	1846576	8
37004.914	queue	WS	1846584	8
37004.944	queue	WS	1846592	8
37005.005	issue	WS	1846544	56
37009.736	cmplt	WS	1846544	56
37009.889	queue	WS	1846600	8
37009.919	issue	WS	1846600	8
37010.804	cmplt	WS	1846600	8
41950.130	queue	W	1835696	8
41950.282	issue	W	1835696	8
41954.830	cmplt	W	1835696	8
41983.275	queue	WS	1916928	8
41983.397	issue	WS	1916928	8
41984.435	cmplt	WS	1916928	8
41985.198	queue	WS	1916928	8
41985.259	issue	WS	1916928	8
41986.113	cmplt	WS	1916928	8
42002.259	queue	WS	1912920	8
42002.350	issue	WS	1912920	8
42003.205	cmplt	WS	1912920	8
42003.388	queue	WS	1846608	8
42003.418	queue	WS	1846616	8
42003.418	queue	WS	1846624	8
42003.449	queue	WS	1846632	8
42003.449	queue	WS	1846640	8
42003.449	queue	WS	1846648	8
42003.479	queue	WS	1846656	8
42003.479	queue	WS	1846664	8
42003.510	queue	WS	1846672	8
42003.571	issue	WS	1846608	72
42010.346	cmplt	WS	1846608	72
42010.468	queue	WS	1846680	8
42010.530	issue	WS	1846680	8
42011.445	cmplt	WS	1846680	8
42011.720	queue	WS	1846688	8
42011.720	queue	WS	1846696	8
42011.781	issue	WS	1846688	16
42012.666	cmplt	WS	1846688	16
42012.758	queue	WS	1846704	8
42012.819	issue	WS	1846704	8
42013.643	cmplt	WS	1846704	8
42038.181	queue	WS	2636048	80
42038.303	issue	WS	2636048	80
42040.714	cmplt	WS	2636048	80
42040.989	queue	WS	1846712	8
42041.019	queue	WS	1846720	8
42041.019	queue	WS	1846728	8
42041.050	queue	WS	1846736	8
42041.050	queue	WS	1846744	8
42041.050	queue	WS	1846752	8
42041.080	queue	WS	1846760	8
42041.141	issue	WS	1846712	56
42045.231	cmplt	WS	1846712	56
42045.353	queue	WS	1846768	8
42045.414	issue	WS	1846768	8
42046.299	cmplt	WS	1846768	8
46990.111	queue	W	1835696	8
46990.264	issue	W	1835696	8
46995.178	cmplt	W	1835696	8
47017.946	queue	WS	1916928	8
47018.068	issue	WS	1916928	8
47019.106	cmplt	WS	1916928	8
47019.808	queue	WS	1916928	8
47019.869	issue	WS	1916928	8
47020.784	cmplt	WS	1916928	8
47037.418	queue	WS	1912920	8
47037.510	issue	WS	1912920	8
47038.395	cmplt	WS	1912920	8
47038.578	queue	WS	1846776	8
47038.578	queue	WS	1846784	8
47038.608	queue	WS	1846792	8
47038.608	queue	WS	1846800	8
47038.639	queue	WS	1846808	8
47038.639	queue	WS	1846816	8
47038.639	queue	WS	1846824	8
47038.669	queue	WS	1846832	8
47038.669	queue	WS	1846840	8
47038.761	issue	WS	1846776	72
47041.202	cmplt	WS	1846776	72
47041.325	queue	WS	1846848	8
47041.386	issue	WS	1846848	8
47042.332	cmplt	WS	1846848	8
47042.576	queue	WS	1846856	8
47042.606	queue	WS	1846864	8
47042.637	issue	WS	1846856	16
47044.102	cmplt	WS	1846856	16
47044.193	queue	WS	1846872	8
47044.255	issue	WS	1846872	8
47045.140	cmplt	WS	1846872	8
47070.166	queue	WS	2636128	80
47070.258	issue	WS	2636128	80
47076.820	cmplt	WS	2636128	80
47077.064	queue	WS	1846880	8
47077.094	queue	WS	1846888	8
47077.094	queue	WS	1846896	8
47077.125	queue	WS	1846904	8
47077.125	queue	WS	1846912	8
47077.125	queue	WS	1846920	8
47077.155	queue	WS	1846928	8
47077.217	issue	WS	1846880	56
47079.200	cmplt	WS	1846880	56
47079.353	queue	WS	1846936	8
47079.383	issue	WS	1846936	8
47080.360	cmplt	WS	1846936	8
51990.142	queue	W	1835696	8
51990.295	issue	W	1835696	8
51995.147	cmplt	W	1835696	8
52026.766	queue	WS	1916928	8
52026.888	issue	WS	1916928	8
52027.987	cmplt	WS	1916928	8
52028.750	queue	WS	1916928	8
52028.781	issue	WS	1916928	8
52029.696	cmplt	WS	1916928	8
52045.933	queue	WS	1912920	8
52046.025	issue	WS	1912920	8
52046.910	cmplt	WS	1912920	8
52047.154	queue	WS	1846944	8
52047.184	queue	WS	1846952	8
52047.215	queue	WS	1846960	8
52047.215	queue	WS	1846968	8
52047.215	queue	WS	1846976	8
52047.246	queue	WS	1846984	8
52047.246	queue	WS	1846992	8
52047.246	queue	WS	1847000	8
52047.276	queue	WS	1847008	8
52047.337	issue	WS	1846944	72
52054.418	cmplt	WS	1846944	72
52054.540	queue	WS	1847016	8
52054.601	issue	WS	1847016	8
52055.486	cmplt	WS	1847016	8
52055.761	queue	WS	1847024	8
52055.791	queue	WS	1847032	8
52055.852	issue	WS	1847024	16
52056.737	cmplt	WS	1847024	16
52056.798	queue	WS	1847040	8
52056.859	issue	WS	1847040	8
52057.683	cmplt	WS	1847040	8
52081.978	queue	WS	1974360	80
52082.069	issue	WS	1974360	80
52084.847	cmplt	WS	1974360	80
52085.091	queue	WS	1847048	8
52085.121	queue	WS	1847056	8
52085.152	queue	WS	1847064	8
52085.152	queue	WS	1847072	8
52085.152	queue	WS	1847080	8
52085.182	queue	WS	1847088	8
52085.182	queue	WS	1847096	8
52085.274	issue	WS	1847048	56
52091.927	cmplt	WS	1847048	56
52092.049	queue	WS	1847104	8
52092.110	issue	WS	1847104	8
52092.965	cmplt	WS	1847104	8
57030.093	queue	W	1835528	8
57030.154	queue	W	1835696	8
57030.307	issue	W	1835696	8
57034.335	issue	W	1835528	8
57036.075	cmplt	W	1835696	8
57036.106	cmplt	W	1835528	8
57052.251	queue	WS	1916928	8
57052.373	issue	WS	1916928	8
57053.411	cmplt	WS	1916928	8
57054.113	queue	WS	1916928	8
57054.174	issue	WS	1916928	8
57055.028	cmplt	WS	1916928	8
57071.296	queue	WS	1912920	8
57071.387	issue	WS	1912920	8
57072.333	cmplt	WS	1912920	8
57072.547	queue	WS	1847112	8
57072.577	queue	WS	1847120	8
57072.577	queue	WS	1847128	8
57072.577	queue	WS	1847136	8
57072.608	queue	WS	1847144	8
57072.608	queue	WS	1847152	8
57072.638	queue	WS	1847160	8
57072.638	queue	WS	1847168	8
57072.638	queue	WS	1847176	8
57072.730	issue	WS	1847112	72
57075.385	cmplt	WS	1847112	72
57075.507	queue	WS	1847184	8
57075.538	issue	WS	1847184	8
57076.423	cmplt	WS	1847184	8
57076.667	queue	WS	1847192	8
57076.698	queue	WS	1847200	8
57076.728	issue	WS	1847192	16
57078.193	cmplt	WS	1847192	16
57078.285	queue	WS	1847208	8
57078.346	issue	WS	1847208	8
57079.170	cmplt	WS	1847208	8
57103.434	queue	WS	2636208	80
57103.556	issue	WS	2636208	80
57110.514	cmplt	WS	2636208	80
57110.789	queue	WS	1847216	8
57110.789	queue	WS	1847224	8
57110.819	queue	WS	1847232	8
57110.819	queue	WS	1847240	8
57110.850	queue	WS	1847248	8
57110.850	queue	WS	1847256	8
57110.850	queue	WS	1847264	8
57110.942	issue	WS	1847216	56
57113.017	cmplt	WS	1847216	56
57113.139	queue	WS	1847272	8
57113.200	issue	WS	1847272	8
57114.055	cmplt	WS	1847272	8
62030.124	queue	W	1835696	8
62030.154	queue	W	2621960	8
62030.276	issue	W	1835696	8
62034.335	issue	W	2621960	8
62036.411	cmplt	W	1835696	8
62036.441	cmplt	W	2621960	8
62087.014	queue	WS	1916928	8
62087.136	issue	WS	1916928	8
62088.662	cmplt	WS	1916928	8
62089.364	queue	WS	1916928	8
62089.425	issue	WS	1916928	8
62090.371	cmplt	WS	1916928	8
62106.608	queue	WS	1912920	8
62106.730	issue	WS	1912920	8
62107.615	cmplt	WS	1912920	8
62107.798	queue	WS	1847280	8
62107.798	queue	WS	1847288	8
62107.828	queue	WS	1847296	8
62107.828	queue	WS	1847304	8
62107.859	queue	WS	1847312	8
62107.859	queue	WS	1847320	8
62107.859	queue	WS	1847328	8
62107.890	queue	WS	1847336	8
62107.890	queue	WS	1847344	8
62107.981	issue	WS	1847280	72
62113.017	cmplt	WS	1847280	72
62113.108	queue	WS	1847352	8
62113.200	issue	WS	1847352	8
62114.116	cmplt	WS	1847352	8
62114.360	queue	WS	1847360	8
62114.390	queue	WS	1847368	8
62114.421	issue	WS	1847360	16
62115.336	cmplt	WS	1847360	16
62115.428	queue	WS	1847376	8
62115.489	issue	WS	1847376	8
62116.313	cmplt	WS	1847376	8
62140.607	queue	WS	2636288	80
62140.729	issue	WS	2636288	80
62143.049	cmplt	WS	2636288	80
62143.324	queue	WS	1847384	8
62143.354	queue	WS	1847392	8
62143.385	queue	WS	1847400	8
62143.385	queue	WS	1847408	8
62143.385	queue	WS	1847416	8
62143.415	queue	WS	1847424	8
62143.415	queue	WS	1847432	8
62143.507	issue	WS	1847384	56
62147.597	cmplt	WS	1847384	56
62147.749	queue	WS	1847440	8
62147.780	issue	WS	1847440	8
62148.695	cmplt	WS	1847440	8
67090.157	queue	W	1835528	8
67090.188	queue	W	1835696	8
67090.310	issue	W	1835696	8
67094.369	issue	W	1835528	8
67096.017	cmplt	W	1835696	8
67096.048	cmplt	W	1835528	8
67124.523	queue	WS	1916928	8
67124.645	issue	WS	1916928	8
67125.683	cmplt	WS	1916928	8
67126.415	queue	WS	1916928	8
67126.476	issue	WS	1916928	8
67127.392	cmplt	WS	1916928	8
67144.056	queue	WS	1847448	8
67144.087	queue	WS	1847456	8
67144.087	queue	WS	1847464	8
67144.117	queue	WS	1847472	8
67144.117	queue	WS	1847480	8
67144.117	queue	WS	1847488	8
67144.148	queue	WS	1847496	8
67144.148	queue	WS	1847504	8
67144.178	queue	WS	1847512	8
67144.270	issue	WS	1847448	72
67144.300	queue	WS	1912920	8
67150.862	cmplt	WS	1847448	72
67150.954	issue	WS	1912920	8
67150.954	queue	WS	1847520	8
67151.991	cmplt	WS	1912920	8
67152.052	issue	WS	1847520	8
67153.090	cmplt	WS	1847520	8
67153.426	queue	WS	1847528	8
67153.426	queue	WS	1847536	8
67153.517	issue	WS	1847528	16
67154.982	cmplt	WS	1847528	16
67155.043	queue	WS	1847544	8
67155.105	issue	WS	1847544	8
67156.020	cmplt	WS	1847544	8
67180.497	queue	WS	2636368	80
67180.620	issue	WS	2636368	80
67182.939	cmplt	WS	2636368	80
67183.183	queue	WS	1847552	8
67183.214	queue	WS	1847560	8
67183.214	queue	WS	1847568	8
67183.214	queue	WS	1847576	8
67183.244	queue	WS	1847584	8
67183.244	queue	WS	1847592	8
67183.244	queue	WS	1847600	8
67183.336	issue	WS	1847552	56
67185.289	cmplt	WS	1847552	56
67185.442	queue	WS	1847608	8
67185.503	issue	WS	1847608	8
67186.449	cmplt	WS	1847608	8
72090.127	queue	W	1835696	8
72090.249	issue	W	1835696	8
72095.163	cmplt	W	1835696	8
72137.494	queue	WS	1916928	8
72137.616	issue	WS	1916928	8
72138.685	cmplt	WS	1916928	8
72139.417	queue	WS	1916928	8
72139.478	issue	WS	1916928	8
72140.394	cmplt	WS	1916928	8
72156.997	queue	WS	1912920	8
72157.088	issue	WS	1912920	8
72158.065	cmplt	WS	1912920	8
72158.218	queue	WS	1847616	8
72158.248	queue	WS	1847624	8
72158.279	queue	WS	1847632	8
72158.279	queue	WS	1847640	8
72158.279	queue	WS	1847648	8
72158.309	queue	WS	1847656	8
72158.309	queue	WS	1847664	8
72158.309	queue	WS	1847672	8
72158.340	queue	WS	1847680	8
72158.401	issue	WS	1847616	72
72160.690	cmplt	WS	1847616	72
72160.812	queue	WS	1847688	8
72160.873	issue	WS	1847688	8
72161.758	cmplt	WS	1847688	8
72162.033	queue	WS	1847696	8
72162.033	queue	WS	1847704	8
72162.094	issue	WS	1847696	16
72163.070	cmplt	WS	1847696	16
72163.131	queue	WS	1847712	8
72163.192	issue	WS	1847712	8
72164.078	cmplt	WS	1847712	8
72188.311	queue	WS	2636448	80
72188.433	issue	WS	2636448	80
72195.361	cmplt	WS	2636448	80
72195.636	queue	WS	1847720	8
72195.636	queue	WS	1847728	8
72195.666	queue	WS	1847736	8
72195.666	queue	WS	1847744	8
72195.697	queue	WS	1847752	8
72195.697	queue	WS	1847760	8
72195.697	queue	WS	1847768	8
72195.788	issue	WS	1847720	56
72202.167	cmplt	WS	1847720	56
72202.289	queue	WS	1847776	8
72202.350	issue	WS	1847776	8
72203.235	cmplt	WS	1847776	8
77140.089	queue	W	1835696	8
77140.241	issue	W	1835696	8
77145.216	cmplt	W	1835696	8
77145.369	queue	WS	1916928	8
77145.460	issue	WS	1916928	8
77146.498	cmplt	WS	1916928	8
77147.200	queue	WS	1916928	8
77147.230	issue	WS	1916928	8
77148.085	cmplt	WS	1916928	8
77164.291	queue	WS	1912920	8
77164.413	issue	WS	1912920	8
77165.329	cmplt	WS	1912920	8
77165.512	queue	WS	1847784	8
77165.512	queue	WS	1847792	8
77165.542	queue	WS	1847800	8
77165.542	queue	WS	1847808	8
77165.573	queue	WS	1847816	8
77165.573	queue	WS	1847824	8
77165.573	queue	WS	1847832	8
77165.604	queue	WS	1847840	8
77165.604	queue	WS	1847848	8
77165.695	issue	WS	1847784	72
77172.349	cmplt	WS	1847784	72
77172.471	queue	WS	1847856	8
77172.532	issue	WS	1847856	8
77173.447	cmplt	WS	1847856	8
77173.691	queue	WS	1847864	8
77173.722	queue	WS	1847872	8
77173.783	issue	WS	1847864	16
77174.882	cmplt	WS	1847864	16
77174.973	queue	WS	1847880	8
77175.034	issue	WS	1847880	8
77175.919	cmplt	WS	1847880	8
77200.336	queue	WS	2636528	80
77200.427	issue	WS	2636528	80
77207.386	cmplt	WS	2636528	80
77207.661	queue	WS	1847888	8
77207.661	queue	WS	1847896	8
77207.691	queue	WS	1847904	8
77207.691	queue	WS	1847912	8
77207.722	queue	WS	1847920	8
77207.722	queue	WS	1847928	8
77207.722	queue	WS	1847936	8
77207.813	issue	WS	1847888	56
77210.133	cmplt	WS	1847888	56
77210.285	queue	WS	1847944	8
77210.346	issue	WS	1847944	8
77211.231	cmplt	WS	1847944	8
82140.089	queue	W	1835696	8
82140.241	issue	W	1835696	8
82145.216	cmplt	W	1835696	8
82184.313	queue	WS	1916928	8
82184.435	issue	WS	1916928	8
82185.503	cmplt	WS	1916928	8
82186.205	queue	WS	1916928	8
82186.266	issue	WS	1916928	8
82187.120	cmplt	WS	1916928	8
82203.296	queue	WS	1912920	8
82203.418	issue	WS	1912920	8
82204.273	cmplt	WS	1912920	8
82204.425	queue	WS	1847952	8
82204.456	queue	WS	1847960	8
82204.456	queue	WS	1847968	8
82204.486	queue	WS	1847976	8
82204.486	queue	WS	1847984	8
82204.517	queue	WS	1847992	8
82204.517	queue	WS	1848000	8
82204.517	queue	WS	1848008	8
82204.548	queue	WS	1848016	8
82204.609	issue	WS	1847952	72
82207.416	cmplt	WS	1847952	72
82207.539	queue	WS	1848024	8
82207.600	issue	WS	1848024	8
82208.454	cmplt	WS	1848024	8
82208.698	queue	WS	1848032	8
82208.729	queue	WS	1848040	8
82208.790	issue	WS	1848032	16
82209.736	cmplt	WS	1848032	16
82209.828	queue	WS	1848048	8
82209.889	issue	WS	1848048	8
82210.835	cmplt	WS	1848048	8
82235.007	queue	WS	2636608	80
82235.129	issue	WS	2636608	80
82237.418	cmplt	WS	2636608	80
82237.662	queue	WS	1848056	8
82237.693	queue	WS	1848064	8
82237.693	queue	WS	1848072	8
82237.723	queue	WS	1848080	8
82237.723	queue	WS	1848088	8
82237.754	queue	WS	1848096	8
82237.754	queue	WS	1848104	8
82237.815	issue	WS	1848056	56
82240.104	cmplt	WS	1848056	56
82240.256	queue	WS	1848112	8
82240.287	issue	WS	1848112	8
82241.202	cmplt	WS	1848112	8
87190.111	queue	W	1835696	8
87190.264	issue	W	1835696	8
87195.208	cmplt	W	1835696	8
87196.704	queue	WS	1916928	8
87196.795	issue	WS	1916928	8
87197.833	cmplt	WS	1916928	8
87198.504	queue	WS	1916928	8
87198.566	issue	WS	1916928	8
87199.481	cmplt	WS	1916928	8
87215.657	queue	WS	1912920	8
87215.779	issue	WS	1912920	8
87216.664	cmplt	WS	1912920	8
87216.847	queue	WS	1848120	8
87216.878	queue	WS	1848128	8
87216.878	queue	WS	1848136	8
87216.908	queue	WS	1848144	8
87216.908	queue	WS	1848152	8
87216.908	queue	WS	1848160	8
87216.939	queue	WS	1848168	8
87216.939	queue	WS	1848176	8
87216.969	queue	WS	1848184	8
87217.030	issue	WS	1848120	72
87223.592	cmplt	WS	1848120	72
87223.714	queue	WS	1848192	8
87223.775	issue	WS	1848192	8
87224.660	cmplt	WS	1848192	8
87224.905	queue	WS	1848200	8
87224.935	queue	WS	1848208	8
87224.966	issue	WS	1848200	16
87226.644	cmplt	WS	1848200	16
87226.736	queue	WS	1848216	8
87226.797	issue	WS	1848216	8
87227.621	cmplt	WS	1848216	8
87252.556	queue	WS	2636688	80
87252.648	issue	WS	2636688	80
87255.150	cmplt	WS	2636688	80
87255.394	queue	WS	1848224	8
87255.425	queue	WS	1848232	8
87255.425	queue	WS	1848240	8
87255.425	queue	WS	1848248	8
87255.456	queue	WS	1848256	8
87255.456	queue	WS	1848264	8
87255.486	queue	WS	1848272	8
87255.547	issue	WS	1848224	56
87262.078	cmplt	WS	1848224	56
87262.231	queue	WS	1848280	8
87262.262	issue	WS	1848280	8
87263.147	cmplt	WS	1848280	8
92190.142	queue	W	1835696	8
92190.295	issue	W	1835696	8
92195.239	cmplt	W	1835696	8
92215.413	queue	WS	1916928	8
92215.535	issue	WS	1916928	8
92216.603	cmplt	WS	1916928	8
92217.305	queue	WS	1916928	8
92217.366	issue	WS	1916928	8
92218.282	cmplt	WS	1916928	8
92234.488	queue	WS	1912920	8
92234.610	issue	WS	1912920	8
92235.526	cmplt	WS	1912920	8
92235.709	queue	WS	1848288	8
92235.709	queue	WS	1848296	8
92235.739	queue	WS	1848304	8
92235.739	queue	WS	1848312	8
92235.770	queue	WS	1848320	8
92235.770	queue	WS	1848328	8
92235.800	queue	WS	1848336	8
92235.800	queue	WS	1848344	8
92235.800	queue	WS	1848352	8
92235.892	issue	WS	1848288	72
92238.486	cmplt	WS	1848288	72
92238.578	queue	WS	1848360	8
92238.639	issue	WS	1848360	8
92239.493	cmplt	WS	1848360	8
92239.738	queue	WS	1848368	8
92239.768	queue	WS	1848376	8
92239.799	issue	WS	1848368	16
92240.684	cmplt	WS	1848368	16
92240.745	queue	WS	1848384	8
92240.836	issue	WS	1848384	8
92241.752	cmplt	WS	1848384	8
92266.351	queue	WS	2636768	80
92266.443	issue	WS	2636768	80
92272.852	cmplt	WS	2636768	80
92273.127	queue	WS	1848392	8
92273.157	queue	WS	1848400	8
92273.157	queue	WS	1848408	8
92273.188	queue	WS	1848416	8
92273.188	queue	WS	1848424	8
92273.188	queue	WS	1848432	8
92273.218	queue	WS	1848440	8
92273.279	issue	WS	1848392	56
92275.263	cmplt	WS	1848392	56
92275.385	queue	WS	1848448	8
92275.446	issue	WS	1848448	8
92276.362	cmplt	WS	1848448	8
96248.772	queue	WS	1916928	8
96248.894	issue	WS	1916928	8
96253.655	cmplt	WS	1916928	8
96254.387	queue	WS	1916928	8
96254.448	issue	WS	1916928	8
96255.303	cmplt	WS	1916928	8
96271.540	queue	WS	1912920	8
96271.662	issue	WS	1912920	8
96272.608	cmplt	WS	1912920	8
96272.791	queue	WS	1848456	8
96272.822	queue	WS	1848464	8
96272.822	queue	WS	1848472	8
96272.822	queue	WS	1848480	8
96272.852	queue	WS	1848488	8
96272.852	queue	WS	1848496	8
96272.852	queue	WS	1848504	8
96272.883	queue	WS	1848512	8
96272.883	queue	WS	1848520	8
96272.974	issue	WS	1848456	72
96288.967	cmplt	WS	1848456	72
96289.089	queue	WS	1848528	8
96289.150	issue	WS	1848528	8
96290.005	cmplt	WS	1848528	8
96290.249	queue	WS	1848536	8
96290.279	queue	WS	1848544	8
96290.310	issue	WS	1848536	16
96291.897	cmplt	WS	1848536	16
96291.958	queue	WS	1848552	8
96292.019	issue	WS	1848552	8
96292.873	cmplt	WS	1848552	8
96317.687	queue	WS	2636848	80
96317.778	issue	WS	2636848	80
96324.645	cmplt	WS	2636848	80
96324.920	queue	WS	1848560	8
96324.920	queue	WS	1848568	8
96324.950	queue	WS	1848576	8
96324.950	queue	WS	1848584	8
96324.981	queue	WS	1848592	8
96324.981	queue	WS	1848600	8
96324.981	queue	WS	1848608	8
96325.072	issue	WS	1848560	56
96329.742	cmplt	WS	1848560	56
96329.864	queue	WS	1848616	8
96329.925	issue	WS	1848616	8
96330.841	cmplt	WS	1848616	8
97220.143	queue	W	1835696	8
97220.266	issue	W	1835696	8
97225.057	cmplt	W	1835696	8
101266.138	queue	WS	1916928	8
101266.260	issue	WS	1916928	8
101271.326	cmplt	WS	1916928	8
101272.028	queue	WS	1916928	8
101272.089	issue	WS	1916928	8
101272.944	cmplt	WS	1916928	8
101289.516	queue	WS	1912920	8
101289.638	issue	WS	1912920	8
101290.493	cmplt	WS	1912920	8
101290.676	queue	WS	1848624	8
101290.707	queue	WS	1848632	8
101290.707	queue	WS	1848640	8
101290.707	queue	WS	1848648	8
101290.737	queue	WS	1848656	8
101290.737	queue	WS	1848664	8
101290.737	queue	WS	1848672	8
101290.768	queue	WS	1848680	8
101290.768	queue	WS	1848688	8
101290.859	issue	WS	1848624	72
101294.583	cmplt	WS	1848624	72
101294.705	queue	WS	1848696	8
101294.766	issue	WS	1848696	8
101295.712	cmplt	WS	1848696	8
101295.956	queue	WS	1848704	8
101295.956	queue	WS	1848712	8
101296.017	issue	WS	1848704	16
101296.994	cmplt	WS	1848704	16
101297.055	queue	WS	1848720	8
101297.116	issue	WS	1848720	8
101297.970	cmplt	WS	1848720	8
101322.265	queue	WS	2636928	80
101322.356	issue	WS	2636928	80
101324.645	cmplt	WS	2636928	80
101324.889	queue	WS	1848728	8
101324.920	queue	WS	1848736	8
101324.920	queue	WS	1848744	8
101324.920	queue	WS	1848752	8
101324.950	queue	WS	1848760	8
101324.950	queue	WS	1848768	8
101324.950	queue	WS	1848776	8
101325.042	issue	WS	1848728	56
101327.239	cmplt	WS	1848728	56
101327.392	queue	WS	1848784	8
101327.453	issue	WS	1848784	8
101328.369	cmplt	WS	1848784	8
106288.784	queue	WS	1916928	8
106288.906	issue	WS	1916928	8
106293.972	cmplt	WS	1916928	8
106294.705	queue	WS	1916928	8
106294.766	issue	WS	1916928	8
106295.681	cmplt	WS	1916928	8
106312.193	queue	WS	1912920	8
106312.315	issue	WS	1912920	8
106313.170	cmplt	WS	1912920	8
106313.353	queue	WS	1848792	8
106313.383	queue	WS	1848800	8
106313.383	queue	WS	1848808	8
106313.383	queue	WS	1848816	8
106313.414	queue	WS	1848824	8
106313.414	queue	WS	1848832	8
106313.414	queue	WS	1848840	8
106313.444	queue	WS	1848848	8
106313.444	queue	WS	1848856	8
106313.536	issue	WS	1848792	72
106315.977	cmplt	WS	1848792	72
106316.099	queue	WS	1848864	8
106316.161	issue	WS	1848864	8
106316.985	cmplt	WS	1848864	8
106317.229	queue	WS	1848872	8
106317.259	queue	WS	1848880	8
106317.290	issue	WS	1848872	16
106318.907	cmplt	WS	1848872	16
106318.968	queue	WS	1848888	8
106319.060	issue	WS	1848888	8
106319.884	cmplt	WS	1848888	8
106344.178	queue	WS	2637008	80
106344.300	issue	WS	2637008	80
106346.620	cmplt	WS	2637008	80
106346.895	queue	WS	1848896	8
106346.895	queue	WS	1848904	8
106346.925	queue	WS	1848912	8
106346.925	queue	WS	1848920	8
106346.925	queue	WS	1848928	8
106346.956	queue	WS	1848936	8
106346.956	queue	WS	1848944	8
106347.047	issue	WS	1848896	56
106353.273	cmplt	WS	1848896	56
106353.395	queue	WS	1848952	8
106353.487	issue	WS	1848952	8
106354.342	cmplt	WS	1848952	8
107220.143	queue	W	1835696	8
107220.296	issue	W	1835696	8
107225.149	cmplt	W	1835696	8
111318.419	queue	WS	1916928	8
111318.511	issue	WS	1916928	8
111323.577	cmplt	WS	1916928	8
111324.309	queue	WS	1916928	8
111324.340	issue	WS	1916928	8
111325.256	cmplt	WS	1916928	8
111341.828	queue	WS	1912920	8
111341.950	issue	WS	1912920	8
111342.896	cmplt	WS	1912920	8
111343.079	queue	WS	1848960	8
111343.079	queue	WS	1848968	8
111343.110	queue	WS	1848976	8
111343.110	queue	WS	1848984	8
111343.141	queue	WS	1848992	8
111343.141	queue	WS	1849000	8
111343.141	queue	WS	1849008	8
111343.171	queue	WS	1849016	8
111343.171	queue	WS	1849024	8
111343.263	issue	WS	1848960	72
111349.733	cmplt	WS	1848960	72
111349.855	queue	WS	1849032	8
111349.916	issue	WS	1849032	8
111350.771	cmplt	WS	1849032	8
111351.015	queue	WS	1849040	8
111351.015	queue	WS	1849048	8
111351.076	issue	WS	1849040	16
111351.961	cmplt	WS	1849040	16
111352.022	queue	WS	1849056	8
111352.083	issue	WS	1849056	8
111352.938	cmplt	WS	1849056	8
111377.018	queue	WS	2637088	80
111377.140	issue	WS	2637088	80
111384.099	cmplt	WS	2637088	80
111384.404	queue	WS	1849064	8
111384.435	queue	WS	1849072	8
111384.435	queue	WS	1849080	8
111384.435	queue	WS	1849088	8
111384.465	queue	WS	1849096	8
111384.465	queue	WS	1849104	8
111384.465	queue	WS	1849112	8
111384.557	issue	WS	1849064	56
111386.510	cmplt	WS	1849064	56
111386.632	queue	WS	1849120	8
111386.693	issue	WS	1849120	8
111387.639	cmplt	WS	1849120	8
113853.594	queue	RM	1910368	8
113853.807	issue	RM	1910368	8
113857.867	cmplt	RM	1910368	8
113991.790	queue	R	898160	8
113991.821	queue	R	898200	8
113991.912	issue	R	898160	8
113992.004	issue	R	898200	8
113992.461	cmplt	R	898160	8
113992.706	cmplt	R	898200	8
113996.215	queue	R	1060536	8
113996.307	issue	R	1060536	8
113996.734	cmplt	R	1060536	8
113996.887	queue	R	1060408	24
113996.948	queue	R	1060472	64
113997.009	issue	R	1060472	64
113997.101	issue	R	1060408	24
113998.077	cmplt	R	1060472	64
113998.260	queue	R	1075120	8
113998.504	cmplt	R	1060408	24
113998.535	issue	R	1075120	8
113998.993	cmplt	R	1075120	8
113999.206	queue	R	1075184	32
113999.267	issue	R	1075184	32
113999.878	cmplt	R	1075184	32
114001.862	queue	R	1075088	8
114001.923	issue	R	1075088	8
114002.228	cmplt	R	1075088	8
114002.533	queue	R	1075176	8
114002.594	issue	R	1075176	8
114002.899	cmplt	R	1075176	8
114003.174	queue	R	1075152	8
114003.235	issue	R	1075152	8
114003.571	cmplt	R	1075152	8
114003.723	queue	R	1075128	16
114003.785	issue	R	1075128	16
114004.212	cmplt	R	1075128	16
114004.486	queue	R	1060384	8
114004.578	issue	R	1060384	8
114004.975	cmplt	R	1060384	8
114005.158	queue	R	1060344	40
114005.219	issue	R	1060344	40
114005.921	cmplt	R	1060344	40
114006.074	queue	R	1028896	8
114006.135	issue	R	1028896	8
114006.409	cmplt	R	1028896	8
114006.653	queue	R	1028880	8
114006.714	issue	R	1028880	8
114007.020	cmplt	R	1028880	8
114087.288	queue	R	914976	8
114087.380	issue	R	914976	8
114087.868	cmplt	R	914976	8
116325.042	queue	WS	1916928	8
116325.164	issue	WS	1916928	8
116329.864	cmplt	WS	1916928	8
116330.658	queue	WS	1916928	8
116330.688	issue	WS	1916928	8
116331.543	cmplt	WS	1916928	8
116348.024	queue	WS	1912920	8
116348.115	issue	WS	1912920	8
116349.061	cmplt	WS	1912920	8
116349.245	queue	WS	1849128	8
116349.275	queue	WS	1849136	8
116349.275	queue	WS	1849144	8
116349.306	queue	WS	1849152	8
116349.306	queue	WS	1849160	8
116349.306	queue	WS	1849168	8
116349.336	queue	WS	1849176	8
116349.336	queue	WS	1849184	8
116349.336	queue	WS	1849192	8
116349.367	queue	WS	1849200	8
116349.367	queue	WS	1849208	8
116349.367	queue	WS	1849216	8
116349.458	issue	WS	1849128	96
116354.952	cmplt	WS	1849128	96
116355.074	queue	WS	1849224	8
116355.135	issue	WS	1849224	8
116355.990	cmplt	WS	1849224	8
116356.234	queue	WS	1849232	8
116356.264	queue	WS	1849240	8
116356.325	issue	WS	1849232	16
116357.271	cmplt	WS	1849232	16
116357.363	queue	WS	1849248	8
116357.424	issue	WS	1849248	8
116358.340	cmplt	WS	1849248	8
116382.573	queue	WS	2637168	80
116382.695	issue	WS	2637168	80
116389.531	cmplt	WS	2637168	80
116389.806	queue	WS	1849256	8
116389.837	queue	WS	1849264	8
116389.837	queue	WS	1849272	8
116389.837	queue	WS	1849280	8
116389.867	queue	WS	1849288	8
116389.867	queue	WS	1849296	8
116389.898	queue	WS	1849304	8
116389.959	issue	WS	1849256	56
116396.460	cmplt	WS	1849256	56
116396.582	queue	WS	1849312	8
116396.643	issue	WS	1849312	8
116397.528	cmplt	WS	1849312	8
117220.143	queue	W	1835536	8
117220.204	queue	W	1835640	8
117220.204	queue	W	1835696	8
117220.235	queue	W	1910368	8
117220.357	issue	W	1835696	8
117224.325	issue	W	1835640	8
117224.325	issue	W	1835536	8
117224.355	issue	W	1910368	8
117227.651	cmplt	W	1835696	8
117227.682	cmplt	W	1835640	8
117227.712	cmplt	W	1835536	8
117227.712	cmplt	W	1910368	8
121357.363	queue	WS	1916928	8
121357.485	issue	WS	1916928	8
121362.368	cmplt	WS	1916928	8
121363.070	queue	WS	1916928	8
121363.131	issue	WS	1916928	8
121363.986	cmplt	WS	1916928	8
121380.497	queue	WS	1912920	8
121380.589	issue	WS	1912920	8
121381.535	cmplt	WS	1912920	8
121381.718	queue	WS	1849320	8
121381.749	queue	WS	1849328	8
121381.779	queue	WS	1849336	8
121381.779	queue	WS	1849344	8
121381.779	queue	WS	1849352	8
121381.810	queue	WS	1849360	8
121381.810	queue	WS	1849368	8
121381.810	queue	WS	1849376	8
121381.840	queue	WS	1849384	8
121381.901	issue	WS	1849320	72
121385.747	cmplt	WS	1849320	72
121385.869	queue	WS	1849392	8
121385.930	issue	WS	1849392	8
121386.754	cmplt	WS	1849392	8
121386.998	queue	WS	1849400	8
121387.029	queue	WS	1849408	8
121387.090	issue	WS	1849400	16
121388.494	cmplt	WS	1849400	16
121388.555	queue	WS	1849416	8
121388.616	issue	WS	1849416	8
121389.470	cmplt	WS	1849416	8
121413.673	queue	WS	2637248	80
121413.765	issue	WS	2637248	80
121416.054	cmplt	WS	2637248	80
121416.298	queue	WS	1849424	8
121416.328	queue	WS	1849432	8
121416.328	queue	WS	1849440	8
121416.328	queue	WS	1849448	8
121416.359	queue	WS	1849456	8
121416.359	queue	WS	1849464	8
121416.359	queue	WS	1849472	8
121416.450	issue	WS	1849424	56
121418.495	cmplt	WS	1849424	56
121418.648	queue	WS	1849480	8
121418.678	issue	WS	1849480	8
121419.564	cmplt	WS	1849480	8
126385.747	queue	WS	1916928	8
126385.869	issue	WS	1916928	8
126390.935	cmplt	WS	1916928	8
126391.637	queue	WS	1916928	8
126391.698	issue	WS	1916928	8
126392.553	cmplt	WS	1916928	8
126409.126	queue	WS	1912920	8
126409.248	issue	WS	1912920	8
126410.194	cmplt	WS	1912920	8
126410.377	queue	WS	1849488	8
126410.407	queue	WS	1849496	8
126410.407	queue	WS	1849504	8
126410.438	queue	WS	1849512	8
126410.438	queue	WS	1849520	8
126410.438	queue	WS	1849528	8
126410.468	queue	WS	1849536	8
126410.468	queue	WS	1849544	8
126410.499	queue	WS	1849552	8
126410.560	issue	WS	1849488	72
126413.124	cmplt	WS	1849488	72
126413.246	queue	WS	1849560	8
126413.307	issue	WS	1849560	8
126414.161	cmplt	WS	1849560	8
126414.406	queue	WS	1849568	8
126414.436	queue	WS	1849576	8
126414.467	issue	WS	1849568	16
126415.382	cmplt	WS	1849568	16
126415.443	queue	WS	1849584	8
126415.504	issue	WS	1849584	8
126416.450	cmplt	WS	1849584	8
126440.836	queue	WS	2637328	80
126440.958	issue	WS	2637328	80
126443.339	cmplt	WS	2637328	80
126443.583	queue	WS	1849592	8
126443.614	queue	WS	1849600	8
126443.614	queue	WS	1849608	8
126443.614	queue	WS	1849616	8
126443.644	queue	WS	1849624	8
126443.644	queue	WS	1849632	8
126443.644	queue	WS	1849640	8
126443.736	issue	WS	1849592	56
126447.978	cmplt	WS	1849592	56
126448.131	queue	WS	1849648	8
126448.161	issue	WS	1849648	8
126449.077	cmplt	WS	1849648	8
127220.143	queue	W	1835696	8
127220.296	issue	W	1835696	8
127225.179	cmplt	W	1835696	8
131409.034	queue	WS	1916928	8
131409.126	issue	WS	1916928	8
131414.192	cmplt	WS	1916928	8
131414.924	queue	WS	1916928	8
131414.955	issue	WS	1916928	8
131415.871	cmplt	WS	1916928	8
131432.321	queue	WS	1912920	8
131432.443	issue	WS	1912920	8
131433.298	cmplt	WS	1912920	8
131433.481	queue	WS	1849656	8
131433.481	queue	WS	1849664	8
131433.511	queue	WS	1849672	8
131433.511	queue	WS	1849680	8
131433.542	queue	WS	1849688	8
131433.542	queue	WS	1849696	8
131433.542	queue	WS	1849704	8
131433.572	queue	WS	1849712	8
131433.572	queue	WS	1849720	8
131433.633	issue	WS	1849656	72
131440.226	cmplt	WS	1849656	72
131440.348	queue	WS	1849728	8
131440.409	issue	WS	1849728	8
131441.264	cmplt	WS	1849728	8
131441.508	queue	WS	1849736	8
131441.508	queue	WS	1849744	8
131441.569	issue	WS	1849736	16
131443.125	cmplt	WS	1849736	16
131443.186	queue	WS	1849752	8
131443.247	issue	WS	1849752	8
131444.102	cmplt	WS	1849752	8
131468.518	queue	WS	2637408	80
131468.640	issue	WS	2637408	80
131475.080	cmplt	WS	2637408	80
131475.355	queue	WS	1849760	8
131475.355	queue	WS	1849768	8
131475.385	queue	WS	1849776	8
131475.385	queue	WS	1849784	8
131475.416	queue	WS	1849792	8
131475.416	queue	WS	1849800	8
131475.416	queue	WS	1849808	8
131475.507	issue	WS	1849760	56
131479.048	cmplt	WS	1849760	56
131479.200	queue	WS	1849816	8
131479.261	issue	WS	1849816	8
131480.146	cmplt	WS	1849816	8
136426.400	queue	WS	1916928	8
136426.492	issue	WS	1916928	8
136431.558	cmplt	WS	1916928	8
136432.291	queue	WS	1916928	8
136432.352	issue	WS	1916928	8
136433.267	cmplt	WS	1916928	8
136449.779	queue	WS	1912920	8
136449.901	issue	WS	1912920	8
136450.847	cmplt	WS	1912920	8
136451.000	queue	WS	1849824	8
136451.030	queue	WS	1849832	8
136451.061	queue	WS	1849840	8
136451.061	queue	WS	1849848	8
136451.061	queue	WS	1849856	8
136451.091	queue	WS	1849864	8
136451.091	queue	WS	1849872	8
136451.091	queue	WS	1849880	8
136451.122	queue	WS	1849888	8
136451.183	issue	WS	1849824	72
136453.533	cmplt	WS	1849824	72
136453.655	queue	WS	1849896	8
136453.716	issue	WS	1849896	8
136454.540	cmplt	WS	1849896	8
136454.784	queue	WS	1849904	8
136454.815	queue	WS	1849912	8
136454.876	issue	WS	1849904	16
136455.761	cmplt	WS	1849904	16
136455.852	queue	WS	1849920	8
136455.913	issue	WS	1849920	8
136456.768	cmplt	WS	1849920	8
136481.032	queue	WS	2637488	80
136481.123	issue	WS	2637488	80
136487.929	cmplt	WS	2637488	80
136488.204	queue	WS	1849928	8
136488.204	queue	WS	1849936	8
136488.234	queue	WS	1849944	8
136488.234	queue	WS	1849952	8
136488.234	queue	WS	1849960	8
136488.265	queue	WS	1849968	8
136488.265	queue	WS	1849976	8
136488.356	issue	WS	1849928	56
136492.568	cmplt	WS	1849928	56
136492.690	queue	WS	1849984	8
136492.782	issue	WS	1849984	8
136493.698	cmplt	WS	1849984	8
137220.082	queue	W	1835696	8
137220.296	issue	W	1835696	8
137225.149	cmplt	W	1835696	8
141444.621	queue	WS	1916928	8
141444.743	issue	WS	1916928	8
141449.809	cmplt	WS	1916928	8
141450.572	queue	WS	1916928	8
141450.603	issue	WS	1916928	8
141451.488	cmplt	WS	1916928	8
141467.908	queue	WS	1912920	8
141467.999	issue	WS	1912920	8
141468.946	cmplt	WS	1912920	8
141469.098	queue	WS	1849992	8
141469.129	queue	WS	1850000	8
141469.159	queue	WS	1850008	8
141469.159	queue	WS	1850016	8
141469.159	queue	WS	1850024	8
141469.190	queue	WS	1850032	8
141469.190	queue	WS	1850040	8
141469.190	queue	WS	1850048	8
141469.220	queue	WS	1850056	8
141469.281	issue	WS	1849992	72
141475.935	cmplt	WS	1849992	72
141476.057	queue	WS	1850064	8
141476.087	issue	WS	1850064	8
141476.942	cmplt	WS	1850064	8
141477.186	queue	WS	1850072	8
141477.217	queue	WS	1850080	8
141477.247	issue	WS	1850072	16
141478.712	cmplt	WS	1850072	16
141478.804	queue	WS	1850088	8
141478.865	issue	WS	1850088	8
141479.689	cmplt	WS	1850088	8
141504.013	queue	WS	2637568	80
141504.105	issue	WS	2637568	80
141506.394	cmplt	WS	2637568	80
141506.669	queue	WS	1850096	8
141506.669	queue	WS	1850104	8
141506.699	queue	WS	1850112	8
141506.699	queue	WS	1850120	8
141506.730	queue	WS	1850128	8
141506.730	queue	WS	1850136	8
141506.730	queue	WS	1850144	8
141506.821	issue	WS	1850096	56
141510.758	cmplt	WS	1850096	56
141510.911	queue	WS	1850152	8
141510.942	issue	WS	1850152	8
141511.857	cmplt	WS	1850152	8
146191.180	queue	WS	1916928	8
146191.302	issue	WS	1916928	8
146196.368	cmplt	WS	1916928	8
146197.070	queue	WS	1916928	8
146197.131	issue	WS	1916928	8
146197.986	cmplt	WS	1916928	8
146214.711	queue	WS	1912920	8
146214.833	issue	WS	1912920	8
146215.687	cmplt	WS	1912920	8
146215.871	queue	WS	1850160	8
146215.871	queue	WS	1850168	8
146215.901	queue	WS	1850176	8
146215.901	queue	WS	1850184	8
146215.932	queue	WS	1850192	8
146215.932	queue	WS	1850200	8
146215.932	queue	WS	1850208	8
146215.962	queue	WS	1850216	8
146215.962	queue	WS	1850224	8
146216.054	issue	WS	1850160	72
146218.709	cmplt	WS	1850160	72
146218.831	queue	WS	1850232	8
146218.892	issue	WS	1850232	8
146219.747	cmplt	WS	1850232	8
146220.021	queue	WS	1850240	8
146220.052	queue	WS	1850248	8
146220.113	issue	WS	1850240	16
146220.998	cmplt	WS	1850240	16
146221.090	queue	WS	1850256	8
146221.151	issue	WS	1850256	8
146222.005	cmplt	WS	1850256	8
146246.421	queue	WS	2637648	80
146246.513	issue	WS	2637648	80
146248.833	cmplt	WS	2637648	80
146249.107	queue	WS	1850264	8
146249.107	queue	WS	1850272	8
146249.138	queue	WS	1850280	8
146249.138	queue	WS	1850288	8
146249.138	queue	WS	1850296	8
146249.168	queue	WS	1850304	8
146249.168	queue	WS	1850312	8
146249.260	issue	WS	1850264	56
146251.335	cmplt	WS	1850264	56
146251.488	queue	WS	1850320	8
146251.549	issue	WS	1850320	8
146252.465	cmplt	WS	1850320	8
147220.113	queue	W	1835696	8
147220.296	issue	W	1835696	8
147225.179	cmplt	W	1835696	8
151460.156	queue	WS	1850328	8
151460.186	queue	WS	1850336	8
151460.217	queue	WS	1850344	8
151460.217	queue	WS	1850352	8
151460.217	queue	WS	1850360	8
151460.247	queue	WS	1850368	8
151460.247	queue	WS	1850376	8
151460.247	queue	WS	1850384	8
151460.339	issue	WS	1850328	64
151468.396	cmplt	WS	1850328	64
151468.518	queue	WS	1850392	8
151468.579	issue	WS	1850392	8
151469.434	cmplt	WS	1850392	8
151494.796	queue	WS	1916928	8
151494.918	issue	WS	1916928	8
151495.987	cmplt	WS	1916928	8
151496.719	queue	WS	1916928	8
151496.750	issue	WS	1916928	8
151497.665	cmplt	WS	1916928	8
151514.177	queue	WS	1912920	8
151514.268	issue	WS	1912920	8
151515.153	cmplt	WS	1912920	8
151515.306	queue	WS	1850400	8
151515.336	queue	WS	1850408	8
151515.336	queue	WS	1850416	8
151515.428	issue	WS	1850400	24
151519.457	cmplt	WS	1850400	24
151519.548	queue	WS	1850424	8
151519.609	issue	WS	1850424	8
151520.525	cmplt	WS	1850424	8
151520.739	queue	WS	1850432	8
151520.769	queue	WS	1850440	8
151520.800	issue	WS	1850432	16
151521.685	cmplt	WS	1850432	16
151521.746	queue	WS	1850448	8
151521.807	issue	WS	1850448	8
151522.692	cmplt	WS	1850448	8
151547.413	queue	WS	2637728	80
151547.505	issue	WS	2637728	80
151554.464	cmplt	WS	2637728	80
151554.738	queue	WS	1850456	8
151554.738	queue	WS	1850464	8
151554.769	queue	WS	1850472	8
151554.769	queue	WS	1850480	8
151554.799	queue	WS	1850488	8
151554.799	queue	WS	1850496	8
151554.799	queue	WS	1850504	8
151554.891	issue	WS	1850456	56
151559.530	cmplt	WS	1850456	56
151559.683	queue	WS	1850512	8
151559.713	issue	WS	1850512	8
151560.659	cmplt	WS	1850512	8
156523.607	queue	WS	1916928	8
156523.730	issue	WS	1916928	8
156528.796	cmplt	WS	1916928	8
156529.559	queue	WS	1916928	8
156529.620	issue	WS	1916928	8
156530.536	cmplt	WS	1916928	8
156547.108	queue	WS	1912920	8
156547.230	issue	WS	1912920	8
156548.146	cmplt	WS	1912920	8
156548.329	queue	WS	1850520	8
156548.360	queue	WS	1850528	8
156548.360	queue	WS	1850536	8
156548.360	queue	WS	1850544	8
156548.390	queue	WS	1850552	8
156548.390	queue	WS	1850560	8
156548.390	queue	WS	1850568	8
156548.421	queue	WS	1850576	8
156548.421	queue	WS	1850584	8
156548.512	issue	WS	1850520	72
156552.327	cmplt	WS	1850520	72
156552.449	queue	WS	1850592	8
156552.480	issue	WS	1850592	8
156553.334	cmplt	WS	1850592	8
156553.578	queue	WS	1850600	8
156553.578	queue	WS	1850608	8
156553.640	issue	WS	1850600	16
156555.349	cmplt	WS	1850600	16
156555.440	queue	WS	1850616	8
156555.501	issue	WS	1850616	8
156556.386	cmplt	WS	1850616	8
156580.650	queue	WS	2895872	80
156580.772	issue	WS	2895872	80
156584.923	cmplt	WS	2895872	80
156585.198	queue	WS	1850624	8
156585.228	queue	WS	1850632	8
156585.228	queue	WS	1850640	8
156585.259	queue	WS	1850648	8
156585.259	queue	WS	1850656	8
156585.259	queue	WS	1850664	8
156585.289	queue	WS	1850672	8
156585.350	issue	WS	1850624	56
156587.426	cmplt	WS	1850624	56
156587.578	queue	WS	1850680	8
156587.639	issue	WS	1850680	8
156588.585	cmplt	WS	1850680	8
157220.082	queue	W	1835696	8
157220.143	queue	W	2883584	8
157220.296	issue	W	1835696	8
157224.264	issue	W	2883584	8
157226.400	cmplt	W	1835696	8
157226.431	cmplt	W	2883584	8
161543.079	queue	WS	1916928	8
161543.202	issue	WS	1916928	8
161548.665	cmplt	WS	1916928	8
161549.397	queue	WS	1916928	8
161549.428	issue	WS	1916928	8
161550.282	cmplt	WS	1916928	8
161566.885	queue	WS	1912920	8
161567.007	issue	WS	1912920	8
161567.954	cmplt	WS	1912920	8
161568.137	queue	WS	1850688	8
161568.167	queue	WS	1850696	8
161568.167	queue	WS	1850704	8
161568.198	queue	WS	1850712	8
161568.198	queue	WS	1850720	8
161568.198	queue	WS	1850728	8
161568.228	queue	WS	1850736	8
161568.228	queue	WS	1850744	8
161568.228	queue	WS	1850752	8
161568.320	issue	WS	1850688	72
161573.203	cmplt	WS	1850688	72
161573.325	queue	WS	1850760	8
161573.386	issue	WS	1850760	8
161574.302	cmplt	WS	1850760	8
161574.546	queue	WS	1850768	8
161574.577	queue	WS	1850776	8
161574.607	issue	WS	1850768	16
161575.584	cmplt	WS	1850768	16
161575.645	queue	WS	1850784	8
161575.736	issue	WS	1850784	8
161581.932	cmplt	WS	1850784	8
161606.226	queue	WS	2895952	80
161606.318	issue	WS	2895952	80
161613.276	cmplt	WS	2895952	80
161613.551	queue	WS	1850792	8
161613.582	queue	WS	1850800	8
161613.582	queue	WS	1850808	8
161613.582	queue	WS	1850816	8
161613.612	queue	WS	1850824	8
161613.612	queue	WS	1850832	8
161613.643	queue	WS	1850840	8
161613.704	issue	WS	1850792	56
161620.082	cmplt	WS	1850792	56
161620.235	queue	WS	1850848	8
161620.296	issue	WS	1850848	8
161621.242	cmplt	WS	1850848	8
166573.966	queue	WS	1916928	8
166574.088	issue	WS	1916928	8
166579.155	cmplt	WS	1916928	8
166579.918	queue	WS	1916928	8
166579.948	issue	WS	1916928	8
166580.803	cmplt	WS	1916928	8
166597.009	queue	WS	1912920	8
166597.131	issue	WS	1912920	8
166598.016	cmplt	WS	1912920	8
166598.199	queue	WS	1850856	8
166598.230	queue	WS	1850864	8
166598.230	queue	WS	1850872	8
166598.230	queue	WS	1850880	8
166598.260	queue	WS	1850888	8
166598.260	queue	WS	1850896	8
166598.260	queue	WS	1850904	8
166598.291	queue	WS	1850912	8
166598.291	queue	WS	1850920	8
166598.382	issue	WS	1850856	72
166602.289	cmplt	WS	1850856	72
166602.411	queue	WS	1850928	8
166602.472	issue	WS	1850928	8
166603.388	cmplt	WS	1850928	8
166603.632	queue	WS	1850936	8
166603.632	queue	WS	1850944	8
166603.693	issue	WS	1850936	16
166605.219	cmplt	WS	1850936	16
166605.311	queue	WS	1850952	8
166605.372	issue	WS	1850952	8
166606.257	cmplt	WS	1850952	8
166630.978	queue	WS	2896032	80
166631.100	issue	WS	2896032	80
166634.641	cmplt	WS	2896032	80
166634.946	queue	WS	1850960	8
166634.946	queue	WS	1850968	8
166634.976	queue	WS	1850976	8
166634.976	queue	WS	1850984	8
166635.007	queue	WS	1850992	8
166635.007	queue	WS	1851000	8
166635.007	queue	WS	1851008	8
166635.098	issue	WS	1850960	56
166637.174	cmplt	WS	1850960	56
166637.296	queue	WS	1851016	8
166637.357	issue	WS	1851016	8
166638.211	cmplt	WS	1851016	8
167220.143	queue	W	1835696	8
167220.174	queue	W	2621960	8
167220.327	issue	W	1835696	8
167224.294	issue	W	2621960	8
167226.553	cmplt	W	1835696	8
167226.583	cmplt	W	2621960	8
171573.691	queue	WS	1916928	8
171573.783	issue	WS	1916928	8
171579.338	cmplt	WS	1916928	8
171580.131	queue	WS	1916928	8
171580.192	issue	WS	1916928	8
171581.108	cmplt	WS	1916928	8
171597.589	queue	WS	1912920	8
171597.711	issue	WS	1912920	8
171598.566	cmplt	WS	1912920	8
171598.749	queue	WS	1851024	8
171598.779	queue	WS	1851032	8
171598.779	queue	WS	1851040	8
171598.810	queue	WS	1851048	8
171598.810	queue	WS	1851056	8
171598.810	queue	WS	1851064	8
171598.840	queue	WS	1851072	8
171598.840	queue	WS	1851080	8
171598.840	queue	WS	1851088	8
171598.932	issue	WS	1851024	72
171601.557	cmplt	WS	1851024	72
171601.679	queue	WS	1851096	8
171601.740	issue	WS	1851096	8
171602.625	cmplt	WS	1851096	8
171602.869	queue	WS	1851104	8
171602.899	queue	WS	1851112	8
171602.960	issue	WS	1851104	16
171603.815	cmplt	WS	1851104	16
171603.907	queue	WS	1851120	8
171603.968	issue	WS	1851120	8
171604.822	cmplt	WS	1851120	8
171629.666	queue	WS	2896112	80
171629.788	issue	WS	2896112	80
171632.168	cmplt	WS	2896112	80
171632.413	queue	WS	1851128	8
171632.443	queue	WS	1851136	8
171632.443	queue	WS	1851144	8
171632.443	queue	WS	1851152	8
171632.474	queue	WS	1851160	8
171632.474	queue	WS	1851168	8
171632.474	queue	WS	1851176	8
171632.565	issue	WS	1851128	56
171637.174	cmplt	WS	1851128	56
171637.326	queue	WS	1851184	8
171637.357	issue	WS	1851184	8
171638.273	cmplt	WS	1851184	8
176612.025	queue	WS	1916928	8
176612.147	issue	WS	1916928	8
176616.847	cmplt	WS	1916928	8
176617.549	queue	WS	1916928	8
176617.610	issue	WS	1916928	8
176618.526	cmplt	WS	1916928	8
176635.068	queue	WS	1851192	8
176635.068	queue	WS	1851200	8
176635.098	queue	WS	1851208	8
176635.098	queue	WS	1851216	8
176635.129	queue	WS	1851224	8
176635.129	queue	WS	1851232	8
176635.129	queue	WS	1851240	8
176635.159	queue	WS	1851248	8
176635.159	queue	WS	1851256	8
176635.251	issue	WS	1851192	72
176635.312	queue	WS	1912920	8
176641.874	cmplt	WS	1851192	72
176641.965	issue	WS	1912920	8
176641.996	queue	WS	1851264	8
176643.034	cmplt	WS	1912920	8
176643.095	issue	WS	1851264	8
176644.102	cmplt	WS	1851264	8
176644.407	queue	WS	1851272	8
176644.438	queue	WS	1851280	8
176644.499	issue	WS	1851272	16
176646.177	cmplt	WS	1851272	16
176646.269	queue	WS	1851288	8
176646.330	issue	WS	1851288	8
176647.154	cmplt	WS	1851288	8
176672.028	queue	WS	2896192	80
176672.150	issue	WS	2896192	80
176676.362	cmplt	WS	2896192	80
176676.606	queue	WS	1851296	8
176676.637	queue	WS	1851304	8
176676.667	queue	WS	1851312	8
176676.667	queue	WS	1851320	8
176676.667	queue	WS	1851328	8
176676.698	queue	WS	1851336	8
176676.698	queue	WS	1851344	8
176676.789	issue	WS	1851296	56
176680.330	cmplt	WS	1851296	56
176680.482	queue	WS	1851352	8
176680.513	issue	WS	1851352	8
176681.398	cmplt	WS	1851352	8
177220.143	queue	W	1835696	8
177220.296	issue	W	1835696	8
177225.179	cmplt	W	1835696	8
181665.314	queue	WS	1916928	8
181665.436	issue	WS	1916928	8
181670.502	cmplt	WS	1916928	8
181671.173	queue	WS	1916928	8
181671.204	issue	WS	1916928	8
181672.059	cmplt	WS	1916928	8
181687.136	queue	WS	1851360	8
181687.136	queue	WS	1851368	8
181687.166	queue	WS	1851376	8
181687.166	queue	WS	1851384	8
181687.197	queue	WS	1851392	8
181687.197	queue	WS	1851400	8
181687.197	queue	WS	1851408	8
181687.227	queue	WS	1851416	8
181687.227	queue	WS	1851424	8
181687.227	queue	WS	1851432	8
181687.258	queue	WS	1851440	8
181687.258	queue	WS	1851448	8
181687.288	queue	WS	1851456	8
181687.288	queue	WS	1851464	8
181687.288	queue	WS	1851472	8
181687.319	queue	WS	1851480	8
181687.319	queue	WS	1851488	8
181687.410	issue	WS	1851360	136
181687.471	queue	WS	1912920	8
181693.331	cmplt	WS	1851360	136
181693.423	issue	WS	1912920	8
181693.484	queue	WS	1851496	8
181694.461	cmplt	WS	1912920	8
181694.552	issue	WS	1851496	8
181695.590	cmplt	WS	1851496	8
181714.177	queue	WS	1851504	8
181714.207	queue	WS	1851512	8
181714.268	issue	WS	1851504	16
181715.184	cmplt	WS	1851504	16
181715.245	queue	WS	1851520	8
181715.306	issue	WS	1851520	8
181716.252	cmplt	WS	1851520	8
181737.494	queue	WS	2896272	80
181737.616	issue	WS	2896272	80
181744.544	cmplt	WS	2896272	80
181744.819	queue	WS	1851528	8
181744.850	queue	WS	1851536	8
181744.850	queue	WS	1851544	8
181744.880	queue	WS	1851552	8
181744.880	queue	WS	1851560	8
181744.880	queue	WS	1851568	8
181744.911	queue	WS	1851576	8
181744.972	issue	WS	1851528	56
181751.412	cmplt	WS	1851528	56
181751.534	queue	WS	1851584	8
181751.595	issue	WS	1851584	8
181752.510	cmplt	WS	1851584	8
186551.747	queue	WS	1916928	8
186551.869	issue	WS	1916928	8
186556.569	cmplt	WS	1916928	8
186557.210	queue	WS	1916928	8
186557.271	issue	WS	1916928	8
186558.126	cmplt	WS	1916928	8
186573.020	queue	WS	1912920	8
186573.112	issue	WS	1912920	8
186573.966	cmplt	WS	1912920	8
186574.149	queue	WS	1851592	8
186574.180	queue	WS	1851600	8
186574.210	queue	WS	1851608	8
186574.210	queue	WS	1851616	8
186574.210	queue	WS	1851624	8
186574.241	queue	WS	1851632	8
186574.241	queue	WS	1851640	8
186574.241	queue	WS	1851648	8
186574.271	queue	WS	1851656	8
186574.332	issue	WS	1851592	72
186578.697	cmplt	WS	1851592	72
186578.819	queue	WS	1851664	8
186578.880	issue	WS	1851664	8
186579.704	cmplt	WS	1851664	8
186579.948	queue	WS	1851672	8
186580.009	queue	WS	1851680	8
186580.070	issue	WS	1851672	16
186581.566	cmplt	WS	1851672	16
186581.657	queue	WS	1851688	8
186581.718	issue	WS	1851688	8
186582.542	cmplt	WS	1851688	8
186603.754	queue	WS	2896352	80
186603.876	issue	WS	2896352	80
186607.416	cmplt	WS	2896352	80
186607.691	queue	WS	1851696	8
186607.722	queue	WS	1851704	8
186607.752	queue	WS	1851712	8
186607.752	queue	WS	1851720	8
186607.752	queue	WS	1851728	8
186607.783	queue	WS	1851736	8
186607.783	queue	WS	1851744	8
186607.844	issue	WS	1851696	56
186609.950	cmplt	WS	1851696	56
186610.255	queue	WS	1851752	8
186610.285	issue	WS	1851752	8
186611.201	cmplt	WS	1851752	8
187220.143	queue	W	1835528	8
187220.204	queue	W	1835536	8
187220.204	queue	W	1835544	8
187220.235	queue	W	1835696	8
187220.266	queue	W	1835704	8
187220.266	queue	W	1872416	8
187220.296	queue	W	2097672	8
187220.296	queue	W	2359296	8
187220.327	queue	W	2621960	8
187220.479	issue	W	1872416	8
187224.477	issue	W	2097672	8
187224.508	issue	W	2359296	8
187224.508	issue	W	2621960	8
187224.538	issue	W	1835528	24
187224.538	issue	W	1835696	16
187230.948	cmplt	W	1872416	8
187230.978	cmplt	W	2097672	8
187230.978	cmplt	W	2359296	8
187231.009	cmplt	W	2621960	8
187231.009	cmplt	W	1835528	24
187231.039	cmplt	W	1835696	16
191567.313	queue	WS	1916928	8
191567.435	issue	WS	1916928	8
191572.135	cmplt	WS	1916928	8
191572.806	queue	WS	1916928	8
191572.867	issue	WS	1916928	8
191573.813	cmplt	WS	1916928	8
191588.646	queue	WS	1912920	8
191588.768	issue	WS	1912920	8
191589.654	cmplt	WS	1912920	8
191589.867	queue	WS	1851760	8
191589.867	queue	WS	1851768	8
191589.898	queue	WS	1851776	8
191589.898	queue	WS	1851784	8
191589.928	queue	WS	1851792	8
191589.928	queue	WS	1851800	8
191589.928	queue	WS	1851808	8
191589.959	queue	WS	1851816	8
191589.959	queue	WS	1851824	8
191590.050	issue	WS	1851760	72
191595.025	cmplt	WS	1851760	72
191595.147	queue	WS	1851832	8
191595.208	issue	WS	1851832	8
191596.185	cmplt	WS	1851832	8
191596.460	queue	WS	1851840	8
191596.460	queue	WS	1851848	8
191596.521	issue	WS	1851840	16
191597.406	cmplt	WS	1851840	16
191597.497	queue	WS	1851856	8
191597.558	issue	WS	1851856	8
191598.413	cmplt	WS	1851856	8
191627.224	queue	WS	1974440	80
191627.346	issue	WS	1974440	80
191632.504	cmplt	WS	1974440	80
191632.657	queue	WS	1851864	8
191632.687	queue	WS	1851872	8
191632.687	queue	WS	1851880	8
191632.718	queue	WS	1851888	8
191632.718	queue	WS	1851896	8
191632.718	queue	WS	1851904	8
191632.748	queue	WS	1851912	8
191632.809	issue	WS	1851864	56
191636.655	cmplt	WS	1851864	56
191636.777	queue	WS	1851920	8
191636.838	issue	WS	1851920	8
191637.662	cmplt	WS	1851920	8
191669.434	queue	R	893760	8
191669.556	issue	R	893760	8
191670.075	cmplt	R	893760	8
191800.122	queue	R	938600	8
191800.244	issue	R	938600	8
191800.702	cmplt	R	938600	8
191801.251	queue	R	938592	8
191801.343	issue	R	938592	8
191801.618	cmplt	R	938592	8
191803.266	queue	R	938568	24
191803.357	issue	R	938568	24
191803.876	cmplt	R	938568	24
191804.090	queue	RM	2626072	8
191804.151	issue	RM	2626072	8
191804.578	cmplt	RM	2626072	8
191804.731	queue	R	2633048	32
191804.792	issue	R	2633048	32
191805.372	cmplt	R	2633048	32
191805.433	queue	R	2633112	8
191805.494	issue	R	2633112	8
191805.799	cmplt	R	2633112	8
191805.890	queue	R	2633080	32
191805.921	queue	R	2633120	8
191805.982	issue	R	2633120	8
191806.043	issue	R	2633080	32
191806.348	cmplt	R	2633120	8
191806.898	cmplt	R	2633080	32
191810.072	queue	R	1015768	24
191810.133	queue	R	1015808	72
191810.163	queue	R	1015904	8
191810.194	queue	R	1015944	8
191810.316	issue	R	1015768	24
191810.407	issue	R	1015808	72
191811.018	cmplt	R	1015768	24
191811.048	issue	R	1015904	8
191812.056	cmplt	R	1015808	72
191812.086	issue	R	1015944	8
191812.330	cmplt	R	1015904	8
191812.544	cmplt	R	1015944	8
191920.098	queue	R	1967272	256
191920.250	issue	R	1967272	256
191923.791	cmplt	R	1967272	256
196164.169	queue	WS	1916928	8
196164.261	issue	WS	1916928	8
196168.961	cmplt	WS	1916928	8
196169.632	queue	WS	1916928	8
196169.663	issue	WS	1916928	8
196170.609	cmplt	WS	1916928	8
196185.564	queue	WS	1912920	8
196185.686	issue	WS	1912920	8
196186.602	cmplt	WS	1912920	8
196186.785	queue	WS	1851928	8
196186.815	queue	WS	1851936	8
196186.815	queue	WS	1851944	8
196186.846	queue	WS	1851952	8
196186.846	queue	WS	1851960	8
196186.846	queue	WS	1851968	8
196186.876	queue	WS	1851976	8
196186.876	queue	WS	1851984	8
196186.907	queue	WS	1851992	8
196186.968	issue	WS	1851928	72
196193.530	cmplt	WS	1851928	72
196193.652	queue	WS	1852000	8
196193.713	issue	WS	1852000	8
196194.659	cmplt	WS	1852000	8
196194.903	queue	WS	1852008	8
196194.903	queue	WS	1852016	8
196194.964	issue	WS	1852008	16
196196.185	cmplt	WS	1852008	16
196196.246	queue	WS	1852024	8
196196.307	issue	WS	1852024	8
196197.162	cmplt	WS	1852024	8
196218.984	queue	WS	2896432	80
196219.075	queue	R	2626088	8
196219.075	issue	WS	2896432	80
196219.106	queue	R	2626104	8
196219.167	queue	R	2626120	8
196219.197	queue	R	2626128	8
196219.228	queue	R	2626136	8
196219.228	queue	R	2626144	8
196219.258	queue	R	2626152	8
196219.258	queue	R	2626160	8
196219.289	queue	R	2626168	8
196221.578	cmplt	WS	2896432	80
196221.669	issue	R	2626088	8
196221.730	issue	R	2626104	8
196221.914	queue	WS	1852032	8
196221.914	queue	WS	1852040	8
196221.944	queue	WS	1852048	8
196221.944	queue	WS	1852056	8
196221.944	queue	WS	1852064	8
196221.975	queue	WS	1852072	8
196221.975	queue	WS	1852080	8
196222.127	cmplt	R	2626088	8
196222.158	issue	R	2626120	56
196222.402	cmplt	R	2626104	8
196223.226	cmplt	R	2626120	56
196223.318	issue	WS	1852032	56
196225.454	cmplt	WS	1852032	56
196225.607	queue	WS	1852088	8
196225.637	issue	WS	1852088	8
196226.614	cmplt	WS	1852088	8
197220.113	queue	W	2883584	8
197220.174	queue	W	1835696	8
197220.327	issue	W	1835696	8
197224.325	issue	W	2883584	8
197226.431	cmplt	W	1835696	8
197226.461	cmplt	W	2883584	8
201420.174	queue	WS	1852096	8
201420.204	queue	WS	1852104	8
201420.235	queue	WS	1852112	8
201420.235	queue	WS	1852120	8
201420.235	queue	WS	1852128	8
201420.266	queue	WS	1852136	8
201420.266	queue	WS	1852144	8
201420.266	queue	WS	1852152	8
201420.357	issue	WS	1852096	64
201425.820	cmplt	WS	1852096	64
201425.942	queue	WS	1852160	8
201426.003	issue	WS	1852160	8
201426.858	cmplt	WS	1852160	8
201620.143	queue	WS	1916928	8
201620.388	issue	WS	1916928	8
201629.300	cmplt	WS	1916928	8
201629.940	queue	WS	1916928	8
201630.002	issue	WS	1916928	8
201630.856	cmplt	WS	1916928	8
201645.842	queue	WS	1912920	8
201645.964	issue	WS	1912920	8
201646.910	cmplt	WS	1912920	8
201647.032	queue	WS	1852168	8
201647.062	queue	WS	1852176	8
201647.093	queue	WS	1852184	8
201647.154	issue	WS	1852168	24
201651.091	cmplt	WS	1852168	24
201651.152	queue	WS	1852192	8
201651.244	issue	WS	1852192	8
201652.068	cmplt	WS	1852192	8
201652.281	queue	WS	1852200	8
201652.312	queue	WS	1852208	8
201652.342	issue	WS	1852200	16
201653.960	cmplt	WS	1852200	16
201654.021	queue	WS	1852216	8
201654.113	issue	WS	1852216	8
201654.998	cmplt	WS	1852216	8
201676.179	queue	WS	2896512	80
201676.270	issue	WS	2896512	80
201680.482	cmplt	WS	2896512	80
201680.726	queue	WS	1852224	8
201680.757	queue	WS	1852232	8
201680.787	queue	WS	1852240	8
201680.787	queue	WS	1852248	8
201680.787	queue	WS	1852256	8
201680.818	queue	WS	1852264	8
201680.818	queue	WS	1852272	8
201680.909	issue	WS	1852224	56
201687.227	cmplt	WS	1852224	56
201687.349	queue	WS	1852280	8
201687.441	issue	WS	1852280	8
201688.295	cmplt	WS	1852280	8
206637.357	queue	WS	1916928	8
206637.479	issue	WS	1916928	8
206642.576	cmplt	WS	1916928	8
206643.247	queue	WS	1916928	8
206643.278	issue	WS	1916928	8
206644.163	cmplt	WS	1916928	8
206659.057	queue	WS	1912920	8
206659.179	issue	WS	1912920	8
206660.034	cmplt	WS	1912920	8
206660.217	queue	WS	1852288	8
206660.247	queue	WS	1852296	8
206660.278	queue	WS	1852304	8
206660.278	queue	WS	1852312	8
206660.278	queue	WS	1852320	8
206660.308	queue	WS	1852328	8
206660.308	queue	WS	1852336	8
206660.339	queue	WS	1852344	8
206660.339	queue	WS	1852352	8
206660.400	issue	WS	1852288	72
206664.123	cmplt	WS	1852288	72
206664.245	queue	WS	1852360	8
206664.306	issue	WS	1852360	8
206665.191	cmplt	WS	1852360	8
206665.436	queue	WS	1852368	8
206665.466	queue	WS	1852376	8
206665.527	issue	WS	1852368	16
206666.412	cmplt	WS	1852368	16
206666.504	queue	WS	1852384	8
206666.565	issue	WS	1852384	8
206667.419	cmplt	WS	1852384	8
206688.692	queue	WS	2896592	80
206688.814	issue	WS	2896592	80
206695.834	cmplt	WS	2896592	80
206696.109	queue	WS	1852392	8
206696.109	queue	WS	1852400	8
206696.139	queue	WS	1852408	8
206696.139	queue	WS	1852416	8
206696.139	queue	WS	1852424	8
206696.170	queue	WS	1852432	8
206696.170	queue	WS	1852440	8
206696.261	issue	WS	1852392	56
206698.184	cmplt	WS	1852392	56
206698.306	queue	WS	1852448	8
206698.367	issue	WS	1852448	8
206699.283	cmplt	WS	1852448	8
207220.113	queue	W	1835528	8
207220.143	queue	W	1835696	8
207220.266	issue	W	1835696	8
207224.294	issue	W	1835528	8
207225.942	cmplt	W	1835696	8
207225.973	cmplt	W	1835528	8
211658.446	queue	WS	1916928	8
211658.569	issue	WS	1916928	8
211663.269	cmplt	WS	1916928	8
211663.940	queue	WS	1916928	8
211664.001	issue	WS	1916928	8
211664.917	cmplt	WS	1916928	8
211679.872	queue	WS	1912920	8
211679.994	issue	WS	1912920	8
211680.879	cmplt	WS	1912920	8
211681.062	queue	WS	1852456	8
211681.093	queue	WS	1852464	8
211681.123	queue	WS	1852472	8
211681.123	queue	WS	1852480	8
211681.123	queue	WS	1852488	8
211681.154	queue	WS	1852496	8
211681.154	queue	WS	1852504	8
211681.184	queue	WS	1852512	8
211681.184	queue	WS	1852520	8
211681.245	issue	WS	1852456	72
211685.701	cmplt	WS	1852456	72
211685.823	queue	WS	1852528	8
211685.884	issue	WS	1852528	8
211686.769	cmplt	WS	1852528	8
211687.044	queue	WS	1852536	8
211687.044	queue	WS	1852544	8
211687.105	issue	WS	1852536	16
211688.570	cmplt	WS	1852536	16
211688.631	queue	WS	1852552	8
211688.723	issue	WS	1852552	8
211689.547	cmplt	WS	1852552	8
211710.758	queue	WS	2896672	80
211710.880	issue	WS	2896672	80
211714.543	cmplt	WS	2896672	80
211714.818	queue	WS	1852560	8
211714.848	queue	WS	1852568	8
211714.848	queue	WS	1852576	8
211714.848	queue	WS	1852584	8
211714.879	queue	WS	1852592	8
211714.879	queue	WS	1852600	8
211714.909	queue	WS	1852608	8
211714.970	issue	WS	1852560	56
211719.701	cmplt	WS	1852560	56
211719.823	queue	WS	1852616	8
211719.884	issue	WS	1852616	8
211720.769	cmplt	WS	1852616	8
216670.746	queue	WS	1916928	8
216670.868	issue	WS	1916928	8
216675.935	cmplt	WS	1916928	8
216676.576	queue	WS	1916928	8
216676.606	issue	WS	1916928	8
216677.522	cmplt	WS	1916928	8
216692.904	queue	WS	1912920	8
216693.026	issue	WS	1912920	8
216693.911	cmplt	WS	1912920	8
216694.125	queue	WS	1852624	8
216694.125	queue	WS	1852632	8
216694.155	queue	WS	1852640	8
216694.155	queue	WS	1852648	8
216694.186	queue	WS	1852656	8
216694.186	queue	WS	1852664	8
216694.186	queue	WS	1852672	8
216694.216	queue	WS	1852680	8
216694.216	queue	WS	1852688	8
216694.308	issue	WS	1852624	72
216700.778	cmplt	WS	1852624	72
216700.900	queue	WS	1852696	8
216700.961	issue	WS	1852696	8
216701.907	cmplt	WS	1852696	8
216702.152	queue	WS	1852704	8
216702.152	queue	WS	1852712	8
216702.213	issue	WS	1852704	16
216703.159	cmplt	WS	1852704	16
216703.220	queue	WS	1852720	8
216703.281	issue	WS	1852720	8
216704.105	cmplt	WS	1852720	8
216725.378	queue	WS	2896752	80
216725.500	issue	WS	2896752	80
216727.972	cmplt	WS	2896752	80
216728.247	queue	WS	1852728	8
216728.277	queue	WS	1852736	8
216728.277	queue	WS	1852744	8
216728.277	queue	WS	1852752	8
216728.308	queue	WS	1852760	8
216728.308	queue	WS	1852768	8
216728.308	queue	WS	1852776	8
216728.399	issue	WS	1852728	56
216730.810	cmplt	WS	1852728	56
216730.932	queue	WS	1852784	8
216730.993	issue	WS	1852784	8
216731.909	cmplt	WS	1852784	8
217220.113	queue	W	1835696	8
217220.296	issue	W	1835696	8
217225.149	cmplt	W	1835696	8
221705.906	queue	WS	1916928	8
221706.028	issue	WS	1916928	8
221710.728	cmplt	WS	1916928	8
221711.369	queue	WS	1916928	8
221711.430	issue	WS	1916928	8
221712.284	cmplt	WS	1916928	8
221727.270	queue	WS	1912920	8
221727.392	issue	WS	1912920	8
221728.308	cmplt	WS	1912920	8
221728.491	queue	WS	1852792	8
221728.521	queue	WS	1852800	8
221728.552	queue	WS	1852808	8
221728.552	queue	WS	1852816	8
221728.552	queue	WS	1852824	8
221728.582	queue	WS	1852832	8
221728.582	queue	WS	1852840	8
221728.582	queue	WS	1852848	8
221728.613	queue	WS	1852856	8
221728.704	issue	WS	1852792	72
221731.207	cmplt	WS	1852792	72
221731.329	queue	WS	1852864	8
221731.390	issue	WS	1852864	8
221732.275	cmplt	WS	1852864	8
221732.550	queue	WS	1852872	8
221732.550	queue	WS	1852880	8
221732.611	issue	WS	1852872	16
221734.198	cmplt	WS	1852872	16
221734.259	queue	WS	1852888	8
221734.320	issue	WS	1852888	8
221735.175	cmplt	WS	1852888	8
221756.356	queue	WS	2896832	80
221756.447	issue	WS	2896832	80
221760.751	cmplt	WS	2896832	80
221760.995	queue	WS	1852896	8
221761.025	queue	WS	1852904	8
221761.056	queue	WS	1852912	8
221761.056	queue	WS	1852920	8
221761.056	queue	WS	1852928	8
221761.087	queue	WS	1852936	8
221761.087	queue	WS	1852944	8
221761.178	issue	WS	1852896	56
221765.451	cmplt	WS	1852896	56
221765.573	queue	WS	1852952	8
221765.634	issue	WS	1852952	8
221766.580	cmplt	WS	1852952	8

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-07-24  8:44 merez
@ 2012-07-24 20:23   ` merez
  2012-07-26 15:28 ` S, Venkatraman
  1 sibling, 0 replies; 44+ messages in thread
From: merez @ 2012-07-24 20:23 UTC (permalink / raw)
  Cc: S, Venkatraman, merez, Chris Ball, Muthu Kumar, linux-mmc,
	linux-arm-msm, open list, Seungwon Jeon

Attached are the trace logs for parallel read and write lmdd operations.

On Tue, July 24, 2012 1:44 am, merez@codeaurora.org wrote:
> On Mon, July 23, 2012 5:22 am, S, Venkatraman wrote:
>> On Mon, Jul 23, 2012 at 5:13 PM,  <merez@codeaurora.org> wrote:
>>> On Wed, July 18, 2012 12:26 am, Chris Ball wrote:
>>>> Hi,  [removing Jens and the documentation list, since now we're
> talking about the MMC side only]
>>>> On Wed, Jul 18 2012, merez@codeaurora.org wrote:
>>>>> Is there anything else that holds this patch from being pushed to
>>> mmc-next?
>>>> Yes, I'm still uncomfortable with the write packing patchsets for a
>>> couple of reasons, and I suspect that the sum of those reasons means
>>> that
>>> we should probably plan on holding off merging it until after 3.6.
>>>> Here are the open issues; please correct any misunderstandings: With
> Seungwon's patchset ("Support packed write command"):
>>>> * I still don't have a good set of representative benchmarks showing
>>>>   what kind of performance changes come with this patchset.  It seems
>>> like we've had a small amount of testing on one controller/eMMC part
>>> combo
>>> from Seungwon, and an entirely different test from Maya, and the
> results
>>> aren't documented fully anywhere to the level of describing what the
> hardware was, what the test was, and what the results were before and
> after the patchset.
>>> Currently, there is only one card vendor that supports packed commands.
> Following are our sequential write (LMDD) test results on 2 of our
> targets
>>> (in MB/s):
>>>                        No packing        packing
>>> Target 1 (SDR 50MHz)     15               25
>>> Target 2 (DDR 50MHz)     20               30
>>>> With the reads-during-writes regression:
>>>> * Venkat still has open questions about the nature of the read
>>>>   regression, and thinks we should understand it with blktrace before
>>> trying to fix it.  Maya has a theory about writes overwhelming reads,
>>> but
>>> Venkat doesn't understand why this would explain the observed
>>> bandwidth drop.
>>> The degradation of read due to writes is not a new behavior and exists
> also without the write packing feature (which only increases the
> degradation). Our investigation of this phenomenon led us to the
> Conclusion that a new scheduling policy should be used for mobile
> devices,
>>> but this is not related to the current discussion of the write packing
> feature.
>>> The write packing feature increases the degradation of read due to
> write
>>> since it allows the MMC to fetch many write requests in a row, instead
>>> of
>>> fetching only one at a time.  Therefore some of the read requests will
> have to wait for the completion of more write requests before they can
> be
>>> issued.
>>
>> I am a bit puzzled by this claim. One thing I checked carefully when
> reviewing write packing patches from SJeon was that the code didn't
> plough through a mixed list of reads and writes and selected only
> writes.
>> This section of the code in "mmc_blk_prep_packed_list()", from v8
> patchset..
>> <Quote>
>> +               if (rq_data_dir(cur) != rq_data_dir(next)) {
>> +                       put_back = 1;
>> +                       break;
>> +               }
>> </Quote>
>>
>> means that once a read is encountered in the middle of write packing,
> the packing is stopped at that point and it is executed. Then the next
> blk_fetch_request should get the next read and continue as before.
>>
>> IOW, the ordering of reads and writes is _not_ altered when using packed
> commands.
>> For example if there were 5 write requests, followed by 1 read,
>> followed by 5 more write requests in the request_queue, the first 5
> writes will be executed as one "packed command", then the read will be
> executed, and then the remaining 5 writes will be executed as one
> "packed command". So the read does not have to wait any more than it
> waited before (packing feature)
>
> Let me try to better explain with your example.
> Without packing the MMC layer will fetch 2 write requests and wait for the
> first write request completion before fetching another write request.
> During this time the read request could be inserted into the CFQ and since
> it has higher priority than the async write it will be dispatched in the
> next fetch. So, the result would be 2 write requests followed by one read
> request and the read would have to wait for completion of only 2 write
> requests.
> With packing, all the 5 write requests will be fetched in a row, and then
> the read will arrive and be dispatched in the next fetch. Then the read
> will have to wait for the completion of 5 write requests.
>
> Few more clarifications:
> Due to the plug list mechanism in the block layer the applications can
> "aggregate" several requests to be inserted into the scheduler before
> waking the MMC queue thread.
> This leads to a situation where there are several write requests in the
> CFQ queue when MMC starts to do the fetches.
>
> If the read was inserted while we are building the packed command then I
> agree that we should have seen less effect on the read performance.
> However, the write packing statistics show that in most of the cases the
> packing stopped due to an empty queue, meaning that the read was inserted
> to the CFQ after all the pending write requests were fetched and packed.
>
> Following is an example for write packing statistics of a READ/WRITE
> parallel scenario:
> write packing statistics:
> Packed 1 reqs - 448 times
> Packed 2 reqs - 38 times
> Packed 3 reqs - 23 times
> Packed 4 reqs - 30 times
> Packed 5 reqs - 14 times
> Packed 6 reqs - 8 times
> Packed 7 reqs - 4 times
> Packed 8 reqs - 1 times
> Packed 10 reqs - 1 times
> Packed 34 reqs - 1 times
> stopped packing due to the following reasons:
> 2 times: wrong data direction (meaning a READ was fetched and stopped the
> packing)
> 1 times: flush or discard
> 565 times: empty queue (meaning blk_fetch_request returned NULL)
>
>>
>> And I requested blktrace to confirm that this is indeed the behaviour.
>
> The trace logs show that in case of no packing, there are maximum of 3-4
> requests issued before a read request, while with packing there are also
> cases of 6 and 7 requests dispatched before a read request.
>
> I'm waiting for an approval for sharing the block trace logs.
> Since this is a simple test to run you can collect the trace logs and let
> us know if you reach other conclusions.
>
> Thanks,
> Maya
>
>>
>> Your rest of the arguments anyway depend on this assertion, so can you
> please clarify this.
>>
>>> To overcome this behavior, the solution would be to stop the write
>>> packing
>>> when a read request is fetched, and this is the algorithm suggested by
>>> the
>>> write packing control.
>>> Let's also keep in mind that lmdd benchmarking doesn't fully reflect
> the
>>> real life in which there are not many scenarios that cause massive read
> and write operations. In our user-common-scenarios tests we saw that in
> many cases the write packing decreases the read latency. It can happen
> in
>>> cases where the same amount of write requests is fetched with and
>>> without
>>> packing. In such a case the write packing decreases the transfer time
> of
>>> the write requests and causes the read request to wait for a shorter
>>> time.
>>>> With Maya's patchset ("write packing control"):
>>>> * Venkat thinks that HPI should be used, and the number-of-requests
>>>>   metric is too coarse, and it doesn't let you disable packing at the
>>> right time, and you're essentially implementing a new I/O scheduler
>>> inside
>>> the MMC subsystem without understanding the root cause for why that's
> necessary.
>>> According to our measurements the stop transmission (CMD12) + HPI is a
> heavy operation that may take up to several milliseconds. Therefore, a
> massive usage of HPI can cause a degradation of performance.
>>> In addition, it doesn’t provide a complete solution for read during
>>> write
>>> since it doesn’t solve the problem of “what to do with the interrupted
> write request remainder?”.  That is, a common interrupting read request
> will usually be followed by another one. If we just continue to write
> the
>>> interrupted write request remainder we will probably get another HPI
> due
>>> to the second read request, so eventually we may end up with lots of
>>> HPIs
>>> and write retries. A complete solution will be: stop the current write,
> change packing mode to non-packing, serve the read request, push back
> the
>>> write remainders to the block I/O scheduler and let him schedule them
> again probably after the read burst ends (this requires block layer
> support of course).
>>> Regarding the packing control, there seem to be a confusion since the
> number-of-requests is the trigger for *enabling* the packing (after it
> was
>>> disabled), while a single read request disable packing. Therefore, the
> packing is stopped at the right time.
>>> The packing control doesn't add any scheduling policy to the MMC layer.
> The write packing feature is the one changing the scheduling policy by
> fetching many write requests in a row without a delay that allows read
> requests to come in the middle.
>>> By disabling the write packing, the write packing control returns the
>>> old
>>> scheduling policy. It causes the MMC to fetch the requests one by one,
> thus read requests are served as before.
>>> It is correct that the trigger for enabling the write packing control
> should be adjusted per platform and doesn't give a complete solution.
> As
>>> I
>>> mentioned above, the complete solution will include the usage of write
> packing control, a re-insert of the write packed to the scheduler when
> a
>>> read request is fetched and usage of HPI to stop the packing that is
> already transferred.
>>> To summarize -
>>> We recommend including the write packing in 3.6 due to the following
> reasons:
>>> 1. It significantly improves the write throughput
>>> 2. In some of the cases it even decreases the read latency
>>> 3. The read degradation in simultaneous read-write flows already exist,
> even without this feature
>>> As for the write packing control, it can be included in 3.6 to supply a
> partial solution for the read degradation or we can postpone it to 3.7
> and
>>> integrate it as part of the complete solution.
>>> Thanks,
>>> Maya
>>>> My sense is that there's no way we can solve all of these to
>>>> satisfaction in the next week (which is when the merge window will
>>> open), but that by waiting a cycle we might come up with some good
> answers.
>>>> What do other people think?  If you're excited about these patchsets,
>>> now would be a fine time to come forward with your benchmarking results
> and to help understand the reads-during-writes regression.
>>
>
>
> --
> Sent by consultant of Qualcomm Innovation Center, Inc.
> Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum
>
>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>


-- 
Sent by consultant of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum


^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
@ 2012-07-24 20:23   ` merez
  0 siblings, 0 replies; 44+ messages in thread
From: merez @ 2012-07-24 20:23 UTC (permalink / raw)
  To: merez
  Cc: S, Venkatraman, merez, Chris Ball, Muthu Kumar, linux-mmc,
	linux-arm-msm, open list, Seungwon Jeon

Attached are the trace logs for parallel read and write lmdd operations.

On Tue, July 24, 2012 1:44 am, merez@codeaurora.org wrote:
> On Mon, July 23, 2012 5:22 am, S, Venkatraman wrote:
>> On Mon, Jul 23, 2012 at 5:13 PM,  <merez@codeaurora.org> wrote:
>>> On Wed, July 18, 2012 12:26 am, Chris Ball wrote:
>>>> Hi,  [removing Jens and the documentation list, since now we're
> talking about the MMC side only]
>>>> On Wed, Jul 18 2012, merez@codeaurora.org wrote:
>>>>> Is there anything else that holds this patch from being pushed to
>>> mmc-next?
>>>> Yes, I'm still uncomfortable with the write packing patchsets for a
>>> couple of reasons, and I suspect that the sum of those reasons means
>>> that
>>> we should probably plan on holding off merging it until after 3.6.
>>>> Here are the open issues; please correct any misunderstandings: With
> Seungwon's patchset ("Support packed write command"):
>>>> * I still don't have a good set of representative benchmarks showing
>>>>   what kind of performance changes come with this patchset.  It seems
>>> like we've had a small amount of testing on one controller/eMMC part
>>> combo
>>> from Seungwon, and an entirely different test from Maya, and the
> results
>>> aren't documented fully anywhere to the level of describing what the
> hardware was, what the test was, and what the results were before and
> after the patchset.
>>> Currently, there is only one card vendor that supports packed commands.
> Following are our sequential write (LMDD) test results on 2 of our
> targets
>>> (in MB/s):
>>>                        No packing        packing
>>> Target 1 (SDR 50MHz)     15               25
>>> Target 2 (DDR 50MHz)     20               30
>>>> With the reads-during-writes regression:
>>>> * Venkat still has open questions about the nature of the read
>>>>   regression, and thinks we should understand it with blktrace before
>>> trying to fix it.  Maya has a theory about writes overwhelming reads,
>>> but
>>> Venkat doesn't understand why this would explain the observed
>>> bandwidth drop.
>>> The degradation of read due to writes is not a new behavior and exists
> also without the write packing feature (which only increases the
> degradation). Our investigation of this phenomenon led us to the
> Conclusion that a new scheduling policy should be used for mobile
> devices,
>>> but this is not related to the current discussion of the write packing
> feature.
>>> The write packing feature increases the degradation of read due to
> write
>>> since it allows the MMC to fetch many write requests in a row, instead
>>> of
>>> fetching only one at a time.  Therefore some of the read requests will
> have to wait for the completion of more write requests before they can
> be
>>> issued.
>>
>> I am a bit puzzled by this claim. One thing I checked carefully when
> reviewing write packing patches from SJeon was that the code didn't
> plough through a mixed list of reads and writes and selected only
> writes.
>> This section of the code in "mmc_blk_prep_packed_list()", from v8
> patchset..
>> <Quote>
>> +               if (rq_data_dir(cur) != rq_data_dir(next)) {
>> +                       put_back = 1;
>> +                       break;
>> +               }
>> </Quote>
>>
>> means that once a read is encountered in the middle of write packing,
> the packing is stopped at that point and it is executed. Then the next
> blk_fetch_request should get the next read and continue as before.
>>
>> IOW, the ordering of reads and writes is _not_ altered when using packed
> commands.
>> For example if there were 5 write requests, followed by 1 read,
>> followed by 5 more write requests in the request_queue, the first 5
> writes will be executed as one "packed command", then the read will be
> executed, and then the remaining 5 writes will be executed as one
> "packed command". So the read does not have to wait any more than it
> waited before (packing feature)
>
> Let me try to better explain with your example.
> Without packing the MMC layer will fetch 2 write requests and wait for the
> first write request completion before fetching another write request.
> During this time the read request could be inserted into the CFQ and since
> it has higher priority than the async write it will be dispatched in the
> next fetch. So, the result would be 2 write requests followed by one read
> request and the read would have to wait for completion of only 2 write
> requests.
> With packing, all the 5 write requests will be fetched in a row, and then
> the read will arrive and be dispatched in the next fetch. Then the read
> will have to wait for the completion of 5 write requests.
>
> Few more clarifications:
> Due to the plug list mechanism in the block layer the applications can
> "aggregate" several requests to be inserted into the scheduler before
> waking the MMC queue thread.
> This leads to a situation where there are several write requests in the
> CFQ queue when MMC starts to do the fetches.
>
> If the read was inserted while we are building the packed command then I
> agree that we should have seen less effect on the read performance.
> However, the write packing statistics show that in most of the cases the
> packing stopped due to an empty queue, meaning that the read was inserted
> to the CFQ after all the pending write requests were fetched and packed.
>
> Following is an example for write packing statistics of a READ/WRITE
> parallel scenario:
> write packing statistics:
> Packed 1 reqs - 448 times
> Packed 2 reqs - 38 times
> Packed 3 reqs - 23 times
> Packed 4 reqs - 30 times
> Packed 5 reqs - 14 times
> Packed 6 reqs - 8 times
> Packed 7 reqs - 4 times
> Packed 8 reqs - 1 times
> Packed 10 reqs - 1 times
> Packed 34 reqs - 1 times
> stopped packing due to the following reasons:
> 2 times: wrong data direction (meaning a READ was fetched and stopped the
> packing)
> 1 times: flush or discard
> 565 times: empty queue (meaning blk_fetch_request returned NULL)
>
>>
>> And I requested blktrace to confirm that this is indeed the behaviour.
>
> The trace logs show that in case of no packing, there are maximum of 3-4
> requests issued before a read request, while with packing there are also
> cases of 6 and 7 requests dispatched before a read request.
>
> I'm waiting for an approval for sharing the block trace logs.
> Since this is a simple test to run you can collect the trace logs and let
> us know if you reach other conclusions.
>
> Thanks,
> Maya
>
>>
>> Your rest of the arguments anyway depend on this assertion, so can you
> please clarify this.
>>
>>> To overcome this behavior, the solution would be to stop the write
>>> packing
>>> when a read request is fetched, and this is the algorithm suggested by
>>> the
>>> write packing control.
>>> Let's also keep in mind that lmdd benchmarking doesn't fully reflect
> the
>>> real life in which there are not many scenarios that cause massive read
> and write operations. In our user-common-scenarios tests we saw that in
> many cases the write packing decreases the read latency. It can happen
> in
>>> cases where the same amount of write requests is fetched with and
>>> without
>>> packing. In such a case the write packing decreases the transfer time
> of
>>> the write requests and causes the read request to wait for a shorter
>>> time.
>>>> With Maya's patchset ("write packing control"):
>>>> * Venkat thinks that HPI should be used, and the number-of-requests
>>>>   metric is too coarse, and it doesn't let you disable packing at the
>>> right time, and you're essentially implementing a new I/O scheduler
>>> inside
>>> the MMC subsystem without understanding the root cause for why that's
> necessary.
>>> According to our measurements the stop transmission (CMD12) + HPI is a
> heavy operation that may take up to several milliseconds. Therefore, a
> massive usage of HPI can cause a degradation of performance.
>>> In addition, it doesn’t provide a complete solution for read during
>>> write
>>> since it doesn’t solve the problem of “what to do with the interrupted
> write request remainder?”.  That is, a common interrupting read request
> will usually be followed by another one. If we just continue to write
> the
>>> interrupted write request remainder we will probably get another HPI
> due
>>> to the second read request, so eventually we may end up with lots of
>>> HPIs
>>> and write retries. A complete solution will be: stop the current write,
> change packing mode to non-packing, serve the read request, push back
> the
>>> write remainders to the block I/O scheduler and let him schedule them
> again probably after the read burst ends (this requires block layer
> support of course).
>>> Regarding the packing control, there seem to be a confusion since the
> number-of-requests is the trigger for *enabling* the packing (after it
> was
>>> disabled), while a single read request disable packing. Therefore, the
> packing is stopped at the right time.
>>> The packing control doesn't add any scheduling policy to the MMC layer.
> The write packing feature is the one changing the scheduling policy by
> fetching many write requests in a row without a delay that allows read
> requests to come in the middle.
>>> By disabling the write packing, the write packing control returns the
>>> old
>>> scheduling policy. It causes the MMC to fetch the requests one by one,
> thus read requests are served as before.
>>> It is correct that the trigger for enabling the write packing control
> should be adjusted per platform and doesn't give a complete solution.
> As
>>> I
>>> mentioned above, the complete solution will include the usage of write
> packing control, a re-insert of the write packed to the scheduler when
> a
>>> read request is fetched and usage of HPI to stop the packing that is
> already transferred.
>>> To summarize -
>>> We recommend including the write packing in 3.6 due to the following
> reasons:
>>> 1. It significantly improves the write throughput
>>> 2. In some of the cases it even decreases the read latency
>>> 3. The read degradation in simultaneous read-write flows already exist,
> even without this feature
>>> As for the write packing control, it can be included in 3.6 to supply a
> partial solution for the read degradation or we can postpone it to 3.7
> and
>>> integrate it as part of the complete solution.
>>> Thanks,
>>> Maya
>>>> My sense is that there's no way we can solve all of these to
>>>> satisfaction in the next week (which is when the merge window will
>>> open), but that by waiting a cycle we might come up with some good
> answers.
>>>> What do other people think?  If you're excited about these patchsets,
>>> now would be a fine time to come forward with your benchmarking results
> and to help understand the reads-during-writes regression.
>>
>
>
> --
> Sent by consultant of Qualcomm Innovation Center, Inc.
> Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum
>
>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>


-- 
Sent by consultant of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum


^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
@ 2012-07-24  8:44 merez
  2012-07-24 20:23   ` merez
  2012-07-26 15:28 ` S, Venkatraman
  0 siblings, 2 replies; 44+ messages in thread
From: merez @ 2012-07-24  8:44 UTC (permalink / raw)
  To: S, Venkatraman
  Cc: merez, Chris Ball, Muthu Kumar, linux-mmc, linux-arm-msm,
	open list, Seungwon Jeon

On Mon, July 23, 2012 5:22 am, S, Venkatraman wrote:
> On Mon, Jul 23, 2012 at 5:13 PM,  <merez@codeaurora.org> wrote:
>> On Wed, July 18, 2012 12:26 am, Chris Ball wrote:
>>> Hi,  [removing Jens and the documentation list, since now we're
talking about the MMC side only]
>>> On Wed, Jul 18 2012, merez@codeaurora.org wrote:
>>>> Is there anything else that holds this patch from being pushed to
>> mmc-next?
>>> Yes, I'm still uncomfortable with the write packing patchsets for a
>> couple of reasons, and I suspect that the sum of those reasons means that
>> we should probably plan on holding off merging it until after 3.6.
>>> Here are the open issues; please correct any misunderstandings: With
Seungwon's patchset ("Support packed write command"):
>>> * I still don't have a good set of representative benchmarks showing
>>>   what kind of performance changes come with this patchset.  It seems
>> like we've had a small amount of testing on one controller/eMMC part combo
>> from Seungwon, and an entirely different test from Maya, and the
results
>> aren't documented fully anywhere to the level of describing what the
hardware was, what the test was, and what the results were before and
after the patchset.
>> Currently, there is only one card vendor that supports packed commands.
Following are our sequential write (LMDD) test results on 2 of our
targets
>> (in MB/s):
>>                        No packing        packing
>> Target 1 (SDR 50MHz)     15               25
>> Target 2 (DDR 50MHz)     20               30
>>> With the reads-during-writes regression:
>>> * Venkat still has open questions about the nature of the read
>>>   regression, and thinks we should understand it with blktrace before
>> trying to fix it.  Maya has a theory about writes overwhelming reads, but
>> Venkat doesn't understand why this would explain the observed
>> bandwidth drop.
>> The degradation of read due to writes is not a new behavior and exists
also without the write packing feature (which only increases the
degradation). Our investigation of this phenomenon led us to the
Conclusion that a new scheduling policy should be used for mobile
devices,
>> but this is not related to the current discussion of the write packing
feature.
>> The write packing feature increases the degradation of read due to
write
>> since it allows the MMC to fetch many write requests in a row, instead of
>> fetching only one at a time.  Therefore some of the read requests will
have to wait for the completion of more write requests before they can
be
>> issued.
>
> I am a bit puzzled by this claim. One thing I checked carefully when
reviewing write packing patches from SJeon was that the code didn't
plough through a mixed list of reads and writes and selected only
writes.
> This section of the code in "mmc_blk_prep_packed_list()", from v8
patchset..
> <Quote>
> +               if (rq_data_dir(cur) != rq_data_dir(next)) {
> +                       put_back = 1;
> +                       break;
> +               }
> </Quote>
>
> means that once a read is encountered in the middle of write packing,
the packing is stopped at that point and it is executed. Then the next
blk_fetch_request should get the next read and continue as before.
>
> IOW, the ordering of reads and writes is _not_ altered when using packed
commands.
> For example if there were 5 write requests, followed by 1 read,
> followed by 5 more write requests in the request_queue, the first 5
writes will be executed as one "packed command", then the read will be
executed, and then the remaining 5 writes will be executed as one
"packed command". So the read does not have to wait any more than it
waited before (packing feature)

Let me try to better explain with your example.
Without packing the MMC layer will fetch 2 write requests and wait for the
first write request completion before fetching another write request.
During this time the read request could be inserted into the CFQ and since
it has higher priority than the async write it will be dispatched in the
next fetch. So, the result would be 2 write requests followed by one read
request and the read would have to wait for completion of only 2 write
requests.
With packing, all the 5 write requests will be fetched in a row, and then
the read will arrive and be dispatched in the next fetch. Then the read
will have to wait for the completion of 5 write requests.

Few more clarifications:
Due to the plug list mechanism in the block layer the applications can
"aggregate" several requests to be inserted into the scheduler before
waking the MMC queue thread.
This leads to a situation where there are several write requests in the
CFQ queue when MMC starts to do the fetches.

If the read was inserted while we are building the packed command then I
agree that we should have seen less effect on the read performance.
However, the write packing statistics show that in most of the cases the
packing stopped due to an empty queue, meaning that the read was inserted
to the CFQ after all the pending write requests were fetched and packed.

Following is an example for write packing statistics of a READ/WRITE
parallel scenario:
write packing statistics:
Packed 1 reqs - 448 times
Packed 2 reqs - 38 times
Packed 3 reqs - 23 times
Packed 4 reqs - 30 times
Packed 5 reqs - 14 times
Packed 6 reqs - 8 times
Packed 7 reqs - 4 times
Packed 8 reqs - 1 times
Packed 10 reqs - 1 times
Packed 34 reqs - 1 times
stopped packing due to the following reasons:
2 times: wrong data direction (meaning a READ was fetched and stopped the
packing)
1 times: flush or discard
565 times: empty queue (meaning blk_fetch_request returned NULL)

>
> And I requested blktrace to confirm that this is indeed the behaviour.

The trace logs show that in case of no packing, there are maximum of 3-4
requests issued before a read request, while with packing there are also
cases of 6 and 7 requests dispatched before a read request.

I'm waiting for an approval for sharing the block trace logs.
Since this is a simple test to run you can collect the trace logs and let
us know if you reach other conclusions.

Thanks,
Maya

>
> Your rest of the arguments anyway depend on this assertion, so can you
please clarify this.
>
>> To overcome this behavior, the solution would be to stop the write packing
>> when a read request is fetched, and this is the algorithm suggested by the
>> write packing control.
>> Let's also keep in mind that lmdd benchmarking doesn't fully reflect
the
>> real life in which there are not many scenarios that cause massive read
and write operations. In our user-common-scenarios tests we saw that in
many cases the write packing decreases the read latency. It can happen
in
>> cases where the same amount of write requests is fetched with and without
>> packing. In such a case the write packing decreases the transfer time
of
>> the write requests and causes the read request to wait for a shorter time.
>>> With Maya's patchset ("write packing control"):
>>> * Venkat thinks that HPI should be used, and the number-of-requests
>>>   metric is too coarse, and it doesn't let you disable packing at the
>> right time, and you're essentially implementing a new I/O scheduler inside
>> the MMC subsystem without understanding the root cause for why that's
necessary.
>> According to our measurements the stop transmission (CMD12) + HPI is a
heavy operation that may take up to several milliseconds. Therefore, a
massive usage of HPI can cause a degradation of performance.
>> In addition, it doesn’t provide a complete solution for read during write
>> since it doesn’t solve the problem of “what to do with the interrupted
write request remainder?”.  That is, a common interrupting read request
will usually be followed by another one. If we just continue to write
the
>> interrupted write request remainder we will probably get another HPI
due
>> to the second read request, so eventually we may end up with lots of HPIs
>> and write retries. A complete solution will be: stop the current write,
change packing mode to non-packing, serve the read request, push back
the
>> write remainders to the block I/O scheduler and let him schedule them
again probably after the read burst ends (this requires block layer
support of course).
>> Regarding the packing control, there seem to be a confusion since the
number-of-requests is the trigger for *enabling* the packing (after it
was
>> disabled), while a single read request disable packing. Therefore, the
packing is stopped at the right time.
>> The packing control doesn't add any scheduling policy to the MMC layer.
The write packing feature is the one changing the scheduling policy by
fetching many write requests in a row without a delay that allows read
requests to come in the middle.
>> By disabling the write packing, the write packing control returns the old
>> scheduling policy. It causes the MMC to fetch the requests one by one,
thus read requests are served as before.
>> It is correct that the trigger for enabling the write packing control
should be adjusted per platform and doesn't give a complete solution.
As
>> I
>> mentioned above, the complete solution will include the usage of write
packing control, a re-insert of the write packed to the scheduler when
a
>> read request is fetched and usage of HPI to stop the packing that is
already transferred.
>> To summarize -
>> We recommend including the write packing in 3.6 due to the following
reasons:
>> 1. It significantly improves the write throughput
>> 2. In some of the cases it even decreases the read latency
>> 3. The read degradation in simultaneous read-write flows already exist,
even without this feature
>> As for the write packing control, it can be included in 3.6 to supply a
partial solution for the read degradation or we can postpone it to 3.7
and
>> integrate it as part of the complete solution.
>> Thanks,
>> Maya
>>> My sense is that there's no way we can solve all of these to
>>> satisfaction in the next week (which is when the merge window will
>> open), but that by waiting a cycle we might come up with some good
answers.
>>> What do other people think?  If you're excited about these patchsets,
>> now would be a fine time to come forward with your benchmarking results
and to help understand the reads-during-writes regression.
>


-- 
Sent by consultant of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
  2012-07-23 11:43 ` merez
  (?)
@ 2012-07-23 12:22 ` S, Venkatraman
  -1 siblings, 0 replies; 44+ messages in thread
From: S, Venkatraman @ 2012-07-23 12:22 UTC (permalink / raw)
  To: merez
  Cc: Chris Ball, Muthu Kumar, linux-mmc, linux-arm-msm, open list,
	Seungwon Jeon

On Mon, Jul 23, 2012 at 5:13 PM,  <merez@codeaurora.org> wrote:
> On Wed, July 18, 2012 12:26 am, Chris Ball wrote:
>> Hi,  [removing Jens and the documentation list, since now we're
>> talking about the MMC side only]
>>
>> On Wed, Jul 18 2012, merez@codeaurora.org wrote:
>>> Is there anything else that holds this patch from being pushed to
> mmc-next?
>>
>> Yes, I'm still uncomfortable with the write packing patchsets for a
> couple of reasons, and I suspect that the sum of those reasons means that
> we should probably plan on holding off merging it until after 3.6.
>>
>> Here are the open issues; please correct any misunderstandings:
>>
>> With Seungwon's patchset ("Support packed write command"):
>>
>> * I still don't have a good set of representative benchmarks showing
>>   what kind of performance changes come with this patchset.  It seems
> like we've had a small amount of testing on one controller/eMMC part combo
> from Seungwon, and an entirely different test from Maya, and the results
> aren't documented fully anywhere to the level of describing what the
> hardware was, what the test was, and what the results were before and
> after the patchset.
>
> Currently, there is only one card vendor that supports packed commands.
> Following are our sequential write (LMDD) test results on 2 of our targets
> (in MB/s):
>                        No packing        packing
> Target 1 (SDR 50MHz)     15               25
> Target 2 (DDR 50MHz)     20               30
>
>>
>> With the reads-during-writes regression:
>>
>> * Venkat still has open questions about the nature of the read
>>   regression, and thinks we should understand it with blktrace before
> trying to fix it.  Maya has a theory about writes overwhelming reads, but
> Venkat doesn't understand why this would explain the observed
> bandwidth drop.
>
> The degradation of read due to writes is not a new behavior and exists
> also without the write packing feature (which only increases the
> degradation). Our investigation of this phenomenon led us to the
> Conclusion that a new scheduling policy should be used for mobile devices,
> but this is not related to the current discussion of the write packing
> feature.
>
> The write packing feature increases the degradation of read due to write
> since it allows the MMC to fetch many write requests in a row, instead of
> fetching only one at a time.  Therefore some of the read requests will
> have to wait for the completion of more write requests before they can be
> issued.

I am a bit puzzled by this claim. One thing I checked carefully when
reviewing write packing patches from SJeon was that the code didn't
plough through a mixed list of reads and writes and selected only
writes.
This section of the code in "mmc_blk_prep_packed_list()", from v8 patchset..
<Quote>
+               if (rq_data_dir(cur) != rq_data_dir(next)) {
+                       put_back = 1;
+                       break;
+               }
</Quote>

means that once a read is encountered in the middle of write packing,
the packing is stopped at that point and it is executed. Then the next
blk_fetch_request should get the next read and continue as before.

IOW, the ordering of reads and writes is _not_ altered when using
packed commands.
For example if there were 5 write requests, followed by 1 read,
followed by 5 more write requests in the request_queue, the first 5
writes will be executed as one "packed command", then the read will be
executed, and then the remaining 5 writes will be executed as one
"packed command". So the read does not have to wait any more than it
waited before (packing feature)

And I requested blktrace to confirm that this is indeed the behaviour.

Your rest of the arguments anyway depend on this assertion, so can you
please clarify this.

>
> To overcome this behavior, the solution would be to stop the write packing
> when a read request is fetched, and this is the algorithm suggested by the
> write packing control.
>
> Let's also keep in mind that lmdd benchmarking doesn't fully reflect the
> real life in which there are not many scenarios that cause massive read
> and write operations. In our user-common-scenarios tests we saw that in
> many cases the write packing decreases the read latency. It can happen in
> cases where the same amount of write requests is fetched with and without
> packing. In such a case the write packing decreases the transfer time of
> the write requests and causes the read request to wait for a shorter time.
>
>>
>> With Maya's patchset ("write packing control"):
>>
>> * Venkat thinks that HPI should be used, and the number-of-requests
>>   metric is too coarse, and it doesn't let you disable packing at the
> right time, and you're essentially implementing a new I/O scheduler inside
> the MMC subsystem without understanding the root cause for why that's
> necessary.
>
> According to our measurements the stop transmission (CMD12) + HPI is a
> heavy operation that may take up to several milliseconds. Therefore, a
> massive usage of HPI can cause a degradation of performance.
> In addition, it doesn’t provide a complete solution for read during write
> since it doesn’t solve the problem of “what to do with the interrupted
> write request remainder?”.  That is, a common interrupting read request
> will usually be followed by another one. If we just continue to write the
> interrupted write request remainder we will probably get another HPI due
> to the second read request, so eventually we may end up with lots of HPIs
> and write retries. A complete solution will be: stop the current write,
> change packing mode to non-packing, serve the read request, push back the
> write remainders to the block I/O scheduler and let him schedule them
> again probably after the read burst ends (this requires block layer
> support of course).
>
> Regarding the packing control, there seem to be a confusion since the
> number-of-requests is the trigger for *enabling* the packing (after it was
> disabled), while a single read request disable packing. Therefore, the
> packing is stopped at the right time.
>
> The packing control doesn't add any scheduling policy to the MMC layer.
> The write packing feature is the one changing the scheduling policy by
> fetching many write requests in a row without a delay that allows read
> requests to come in the middle.
> By disabling the write packing, the write packing control returns the old
> scheduling policy. It causes the MMC to fetch the requests one by one,
> thus read requests are served as before.
>
> It is correct that the trigger for enabling the write packing control
> should be adjusted per platform and doesn't give a complete solution. As I
> mentioned above, the complete solution will include the usage of write
> packing control, a re-insert of the write packed to the scheduler when a
> read request is fetched and usage of HPI to stop the packing that is
> already transferred.
>
> To summarize -
> We recommend including the write packing in 3.6 due to the following reasons:
> 1. It significantly improves the write throughput
> 2. In some of the cases it even decreases the read latency
> 3. The read degradation in simultaneous read-write flows already exist,
> even without this feature
>
> As for the write packing control, it can be included in 3.6 to supply a
> partial solution for the read degradation or we can postpone it to 3.7 and
> integrate it as part of the complete solution.
>
> Thanks,
> Maya
>
>>
>> My sense is that there's no way we can solve all of these to
>> satisfaction in the next week (which is when the merge window will
> open), but that by waiting a cycle we might come up with some good answers.
>>
>> What do other people think?  If you're excited about these patchsets,
> now would be a fine time to come forward with your benchmarking results
> and to help understand the reads-during-writes regression.
>>

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
@ 2012-07-23 11:43 ` merez
  0 siblings, 0 replies; 44+ messages in thread
From: merez @ 2012-07-23 11:43 UTC (permalink / raw)
  To: Chris Ball
  Cc: merez, Muthu Kumar, linux-mmc, linux-arm-msm, open list, S,
	Venkatraman, Seungwon Jeon

On Wed, July 18, 2012 12:26 am, Chris Ball wrote:
> Hi,  [removing Jens and the documentation list, since now we're
> talking about the MMC side only]
>
> On Wed, Jul 18 2012, merez@codeaurora.org wrote:
>> Is there anything else that holds this patch from being pushed to
mmc-next?
>
> Yes, I'm still uncomfortable with the write packing patchsets for a
couple of reasons, and I suspect that the sum of those reasons means that
we should probably plan on holding off merging it until after 3.6.
>
> Here are the open issues; please correct any misunderstandings:
>
> With Seungwon's patchset ("Support packed write command"):
>
> * I still don't have a good set of representative benchmarks showing
>   what kind of performance changes come with this patchset.  It seems
like we've had a small amount of testing on one controller/eMMC part combo
from Seungwon, and an entirely different test from Maya, and the results
aren't documented fully anywhere to the level of describing what the
hardware was, what the test was, and what the results were before and
after the patchset.

Currently, there is only one card vendor that supports packed commands.
Following are our sequential write (LMDD) test results on 2 of our targets
(in MB/s):
                       No packing        packing
Target 1 (SDR 50MHz)     15               25
Target 2 (DDR 50MHz)     20               30

>
> With the reads-during-writes regression:
>
> * Venkat still has open questions about the nature of the read
>   regression, and thinks we should understand it with blktrace before
trying to fix it.  Maya has a theory about writes overwhelming reads, but
Venkat doesn't understand why this would explain the observed
bandwidth drop.

The degradation of read due to writes is not a new behavior and exists
also without the write packing feature (which only increases the
degradation). Our investigation of this phenomenon led us to the
Conclusion that a new scheduling policy should be used for mobile devices,
but this is not related to the current discussion of the write packing
feature.

The write packing feature increases the degradation of read due to write
since it allows the MMC to fetch many write requests in a row, instead of
fetching only one at a time.  Therefore some of the read requests will
have to wait for the completion of more write requests before they can be
issued.

To overcome this behavior, the solution would be to stop the write packing
when a read request is fetched, and this is the algorithm suggested by the
write packing control.

Let's also keep in mind that lmdd benchmarking doesn't fully reflect the
real life in which there are not many scenarios that cause massive read
and write operations. In our user-common-scenarios tests we saw that in
many cases the write packing decreases the read latency. It can happen in
cases where the same amount of write requests is fetched with and without
packing. In such a case the write packing decreases the transfer time of
the write requests and causes the read request to wait for a shorter time.

>
> With Maya's patchset ("write packing control"):
>
> * Venkat thinks that HPI should be used, and the number-of-requests
>   metric is too coarse, and it doesn't let you disable packing at the
right time, and you're essentially implementing a new I/O scheduler inside
the MMC subsystem without understanding the root cause for why that's
necessary.

According to our measurements the stop transmission (CMD12) + HPI is a
heavy operation that may take up to several milliseconds. Therefore, a
massive usage of HPI can cause a degradation of performance.
In addition, it doesn’t provide a complete solution for read during write
since it doesn’t solve the problem of “what to do with the interrupted
write request remainder?”.  That is, a common interrupting read request
will usually be followed by another one. If we just continue to write the
interrupted write request remainder we will probably get another HPI due
to the second read request, so eventually we may end up with lots of HPIs
and write retries. A complete solution will be: stop the current write,
change packing mode to non-packing, serve the read request, push back the
write remainders to the block I/O scheduler and let him schedule them
again probably after the read burst ends (this requires block layer
support of course).

Regarding the packing control, there seem to be a confusion since the
number-of-requests is the trigger for *enabling* the packing (after it was
disabled), while a single read request disable packing. Therefore, the
packing is stopped at the right time.

The packing control doesn't add any scheduling policy to the MMC layer.
The write packing feature is the one changing the scheduling policy by
fetching many write requests in a row without a delay that allows read
requests to come in the middle.
By disabling the write packing, the write packing control returns the old
scheduling policy. It causes the MMC to fetch the requests one by one,
thus read requests are served as before.

It is correct that the trigger for enabling the write packing control
should be adjusted per platform and doesn't give a complete solution. As I
mentioned above, the complete solution will include the usage of write
packing control, a re-insert of the write packed to the scheduler when a
read request is fetched and usage of HPI to stop the packing that is
already transferred.

To summarize -
We recommend including the write packing in 3.6 due to the following reasons:
1. It significantly improves the write throughput
2. In some of the cases it even decreases the read latency
3. The read degradation in simultaneous read-write flows already exist,
even without this feature

As for the write packing control, it can be included in 3.6 to supply a
partial solution for the read degradation or we can postpone it to 3.7 and
integrate it as part of the complete solution.

Thanks,
Maya

>
> My sense is that there's no way we can solve all of these to
> satisfaction in the next week (which is when the merge window will
open), but that by waiting a cycle we might come up with some good answers.
>
> What do other people think?  If you're excited about these patchsets,
now would be a fine time to come forward with your benchmarking results
and to help understand the reads-during-writes regression.
>
> Thanks!
>
> - Chris.
> --
> Chris Ball   <cjb@laptop.org>   <http://printf.net/>
> One Laptop Per Child
>


-- 
Sent by consultant of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
@ 2012-07-23 11:43 ` merez
  0 siblings, 0 replies; 44+ messages in thread
From: merez @ 2012-07-23 11:43 UTC (permalink / raw)
  To: Chris Ball
  Cc: merez, Muthu Kumar, linux-mmc, linux-arm-msm, open list, S,
	Venkatraman, Seungwon Jeon

On Wed, July 18, 2012 12:26 am, Chris Ball wrote:
> Hi,  [removing Jens and the documentation list, since now we're
> talking about the MMC side only]
>
> On Wed, Jul 18 2012, merez@codeaurora.org wrote:
>> Is there anything else that holds this patch from being pushed to
mmc-next?
>
> Yes, I'm still uncomfortable with the write packing patchsets for a
couple of reasons, and I suspect that the sum of those reasons means that
we should probably plan on holding off merging it until after 3.6.
>
> Here are the open issues; please correct any misunderstandings:
>
> With Seungwon's patchset ("Support packed write command"):
>
> * I still don't have a good set of representative benchmarks showing
>   what kind of performance changes come with this patchset.  It seems
like we've had a small amount of testing on one controller/eMMC part combo
from Seungwon, and an entirely different test from Maya, and the results
aren't documented fully anywhere to the level of describing what the
hardware was, what the test was, and what the results were before and
after the patchset.

Currently, there is only one card vendor that supports packed commands.
Following are our sequential write (LMDD) test results on 2 of our targets
(in MB/s):
                       No packing        packing
Target 1 (SDR 50MHz)     15               25
Target 2 (DDR 50MHz)     20               30

>
> With the reads-during-writes regression:
>
> * Venkat still has open questions about the nature of the read
>   regression, and thinks we should understand it with blktrace before
trying to fix it.  Maya has a theory about writes overwhelming reads, but
Venkat doesn't understand why this would explain the observed
bandwidth drop.

The degradation of read due to writes is not a new behavior and exists
also without the write packing feature (which only increases the
degradation). Our investigation of this phenomenon led us to the
Conclusion that a new scheduling policy should be used for mobile devices,
but this is not related to the current discussion of the write packing
feature.

The write packing feature increases the degradation of read due to write
since it allows the MMC to fetch many write requests in a row, instead of
fetching only one at a time.  Therefore some of the read requests will
have to wait for the completion of more write requests before they can be
issued.

To overcome this behavior, the solution would be to stop the write packing
when a read request is fetched, and this is the algorithm suggested by the
write packing control.

Let's also keep in mind that lmdd benchmarking doesn't fully reflect the
real life in which there are not many scenarios that cause massive read
and write operations. In our user-common-scenarios tests we saw that in
many cases the write packing decreases the read latency. It can happen in
cases where the same amount of write requests is fetched with and without
packing. In such a case the write packing decreases the transfer time of
the write requests and causes the read request to wait for a shorter time.

>
> With Maya's patchset ("write packing control"):
>
> * Venkat thinks that HPI should be used, and the number-of-requests
>   metric is too coarse, and it doesn't let you disable packing at the
right time, and you're essentially implementing a new I/O scheduler inside
the MMC subsystem without understanding the root cause for why that's
necessary.

According to our measurements the stop transmission (CMD12) + HPI is a
heavy operation that may take up to several milliseconds. Therefore, a
massive usage of HPI can cause a degradation of performance.
In addition, it doesn’t provide a complete solution for read during write
since it doesn’t solve the problem of “what to do with the interrupted
write request remainder?”.  That is, a common interrupting read request
will usually be followed by another one. If we just continue to write the
interrupted write request remainder we will probably get another HPI due
to the second read request, so eventually we may end up with lots of HPIs
and write retries. A complete solution will be: stop the current write,
change packing mode to non-packing, serve the read request, push back the
write remainders to the block I/O scheduler and let him schedule them
again probably after the read burst ends (this requires block layer
support of course).

Regarding the packing control, there seem to be a confusion since the
number-of-requests is the trigger for *enabling* the packing (after it was
disabled), while a single read request disable packing. Therefore, the
packing is stopped at the right time.

The packing control doesn't add any scheduling policy to the MMC layer.
The write packing feature is the one changing the scheduling policy by
fetching many write requests in a row without a delay that allows read
requests to come in the middle.
By disabling the write packing, the write packing control returns the old
scheduling policy. It causes the MMC to fetch the requests one by one,
thus read requests are served as before.

It is correct that the trigger for enabling the write packing control
should be adjusted per platform and doesn't give a complete solution. As I
mentioned above, the complete solution will include the usage of write
packing control, a re-insert of the write packed to the scheduler when a
read request is fetched and usage of HPI to stop the packing that is
already transferred.

To summarize -
We recommend including the write packing in 3.6 due to the following reasons:
1. It significantly improves the write throughput
2. In some of the cases it even decreases the read latency
3. The read degradation in simultaneous read-write flows already exist,
even without this feature

As for the write packing control, it can be included in 3.6 to supply a
partial solution for the read degradation or we can postpone it to 3.7 and
integrate it as part of the complete solution.

Thanks,
Maya

>
> My sense is that there's no way we can solve all of these to
> satisfaction in the next week (which is when the merge window will
open), but that by waiting a cycle we might come up with some good answers.
>
> What do other people think?  If you're excited about these patchsets,
now would be a fine time to come forward with your benchmarking results
and to help understand the reads-during-writes regression.
>
> Thanks!
>
> - Chris.
> --
> Chris Ball   <cjb@laptop.org>   <http://printf.net/>
> One Laptop Per Child
>


-- 
Sent by consultant of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum



















^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v2 1/1] mmc: block: Add write packing control
@ 2012-06-12 19:05 merez
  0 siblings, 0 replies; 44+ messages in thread
From: merez @ 2012-06-12 19:05 UTC (permalink / raw)
  To: S, Venkatraman
  Cc: merez, Seungwon Jeon, linux-mmc, linux-arm-msm,
	DOCUMENTATION',
	open list

> On Tue, Jun 12, 2012 at 1:40 AM,  <merez@codeaurora.org> wrote:
>>> On Mon, Jun 11, 2012 at 7:25 PM,  <merez@codeaurora.org> wrote:
>>>>> Maya Erez <merez@codeaurora.org> wrote:
>>>>>> > Hi,
>>>>>> >
>>>>>> > How can we check the effect?
>>>>>> > Do you have any result?
>>>>>> We ran parallel lmdd read and write operations and found out that
the
>>>>>> write packing causes the read throughput to drop from 24MB/s to
12MB/s.
>>>>>> The write packing control managed to increase the read throughput
back
>>>>>> to
>>>>>> the original value.
>>>>>> We also examined "real life" scenarios, such as performing a big
push
>>>>>> operation in parallel to launching several applications. We
measured
>>>>>> the
>>>>>> read latency and found out that with the write packing control the
worst
>>>>>> case of the read latency was smaller.
>>>>>> > Please check the several comment below.
>>>>>> >
>>>>>> > Maya Erez <merez@codeaurora.org> wrote:
>>>>>> >> The write packing control will ensure that read requests latency
>>>>>> is
>>>>>> >> not increased due to long write packed commands.
>>>>>> >>
>>>>>> >> The trigger for enabling the write packing is managing to pack
>>>>>> several
>>>>>> >> write requests. The number of potential packed requests that
will
>>>>>> >> trigger
>>>>>> >> the packing can be configured via sysfs by writing the required
>>>>>> value
>>>>>> >> to:
>>>>>> >> /sys/block/<block_dev_name>/num_wr_reqs_to_start_packing. The
trigger for disabling the write packing is fetching a read
>>>>>> request.
>>>>>> >>
>>>>>> >> ---
>>>>>> >>  Documentation/mmc/mmc-dev-attrs.txt |   17 ++++++
>>>>>> >>  drivers/mmc/card/block.c            |  100
>>>>>> >> ++++++++++++++++++++++++++++++++++-
>>>>>> >>  drivers/mmc/card/queue.c            |    8 +++
>>>>>> >>  drivers/mmc/card/queue.h            |    3 +
>>>>>> >>  include/linux/mmc/host.h            |    1 +
>>>>>> >>  5 files changed, 128 insertions(+), 1 deletions(-)
>>>>>> >>
>>>>>> >> diff --git a/Documentation/mmc/mmc-dev-attrs.txt
>>>>>> >> b/Documentation/mmc/mmc-dev-attrs.txt
>>>>>> >> index 22ae844..08f7312 100644
>>>>>> >> --- a/Documentation/mmc/mmc-dev-attrs.txt
>>>>>> >> +++ b/Documentation/mmc/mmc-dev-attrs.txt
>>>>>> >> @@ -8,6 +8,23 @@ The following attributes are read/write.
>>>>>> >>
>>>>>> >>   force_ro                Enforce read-only access even if write
>>>>>> protect switch is
>>>>>> >> off.
>>>>>> >>
>>>>>> >> + num_wr_reqs_to_start_packing    This attribute is used to
>>>>>> determine
>>>>>> >> + the trigger for activating the write packing, in case the
write
>>>>>> >> + packing control feature is enabled.
>>>>>> >> +
>>>>>> >> + When the MMC manages to reach a point where
>>>>>> >> num_wr_reqs_to_start_packing
>>>>>> >> + write requests could be packed, it enables the write packing
>>>>>> feature.
>>>>>> >> + This allows us to start the write packing only when it is
>>>>>> beneficial
>>>>>> >> + and has minimum affect on the read latency.
>>>>>> >> +
>>>>>> >> + The number of potential packed requests that will trigger the
>>>>>> packing
>>>>>> >> + can be configured via sysfs by writing the required value to:
+ /sys/block/<block_dev_name>/num_wr_reqs_to_start_packing. +
>>>>>> >> + The default value of num_wr_reqs_to_start_packing was
>>>>>> determined
>>>>>> by
>>>>>> >> + running parallel lmdd write and lmdd read operations and
>>>>>> calculating
>>>>>> >> + the max number of packed writes requests.
>>>>>> >> +
>>>>>> >>  SD and MMC Device Attributes
>>>>>> >>  ============================
>>>>>> >>
>>>>>> >> diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c
index 2785fd4..ef192fb 100644
>>>>>> >> --- a/drivers/mmc/card/block.c
>>>>>> >> +++ b/drivers/mmc/card/block.c
>>>>>> >> @@ -114,6 +114,7 @@ struct mmc_blk_data {
>>>>>> >>   struct device_attribute force_ro;
>>>>>> >>   struct device_attribute power_ro_lock;
>>>>>> >>   int     area_type;
>>>>>> >> + struct device_attribute num_wr_reqs_to_start_packing;
>>>>>> >>  };
>>>>>> >>
>>>>>> >>  static DEFINE_MUTEX(open_lock);
>>>>>> >> @@ -281,6 +282,38 @@ out:
>>>>>> >>   return ret;
>>>>>> >>  }
>>>>>> >>
>>>>>> >> +static ssize_t
>>>>>> >> +num_wr_reqs_to_start_packing_show(struct device *dev,
>>>>>> >> +                           struct device_attribute *attr, char
>>>>>> *buf)
>>>>>> >> +{
>>>>>> >> + struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev)); + int
num_wr_reqs_to_start_packing;
>>>>>> >> + int ret;
>>>>>> >> +
>>>>>> >> + num_wr_reqs_to_start_packing =
>>>>>> md->queue.num_wr_reqs_to_start_packing;
>>>>>> >> +
>>>>>> >> + ret = snprintf(buf, PAGE_SIZE, "%d\n",
>>>>>> num_wr_reqs_to_start_packing);
>>>>>> >> +
>>>>>> >> + mmc_blk_put(md);
>>>>>> >> + return ret;
>>>>>> >> +}
>>>>>> >> +
>>>>>> >> +static ssize_t
>>>>>> >> +num_wr_reqs_to_start_packing_store(struct device *dev,
>>>>>> >> +                          struct device_attribute *attr, +    
                     const char *buf, size_t count) +{
>>>>>> >> + int value;
>>>>>> >> + struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev)); + +
sscanf(buf, "%d", &value);
>>>>>> >> + if (value >= 0)
>>>>>> >> +         md->queue.num_wr_reqs_to_start_packing = value; + +
mmc_blk_put(md);
>>>>>> >> + return count;
>>>>>> >> +}
>>>>>> >> +
>>>>>> >>  static int mmc_blk_open(struct block_device *bdev, fmode_t
mode)
>>>>>> >>  {
>>>>>> >>   struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk);
>>>>>> >> @@ -1313,6 +1346,48 @@ static void mmc_blk_rw_rq_prep(struct
mmc_queue_req *mqrq,
>>>>>> >>   mmc_queue_bounce_pre(mqrq);
>>>>>> >>  }
>>>>>> >>
>>>>>> >> +static void mmc_blk_write_packing_control(struct mmc_queue *mq,
+                                   struct request *req) +{
>>>>>> >> + struct mmc_host *host = mq->card->host;
>>>>>> >> + int data_dir;
>>>>>> >> +
>>>>>> >> + if (!(host->caps2 & MMC_CAP2_PACKED_WR))
>>>>>> >> +         return;
>>>>>> >> +
>>>>>> >> + /*
>>>>>> >> +  * In case the packing control is not supported by the host,
it
>>>>>> should
>>>>>> >> +  * not have an effect on the write packing. Therefore we have
>>>>>> to
>>>>>> >> enable
>>>>>> >> +  * the write packing
>>>>>> >> +  */
>>>>>> >> + if (!(host->caps2 & MMC_CAP2_PACKED_WR_CONTROL)) {
>>>>>> >> +         mq->wr_packing_enabled = true;
>>>>>> >> +         return;
>>>>>> >> + }
>>>>>> >> +
>>>>>> >> + if (!req || (req && (req->cmd_flags & REQ_FLUSH))) {
>>>>>> >> +         if (mq->num_of_potential_packed_wr_reqs >
>>>>>> >> +                         mq->num_wr_reqs_to_start_packing) +  
              mq->wr_packing_enabled = true;
>>>>>> >> +         return;
>>>>>> >> + }
>>>>>> >> +
>>>>>> >> + data_dir = rq_data_dir(req);
>>>>>> >> +
>>>>>> >> + if (data_dir == READ) {
>>>>>> >> +         mq->num_of_potential_packed_wr_reqs = 0;
>>>>>> >> +         mq->wr_packing_enabled = false;
>>>>>> >> +         return;
>>>>>> >> + } else if (data_dir == WRITE) {
>>>>>> >> +         mq->num_of_potential_packed_wr_reqs++;
>>>>>> >> + }
>>>>>> >> +
>>>>>> >> + if (mq->num_of_potential_packed_wr_reqs >
>>>>>> >> +                 mq->num_wr_reqs_to_start_packing)
>>>>>> >> +         mq->wr_packing_enabled = true;
>>>>>> > Write Packing is available only if continuing write requests are
>>>>>> over
>>>>>> > num_wr_reqs_to_start_packing?
>>>>>> > That means individual request(1...17) will be issued with
>>>>>> non-packing.
>>>>>> > Could you explain your policy more?
>>>>>> We try to identify the case where there is parallel read and write
operations. In our experiments we found out that the number of
write
>>>>>> requests between read requests in parallel read and write
operations
>>>>>> doesn't exceed 17 requests. Therefore, we can assume that fetching
more
>>>>>> than 17 write requests without hitting a read request can indicate
that
>>>>>> there is no read activity.
>>>>> We can apply this experiment regardless I/O scheduler?
>>>>> Which I/O scheduler was used with this experiment?
>>>> The experiment was performed with the CFQ scheduler. Since the
deadline
>>>> uses a batch of 16 requests it should also fit the deadline
scheduler.
>>>> In case another value is required, this value can be changed via
sysfs.
>>>>>> You are right that this affects the write throughput a bit but the
goal
>>>>>> of
>>>>>> this algorithm is to make sure the read throughput and latency are
not
>>>>>> decreased due to write. If this is not the desired result, this
algorithm
>>>>>> can be disabled.
>>>>>> >> +
>>>>>> >> +}
>>>>>> >> +
>>>>>> >>  static u8 mmc_blk_prep_packed_list(struct mmc_queue *mq, struct
>>>>>> request
>>>>>> >> *req)
>>>>>> >>  {
>>>>>> >>   struct request_queue *q = mq->queue;
>>>>>> >> @@ -1332,6 +1407,9 @@ static u8 mmc_blk_prep_packed_list(struct
mmc_queue *mq, struct request *req)
>>>>>> >>                   !card->ext_csd.packed_event_en)
>>>>>> >>           goto no_packed;
>>>>>> >>
>>>>>> >> + if (!mq->wr_packing_enabled)
>>>>>> >> +         goto no_packed;
>>>>>> > If wr_packing_enabled is set to true, several write requests can
>>>>>> be
>>>>>> > packed.
>>>>>> > We don't need to consider read request since packed write?
>>>>>> I'm not sure I understand the question. We check if there was a
read
>>>>>> request in the mmc_blk_write_packing_control, and in such a case
set
>>>>>> mq->wr_packing_enabled to false.
>>>>>> If I didn't answer the question, please explain it again.
>>>>> Packed write can be possible after exceeding 17 requests.
>>>>> Is it assured that read request doesn't follow immediately after
packed
>>>>> write?
>>>>> I wonder this case.
>>>> Currently in such a case we will send the packed command followed by
the
>>>> read request. The latency of this read request will be high due to
waiting
>>>> for the completion of the packed write. However, since we will
disable
>>>> the
>>>> write packing, the latency of the following read requests will be
low.
>>>> We are working on a solution where the read request will bypass the
write
>>>> requests in such a case. This change requires modification of the
scheduler in order to re-insert the write requests to the scheduler.
>>> Thats the precise reason for using foreground HPI (shameless plug :-))
I understand the intent of write packing control, but using the number of
requests
>>> as a metric is too coarse. Some writes could be for only one sector
(512B) and others
>>> could be in 512KB or more, giving a 1000x variance.
>>> Foreground HPI solves this problem by interrupting only on a wait
threshold.
>>> Another aspect is that if a packed write is in progress, and you have
a read request,
>>> you will most likely disable packing for the _next_ write, not the
ongoing one, right ?
>>> That's too late an intervention IMHO.
>> If a write request is in progress and a read is fetched we pln to use
HPI
>> to stop it and re-insert the remider of the write packed command back
to
>> the scheduler for a later dispatch.
> IIUC, there were 2 reasons mentioned by you for introducing write
packing control -
> 1) Read bandwidth drop
> 2) Use case "latency" or if I were to guess, "sluggish UI".
>
> So if (2) is solved by HPI, we can investigate the reason for (1) and
fix that, rather
> than adding another functionality (which belongs in the I/O scheduler
anyway) to MMC.
According to our measurements the stop transmission (CMD12) + HPI is a
heavy operation that takes several miliseconds. Intensive usage of HPI
will cause degradation of the performance.
When there is a packed write followed by a read request, we will stop the
packed write and issue the read request. Disabling the write packing due
to this read request (by the packing control function) will eliminate the
need for additional HPI operation to stop the next packed write request,
in case of a flow of read requests. When the read requests flow will end,
the write packing will be enabled again when there will be a flow of write
requests.

Regarding the degradation of the read throughput in case of mix read/write
operations:
Our test showed that there is a degradation of ~40% in the read throughput
in mix read/write operations even without packing. Enabling the write
packing increases this degradation to ~60%. Those numbers are applicable
to CFQ scheduler while the deadline scheduler resulted in even lower read
throughput in mix operations.
While investigating this degradation we found out that the main cause for
it is the way the application issues the read requests and the policy of
the scheduler.
Therefore, the write packing control is only one piece of the complete
solution that we are working on. The complete solution will be released in
a later phase and will include:
- Usage of stop transmission in order to stop a packed write in case of a
read request
- Issue a read request that is fetched at the end of a packed list
preparation before the packed write
- The ability to re-insert the write requests back to the scheduler in
case of the above cases (re-queuing them back to the dispatch queue will
not give a real solution in case of a flow of read requests).
- Modify the scheduler to ensure preferring of reads over writes in mix
read/write scenarios

I hope this makes things a bit clearer. Let me know if you have additional
questions.
>
>> Regarding the packing control trigger, we also tried using a trigger of
an
>> amount of write bytes between read. However, the number of potential
packed requests seemed like the reasonable trigger since we would like to
>> activate the packing only when it will be beneficial, regardless of the
write requests sizes.
> Why ? How do you know "when it will be beneficial" ? As I mentioned, the
number of
> blocks per request would vary over time, and also depends on the
filesystem. OTOH, even small
> writes could take a lot longer than usual (>500ms) due to garbage
collection etc.
>
Based on our experiments the write packing is mostly beneficial in long
sequential write scenarios. Therefore, we would still like the write
packing to be enabled in such cases (as long as there are no parallel
reads). The trigger of number of potential packed requests ensures that
the packing will be enabled in case of a flow of write.

Can you please explain why you refer to the number of blocks per request
when the write packing solution doesn't take into account the request
size?

Thanks,
Maya Erez

--
Sent by consultant of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum

^ permalink raw reply	[flat|nested] 44+ messages in thread

end of thread, other threads:[~2012-09-06  5:17 UTC | newest]

Thread overview: 44+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-01 18:55 [PATCH v2 0/1] mmc: block: Add write packing control Maya Erez
2012-06-01 18:55 ` [PATCH v2 1/1] " Maya Erez
2012-06-01 18:55   ` Maya Erez
2012-06-08  9:37   ` Seungwon Jeon
2012-06-09 14:46     ` merez
2012-06-11  9:10       ` Seungwon Jeon
2012-06-11 13:55         ` merez
2012-06-11 14:39           ` S, Venkatraman
2012-06-11 20:10             ` merez
2012-06-12  4:16               ` S, Venkatraman
2012-06-11 17:19       ` S, Venkatraman
2012-06-11 20:19         ` merez
2012-06-12  4:07           ` S, Venkatraman
2012-06-11 21:19   ` Muthu Kumar
2012-06-12  0:28     ` Muthu Kumar
2012-06-12 20:08       ` merez
2012-06-13 19:52       ` merez
2012-06-13 22:21         ` Muthu Kumar
2012-06-14  7:46           ` merez
2012-07-14 19:12           ` Chris Ball
2012-07-16  1:49             ` Muthu Kumar
2012-07-16  2:46               ` Chris Ball
2012-07-16 16:44                 ` Muthu Kumar
2012-07-17 22:50                   ` Chris Ball
2012-07-18  6:34                     ` merez
2012-07-18  7:26                       ` Chris Ball
2012-07-18  7:26                         ` Chris Ball
2012-07-19  0:33                     ` Muthu Kumar
2012-07-17  4:15                 ` S, Venkatraman
2012-06-12 19:05 merez
2012-07-23 11:43 merez
2012-07-23 11:43 ` merez
2012-07-23 12:22 ` S, Venkatraman
2012-07-24  8:44 merez
2012-07-24 20:23 ` merez
2012-07-24 20:23   ` merez
2012-07-24 20:52   ` merez
2012-07-24 20:52     ` merez
2012-07-26 15:28 ` S, Venkatraman
2012-07-26 18:54   ` merez
2012-07-27  9:07     ` S, Venkatraman
2012-08-27 18:28       ` merez
2012-08-28 17:40         ` S, Venkatraman
2012-09-06  5:17           ` merez

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.