Linus Torvalds
54539cd217
Merge branch 'for-3.15-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu
...
Pull percpu fix from Tejun Heo:
"It is very late but this is an important percpu-refcount fix from
Sebastian Ott.
The problem is that percpu_ref_*() used __this_cpu_*() instead of
this_cpu_*(). The difference between the two is that the latter is
atomic on the local cpu while the former is not. this_cpu_inc() is
guaranteed to increment the percpu counter on the cpu that the
operation is executed on without any synchronization; however,
__this_cpu_inc() doesn't and if the local cpu invokes the function
from different contexts (e.g. process and irq) of the same CPU, it's
not guaranteed to actually increment as it may be implemented as rmw.
This bug existed from the get-go but it hasn't been noticed earlier
probably because on x86 __this_cpu_inc() is equivalent to
this_cpu_inc() as both get translated into single instruction;
however, s390 uses the generic rmw implementation and gets affected by
the bug. Kudos to Sebastian and Heiko for diagnosing it.
The change is very low risk and fixes a critical issue on the affected
architectures, so I think it's a good candidate for inclusion although
it's very late in the devel cycle. On the other hand, this has been
broken since v3.11, so backporting it through -stable post -rc1 won't
be the end of the world.
I'll ping Christoph whether __this_cpu_*() ops can be better annotated
so that it can trigger lockdep warning when used from multiple
contexts"
* 'for-3.15-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu:
percpu-refcount: fix usage of this_cpu_ops
2014-06-04 09:56:03 -07:00
..
2014-05-25 23:44:27 +01:00
2014-03-07 09:18:23 +01:00
2014-04-04 21:08:20 -07:00
2014-04-05 15:46:37 -07:00
2014-04-04 21:07:28 -07:00
2013-08-14 13:55:15 +05:30
2014-03-19 14:41:58 +09:00
2014-03-28 20:42:01 +01:00
2014-04-09 08:45:40 -07:00
2014-02-15 10:58:17 +00:00
2014-03-30 13:25:19 -07:00
2014-03-08 23:32:26 -08:00
2014-05-08 08:44:50 +01:00
2014-05-16 15:12:45 -04:00
2014-04-10 18:43:32 -07:00
2014-04-09 08:39:39 -07:00
2014-04-18 16:40:08 -07:00
2014-04-08 10:56:12 +02:00
2014-04-24 12:53:38 -07:00
2014-04-10 09:06:10 -07:00
2014-04-18 15:11:54 +01:00
2014-02-22 18:14:13 +01:00
2014-04-12 17:31:22 -07:00
2012-10-13 10:46:48 +01:00
2012-10-13 10:46:48 +01:00
2014-04-01 15:14:04 -07:00
2012-10-13 10:46:48 +01:00
2013-07-03 16:31:35 -07:00
2012-10-13 10:46:48 +01:00
2013-07-30 11:53:12 -04:00
2013-05-29 12:57:34 -07:00
2005-04-16 15:20:36 -07:00
2005-04-16 15:20:36 -07:00
2007-02-09 17:08:57 +00:00
2011-06-06 22:55:11 -07:00
2013-05-29 15:50:34 -04:00
2012-12-14 13:06:41 +10:30
2013-03-12 13:59:14 -07:00
2013-10-27 08:40:39 -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
2012-10-09 16:22:46 +09:00
2014-04-10 17:51:29 -04:00
2013-12-24 09:35:17 -08:00
2010-12-06 15:58:43 -05:00
2012-09-10 11:13:16 -07:00
2011-03-11 14:25:50 +00:00
2014-04-07 16:36:05 -07:00
2014-04-12 14:49:50 -07:00
2011-08-03 11:30:42 -04:00
2014-03-30 17:02:06 -07:00
2008-06-06 11:29:10 -07:00
2014-04-09 21:54:06 -06:00
2014-04-12 14:49:50 -07:00
2013-02-15 18:52:45 -08:00
2014-01-30 16:56:54 -08:00
2014-02-14 00:27:58 -05: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
2013-02-21 17:22:16 -08:00
2014-01-23 16:36:56 -08:00
2013-08-30 23:44:11 -07:00
2014-02-09 09:59:23 +08:00
2011-01-13 08:03:17 -08:00
2012-10-13 10:46:48 +01:00
2014-05-13 11:26:27 -04:00
2013-04-30 17:04:01 -07:00
2014-02-24 17:13:55 -08:00
2013-12-04 17:19:44 +01:00
2014-02-09 15:11:47 +01:00
2013-07-30 11:24:20 -07:00
2014-01-21 20:18:26 -08:00
2013-07-30 11:11:44 +02:00
2009-01-23 22:28:48 -08:00
2014-01-21 16:19:48 -08:00
2014-04-09 13:44:35 -07:00
2013-02-21 17:22:15 -08:00
2014-02-13 12:34:05 +01:00
2013-12-05 21:28:41 +08:00
2014-01-23 18:11:00 -08:00
2014-04-09 13:44:35 -07:00
2013-11-15 09:32:21 +09:00
2014-01-10 16:27:36 -08:00
2008-04-30 08:29:54 -07:00
2012-01-03 22:54:57 -05:00
2013-05-20 12:27:59 -07:00
2008-06-04 14:56:12 +01:00
2013-12-29 15:25:48 +01:00
2013-10-23 10:10:20 -07:00
2014-04-07 14:55:46 -07:00
2014-04-07 14:43:50 +02:00
2014-03-11 11:52:47 +01:00
2013-03-12 11:30:04 -07:00
2014-03-13 15:56:44 +01:00
2014-04-07 16:36:06 -07:00
2007-07-17 10:23:04 -07:00
2011-06-03 15:01:06 -04:00
2013-11-03 23:04:56 -05:00
2008-12-25 11:01:43 +11:00
2008-04-30 08:29:54 -07:00
2014-04-03 16:21:05 -07:00
2012-03-24 10:08:39 -07:00
2011-08-06 22:12:37 -07:00
2012-03-29 19:52:48 +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
2014-05-01 10:30:00 -04:00
2012-10-13 10:46:48 +01:00
2011-01-10 08:51:44 -08:00
2013-10-03 16:14:12 -07:00
2010-08-04 11:00:45 +02:00
2010-03-30 22:02:32 +09:00
2013-11-15 16:47:22 -08:00
2014-03-27 16:56:24 -04:00
2014-04-16 11:56:33 -07: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
2013-08-02 12:33:54 -07:00
2013-11-23 22:33:51 -08:00
2014-02-13 10:08:52 +05:30
2011-06-21 19:17:20 -07:00
2013-10-31 14:49:24 +00:00
2014-05-21 14:02:37 -07:00
2013-10-23 10:10:12 -07:00
2010-07-28 09:59:01 -04:00
2014-02-17 16:50:37 +01:00
2008-10-15 12:46:51 +01:00
2007-07-16 09:05:42 -07:00
2012-09-30 18:02:20 -07:00
2013-12-11 18:06:47 +01:00
2012-10-13 10:46:48 +01:00
2012-09-01 06:14:02 +05:30
2012-09-29 12:21:03 -07:00
2014-03-05 18:15:37 +00:00
2009-06-15 21:30:26 -07:00
2012-10-16 18:49:15 -07:00
2013-11-09 00:16:24 -05:00
2009-12-10 08:54:14 -06:00
2014-04-03 16:21:06 -07:00
2013-05-07 18:38:27 -07:00
2012-10-13 10:46:48 +01:00
2014-01-15 15:39:33 -08:00
2013-09-07 19:54:57 -04:00
2013-03-27 13:48:25 +01:00
2014-03-19 14:41:58 +09:00
2007-11-08 08:42:46 -05:00
2012-10-13 10:46:48 +01:00
2012-10-13 10:46:48 +01:00
2011-08-03 14:25:20 -10:00
2013-12-18 10:56:13 +10:00
2013-09-26 15:06:58 -07:00
2012-10-13 10:46:48 +01:00
2012-10-13 10:46:48 +01:00
2013-09-26 15:06:58 -07:00
2014-04-01 23:19:14 -04:00
2011-01-09 15:42:55 -08:00
2014-03-10 11:44:42 -04:00
2014-04-14 16:26:47 -04:00
2009-06-18 19:50:21 +08:00
2014-03-07 10:19:57 -05:00
2013-02-23 17:50:12 -08:00
2013-12-08 18:22:32 -08:00
2012-05-14 09:47:23 -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
2007-05-08 11:15:31 -07:00
2013-05-12 14:16:22 +02:00
2013-04-30 17:04:00 -07:00
2014-04-23 16:17:03 -04:00
2013-09-27 18:40:25 +01:00
2013-09-27 18:40:25 +01:00
2013-06-29 12:57:13 +04:00
2014-04-08 20:43:28 -04:00
2014-04-28 10:37:21 -04:00
2014-03-03 11:32:08 +01:00
2009-06-18 13:04:05 -07:00
2014-01-23 16:36:52 -08:00
2012-10-13 10:46:48 +01:00
2013-02-26 03:10:52 +11:00
2014-03-10 17:26:19 -07:00
2014-02-20 14:54:28 +01:00
2014-02-19 17:22:44 +01:00
2013-12-17 14:27:17 -05:00
2013-10-11 17:21:14 +11:00
2012-10-13 10:46:48 +01:00
2014-03-13 12:48:32 +01:00
2013-04-30 10:09:06 +02:00
2011-02-03 16:37:28 +01:00
2014-04-01 19:06:50 +02:00
2012-10-13 10:46:48 +01:00
2013-08-26 21:40:24 +02:00
2013-02-23 17:50:16 -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
2014-04-04 09:12:49 +02:00
2012-10-13 10:46:48 +01:00
2014-03-20 12:35:45 +01:00
2010-03-07 22:17:09 +01:00
2010-10-12 16:53:37 +02:00
2014-05-06 13:04:58 -07:00
2012-03-16 10:38:24 -04:00
2013-10-13 16:16:28 -07:00
2012-03-16 10:38:24 -04:00
2014-04-16 14:14:07 -07:00
2012-10-13 10:46:48 +01:00
2014-03-05 17:16:45 +01:00
2012-03-04 17:54:34 -05:00
2013-08-26 09:30:03 -07:00
2011-07-01 10:37:15 +02:00
2009-11-17 10:16:32 -05:00
2012-10-13 10:46:48 +01:00
2013-04-29 13:54:36 -04:00
2013-12-07 01:03:14 +01:00
2014-04-07 16:36:07 -07:00
2014-05-16 22:14:49 -04:00
2014-06-02 14:56:01 -07:00
2014-05-20 11:24:26 -04:00
2013-07-23 16:52:47 -07:00
2008-08-02 18:36:10 +01:00
2013-02-11 14:16:26 -05:00
2008-07-09 12:09:28 -04:00
2013-12-11 14:47:40 -05:00
2014-02-13 20:24:13 -08:00
2012-10-13 10:46:48 +01:00
2011-01-31 21:17:41 -08:00
2012-11-10 00:40:24 -08:00
2013-03-27 13:48:25 +01:00
2014-03-24 14:07:31 +00:00
2014-05-07 00:42:09 +02:00
2012-03-04 17:54:34 -05:00
2014-04-07 16:36:11 -07:00
2006-10-05 15:10:12 +01:00
2006-10-10 15:37:22 -07:00
2012-03-20 12:47:48 +01:00
2014-01-09 13:06:59 +01:00
2012-03-20 12:47:47 +01:00
2014-03-04 17:51:06 +01:00
2012-12-09 00:20:28 -05:00
2013-03-15 12:23:09 -07:00
2014-01-27 21:02:39 -08:00
2014-04-17 12:30:40 -07:00
2013-06-17 16:38:57 -07:00
2014-04-17 12:23:07 -07:00
2014-01-19 19:53:18 -08:00
2014-04-28 12:20:00 +02:00
2013-06-06 10:23:58 +09:00
2010-10-07 14:08:55 +01:00
2007-09-16 21:13:58 -07:00
2012-10-13 10:46:48 +01:00
2009-12-11 15:18:07 -08:00
2013-07-01 08:12:41 -04:00
2013-08-09 10:49:00 +02:00
2010-12-09 20:17:07 -08:00
2014-01-16 00:08:12 +01:00
2013-05-13 09:45:01 -04:00
2012-10-13 10:46:48 +01:00
2008-04-29 08:06:29 -07:00
2012-04-12 18:35:58 -07:00
2012-10-13 10:46:48 +01:00
2013-10-03 18:47:54 +02:00
2013-11-13 12:09:07 +09:00
2014-04-06 09:38:07 -07:00
2012-10-13 10:46:48 +01:00
2014-06-03 08:11:18 -07:00
2014-03-06 16:30:46 +01:00
2013-09-25 17:17:01 +01:00
2012-10-13 10:46:48 +01:00
2014-02-19 14:58:17 +01:00
2014-01-25 08:55:09 +01:00
2011-01-13 17:32:47 -08:00
2011-01-24 14:45:11 +10:30
2013-04-30 17:04:06 -07:00
2014-04-03 16:21:04 -07:00
2013-09-11 15:58:52 -07:00
2013-05-16 07:55:07 -07:00
2014-01-21 16:19:45 -08:00
2013-04-30 17:04:02 -07:00
2013-07-25 12:35:39 +02:00
2012-10-13 10:46:48 +01:00
2011-09-16 19:20:20 -04:00
2011-11-17 12:20:19 +01:00
2013-07-03 16:07:43 -07:00
2010-03-15 12:47:59 +01:00
2013-04-01 11:04:50 -07:00
2014-04-07 16:36:14 -07:00
2011-07-22 14:39:48 +09:30
2014-04-18 15:56:03 -04:00
2012-10-06 02:48:09 +09:00
2013-01-06 01:11:25 -08:00
2006-06-09 21:53:55 +02:00
2014-05-05 16:07:37 -07:00
2012-10-13 10:46:48 +01:00
2014-03-31 14:13:25 -07:00
2013-12-20 12:25:45 -08:00
2011-12-12 22:06:55 -08:00
2012-10-13 10:46:48 +01:00
2013-09-11 15:59:45 -07:00
2013-02-20 19:36:01 +01:00
2006-06-05 12:29:17 -07:00
2013-02-02 00:01:15 +01:00
2012-03-16 10:38:24 -04:00
2013-12-11 15:52:34 +01:00
2014-03-18 19:19:41 -04:00
2013-08-06 14:10:45 +00:00
2014-02-28 15:36:37 -08:00
2014-04-16 15:09:51 -04:00
2013-12-26 13:29:35 -05:00
2014-03-12 00:16:56 +00:00
2014-04-07 16:36:13 -07:00
2014-04-07 16:35:54 -07:00
2012-06-25 11:53:47 +02:00
2009-01-09 16:54:41 -08:00
2014-01-21 16:19:49 -08:00
2012-10-13 10:46:48 +01:00
2014-04-02 20:53:45 -07:00
2009-05-25 00:55:30 -07:00
2012-09-13 14:58:54 -04:00
2012-05-16 15:23:46 -04:00
2014-04-13 13:28:13 -07:00
2014-05-06 14:02:53 -04:00
2014-01-21 16:19:44 -08:00
2014-04-07 16:35:55 -07:00
2014-04-03 16:21:01 -07:00
2014-04-09 13:44:35 -07:00
2014-04-06 09:38:07 -07:00
2012-09-28 14:31:03 +09:30
2014-03-24 12:21:00 +10:30
2014-04-01 23:19:08 -04:00
2009-04-01 07:38:54 -04:00
2012-10-08 13:50:21 +10:30
2014-03-04 13:51:06 -05:00
2013-01-21 13:55:14 -05:00
2013-01-21 13:55:14 -05:00
2014-01-27 21:02:39 -08:00
2013-12-13 08:44:30 -07:00
2013-06-26 12:10:56 +02:00
2014-03-11 12:14:56 +01:00
2011-05-09 11:40:38 +10:00
2013-11-09 00:16:19 -05:00
2014-04-01 23:19:10 -04:00
2014-05-14 00:37:34 -04:00
2014-05-16 22:29:05 -04:00
2014-06-02 16:34:09 -07:00
2014-03-29 17:58:37 -04:00
2012-10-13 10:46:48 +01:00
2013-12-05 13:05:48 -08:00
2012-10-13 10:46:48 +01:00
2014-01-25 03:14:05 -05:00
2013-06-20 15:41:18 +02:00
2012-12-11 17:22:27 -08:00
2013-07-25 21:54:01 +02:00
2013-04-29 15:54:36 -07:00
2013-08-27 13:52:52 -04:00
2014-04-07 10:59:19 -07:00
2013-05-04 14:47:26 -04:00
2009-12-15 08:53:12 -08:00
2014-04-11 16:45:59 -07:00
2009-01-08 16:25:18 +11:00
2014-04-24 21:40:22 +01:00
2014-05-07 17:16:35 -04:00
2014-05-15 15:19:12 +01:00
2014-05-21 11:40:49 +05:30
2013-06-11 11:41:51 -05:00
2012-10-13 10:46:48 +01:00
2013-11-13 12:09:04 +09:00
2013-03-29 17:54:33 -07:00
2013-09-03 22:52:48 -04:00
2013-10-30 12:02:58 +08:00
2012-01-10 16:30:42 -08:00
2013-10-09 14:47:45 +02:00
2014-02-06 13:48:51 -08:00
2013-02-23 17:50:15 -08:00
2013-07-03 16:07:32 -07:00
2014-04-03 16:21:04 -07: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
2014-03-19 15:11:19 -06:00
2013-12-05 12:59:23 -05:00
2014-06-04 12:12:29 -04:00
2012-12-17 17:15:18 -08:00
2014-04-07 16:36:14 -07:00
2014-05-19 21:44:56 +09:00
2012-10-13 10:46:48 +01:00
2008-09-14 17:24:26 +02:00
2012-10-13 10:46:48 +01:00
2014-04-16 14:36:12 -04:00
2013-07-03 16:08:03 -07:00
2009-02-14 22:58:35 -08:00
2014-04-12 14:49:50 -07:00
2012-10-13 10:46:48 +01:00
2014-03-20 13:25:54 +01:00
2012-10-13 10:46:48 +01:00
2011-06-10 14:55:36 +02:00
2011-12-08 10:22:07 -08:00
2012-10-13 10:46:48 +01:00
2011-05-10 10:16:21 +02:00
2013-10-17 00:36:06 +02:00
2012-10-13 10:46:48 +01:00
2011-11-02 16:07:02 -07:00
2014-01-23 14:48:35 +01:00
2011-03-31 11:26:23 -03:00
2014-04-03 16:21:08 -07:00
2013-04-09 14:13:35 -04:00
2013-11-26 20:55:33 -08:00
2011-07-01 15:39:38 -07:00
2013-07-09 10:33:26 -07:00
2014-02-10 11:16:39 +01:00
2013-08-20 16:53:58 -05:00
2014-04-03 16:20:54 -07:00
2014-04-03 16:21:01 -07:00
2014-01-23 16:36:58 -08:00
2012-10-05 09:26:01 -07:00
2012-05-17 15:18:37 +02:00
2013-11-13 12:09:33 +09:00
2014-03-31 11:05:24 -07:00
2014-03-20 17:12:25 -07:00
2014-03-20 17:12:25 -07:00
2014-04-16 08:56:09 +02:00
2014-04-01 16:13:21 -07:00
2012-03-24 10:08:39 -07:00
2013-04-30 17:04:09 -07:00
2013-04-07 14:06:17 +03:00
2014-04-07 16:35:54 -07:00
2013-07-12 12:07:46 +02:00
2014-01-16 12:00:56 -08:00
2014-03-09 19:53:45 +01:00
2012-10-13 10:46:48 +01:00
2011-10-03 15:19:19 -04:00
2012-10-13 10:46:48 +01:00
2014-04-07 16:36:07 -07:00
2014-03-20 22:09:09 -07:00
2012-07-04 11:51:59 +03:00
2007-05-02 11:56:33 +01:00
2012-10-06 03:05:01 +09:00
2010-05-11 10:09:47 +02:00
2013-04-29 18:28:22 -07:00
2014-01-13 13:41:50 +01:00
2014-05-15 15:30:33 -04:00
2010-03-13 01:21:21 +01:00
2011-09-13 11:11:59 +02:00
2014-01-28 13:20:09 -08:00
2009-09-15 02:44:17 -07:00
2012-10-13 10:46:48 +01:00
2014-05-23 10:04:04 -07:00
2014-01-19 19:55:50 -08:00
2013-06-17 16:38:57 -07:00
2012-10-13 10:46:48 +01:00
2014-03-31 00:45:09 -04:00
2012-10-13 10:46:48 +01:00
2014-04-01 17:08:43 +02:00
2010-10-21 10:12:48 +11:00
2013-07-09 10:33:28 -07:00
2012-10-13 10:46:48 +01:00
2014-04-19 22:42:19 -07:00
2013-10-17 16:41:50 -07:00
2013-08-27 14:25:09 +05:30
2014-01-27 21:02:39 -08:00
2013-09-10 18:56:32 -04:00
2012-10-13 10:46:48 +01:00
2014-04-02 20:53:45 -07:00
2014-04-13 13:28:13 -07:00
2014-05-06 13:04:59 -07:00
2011-03-22 17:16:34 +09:00
2011-03-31 11:26:23 -03:00
2014-02-24 14:47:15 -08:00
2012-12-07 12:48:00 -05:00
2014-04-24 13:44:53 -04:00
2014-01-22 21:57:05 -08: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
2012-10-13 10:46:48 +01:00
2013-12-16 11:36:13 +01:00
2014-01-27 21:02:40 -08:00
2014-02-15 11:55:28 -08:00
2014-02-17 15:01:37 -08:00
2014-03-19 08:58:30 +00:00
2011-06-14 22:48:51 -04:00
2012-10-13 10:46:48 +01:00
2010-08-09 16:48:44 -04:00
2012-10-13 10:46:48 +01:00
2014-01-21 17:05:27 -08:00
2012-12-17 17:15:17 -08:00
2009-04-10 15:48:52 +02:00
2013-04-30 15:50:12 +05:30
2013-06-21 00:35:12 +02:00
2011-03-22 15:47:22 +09:00
2012-10-13 10:46:48 +01:00
2014-04-03 16:21:01 -07:00
2012-05-15 11:33:58 -04:00
2013-11-15 09:32:14 +09:00
2013-04-17 12:35:32 -07:00
2012-10-13 10:46:48 +01:00
2014-04-12 13:06:10 -07:00
2012-11-18 20:30:55 -05:00
2014-04-16 11:56:33 -07:00
2013-06-12 16:29:44 -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
2014-02-26 17:08:40 -05:00
2013-01-28 11:19:06 -07:00
2011-10-31 19:32:32 -04:00
2013-12-04 09:31:34 -04:00
2010-05-27 09:12:51 -07:00
2014-01-15 23:05:31 +01:00
2012-08-21 16:28:31 +02:00
2011-05-23 13:59:53 +02:00
2013-04-25 21:01:45 +08:00
2013-10-10 12:31:43 -07:00
2014-04-07 16:36:13 -07:00
2014-01-06 14:37:25 +01:00
2012-07-22 23:57:55 +04:00
2014-04-09 10:12:11 -04:00
2014-05-03 18:14:28 -04:00
2014-01-13 13:47:37 +01:00
2013-03-20 12:10:38 -04:00
2013-11-26 20:55:33 -08:00
2014-04-01 23:19:21 -04:00
2014-03-18 16:39:34 -04:00
2014-04-01 17:06:09 -07:00
2011-06-15 20:04:00 -07:00
2012-10-13 10:46:48 +01:00
2011-10-31 19:32:31 -04:00
2013-07-09 10:33:29 -07:00
2014-02-26 11:38:39 -07:00
2012-10-13 10:46:48 +01:00
2013-10-29 11:28:17 +10:30
2011-10-31 19:32:32 -04:00
2014-04-07 16:35:53 -07:00
2013-07-09 10:33:21 -07:00
2013-12-03 11:15:58 -08:00
2014-04-07 16:36:14 -07:00
2013-03-20 14:06:05 +10:30
2012-10-13 10:46:48 +01:00
2013-12-02 20:43:15 +01:00
2014-01-23 16:37:04 -08:00
2014-04-18 16:40:08 -07:00
2013-01-31 19:56:35 -05:00
2013-03-01 12:48:36 +01:00
2012-10-13 10:46:48 +01:00
2011-07-04 19:31:38 -07:00
2014-04-07 16:35:57 -07:00
2013-07-25 19:30:03 +10:00
2011-01-13 08:03:24 -08:00
2013-10-17 15:53:09 -04:00
2013-07-10 18:11:34 -07:00
2011-03-22 17:44:17 -07:00
2014-01-30 16:56:55 -08:00
2006-06-22 15:05:58 -07:00