Ming Lei
4ec3ca2770
blk-mq: add callback of .cleanup_rq
...
[ Upstream commit 226b4fc75c ]
SCSI maintains its own driver private data hooked off of each SCSI
request, and the pridate data won't be freed after scsi_queue_rq()
returns BLK_STS_RESOURCE or BLK_STS_DEV_RESOURCE. An upper layer driver
(e.g. dm-rq) may need to retry these SCSI requests, before SCSI has
fully dispatched them, due to a lower level SCSI driver's resource
limitation identified in scsi_queue_rq(). Currently SCSI's per-request
private data is leaked when the upper layer driver (dm-rq) frees and
then retries these requests in response to BLK_STS_RESOURCE or
BLK_STS_DEV_RESOURCE returns from scsi_queue_rq().
This usecase is so specialized that it doesn't warrant training an
existing blk-mq interface (e.g. blk_mq_free_request) to allow SCSI to
account for freeing its driver private data -- doing so would add an
extra branch for handling a special case that all other consumers of
SCSI (and blk-mq) won't ever need to worry about.
So the most pragmatic way forward is to delegate freeing SCSI driver
private data to the upper layer driver (dm-rq). Do so by adding
new .cleanup_rq callback and calling a new blk_mq_cleanup_rq() method
from dm-rq. A following commit will implement the .cleanup_rq() hook
in scsi_mq_ops.
Cc: Ewan D. Milne <emilne@redhat.com >
Cc: Bart Van Assche <bvanassche@acm.org >
Cc: Hannes Reinecke <hare@suse.com >
Cc: Christoph Hellwig <hch@lst.de >
Cc: Mike Snitzer <snitzer@redhat.com >
Cc: dm-devel@redhat.com
Cc: <stable@vger.kernel.org >
Fixes: 396eaf21ee ("blk-mq: improve DM's blk-mq IO merging via blk_insert_cloned_request feedback")
Signed-off-by: Ming Lei <ming.lei@redhat.com >
Signed-off-by: Jens Axboe <axboe@kernel.dk >
Signed-off-by: Sasha Levin <sashal@kernel.org >
2019-10-05 13:10:03 +02:00
..
2018-05-14 07:05:16 -07:00
2019-01-22 21:40:33 +01:00
2018-03-31 01:33:09 +08:00
2018-12-01 09:37:29 +01:00
2019-09-10 10:33:53 +01:00
2018-07-17 15:08:07 +02:00
2018-08-18 15:55:59 -07:00
2018-03-21 13:58:08 +09:00
2018-09-30 08:49:55 -07:00
2018-08-05 17:11:49 -07:00
2019-09-16 08:22:22 +02:00
2019-05-31 06:46:24 -07:00
2018-06-11 10:21:06 -07:00
2019-03-13 14:02:35 -07:00
2018-05-16 07:24:30 +02:00
2018-08-09 16:11:21 -04:00
2018-08-03 19:52:14 +05:30
2019-05-22 07:37:41 +02:00
2018-07-12 17:37:13 -07:00
2019-08-09 17:52:33 +02:00
2019-10-05 13:09:57 +02:00
2018-11-27 16:13:05 +01:00
2018-01-09 16:51:44 +01:00
2019-04-17 08:38:46 +02:00
2018-04-24 10:29:16 +02:00
2018-10-12 15:25:17 +01:00
2018-05-17 16:11:39 -04:00
2018-07-09 13:09:21 +02:00
2019-05-08 07:21:54 +02:00
2018-04-25 23:11:47 +02:00
2019-02-27 10:08:52 +01:00
2018-04-07 12:08:19 -07:00
2018-09-03 16:10:40 +01:00
2018-06-03 17:37:15 -07:00
2019-08-04 09:30:56 +02:00
2018-08-23 13:44:43 -07:00
2018-05-11 21:48:07 +05:30
2018-09-28 18:04:06 -07:00
2018-08-09 18:47:47 +03:00
2019-07-03 13:14:46 +02:00
2019-01-26 09:32:34 +01:00
2018-02-14 15:15:41 +01:00
2019-08-06 19:06:50 +02:00
2018-06-02 19:29:27 -05:00
2018-08-22 08:08:27 -07:00
2018-05-26 09:16:44 +02:00
2018-01-10 12:53:34 +01:00
2018-01-13 10:44:56 +00:00
2018-08-30 14:18:03 +01:00
2018-07-30 08:49:02 -04:00
2018-06-15 18:10:01 -03:00
2018-06-15 18:10:01 -03:00
2018-01-10 23:25:08 -05:00
2019-04-20 09:16:05 +02:00
2018-06-17 08:27:01 +09:00
2018-07-25 11:53:59 +02:00
2018-06-19 10:43:55 -04:00
2019-03-05 17:58:50 +01:00
2018-08-22 10:52:46 -07:00
2018-07-04 10:32:48 +01:00
2018-05-23 13:23:39 -04:00
2019-05-31 06:46:00 -07:00
2018-08-17 16:20:27 -07:00
2018-08-01 15:49:40 -07:00
2019-06-09 09:17:11 +02:00
2019-04-17 08:38:51 +02:00
2018-06-21 12:52:11 +02:00
2018-07-18 08:44:22 -06:00
2018-08-31 14:48:56 -06:00
2018-03-27 21:25:36 -06:00
2019-10-05 13:10:03 +02:00
2019-08-04 09:30:57 +02:00
2018-08-02 12:17:27 -06:00
2018-06-26 11:28:38 +02:00
2018-04-30 10:55:56 +02:00
2018-08-11 01:58:46 +02:00
2019-01-31 08:14:41 +01:00
2019-07-03 13:14:48 +02:00
2019-05-25 18:23:48 +02:00
2018-07-21 16:21:25 -07:00
2018-08-07 15:48:38 -07:00
2018-05-29 13:00:25 -06:00
2018-05-29 13:00:25 -06:00
2018-05-09 17:25:13 +02:00
2018-06-01 18:37:33 -07:00
2019-10-05 13:09:54 +02:00
2018-02-06 18:32:46 -08:00
2018-07-18 01:18:05 +09:00
2018-06-05 18:06:24 +01:00
2019-08-16 10:12:38 +02:00
2018-08-02 15:22:13 -06:00
2018-04-12 19:02:45 +02:00
2019-08-09 17:52:34 +02:00
2019-08-09 17:52:34 +02:00
2018-06-15 18:10:01 -03:00
2019-04-05 22:33:03 +02:00
2018-06-19 10:06:29 -07:00
2018-07-19 17:08:52 -07:00
2018-08-17 16:20:32 -07:00
2019-08-06 19:06:52 +02:00
2019-08-06 19:06:52 +02:00
2018-06-24 14:39:47 +02:00
2018-11-13 11:08:25 -08:00
2019-06-09 09:17:23 +02:00
2019-02-27 10:08:53 +01:00
2019-06-09 09:17:23 +02:00
2019-02-27 10:08:53 +01:00
2019-06-04 08:02:34 +02:00
2018-07-21 09:21:10 +02:00
2018-07-31 13:06:57 +02:00
2018-04-11 10:28:38 -07:00
2018-04-19 12:29:41 -03:00
2018-07-15 13:52:58 +02:00
2018-05-14 08:57:47 +02:00
2019-06-11 12:20:52 +02:00
2019-03-10 07:17:15 +01:00
2019-07-26 09:14:12 +02:00
2018-05-30 23:13:00 +02:00
2018-08-13 09:05:05 -07:00
2018-02-06 18:32:47 -08:00
2018-08-22 10:52:46 -07:00
2018-05-14 13:46:04 -04:00
2018-03-26 15:09:38 +02:00
2018-07-27 19:04:33 +08:00
2018-08-22 10:52:48 -07:00
2019-07-31 07:27:11 +02:00
2018-07-18 07:27:22 -04:00
2018-07-23 10:38:06 -07:00
2019-05-25 18:23:26 +02:00
2018-07-26 19:38:03 -07:00
2019-09-16 08:22:12 +02:00
2019-08-09 17:52:28 +02:00
2018-04-03 15:04:23 -04:00
2018-07-31 17:33:21 -04:00
2018-06-20 15:59:34 +02:00
2018-08-17 16:20:32 -07:00
2018-05-08 13:02:42 +02:00
2018-05-19 08:46:12 +02:00
2018-07-31 18:04:55 -05:00
2018-07-03 13:12:57 +02:00
2018-05-13 15:59:00 +02:00
2018-07-25 13:32:58 +02:00
2018-06-24 09:27:27 -07:00
2018-07-30 10:50:22 +05:30
2018-03-16 19:58:27 +01:00
2018-07-06 14:43:47 +02:00
2018-04-05 14:21:13 -07:00
2019-06-04 08:02:34 +02:00
2018-03-14 12:32:06 +01:00
2019-05-16 19:41:22 +02:00
2019-05-16 19:41:17 +02:00
2018-01-12 17:33:38 -08:00
2018-06-26 11:33:04 +09:00
2018-04-27 11:53:02 -04:00
2018-07-26 19:38:03 -07:00
2018-08-25 13:40:38 -07:00
2018-03-08 10:34:44 +09:00
2019-04-05 22:32:59 +02:00
2018-04-05 21:36:26 -07:00
2018-07-24 19:11:26 +02:00
2018-01-30 21:54:32 +01:00
2018-07-12 10:04:29 -04:00
2019-07-10 09:53:47 +02:00
2018-05-14 16:44:41 +02:00
2019-07-28 08:29:29 +02:00
2018-12-17 09:24:38 +01:00
2018-04-06 14:05:14 +01:00
2018-06-11 10:16:13 -07:00
2018-06-11 10:16:13 -07:00
2018-01-11 23:30:08 -05:00
2018-06-12 14:05:39 +10:00
2018-07-27 09:57:23 +10:00
2018-03-21 10:22:28 +01:00
2018-12-01 09:37:31 +01:00
2018-07-18 15:44:44 +02:00
2018-12-05 19:32:10 +01:00
2018-04-02 20:15:02 +02:00
2018-07-23 12:44:52 +02:00
2019-05-31 06:46:18 -07:00
2018-02-06 18:32:46 -08:00
2019-02-12 19:47:14 +01:00
2018-08-23 18:48:43 -07:00
2018-06-28 20:32:51 +09:00
2018-08-02 10:24:51 +02:00
2018-07-18 17:27:10 +00:00
2019-09-10 10:33:44 +01:00
2019-03-23 20:10:08 +01:00
2018-11-13 11:08:54 -08:00
2019-02-12 19:47:24 +01:00
2018-12-05 19:32:13 +01:00
2019-05-31 06:46:28 -07:00
2018-03-18 07:38:48 -07:00
2019-01-13 09:51:04 +01:00
2019-07-31 07:26:59 +02:00
2018-04-26 14:53:32 +02:00
2019-05-22 07:37:40 +02:00
2019-05-22 07:37:40 +02:00
2018-03-13 15:24:02 +01:00
2018-07-18 10:01:46 +09:00
2018-06-26 13:46:28 -07:00
2019-01-31 08:14:36 +01:00
2018-03-08 12:30:37 +01:00
2019-05-08 07:21:43 +02:00
2018-11-21 09:19:20 +01:00
2018-06-04 10:58:12 -07:00
2018-07-02 13:00:24 +02:00
2018-08-26 11:48:42 -07:00
2018-06-18 22:39:39 +02:00
2019-03-05 17:58:51 +01:00
2018-07-07 20:04:35 +09:00
2018-01-09 07:40:48 +02:00
2018-04-25 08:26:19 -07:00
2019-08-09 17:52:34 +02:00
2018-01-09 10:56:10 -05:00
2018-07-11 23:10:19 -07:00
2018-04-17 10:50:28 -04:00
2018-06-03 11:00:52 -04:00
2018-07-16 11:20:06 -07:00
2018-08-15 10:25:26 -07:00
2018-03-26 08:53:43 -06:00
2018-07-29 12:37:06 -07:00
2018-07-21 10:43:12 -05:00
2018-08-22 10:52:47 -07:00
2018-06-27 19:21:25 +02:00
2018-07-18 07:27:22 -04:00
2018-08-08 12:02:27 +02:00
2018-05-14 11:25:28 +02:00
2018-07-11 22:26:05 -07:00
2018-05-09 06:55:44 +02:00
2018-08-08 11:06:20 +02:00
2018-02-06 18:32:47 -08:00
2018-06-04 14:20:39 -04:00
2019-08-04 09:30:54 +02:00
2018-08-22 10:52:52 -07:00
2018-06-22 13:43:27 +09:00
2018-05-09 12:21:46 -05:00
2018-02-27 07:42:51 -06:00
2018-04-18 10:23:06 -05:00
2018-05-14 11:25:27 +02:00
2018-04-26 22:26:39 +02:00
2019-03-05 17:58:45 +01:00
2019-04-05 22:33:09 +02:00
2018-05-13 15:59:00 +02:00
2018-08-10 15:11:25 -04:00
2018-02-01 08:15:25 -05:00
2019-07-28 08:29:29 +02:00
2018-08-16 19:36:55 +02:00
2018-07-26 17:04:37 -07:00
2019-06-04 08:02:34 +02:00
2019-06-04 08:02:34 +02:00
2018-02-06 18:32:45 -08:00
2018-08-17 16:20:30 -07:00
2018-03-31 12:22:38 +09:00
2019-04-20 09:15:59 +02:00
2018-06-15 07:55:24 +09:00
2019-07-21 09:03:11 +02:00
2018-07-20 23:44:35 -07:00
2018-04-13 17:10:28 -07:00
2019-03-23 20:09:48 +01:00
2018-04-11 10:28:38 -07:00
2018-08-18 11:44:53 -07:00
2019-04-27 09:36:37 +02:00
2018-04-12 19:02:45 +02:00
2018-06-07 17:34:36 -07:00
2018-07-03 09:17:30 +02:00
2018-07-12 21:35:28 +02:00
2019-08-16 10:12:53 +02:00
2018-03-06 18:40:44 +01:00
2018-07-05 23:21:11 +02:00
2018-08-24 13:20:33 -07:00
2018-03-05 20:58:17 -06:00
2018-01-11 14:39:07 -06:00
2018-04-07 07:53:23 -07:00
2018-02-02 16:50:28 -08:00
2018-06-01 07:43:53 -06:00
2018-06-13 00:03:17 +09:00
2018-03-26 15:56:42 +02:00
2019-06-09 09:17:19 +02:00
2018-07-04 14:06:19 +09:00
2018-04-17 13:42:48 +02:00
2018-08-10 15:11:25 -04:00
2018-04-12 09:41:19 -07:00
2018-04-20 15:57:32 -04:00
2019-09-06 10:22:19 +02:00
2018-08-15 10:25:26 -07:00
2018-07-04 11:34:09 +09:00
2018-12-29 13:37:59 +01:00
2018-04-19 15:59:10 -04:00
2018-04-19 15:59:11 -04:00
2018-06-05 08:50:16 -04:00
2018-08-02 12:17:28 -06:00
2019-04-17 08:38:51 +02:00
2018-06-07 17:34:35 -07:00
2018-08-22 10:52:45 -07:00
2018-06-21 16:14:45 +02:00
2018-05-14 13:14:23 -06:00
2019-01-13 09:51:04 +01:00
2018-04-21 16:32:48 -04:00
2018-04-11 10:28:32 -07:00
2018-02-13 16:25:06 +01:00
2018-09-13 15:18:04 -10:00
2018-09-13 15:18:04 -10:00
2019-05-04 09:20:11 +02:00
2018-03-18 07:38:47 -07:00
2018-04-05 21:36:27 -07:00
2018-08-22 10:52:44 -07:00
2018-10-09 08:30:51 +02:00
2018-09-05 14:36:53 +02:00
2019-06-09 09:17:23 +02:00
2019-05-31 06:46:05 -07:00
2018-06-07 17:34:39 -07:00
2018-03-26 13:14:43 -04:00
2018-07-13 14:21:16 -07:00
2018-03-26 13:14:43 -04:00
2018-03-24 11:25:35 -05:00
2019-01-09 17:38:42 +01:00
2018-05-15 08:11:15 +02:00
2018-06-15 15:27:09 +01:00
2018-03-15 07:17:21 -07:00
2018-12-05 19:31:59 +01:00
2018-07-31 12:40:22 -07:00
2019-02-23 09:07:25 +01:00
2019-04-27 09:36:30 +02:00
2018-08-03 21:15:09 +02:00
2019-06-04 08:02:34 +02:00
2018-07-16 17:51:48 +02:00
2018-07-16 17:51:48 +02:00
2019-06-04 08:02:34 +02:00
2018-07-24 10:04:49 -07:00
2018-09-23 21:55:24 -07:00
2018-08-23 16:03:58 -07:00
2018-08-09 12:56:39 -04:00
2018-08-13 17:04:23 -04:00
2019-09-06 10:22:22 +02:00
2019-09-06 10:22:23 +02:00
2018-11-21 09:19:20 +01:00
2018-08-17 16:20:29 -07:00
2018-08-22 10:52:45 -07:00
2018-05-05 00:51:44 +02:00
2018-05-30 10:11:34 +02:00
2018-01-28 22:17:24 -05:00
2018-05-14 16:27:08 +02:00
2018-11-13 11:08:24 -08:00
2018-05-14 16:20:48 +02:00
2018-05-02 08:31:07 -07:00
2018-05-03 16:25:08 +02:00
2018-02-01 10:57:45 -08:00
2018-07-10 17:22:35 +02:00
2018-03-30 10:40:18 -04:00
2018-05-30 11:35:13 -05:00
2019-06-09 09:17:24 +02:00
2018-01-12 16:41:15 +01:00
2018-04-20 10:47:33 -04:00
2018-08-03 18:57:15 +05:30
2018-08-23 18:48:44 -07:00
2018-07-08 11:13:25 +09:00
2019-05-31 06:46:30 -07:00
2018-06-07 17:34:36 -07:00
2018-08-17 16:20:28 -07:00
2018-04-05 21:36:25 -07:00
2018-08-23 18:48:43 -07:00
2018-04-11 10:28:32 -07:00
2018-04-11 10:28:39 -07:00
2018-01-31 17:18:37 -08:00
2018-07-23 17:04:13 -05:00
2018-09-03 19:05:13 -07:00
2018-07-31 18:04:55 -05:00
2018-05-30 11:35:23 -05:00
2018-01-28 15:48:29 -06:00
2018-07-19 11:46:45 +01:00
2018-07-19 11:34:23 +01:00
2019-05-25 18:23:38 +02:00
2018-03-19 10:09:44 -07:00
2018-05-16 11:45:16 +02:00
2018-08-22 10:52:45 -07:00
2019-07-28 08:29:28 +02:00
2018-12-01 09:37:34 +01:00
2018-07-25 13:41:22 -07:00
2018-08-09 11:08:19 -07:00
2018-07-21 10:43:12 -05:00
2019-05-04 09:20:11 +02:00
2018-05-09 11:51:46 +10:00
2018-05-30 15:33:32 -06:00
2018-07-07 17:52:26 +02:00
2018-07-09 12:11:02 +02:00
2018-05-09 10:15:21 +05:30
2018-06-12 10:24:13 +02:00
2018-01-09 13:09:17 +01:00
2018-06-28 10:40:47 -07:00
2018-07-02 11:33:25 +02:00
2018-07-06 16:03:21 +02:00
2018-07-31 11:32:27 -04:00
2018-08-14 13:36:15 +02:00
2018-08-22 10:52:46 -07:00
2019-03-23 20:10:04 +01:00
2018-02-06 22:54:11 +00:00
2018-05-31 00:13:56 +08:00
2018-03-07 12:47:06 -08:00
2019-06-11 12:20:52 +02:00
2018-07-20 01:11:45 +02:00
2018-02-14 14:33:36 -05:00
2019-01-09 17:38:33 +01:00
2018-12-05 19:32:03 +01:00
2018-04-30 10:50:44 +01:00
2019-06-15 11:54:10 +02:00
2018-07-02 11:01:21 +01:00
2018-07-21 13:34:09 -05:00
2018-04-25 00:12:05 -05:00
2018-08-22 18:17:29 +02:00
2018-04-02 20:15:46 +02:00
2018-04-11 10:28:39 -07:00
2018-02-12 11:43:25 -05:00
2018-08-02 17:33:06 -04:00
2018-05-11 17:28:45 -07:00
2018-05-11 17:28:45 -07:00
2018-06-15 18:10:01 -03:00
2018-07-12 15:39:25 -07:00
2019-07-26 09:14:07 +02:00
2018-07-12 15:39:15 -07:00
2018-05-22 16:12:26 -07:00
2018-07-07 01:45:31 +02:00
2018-07-17 09:27:43 +02:00
2018-08-09 11:15:06 +01:00
2019-04-05 22:32:56 +02:00
2018-06-26 14:09:12 -07:00
2018-03-27 10:39:47 +02:00
2018-04-19 13:32:03 +02:00
2018-06-15 13:37:07 +02:00
2018-06-22 13:43:27 +09:00
2018-06-22 13:43:28 +09:00
2019-04-05 22:32:56 +02:00
2018-06-05 10:33:35 -07:00
2018-06-03 17:37:11 -07:00
2018-04-24 19:50:10 -07:00
2018-08-02 17:16:05 +02:00
2018-07-25 11:22:19 +02:00
2018-03-29 13:47:53 -04:00
2018-03-01 08:33:05 -07:00
2018-05-16 11:45:16 +02:00
2018-07-10 22:42:47 -04:00
2018-06-29 08:48:06 -06:00
2018-07-20 00:02:43 +02:00
2019-08-04 09:30:56 +02:00
2018-02-11 14:34:03 -08:00
2018-05-10 10:49:40 +01:00
2018-07-04 11:36:54 +09:00
2018-05-05 00:51:44 +02:00
2018-08-15 10:25:26 -07:00
2018-07-21 09:18:27 +02:00
2018-03-22 21:30:56 -05:00
2018-02-13 15:00:06 +01:00
2018-05-16 07:24:30 +02:00
2018-04-11 10:28:36 -07:00
2018-02-01 09:46:00 -08:00
2018-07-12 17:07:26 +02:00
2018-07-12 17:07:26 +02:00
2018-02-12 19:55:21 +01:00
2018-10-02 14:38:02 -07:00
2018-08-20 09:22:45 -07:00
2018-07-18 10:02:02 +09:00
2018-01-09 10:37:00 -05:00
2018-04-13 17:10:28 -07:00
2018-03-28 13:29:57 -05:00
2018-06-07 17:34:35 -07:00
2018-08-22 10:52:43 -07:00
2018-11-13 11:08:45 -08:00
2019-06-04 08:02:30 +02:00
2018-03-08 13:49:26 +00:00
2018-05-17 12:46:54 -04:00
2019-05-25 18:23:20 +02:00
2018-06-07 17:34:34 -07:00
2019-04-03 06:26:28 +02:00
2018-07-07 17:25:23 +02:00
2018-06-28 11:16:44 -07:00
2019-05-31 06:46:16 -07:00
2018-04-24 11:15:32 -04:00
2018-05-03 15:55:23 -07:00
2018-05-05 11:41:58 -04:00
2018-01-11 17:05:23 +01:00
2018-08-16 12:14:42 -07:00
2018-07-26 10:50:16 -04:00
2018-05-30 10:11:34 +02:00
2018-05-30 10:11:34 +02:00
2018-06-14 12:21:18 +09:00
2018-06-05 16:57:31 -07:00
2018-01-15 12:07:46 -08:00
2018-03-28 18:47:17 +03:00
2019-03-13 14:02:35 -07:00
2018-05-15 21:47:09 +03:00
2019-04-17 08:38:45 +02:00
2018-04-28 15:01:14 -07:00
2018-10-12 12:35:02 +02:00
2018-06-20 11:35:56 +02:00
2019-04-20 09:16:05 +02:00
2018-06-20 19:10:01 +02:00
2018-08-23 18:48:44 -07:00
2018-03-20 10:01:59 +01:00
2018-06-29 20:16:44 -05:00
2018-02-05 21:34:50 +01:00
2018-08-14 16:39:13 -07:00
2018-02-06 18:32:47 -08:00
2018-08-18 11:44:53 -07:00
2018-12-29 13:37:55 +01:00
2018-11-13 11:08:51 -08:00
2019-06-17 19:51:56 +02:00
2018-01-11 18:05:06 -08:00
2018-04-16 18:53:13 -04:00
2018-05-30 14:46:17 +08:00
2018-05-25 12:27:53 +01:00
2018-03-09 12:54:11 +03:00
2018-04-18 10:07:13 -07:00
2018-04-09 11:54:56 +02:00
2018-08-22 15:11:35 +02:00
2019-05-31 06:46:29 -07:00
2018-06-24 14:39:46 +02:00
2018-04-26 14:53:32 +02:00
2018-05-19 13:57:32 +02:00
2018-09-03 13:26:44 +02:00
2018-04-17 17:18:04 +02:00
2018-04-29 08:45:53 -07:00
2018-07-12 15:42:04 -07:00
2018-07-28 17:03:11 +03:00
2018-06-06 18:39:49 -07:00
2018-07-09 09:07:54 -06:00
2018-10-17 15:35:29 -04:00
2018-12-08 12:59:07 +01:00
2018-05-16 07:24:30 +02:00
2018-06-28 21:07:55 +09:00
2018-12-13 09:16:15 +01:00
2018-06-07 17:34:38 -07:00
2018-05-07 23:25:24 -04:00
2018-01-15 12:07:48 -08:00
2018-06-26 11:33:04 +09:00
2018-07-07 16:57:35 +02:00
2018-09-12 14:58:47 -07:00
2018-05-23 13:23:39 -04:00
2018-08-13 20:08:33 -04:00
2019-05-08 07:21:44 +02:00
2018-08-23 18:48:44 -07:00
2018-04-11 10:28:35 -07:00
2018-02-06 18:32:44 -08:00
2018-04-23 13:41:55 +02:00
2018-08-16 09:57:20 -07:00
2018-01-24 09:00:05 -08:00
2018-09-13 17:58:30 +02:00
2018-08-11 12:02:18 -07:00
2019-02-27 10:09:01 +01:00
2019-04-17 08:38:52 +02:00
2018-04-25 20:33:19 +03:00
2018-09-13 15:18:04 -10:00
2018-09-13 15:18:04 -10:00
2018-06-05 12:16:51 -07:00
2018-04-11 10:28:30 -07:00
2019-07-14 08:11:21 +02:00
2018-07-11 18:09:08 +02:00
2018-05-03 09:25:47 -06:00
2018-11-13 11:08:42 -08:00
2018-07-04 20:19:06 -07:00
2018-05-18 08:47:13 -07:00
2018-07-03 09:44:36 +02:00
2018-04-11 10:28:39 -07:00
2018-05-14 09:51:34 -04:00
2018-01-31 17:18:39 -08:00
2018-04-05 21:36:26 -07:00