Lukas Wunner
0870525cf9
spi: Introduce device-managed SPI controller allocation
...
[ Upstream commit 5e844cc37a ]
SPI driver probing currently comprises two steps, whereas removal
comprises only one step:
spi_alloc_master()
spi_register_master()
spi_unregister_master()
That's because spi_unregister_master() calls device_unregister()
instead of device_del(), thereby releasing the reference on the
spi_master which was obtained by spi_alloc_master().
An SPI driver's private data is contained in the same memory allocation
as the spi_master struct. Thus, once spi_unregister_master() has been
called, the private data is inaccessible. But some drivers need to
access it after spi_unregister_master() to perform further teardown
steps.
Introduce devm_spi_alloc_master(), which releases a reference on the
spi_master struct only after the driver has unbound, thereby keeping the
memory allocation accessible. Change spi_unregister_master() to not
release a reference if the spi_master was allocated by the new devm
function.
The present commit is small enough to be backportable to stable.
It allows fixing drivers which use the private data in their ->remove()
hook after it's been freed. It also allows fixing drivers which neglect
to release a reference on the spi_master in the probe error path.
Long-term, most SPI drivers shall be moved over to the devm function
introduced herein. The few that can't shall be changed in a treewide
commit to explicitly release the last reference on the master.
That commit shall amend spi_unregister_master() to no longer release
a reference, thereby completing the migration.
As a result, the behaviour will be less surprising and more consistent
with subsystems such as IIO, which also includes the private data in the
allocation of the generic iio_dev struct, but calls device_del() in
iio_device_unregister().
Signed-off-by: Lukas Wunner <lukas@wunner.de >
Link: https://lore.kernel.org/r/272bae2ef08abd21388c98e23729886663d19192.1605121038.git.lukas@wunner.de
Signed-off-by: Mark Brown <broonie@kernel.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2020-12-11 13:38:00 +01:00
..
2016-10-12 11:01:37 -07:00
2016-10-05 10:11:24 -07:00
2020-11-18 18:26:24 +01:00
2019-09-10 10:31:03 +01:00
2016-05-09 16:18:37 +02:00
2016-02-04 18:25:55 +01:00
2016-09-15 21:15:40 +05:30
2016-09-10 16:48:46 +05:30
2016-09-01 14:23:39 -07:00
2015-10-07 18:08:15 +01:00
2018-08-24 13:12:40 +02:00
2019-12-05 15:34:25 +01:00
2016-06-28 00:38:53 +02:00
2016-04-14 14:03:25 +02:00
2019-05-31 06:48:27 -07:00
2016-07-15 14:50:53 -07:00
2016-10-17 16:26:29 +01:00
2017-03-15 10:02:46 +08:00
2016-07-28 09:34:47 +05:30
2019-11-28 18:28:38 +01:00
2018-04-13 19:48:19 +02:00
2020-06-03 08:16:31 +02:00
2018-08-03 07:55:22 +02:00
2020-11-10 10:23:51 +01:00
2020-06-03 08:16:46 +02:00
2016-03-02 20:05:23 +01:00
2018-10-13 09:18:58 +02:00
2016-03-02 20:05:23 +01:00
2016-03-02 20:05:23 +01:00
2016-10-03 19:43:08 -07:00
2016-11-05 13:45:02 +05:30
2016-06-23 11:18:56 +02:00
2020-01-29 10:24:34 +01:00
2017-01-19 20:18:07 +01:00
2020-06-30 15:38:42 -04:00
2016-10-07 09:45:43 -07:00
2020-01-23 08:19:43 +01:00
2015-05-20 15:05:39 -07:00
2016-07-08 16:23:11 +02:00
2020-07-09 09:35:55 +02:00
2016-08-23 15:46:33 -05:00
2020-12-11 13:38:00 +01:00
2015-12-16 16:36:25 +02:00
2020-06-20 10:24:21 +02:00
2016-09-14 20:37:50 +02:00
2016-03-17 15:09:34 -07:00
2020-12-02 08:31:29 +01:00
2016-09-12 20:32:40 +01:00
2019-12-21 10:41:08 +01:00
2016-09-20 14:35:59 -05:00
2020-01-12 11:24:13 +01:00
2016-06-20 12:47:09 -07:00
2016-09-05 12:41:46 +02:00
2016-04-09 03:12:58 +02:00
2018-10-03 17:01:54 -07:00
2015-08-05 13:38:07 +01:00
2016-08-25 11:26:48 -04:00
2019-12-21 10:41:44 +01:00
2016-07-08 17:01:14 +03:00
2016-09-27 12:54:03 +02:00
2015-10-06 12:33:14 +02:00
2016-01-14 13:40:30 +01:00
2016-07-07 09:16:20 +02:00
2017-10-08 10:26:06 +02:00
2016-10-11 15:06:31 -07:00
2016-10-11 15:06:31 -07:00
2015-08-20 14:10:23 -07:00
2019-05-21 18:49:01 +02:00
2018-04-24 09:34:18 +02:00
2016-05-04 23:41:14 +02:00
2016-01-09 08:39:04 -08:00
2016-07-26 16:19:19 -07:00
2015-06-21 21:55:33 +02:00
2016-05-13 14:01:43 +02:00
2015-12-13 15:55:55 +01:00
2016-01-24 03:47:37 +01:00
2016-01-24 03:49:03 +01:00
2016-07-25 16:51:49 +10:00
2019-05-31 06:48:11 -07:00
2016-09-09 12:09:24 +03:00
2020-01-29 10:24:41 +01:00
2020-06-30 15:38:29 -04:00
2019-04-17 08:36:46 +02:00
2019-05-14 19:19:34 +02:00
2016-09-14 09:18:06 -06:00
2016-10-14 12:18:50 -07:00
2016-09-15 08:42:03 -06:00
2016-10-09 17:32:20 -07:00
2020-09-12 11:47:36 +02:00
2015-09-29 13:37:04 -07:00
2020-05-20 08:15:31 +02:00
2016-09-15 18:29:06 -04:00
2016-10-07 18:46:28 -07:00
2015-05-19 08:39:11 +02:00
2018-12-08 13:05:10 +01:00
2018-01-31 12:55:57 +01:00
2016-03-25 11:37:57 -04:00
2017-12-09 22:01:54 +01:00
2019-10-05 12:30:26 +02:00
2020-09-12 11:47:36 +02:00
2016-02-22 08:51:38 +01:00
2018-01-31 12:55:51 +01:00
2017-01-06 10:40:13 +01:00
2017-09-27 14:39:20 +02:00
2020-05-20 08:15:32 +02:00
2020-01-04 13:39:17 +01:00
2016-08-22 14:00:51 -03:00
2015-12-03 10:24:08 -05:00
2020-07-22 09:10:49 +02:00
2020-07-22 09:10:48 +02:00
2016-01-27 09:10:29 -05:00
2016-10-17 15:27:27 -07:00
2016-07-30 11:20:02 -07:00
2016-04-19 16:54:26 -07:00
2016-01-27 12:38:03 +01:00
2019-02-27 10:07:01 +01:00
2015-10-23 17:55:10 +09:00
2019-08-06 18:29:38 +02:00
2019-08-06 18:29:38 +02:00
2016-10-07 18:46:29 -07:00
2018-12-21 14:11:29 +01:00
2019-01-31 08:12:35 +01:00
2019-07-10 09:55:44 +02:00
2019-01-31 08:12:35 +01:00
2020-05-20 08:15:41 +02:00
2015-12-07 00:02:05 +00:00
2016-03-25 19:10:03 +01:00
2016-06-25 09:04:48 -07:00
2016-11-11 08:12:37 -08:00
2015-11-24 09:56:43 +01:00
2016-08-02 16:11:27 -04:00
2017-07-05 14:40:26 +02:00
2016-02-20 14:11:01 -08:00
2016-05-03 14:59:30 -07:00
2016-08-31 13:05:43 +02:00
2015-10-15 00:21:07 +02:00
2015-07-15 13:30:38 +01:00
2015-05-04 21:27:52 -07:00
2019-11-16 10:29:54 +01:00
2019-11-25 09:52:44 +01:00
2019-03-13 14:04:51 -07:00
2019-08-04 09:33:22 +02:00
2016-07-21 23:29:38 +02:00
2018-05-30 07:50:26 +02:00
2017-10-12 11:51:25 +02:00
2016-05-13 14:01:59 +02:00
2015-05-26 15:26:43 +02:00
2015-05-30 22:42:24 -07:00
2019-08-04 09:33:43 +02:00
2018-09-26 08:36:37 +02:00
2016-10-11 15:06:30 -07:00
2016-03-01 16:55:48 -08:00
2018-02-28 10:18:33 +01:00
2015-11-16 09:27:32 +05:30
2018-05-30 07:50:16 +02:00
2017-03-22 12:43:33 +01:00
2020-10-01 20:40:04 +02:00
2016-07-26 16:19:19 -07:00
2015-12-30 13:01:03 -05:00
2016-04-15 11:20:32 -07:00
2020-04-24 07:58:53 +02:00
2016-09-06 13:08:40 +09:00
2017-03-12 06:41:44 +01:00
2020-09-12 11:47:36 +02:00
2020-01-29 10:24:28 +01:00
2016-06-05 10:36:01 -07:00
2016-06-07 13:41:38 -06:00
2015-10-15 13:22:35 +01:00
2016-06-20 22:26:37 +05:30
2015-10-23 17:55:10 +09:00
2016-09-26 22:16:41 +05:30
2018-08-03 07:55:22 +02:00
2019-12-21 10:41:09 +01:00
2020-01-12 11:24:13 +01:00
2015-09-08 15:35:28 -07:00
2015-06-12 11:33:52 +02:00
2016-01-15 22:08:45 +01:00
2015-11-18 16:27:46 -05:00
2016-02-09 13:05:23 +01:00
2016-06-13 21:43:05 -06:00
2016-06-13 21:43:05 -06:00
2016-06-13 21:43:08 -06:00
2016-08-04 08:50:07 -04:00
2019-11-25 09:52:59 +01:00
2016-02-11 19:23:28 -08:00
2020-09-03 11:21:19 +02:00
2018-11-10 07:42:48 -08:00
2020-06-30 15:38:29 -04:00
2015-12-11 11:05:57 -08:00
2016-05-27 16:03:22 -07:00
2016-05-17 15:48:12 -04:00
2016-07-01 16:37:06 +02:00
2016-04-18 14:45:08 -04:00
2015-12-15 08:53:36 -05:00
2016-10-14 14:26:58 -07:00
2016-10-06 09:07:44 -04:00
2016-08-04 10:16:56 +09:30
2016-09-16 08:53:41 +02:00
2017-05-14 14:00:22 +02:00
2016-10-03 09:11:14 -07:00
2016-03-15 16:55:16 -07:00
2019-11-25 09:53:14 +01:00
2017-07-12 15:01:02 +02:00
2018-02-13 12:36:00 +01:00
2016-08-11 15:33:23 +05:30
2017-12-09 22:01:56 +01:00
2016-05-02 19:49:28 -04:00
2019-08-25 10:51:50 +02:00
2016-08-02 19:35:10 -04:00
2020-10-14 09:48:14 +02:00
2018-01-17 09:38:58 +01:00
2016-03-17 15:09:34 -07:00
2016-11-11 08:12:37 -08:00
2020-09-03 11:21:21 +02:00
2017-06-17 06:41:52 +02:00
2018-01-10 09:29:52 +01:00
2020-11-10 10:23:51 +01:00
2015-08-14 16:50:36 -07:00
2018-03-28 18:39:23 +02:00
2016-10-07 18:46:26 -07:00
2017-08-06 18:59:43 -07:00
2016-09-02 12:47:55 -04:00
2016-10-06 11:48:41 -07:00
2020-04-02 17:20:27 +02:00
2015-11-04 18:10:13 -08:00
2019-12-05 15:35:02 +01:00
2015-10-09 07:48:59 -07:00
2020-06-30 15:38:32 -04:00
2019-02-12 19:44:56 +01:00
2019-11-10 11:23:23 +01:00
2015-05-31 11:40:14 +09:00
2019-09-10 10:31:00 +01:00
2016-05-20 17:58:30 -07:00
2016-05-28 15:48:31 -04:00
2015-11-18 16:17:42 -05:00
2015-12-05 17:41:42 -05:00
2019-02-15 08:07:39 +01:00
2017-05-25 15:44:41 +02:00
2020-09-12 11:47:31 +02:00
2015-11-09 15:11:24 -08:00
2020-11-10 10:24:00 +01:00
2016-08-24 15:58:57 +02:00
2020-01-04 13:41:08 +01:00
2015-04-24 15:36:50 +02:00
2018-10-20 09:51:31 +02:00
2016-05-20 17:58:30 -07:00
2016-05-19 19:12:14 -07:00
2019-05-31 06:48:12 -07:00
2016-08-24 21:04:48 +08:00
2016-09-08 21:34:15 -07:00
2015-05-02 09:54:30 +03:00
2017-10-27 10:38:08 +02:00
2016-09-05 13:52:38 +02:00
2020-09-23 08:46:15 +02:00
2016-08-25 22:11:02 +02:00
2015-10-20 17:47:45 +02:00
2016-07-22 09:07:02 +02:00
2016-09-24 10:48:18 +02:00
2016-07-27 14:20:09 -07:00
2018-11-21 09:26:01 +01:00
2016-06-18 22:11:39 -07:00
2020-09-12 11:47:36 +02:00
2015-11-25 09:22:00 -07:00
2020-05-10 10:28:03 +02:00
2016-07-08 13:23:12 +02:00
2016-09-01 22:48:33 -07:00
2020-01-12 11:24:25 +01:00
2016-09-24 08:01:26 -04:00
2015-06-23 06:14:04 -07:00
2019-08-11 12:22:17 +02:00
2016-10-07 23:50:39 -04:00
2020-12-11 13:37:58 +01:00
2016-02-11 09:59:22 -05:00
2016-05-01 09:23:52 -04:00
2016-09-08 16:13:09 -07:00
2015-10-09 07:49:05 -07:00
2016-09-16 09:18:54 +02:00
2018-04-08 12:12:52 +02:00
2016-07-13 17:27:24 -07:00
2018-12-01 09:44:26 +01:00
2020-08-21 11:02:10 +02:00
2015-10-27 08:36:08 +09:00
2016-09-14 22:11:09 +02:00
2016-05-03 18:23:02 +01:00
2016-05-03 18:23:02 +01:00
2020-07-31 16:44:05 +02:00
2016-10-26 15:45:38 +10:00
2016-10-20 15:51:28 +11:00
2015-11-04 11:30:57 -08:00
2016-09-16 09:34:15 +01:00
2016-05-16 15:12:02 -05:00
2016-09-14 09:18:09 -06:00
2016-04-20 15:42:24 -04:00
2016-08-08 14:42:03 -05:00
2015-09-03 15:02:28 -05:00
2016-07-27 10:24:38 -05:00
2018-01-02 20:35:11 +01:00
2015-12-11 11:52:29 -08:00
2017-02-09 08:08:31 +01:00
2016-05-11 22:37:54 +02:00
2015-10-01 02:18:38 +02:00
2019-04-05 22:29:12 +02:00
2016-07-04 12:26:05 +02:00
2015-09-16 15:47:51 +02:00
2015-06-25 12:06:45 +02:00
2015-10-30 10:13:26 +01:00
2016-06-17 20:47:11 -07:00
2016-05-16 11:14:29 -04:00
2016-01-28 14:19:12 -08:00
2019-12-21 10:41:37 +01:00
2018-10-10 08:53:18 +02:00
2017-01-19 20:17:59 +01:00
2016-10-03 13:22:39 -07:00
2018-02-22 15:43:55 +01:00
2016-05-20 17:58:30 -07:00
2019-05-08 07:19:07 +02:00
2018-11-23 08:20:35 +01:00
2016-10-27 18:43:43 -07:00
2018-05-30 07:50:26 +02:00
2016-03-22 15:36:02 -07:00
2016-07-28 16:07:41 -07:00
2016-01-16 11:17:23 -08:00
2016-10-09 12:23:38 -07:00
2016-07-06 10:34:48 +01:00
2019-05-10 17:52:09 +02:00
2016-08-10 11:23:44 -04:00
2016-10-11 15:06:33 -07:00
2016-04-11 22:44:15 +01:00
2017-10-27 10:38:11 +02:00
2016-03-22 15:36:02 -07:00
2020-06-20 10:24:16 +02:00
2020-10-14 09:48:17 +02:00
2015-07-28 08:50:42 +01:00
2016-10-11 15:06:33 -07:00
2015-09-10 13:29:01 -07:00
2020-01-14 20:04:25 +01:00
2020-06-30 15:38:33 -04:00
2020-04-02 17:20:40 +02:00
2016-07-26 16:19:19 -07:00
2016-10-11 15:06:33 -07:00
2016-10-05 10:11:24 -07:00
2020-05-02 17:23:11 +02:00
2015-10-01 15:06:46 +02:00
2015-11-25 17:24:23 +01:00
2016-01-15 17:56:32 -08:00
2016-02-09 11:54:23 +01:00
2016-07-18 08:46:09 +02:00
2016-06-20 09:43:33 +02:00
2016-09-15 16:49:39 +02:00
2020-10-01 20:40:19 +02:00
2020-01-04 13:41:02 +01:00
2017-03-15 10:02:47 +08:00
2016-09-21 07:57:31 -06:00
2016-03-17 15:09:34 -07:00
2019-06-11 12:22:42 +02:00
2020-02-28 15:42:30 +01:00
2019-05-21 18:48:55 +02:00
2016-08-18 23:41:55 +02:00
2018-04-08 12:12:50 +02:00
2016-09-24 10:48:32 +02:00
2020-09-12 11:47:34 +02:00
2015-11-25 09:22:02 -07:00
2016-09-19 13:42:38 -04:00
2016-09-19 12:27:10 +10:00
2016-01-20 17:09:18 -08:00
2015-06-11 22:19:45 +05:30
2015-08-10 14:29:27 +05:30
2015-11-17 15:25:43 -05:00
2015-11-10 12:06:16 +01:00
2016-02-22 22:44:04 -05:00
2017-10-27 10:38:08 +02:00
2016-06-26 01:20:08 +02:00
2016-09-27 12:33:47 +02:00
2016-06-10 23:24:53 -07:00
2016-04-11 21:15:48 -04:00
2015-09-20 19:31:10 -07:00
2017-08-24 17:12:19 -07:00
2017-04-08 09:30:35 +02:00
2019-11-28 18:28:51 +01:00
2016-03-17 13:47:50 -07:00
2016-09-01 17:52:01 -07:00
2016-05-19 19:12:14 -07:00
2016-07-28 16:07:41 -07:00
2015-10-04 12:46:06 +01:00
2017-06-17 06:41:54 +02:00
2015-09-09 17:19:14 -07:00
2016-07-26 16:19:19 -07:00
2016-08-31 14:12:35 +02:00
2016-03-20 16:47:13 -04:00
2017-01-19 20:17:59 +01:00
2019-11-12 19:15:42 +01:00
2015-06-24 17:49:41 -07:00
2020-06-03 08:16:42 +02:00
2017-12-20 10:07:29 +01:00
2016-07-26 16:19:19 -07:00
2015-07-17 16:39:53 -07:00
2016-04-28 11:44:19 +02:00
2017-12-14 09:28:16 +01:00
2020-08-21 11:02:11 +02:00
2020-06-11 09:22:23 +02:00
2019-08-06 18:29:42 +02:00
2015-11-06 17:50:42 -08:00
2017-03-15 10:02:44 +08:00
2016-07-01 23:45:18 +08:00
2015-07-21 10:39:05 -07:00
2016-09-25 23:41:39 -04:00
2016-09-25 23:41:39 -04:00
2019-01-09 16:16:43 +01:00
2015-10-17 21:11:29 -07:00
2016-07-29 12:17:52 -07:00
2016-10-07 09:20:53 -07:00
2020-05-27 16:42:00 +02:00
2019-02-23 09:05:58 +01:00
2020-06-30 15:38:39 -04:00
2015-09-17 17:18:37 -07:00
2015-06-18 21:14:31 +02:00
2016-09-25 14:38:48 +02:00
2015-09-29 20:21:32 +02:00
2015-09-30 01:45:03 -05:00
2016-09-25 23:34:19 +02:00
2016-02-18 11:42:22 -05:00
2017-02-01 08:33:08 +01:00
2016-09-22 15:54:27 -04:00
2016-07-05 19:11:05 -04:00
2016-04-04 10:41:08 -07:00
2017-08-11 08:49:28 -07:00
2016-04-25 15:09:11 -04:00
2017-06-17 06:41:57 +02:00
2016-05-19 19:12:14 -07:00
2018-05-22 16:58:02 +02:00
2016-03-01 20:36:58 +01:00
2016-02-16 13:04:58 -05:00
2015-09-07 15:17:08 -04:00
2016-03-21 19:30:06 -04:00
2016-07-08 08:38:49 -06:00
2016-10-19 11:36:22 -06:00
2016-06-25 07:42:55 -07:00
2016-05-01 14:01:00 -07:00
2016-05-12 07:07:42 -05:00
2015-07-27 08:23:27 -05:00
2015-11-16 09:03:21 +05:30
2016-09-28 17:43:15 +02:00
2016-10-03 23:38:11 +02:00
2016-05-02 09:00:56 -05:00
2016-06-23 14:57:40 -05:00
2015-12-09 09:23:28 -06:00
2016-11-29 23:17:02 -05:00
2016-09-16 09:34:14 +01:00
2015-08-25 11:29:55 -05:00
2016-07-08 18:14:03 -03:00
2019-05-25 18:26:47 +02:00
2015-09-01 09:59:20 +10:00
2016-09-28 08:53:14 +05:30
2017-12-14 09:28:16 +01:00
2016-04-26 10:19:38 +05:30
2015-10-08 05:26:36 -07:00
2016-10-07 18:46:28 -07:00
2015-05-08 12:27:59 +02:00
2020-10-29 09:05:39 +01:00
2020-05-27 16:41:52 +02:00
2015-11-05 19:34:48 -08:00
2016-10-07 18:46:27 -07:00
2016-06-03 15:06:22 -07:00
2016-10-07 18:46:27 -07:00
2016-06-21 09:43:04 +02:00
2016-03-17 15:09:34 -07:00
2019-11-12 19:15:42 +01:00
2015-09-08 15:35:28 -07:00
2015-11-06 17:50:42 -08:00
2018-03-22 09:17:44 +01:00
2015-06-01 07:08:18 +09:00
2015-07-17 16:39:53 -07:00
2018-09-15 09:42:56 +02:00
2016-06-10 18:27:59 -05:00
2015-08-13 15:59:58 -05:00
2016-03-07 11:39:16 -06:00
2018-02-25 11:05:51 +01:00
2019-05-25 18:26:53 +02:00
2016-05-03 10:35:49 -05:00
2020-04-24 07:59:12 +02:00
2018-01-05 15:46:35 +01:00
2017-02-09 08:08:28 +01:00
2016-09-22 15:25:54 +02:00
2016-05-20 17:58:30 -07:00
2020-11-18 18:26:29 +01:00
2018-12-01 09:44:25 +01:00
2016-02-11 18:35:48 -08:00
2016-03-14 15:43:11 -04:00
2020-03-20 09:07:43 +01:00
2016-08-08 14:42:01 -05:00
2017-08-24 17:12:21 -07:00
2015-11-30 15:26:22 -05:00
2019-06-11 12:22:45 +02:00
2016-10-14 11:36:59 -07:00
2016-04-09 03:10:50 +02:00
2016-06-28 00:42:10 +02:00
2016-09-13 02:49:34 +02:00
2017-01-06 10:40:15 +01:00
2015-07-28 08:50:41 +01:00
2016-04-22 01:32:37 +02:00
2015-05-30 02:17:15 +02:00
2015-05-20 01:56:31 +02:00
2016-04-22 01:32:37 +02:00
2016-07-12 19:25:38 -07:00
2020-05-20 08:15:36 +02:00
2016-03-15 16:55:16 -07:00
2020-01-23 08:19:33 +01:00
2016-09-27 21:52:00 -04:00
2016-10-08 11:06:08 -04:00
2020-05-20 08:15:32 +02:00
2018-11-10 07:43:01 -08:00
2018-10-03 17:01:43 -07:00
2016-01-02 00:29:35 +01:00
2016-03-02 17:13:02 -08:00
2015-10-21 14:46:56 -06:00
2020-11-18 18:26:29 +01:00
2017-11-15 15:53:17 +01:00
2016-10-09 12:23:38 -07:00
2016-09-22 19:59:41 -05:00
2019-03-23 13:19:50 +01:00
2018-04-20 08:21:05 +02:00
2017-08-06 18:59:43 -07:00
2016-09-08 15:01:10 -07:00
2015-11-03 11:08:22 -05:00
2016-09-22 02:18:33 -04:00
2019-01-09 16:16:42 +01:00
2019-05-14 19:19:34 +02:00
2019-06-22 08:17:17 +02:00
2016-09-12 20:01:43 +01:00
2016-06-24 22:53:50 -05:00
2016-03-17 15:09:34 -07:00
2020-01-04 13:40:50 +01:00
2019-12-21 10:42:08 +01:00
2016-10-11 15:06:30 -07:00
2020-08-21 11:01:52 +02:00
2016-08-02 19:35:06 -04:00
2016-07-06 10:51:14 +01:00
2015-05-28 11:32:06 +09:30
2016-07-06 10:51:14 +01:00
2016-08-18 15:36:59 +02:00
2020-02-28 15:42:30 +01:00
2016-04-23 18:51:33 -04:00
2019-08-04 09:33:19 +02:00
2016-07-15 10:41:44 +02:00
2016-07-15 10:41:44 +02:00
2016-10-29 12:14:39 -06:00
2019-04-05 22:29:06 +02:00
2016-10-02 22:50:21 -07:00
2016-05-31 22:12:43 +05:30
2019-12-05 15:34:07 +01:00
2018-12-08 13:05:09 +01:00
2016-02-24 09:12:45 +01:00
2018-10-18 09:13:25 +02:00
2019-04-05 22:29:05 +02:00
2016-03-22 15:36:02 -07:00
2016-08-02 19:35:38 -04:00
2016-08-02 19:35:37 -04:00
2016-08-02 19:35:37 -04:00
2016-07-26 16:19:19 -07:00
2016-03-10 16:04:24 -08:00
2016-09-08 22:15:25 -07:00
2016-03-14 17:08:15 +01:00
2016-09-01 16:56:15 -07:00
2016-04-13 10:42:20 +02:00
2016-06-08 15:16:42 +02:00
2016-06-22 09:10:00 +01:00
2016-09-17 08:39:12 -06:00
2016-04-15 16:53:14 -04:00
2015-12-15 09:41:09 +01:00
2020-04-24 07:58:54 +02:00
2015-10-04 12:54:54 +01:00
2016-06-21 10:15:56 +01:00
2016-08-08 12:51:58 -07:00
2018-05-22 16:58:01 +02:00
2016-09-19 12:27:10 +10:00
2020-04-02 17:20:39 +02:00
2016-10-11 15:06:33 -07:00
2016-10-07 18:46:30 -07:00
2020-10-01 20:40:04 +02:00
2016-08-31 15:36:01 +02:00
2019-12-21 10:40:50 +01:00
2015-12-17 11:18:44 +01:00
2016-07-27 14:20:09 -07:00
2016-07-13 09:24:51 +02:00
2015-11-24 11:48:35 +09:00
2018-01-17 09:38:53 +01:00
2015-08-05 08:48:00 +05:30
2016-01-20 17:09:18 -08:00
2016-07-26 16:19:19 -07:00
2020-01-29 10:24:30 +01:00
2019-08-25 10:51:42 +02:00
2017-08-30 10:21:40 +02:00
2020-10-01 20:40:06 +02:00
2016-07-28 16:07:41 -07:00
2017-08-11 08:49:36 -07:00
2018-10-03 17:01:50 -07:00
2016-08-28 23:44:55 -04:00
2016-09-05 13:52:39 +02:00
2019-05-31 06:48:17 -07:00
2016-06-28 09:08:51 -04:00
2016-05-08 23:46:14 -04:00
2016-06-14 11:55:15 +02:00
2015-09-01 08:40:25 -07:00
2016-10-05 18:23:36 -04:00
2015-09-20 19:32:02 -07:00
2016-02-23 19:59:55 -08:00
2016-03-25 16:37:42 -07:00
2015-06-25 17:00:38 -07:00
2016-05-03 14:59:30 -07:00
2016-06-28 08:54:23 -04:00
2016-01-06 11:02:29 +01:00
2016-04-21 10:47:26 +10:00
2019-04-17 08:36:39 +02:00
2016-06-11 14:57:56 -07:00
2015-10-26 10:11:58 +09:00
2018-05-30 07:50:24 +02:00
2015-05-11 15:06:43 +08:00
2016-02-25 11:27:16 +01:00
2019-12-05 15:35:02 +01:00
2018-08-15 18:14:45 +02:00
2015-09-08 15:35:28 -07:00
2017-01-26 08:24:44 +01:00
2016-08-11 15:39:38 +05:30
2016-10-17 09:50:56 -07:00
2018-08-15 18:14:43 +02:00
2018-09-05 09:20:10 +02:00
2015-06-25 17:00:39 -07:00
2016-09-15 09:51:14 -04:00
2018-11-13 11:17:02 -08:00
2020-07-31 16:44:06 +02:00
2016-09-27 14:35:21 +08:00
2018-08-09 12:18:00 +02:00
2016-07-17 19:59:26 +02:00
2016-03-17 15:09:34 -07:00
2020-11-18 18:26:23 +01:00
2019-12-21 10:42:25 +01:00
2017-06-29 13:00:30 +02:00
2016-09-22 17:02:55 +02:00
2018-01-02 20:35:17 +01:00
2015-10-01 09:57:59 -07:00
2016-07-28 16:07:41 -07:00
2016-08-22 10:10:12 -07:00
2016-07-19 17:43:38 +03:00
2017-10-12 11:51:21 +02:00
2015-11-05 19:34:48 -08:00
2016-03-15 16:55:16 -07:00
2020-08-21 11:01:56 +02:00
2016-04-26 15:47:32 -07:00
2017-09-27 14:39:19 +02:00
2016-01-28 11:58:02 -08:00
2020-12-11 13:38:00 +01:00
2016-05-23 17:04:14 -07:00
2016-09-30 11:46:40 +02:00
2020-09-12 11:47:35 +02:00
2016-02-10 13:19:03 +00:00
2016-04-07 16:53:29 -04:00
2016-06-30 18:04:36 -05:00
2015-12-18 17:48:50 -08:00
2017-04-21 09:31:21 +02:00
2015-11-23 09:44:58 +01:00
2016-09-13 08:08:24 +02:00
2020-09-23 08:46:11 +02:00
2017-03-18 19:14:29 +08:00
2016-07-26 16:19:19 -07:00
2015-05-05 17:10:11 -07:00
2016-08-08 14:42:02 -05:00
2016-05-20 17:58:30 -07:00
2018-09-09 20:01:23 +02:00
2018-01-31 12:55:52 +01:00
2017-07-27 15:08:03 -07:00
2016-05-31 13:15:57 +02:00
2016-08-16 18:49:56 +02:00
2015-12-04 10:38:59 -02:00
2015-06-01 15:48:54 +02:00
2016-08-01 21:44:52 +03:00
2017-02-04 09:47:09 +01:00
2019-04-17 08:36:47 +02:00
2017-12-25 14:23:37 +01:00
2018-05-01 15:13:05 -07:00
2018-09-19 22:47:17 +02:00
2018-09-19 22:47:17 +02:00
2020-05-02 17:23:10 +02:00
2016-08-31 13:20:15 +02:00
2016-01-14 16:00:49 -08:00
2016-07-28 16:07:41 -07:00
2019-07-21 09:06:03 +02:00
2015-06-01 15:48:54 +02:00
2020-04-02 17:20:39 +02:00
2016-07-14 10:42:35 +02:00
2016-09-30 10:54:03 +02:00
2016-10-08 10:27:10 +02:00
2016-09-21 00:22:59 -04:00
2015-12-03 07:24:29 -08:00
2018-12-05 19:42:42 +01:00
2016-10-07 18:46:27 -07:00
2016-08-04 08:50:07 -04:00
2020-08-21 11:01:55 +02:00
2015-09-08 15:35:28 -07:00
2015-11-06 17:50:42 -08:00
2016-05-20 17:58:30 -07:00
2015-11-06 17:50:42 -08:00