Daniel Kurtz
a72ac679ca
earlycon: Use a pointer table to fix __earlycon_table stride
...
commit dd709e72cb upstream.
Commit 99492c39f3 ("earlycon: Fix __earlycon_table stride") tried to fix
__earlycon_table stride by forcing the earlycon_id struct alignment to 32
and asking the linker to 32-byte align the __earlycon_table symbol. This
fix was based on commit 07fca0e57f ("tracing: Properly align linker
defined symbols") which tried a similar fix for the tracing subsystem.
However, this fix doesn't quite work because there is no guarantee that
gcc will place structures packed into an array format. In fact, gcc 4.9
chooses to 64-byte align these structs by inserting additional padding
between the entries because it has no clue that they are supposed to be in
an array. If we are unlucky, the linker will assign symbol
"__earlycon_table" to a 32-byte aligned address which does not correspond
to the 64-byte aligned contents of section "__earlycon_table".
To address this same problem, the fix to the tracing system was
subsequently re-implemented using a more robust table of pointers approach
by commits:
3d56e331b6 ("tracing: Replace syscall_meta_data struct array with pointer array")
6549864629 ("tracepoints: Fix section alignment using pointer array")
e4a9ea5ee7 ("tracing: Replace trace_event struct array with pointer array")
Let's use this same "array of pointers to structs" approach for
EARLYCON_TABLE.
Fixes: 99492c39f3 ("earlycon: Fix __earlycon_table stride")
Signed-off-by: Daniel Kurtz <djkurtz@chromium.org >
Suggested-by: Aaron Durbin <adurbin@chromium.org >
Reviewed-by: Rob Herring <robh@kernel.org >
Tested-by: Guenter Roeck <groeck@chromium.org >
Reviewed-by: Guenter Roeck <groeck@chromium.org >
Cc: stable <stable@vger.kernel.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2018-05-01 15:13:09 -07:00
..
2016-10-12 11:01:37 -07:00
2017-02-18 15:11:40 +01:00
2017-03-15 10:02:51 +08:00
2016-02-04 18:25:55 +01:00
2016-03-04 23:50:27 -06:00
2016-10-11 15:06:33 -07:00
2016-10-07 08:35:35 -07:00
2018-04-13 19:48:19 +02:00
2018-04-13 19:48:04 +02:00
2018-05-01 15:13:07 -07:00
2018-04-08 12:12:50 +02:00
2016-10-03 19:43:08 -07:00
2016-11-05 13:45:02 +05:30
2018-03-22 09:17:50 +01:00
2017-01-19 20:18:07 +01:00
2016-10-07 09:45:43 -07:00
2018-03-22 09:17:44 +01:00
2016-08-23 15:46:33 -05:00
2018-03-18 11:18:56 +01:00
2015-04-15 16:35:22 -07:00
2014-08-07 14:40:09 -04:00
2017-12-20 10:07:26 +01:00
2012-10-13 10:46:48 +01:00
2016-09-20 14:35:59 -05:00
2012-10-13 10:46:48 +01:00
2015-03-25 20:28:11 -04:00
2016-06-20 12:47:09 -07:00
2005-04-16 15:20:36 -07:00
2015-03-27 13:44:43 +00:00
2018-04-20 08:21:06 +02:00
2012-12-14 13:06:41 +10:30
2013-03-12 13:59:14 -07:00
2016-08-25 11:26:48 -04:00
2012-10-13 10:46:48 +01:00
2012-10-13 10:46:48 +01:00
2012-12-02 00:05:12 +00:00
2016-07-07 09:16:20 +02:00
2017-10-08 10:26:06 +02:00
2013-12-24 09:35:17 -08:00
2015-08-20 14:10:23 -07:00
2018-04-24 09:34:18 +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
2012-09-10 11:13:16 -07:00
2011-03-11 14:25:50 +00:00
2016-07-25 16:51:49 +10:00
2016-09-22 07:48:03 -06:00
2016-09-09 12:09:24 +03:00
2016-08-18 10:44:20 +02:00
2016-10-07 18:46:26 -07:00
2014-12-22 16:43:06 +00:00
2016-10-14 12:18:50 -07:00
2016-10-09 17:32:20 -07:00
2017-01-19 20:18:07 +01:00
2015-09-29 13:37:04 -07:00
2013-02-15 18:52:45 -08:00
2016-10-07 18:46:28 -07:00
2018-01-17 09:38:55 +01:00
2018-01-31 12:55:57 +01:00
2016-03-25 11:37:57 -04:00
2011-05-19 16:55:27 +09:30
2012-12-06 14:33:02 +01:00
2012-10-13 10:46:48 +01:00
2009-11-20 20:13:39 +01:00
2013-02-20 09:37:28 -05:00
2017-12-09 22:01:54 +01:00
2016-09-09 12:09:24 +03:00
2016-08-11 09:41:35 -06: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
2009-07-31 12:28:46 +02:00
2017-09-27 14:39:20 +02:00
2015-01-20 14:02:58 -07:00
2012-10-13 10:46:48 +01:00
2016-08-22 14:05:49 -03:00
2016-08-22 14:00:51 -03:00
2011-03-31 11:26:23 -03:00
2018-03-31 18:11:33 +02:00
2017-06-14 15:06:00 +02:00
2016-01-27 09:10:29 -05: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
2016-06-28 10:19:35 +02:00
2015-10-23 17:55:10 +09:00
2014-01-21 20:18:26 -08:00
2013-07-30 11:11:44 +02:00
2016-10-07 18:46:29 -07:00
2017-03-12 06:41:44 +01:00
2018-03-18 11:18:52 +01:00
2018-03-18 11:18:52 +01:00
2015-06-25 17:00:38 -07:00
2018-02-22 15:43:53 +01:00
2013-11-15 09:32:21 +09:00
2015-12-07 00:02:05 +00:00
2008-04-30 08:29:54 -07:00
2016-03-25 19:10:03 +01:00
2016-11-11 08:12:37 -08:00
2008-06-04 14:56:12 +01:00
2013-12-29 15:25:48 +01:00
2015-07-15 13:30:38 +01:00
2018-01-17 09:38:57 +01:00
2016-10-20 16:35:50 +02:00
2018-01-02 20:35:17 +01:00
2016-07-21 23:29:38 +02:00
2018-04-08 12:12:44 +02:00
2017-10-12 11:51:25 +02:00
2014-03-13 15:56:44 +01:00
2014-05-16 14:26:52 -04:00
2011-06-03 15:01:06 -04:00
2005-09-12 08:48:08 -07:00
2014-06-25 16:04:00 -07:00
2008-12-25 11:01:43 +11:00
2008-04-30 08:29:54 -07:00
2018-01-10 09:29:52 +01:00
2018-02-25 11:05:44 +01:00
2015-02-12 18:54:15 -08:00
2012-05-07 15:02:26 +02:00
2012-10-13 10:46:48 +01:00
2012-10-13 10:46:48 +01:00
2018-02-28 10:18:33 +01:00
2015-11-16 09:27:32 +05:30
2017-08-06 18:59:43 -07:00
2017-03-22 12:43:33 +01:00
2011-01-10 08:51:44 -08:00
2017-03-15 10:02:44 +08:00
2016-07-26 16:19:19 -07:00
2010-08-04 11:00:45 +02:00
2010-03-30 22:02:32 +09:00
2014-05-08 14:28:07 +08:00
2016-09-06 13:08:40 +09:00
2017-03-12 06:41:44 +01:00
2016-09-14 13:56:38 -04:00
2017-07-15 12:16:11 +02:00
2012-02-20 19:46:36 +11:00
2011-06-10 14:55:36 +02:00
2008-07-25 10:53:34 -07:00
2012-11-19 14:32:13 +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
2011-06-21 19:17:20 -07:00
2017-12-14 09:28:11 +01:00
2016-08-08 08:11:42 +05:30
2015-09-08 15:35:28 -07:00
2015-06-12 11:33:52 +02:00
2016-01-15 22:08:45 +01:00
2010-07-28 09:59:01 -04:00
2016-06-13 21:43:08 -06:00
2012-09-30 18:02:20 -07:00
2013-03-03 23:59:59 -08:00
2015-12-11 16:56:40 +01:00
2012-10-13 10:46:48 +01:00
2012-09-01 06:14:02 +05:30
2017-01-19 20:18:00 +01:00
2009-06-15 21:30:26 -07:00
2012-10-16 18:49:15 -07:00
2015-04-14 16:49:05 -07:00
2014-11-24 07:45:02 +01:00
2008-01-28 23:21:18 +01: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
2012-10-13 10:46:48 +01:00
2016-07-01 16:37:06 +02:00
2016-04-18 14:45:08 -04:00
2013-09-07 19:54:57 -04:00
2012-10-13 10:46:48 +01:00
2015-12-15 08:53:36 -05:00
2016-08-04 10:16:56 +09:30
2016-09-16 08:53:41 +02:00
2007-11-08 08:42:46 -05:00
2016-10-03 09:11:14 -07:00
2012-10-13 10:46:48 +01:00
2016-03-15 16:55:16 -07:00
2013-09-26 15:06:58 -07:00
2017-07-12 15:01:02 +02:00
2012-10-13 10:46:48 +01:00
2013-09-26 15:06:58 -07:00
2018-02-13 12:36:00 +01:00
2014-12-31 13:06:50 -05: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
2009-06-18 19:50:21 +08:00
2014-05-26 14:33:10 +02:00
2013-02-23 17:50:12 -08:00
2016-08-02 19:35:10 -04:00
2015-03-02 14:50:06 -03:00
2012-10-13 10:46:48 +01:00
2014-02-28 15:12:09 -08:00
2013-06-19 20:30:32 -07:00
2014-10-09 11:35:48 +03: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
2018-03-22 09:18:00 +01:00
2017-06-17 06:41:52 +02:00
2018-01-10 09:29:52 +01:00
2017-03-31 10:31:46 +02:00
2018-03-28 18:39:23 +02:00
2014-10-15 21:31:27 +05:30
2017-08-06 18:59:43 -07:00
2016-10-06 11:48:41 -07:00
2014-03-03 11:32:08 +01:00
2015-11-04 18:10:13 -08:00
2009-06-18 13:04:05 -07:00
2017-12-14 09:28:22 +01:00
2015-10-09 07:48:59 -07:00
2017-05-14 14:00:22 +02:00
2006-09-30 01:47:55 +02:00
2016-07-28 16:07:41 -07:00
2014-08-06 18:01:24 -07:00
2015-05-31 11:40:14 +09:00
2015-05-12 10:46:53 +02: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
2015-01-27 10:19:12 -02:00
2013-04-30 10:09:06 +02:00
2011-02-03 16:37:28 +01:00
2018-04-24 09:34:12 +02:00
2012-10-13 10:46:48 +01:00
2013-08-26 21:40:24 +02:00
2015-11-09 15:11:24 -08:00
2006-04-26 12:56:16 +01:00
2010-02-09 11:13:56 +01:00
2013-09-26 15:06:58 -07:00
2016-08-24 15:58:57 +02:00
2012-10-13 10:46:48 +01:00
2016-07-15 10:41:37 +02:00
2010-03-07 22:17:09 +01:00
2016-10-07 18:46:29 -07:00
2012-03-16 10:38:24 -04: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
2012-10-13 10:46:48 +01:00
2016-09-24 10:48:18 +02:00
2016-07-27 14:20:09 -07:00
2012-10-13 10:46:48 +01:00
2016-06-18 22:11:39 -07:00
2015-05-05 13:40:42 -06:00
2015-11-25 09:22:00 -07:00
2016-06-30 12:06:20 +02:00
2016-07-08 13:23:12 +02:00
2018-04-29 11:32:01 +02:00
2016-02-11 09:59:22 -05:00
2008-08-02 18:36:10 +01:00
2016-05-01 09:23:52 -04:00
2013-02-11 14:16:26 -05:00
2012-10-13 10:46:48 +01:00
2008-07-09 12:09:28 -04:00
2015-10-09 07:49:05 -07:00
2018-04-08 12:12:52 +02:00
2005-04-16 15:20:36 -07:00
2012-10-13 10:46:48 +01:00
2014-05-14 16:40:04 -07:00
2016-07-13 17:27:24 -07:00
2014-11-17 23:12:01 -05:00
2017-03-12 06:41:43 +01:00
2015-10-27 08:36:08 +09:00
2016-09-14 22:11:09 +02:00
2016-08-24 09:43:49 +02:00
2016-10-26 15:45:38 +10:00
2006-10-10 15:37:22 -07:00
2012-03-20 12:47:48 +01:00
2016-10-20 15:51:28 +11:00
2016-09-16 09:34:15 +01:00
2015-01-19 16:11:59 +00:00
2016-04-20 15:42:24 -04:00
2012-12-09 00:20:28 -05:00
2014-09-23 23:13:13 -07:00
2014-01-27 21:02:39 -08:00
2013-06-17 16:38:57 -07:00
2016-07-27 10:24:38 -05:00
2018-01-02 20:35:11 +01:00
2017-02-09 08:08:31 +01:00
2015-10-01 02:18:38 +02:00
2015-09-16 15:47:51 +02:00
2016-06-17 20:47:11 -07:00
2014-03-13 12:11:00 +10:30
2009-12-11 15:18:07 -08:00
2018-02-22 15:43:48 +01:00
2015-04-03 12:52:29 -04:00
2018-04-08 12:12:45 +02:00
2013-05-13 09:45:01 -04:00
2012-10-13 10:46:48 +01:00
2018-02-22 15:43:55 +01:00
2012-05-29 16:22:32 -07:00
2008-04-29 08:06:29 -07:00
2016-10-27 18:43:43 -07:00
2016-03-22 15:36:02 -07:00
2012-10-13 10:46:48 +01:00
2016-07-28 16:07:41 -07:00
2013-11-13 12:09:07 +09:00
2018-02-28 10:18:34 +01:00
2014-10-14 15:05:34 -04:00
2016-08-10 11:23:44 -04:00
2016-10-11 15:06:33 -07:00
2017-10-27 10:38:11 +02:00
2012-10-13 10:46:48 +01:00
2016-03-22 15:36:02 -07:00
2014-10-22 16:14:04 -06:00
2011-01-24 14:45:11 +10:30
2016-10-11 15:06:33 -07:00
2015-09-10 13:29:01 -07:00
2015-10-04 11:46:16 +01:00
2017-05-25 15:44:47 +02:00
2015-11-28 19:33:29 -08: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
2012-10-13 10:46:48 +01:00
2011-09-16 19:20:20 -04:00
2016-02-09 11:54:23 +01:00
2013-07-03 16:07:43 -07:00
2015-03-31 09:45:50 -06:00
2015-03-30 11:55:48 -07:00
2009-04-06 16:06:26 +01:00
2016-09-15 16:49:39 +02:00
2015-03-24 11:52:08 +10:30
2016-09-22 11:50:29 -04:00
2012-10-06 02:48:09 +09:00
2017-03-15 10:02:47 +08:00
2013-01-06 01:11:25 -08:00
2016-09-21 07:57:31 -06:00
2014-05-05 16:07:37 -07:00
2016-08-18 23:41:55 +02:00
2012-10-13 10:46:48 +01:00
2018-04-08 12:12:50 +02:00
2016-09-24 10:48:32 +02:00
2015-01-25 23:16:29 -05:00
2017-06-17 06:41:51 +02:00
2012-10-13 10:46:48 +01:00
2016-01-20 17:09:18 -08:00
2013-02-20 19:36:01 +01:00
2012-03-16 10:38:24 -04: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
2005-04-16 15:20:36 -07:00
2016-09-27 12:33:47 +02:00
2011-11-15 16:56:17 -05:00
2016-04-11 21:15:48 -04:00
2017-04-08 09:30:35 +02:00
2016-09-01 17:52:01 -07:00
2016-07-28 16:07:41 -07:00
2009-01-09 16:54:41 -08:00
2015-09-09 17:19:14 -07:00
2016-07-26 16:19:19 -07:00
2012-10-13 10:46:48 +01:00
2016-08-31 14:12:35 +02:00
2009-05-25 00:55:30 -07:00
2012-09-13 14:58:54 -04:00
2016-03-20 16:47:13 -04:00
2018-04-20 08:20:44 +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
2017-12-14 09:28:16 +01:00
2018-01-31 12:55:53 +01:00
2018-02-13 12:35:58 +01:00
2015-03-12 18:46:08 -07:00
2015-11-06 17:50:42 -08:00
2017-03-15 10:02:44 +08:00
2009-04-01 07:38:54 -04:00
2016-07-01 23:45:18 +08:00
2014-03-04 13:51:06 -05:00
2016-09-25 23:41:39 -04:00
2016-09-25 23:41:39 -04:00
2014-01-27 21:02:39 -08:00
2016-09-14 22:11:08 +02:00
2013-06-26 12:10:56 +02:00
2015-02-14 11:32:59 -08:00
2011-05-09 11:40:38 +10:00
2016-07-29 12:17:52 -07:00
2016-10-07 09:20:53 -07:00
2016-08-28 23:32:41 -04:00
2017-11-18 11:22:21 +01:00
2016-02-18 11:42:22 -05:00
2014-03-29 17:58:37 -04:00
2017-02-01 08:33:08 +01:00
2014-05-29 11:11:48 -04:00
2012-10-13 10:46:48 +01:00
2016-04-25 15:09:11 -04:00
2014-01-25 03:14:05 -05:00
2017-06-17 06:41:57 +02:00
2012-12-11 17:22:27 -08:00
2016-05-19 19:12:14 -07:00
2018-03-18 11:18:51 +01:00
2016-03-01 20:36:58 +01:00
2016-02-16 13:04:58 -05:00
2016-03-21 19:30:06 -04:00
2009-12-15 08:53:12 -08:00
2016-10-19 11:36:22 -06:00
2016-06-25 07:42:55 -07:00
2012-10-13 10:46:48 +01:00
2016-09-15 08:33:01 -05:00
2013-08-15 17:22:27 -07:00
2014-06-10 14:35:22 -07:00
2017-12-14 09:28:16 +01:00
2012-10-13 10:46:48 +01:00
2015-10-08 05:26:36 -07:00
2016-10-07 18:46:28 -07:00
2013-03-29 17:54:33 -07:00
2013-09-03 22:52:48 -04:00
2016-09-19 21:44:30 +02:00
2016-03-17 15:09:34 -07:00
2016-07-26 16:19:19 -07: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
2014-04-03 16:21:00 -07:00
2014-01-23 16:36:55 -08:00
2012-10-13 10:46:48 +01:00
2013-03-01 23:51:07 -05:00
2018-02-25 11:05:51 +01:00
2018-04-13 19:48:07 +02:00
2014-07-09 14:58:37 +01: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
2017-12-09 22:01:52 +01:00
2015-04-12 21:03:31 +02:00
2016-02-11 18:35:48 -08:00
2012-10-13 10:46:48 +01:00
2018-01-17 09:38:53 +01:00
2017-08-24 17:12:21 -07:00
2015-11-30 15:26:22 -05:00
2016-10-14 11:36:59 -07:00
2012-10-13 10:46:48 +01:00
2015-03-18 15:54:27 +01:00
2016-04-22 01:32:37 +02:00
2016-07-12 19:25:38 -07:00
2012-10-13 10:46:48 +01:00
2016-04-22 10:29:05 +02:00
2016-03-15 16:55:16 -07:00
2018-03-24 11:00:09 +01:00
2016-01-02 00:29:35 +01:00
2012-10-13 10:46:48 +01:00
2011-11-02 16:07:02 -07:00
2015-10-21 14:46:56 -06:00
2017-11-15 15:53:17 +01:00
2011-03-31 11:26:23 -03:00
2016-10-09 12:23:38 -07:00
2014-05-18 19:01:33 -07:00
2013-11-26 20:55:33 -08:00
2017-08-11 08:49:29 -07:00
2018-04-20 08:21:05 +02:00
2011-07-01 15:39:38 -07:00
2018-02-25 11:05:41 +01:00
2017-06-14 15:05:54 +02:00
2016-09-05 16:45:39 +02:00
2016-07-29 15:54:19 -07:00
2016-02-09 13:05:23 +01:00
2016-10-11 15:06:30 -07:00
2014-01-23 16:36:58 -08:00
2017-04-12 12:41:15 +02:00
2014-06-25 11:22:03 -07:00
2016-08-02 19:35:06 -04:00
2012-05-17 15:18:37 +02:00
2016-07-06 10:51:14 +01:00
2017-12-16 16:25:45 +01:00
2017-01-26 08:24:37 +01:00
2016-07-15 10:41:44 +02:00
2016-07-15 10:41:44 +02:00
2015-04-15 16:35:23 -07:00
2016-10-29 12:14:39 -06:00
2012-03-24 10:08:39 -07:00
2016-10-11 15:06:32 -07:00
2016-10-02 22:50:21 -07:00
2016-05-31 22:12:43 +05:30
2016-05-30 09:37:47 +02:00
2016-06-29 23:39:52 +02:00
2012-10-13 10:46:48 +01:00
2016-02-24 09:12:45 +01:00
2018-03-31 18:11:33 +02:00
2016-08-02 19:35:37 -04:00
2016-03-10 16:04:24 -08:00
2016-09-08 22:15:25 -07:00
2007-05-02 11:56:33 +01:00
2016-03-14 17:08:15 +01:00
2014-06-21 22:05:30 +02: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
2012-10-13 10:46:48 +01:00
2018-04-13 19:48:23 +02:00
2015-10-04 12:54:54 +01:00
2016-08-08 12:51:58 -07:00
2013-06-17 16:38:57 -07:00
2012-10-13 10:46:48 +01:00
2016-06-14 10:54:40 -07:00
2012-10-13 10:46:48 +01:00
2016-09-19 12:27:10 +10:00
2016-04-30 09:26:55 -07:00
2016-10-11 15:06:33 -07:00
2016-06-03 08:37:25 +02:00
2018-05-01 15:13:09 -07:00
2012-10-13 10:46:48 +01:00
2016-07-27 14:20:09 -07:00
2016-07-13 09:24:51 +02: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
2015-02-12 18:54:09 -08:00
2016-05-23 17:04:14 -07:00
2012-10-13 10:46:48 +01:00
2018-04-13 19:48:19 +02:00
2017-08-11 08:49:36 -07:00
2016-09-05 13:52:39 +02:00
2015-10-20 10:23:55 +02:00
2012-12-07 12:48:00 -05:00
2016-05-08 23:46:14 -04:00
2012-10-13 10:46:48 +01:00
2012-10-13 10:46:48 +01:00
2012-10-13 10:46:48 +01: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
2014-03-19 08:58:30 +00:00
2016-03-25 16:37:42 -07:00
2015-04-14 09:50:27 -07:00
2012-10-13 10:46:48 +01:00
2010-08-09 16:48:44 -04: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
2018-02-25 11:05:41 +01:00
2016-06-11 14:57:56 -07:00
2009-04-10 15:48:52 +02:00
2013-04-30 15:50:12 +05:30
2015-10-26 10:11:58 +09:00
2016-09-13 02:17:19 +02:00
2011-03-22 15:47:22 +09:00
2015-05-11 15:06:43 +08:00
2012-10-13 10:46:48 +01:00
2016-02-25 11:27:16 +01:00
2017-01-19 20:17:59 +01:00
2014-06-04 16:54:07 -07:00
2015-09-08 15:35:28 -07:00
2017-01-26 08:24:44 +01:00
2005-04-16 15:20:36 -07:00
2016-10-17 09:50:56 -07:00
2016-10-06 09:52:23 -07:00
2017-12-14 09:28:11 +01:00
2015-06-25 17:00:39 -07:00
2013-10-16 13:01:44 -07:00
2013-12-07 01:03:14 +01:00
2007-02-09 16:23:15 +00:00
2018-01-02 20:35:13 +01:00
2011-10-31 19:32:32 -04:00
2016-09-27 14:35:21 +08:00
2010-05-27 09:12:51 -07:00
2016-03-17 15:09:34 -07:00
2016-08-31 14:43:35 -07:00
2016-06-20 12:47:15 -07:00
2015-01-02 16:47:35 -05:00
2016-09-22 17:02:55 +02:00
2018-01-02 20:35:17 +01:00
2014-07-18 11:49:57 +02:00
2013-04-25 21:01:45 +08:00
2015-04-22 17:06:49 +02:00
2015-10-01 09:57:59 -07:00
2016-07-19 17:43:38 +03:00
2015-02-03 12:48:43 -05:00
2015-11-05 19:34:48 -08:00
2016-03-09 11:58:41 -05:00
2018-05-01 15:13:05 -07:00
2016-08-08 13:02:01 -07: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-05-03 14:32:07 -07:00
2011-06-15 20:04:00 -07:00
2016-08-08 14:42:02 -05:00
2016-05-20 17:58:30 -07:00
2011-10-31 19:32:31 -04:00
2016-04-06 16:14:24 +01:00
2018-01-31 12:55:52 +01:00
2014-11-28 16:08:16 +01:00
2017-07-27 15:08:03 -07:00
2005-04-16 15:20:36 -07:00
2016-08-16 18:49:56 +02:00
2010-05-11 16:07:59 -06:00
2005-04-16 15:20:36 -07:00
2015-12-04 10:38:59 -02:00
2017-12-25 14:23:37 +01:00
2018-05-01 15:13:05 -07:00
2018-01-02 20:35:18 +01:00
2014-04-07 16:35:53 -07:00
2016-05-23 11:48:48 -07:00
2016-08-31 13:20:15 +02:00
2016-07-28 16:07:41 -07:00
2015-06-01 15:48:54 +02:00
2012-10-13 10:46:48 +01:00
2016-07-14 10:42:35 +02:00
2016-09-30 10:54:03 +02:00
2013-01-31 19:56:35 -05:00
2016-10-08 10:27:10 +02:00
2012-10-13 10:46:48 +01:00
2018-03-18 11:18:48 +01:00
2016-10-07 18:46:27 -07:00
2016-10-07 21:48:36 -04:00
2011-01-13 08:03:24 -08:00
2013-10-17 15:53:09 -04:00
2015-09-08 15:35:28 -07:00
2014-08-08 15:57:26 -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