KAMEZAWA Hiroyuki
89c06bd52f
memcg: use new logic for page stat accounting
...
Now, page-stat-per-memcg is recorded into per page_cgroup flag by
duplicating page's status into the flag. The reason is that memcg has a
feature to move a page from a group to another group and we have race
between "move" and "page stat accounting",
Under current logic, assume CPU-A and CPU-B. CPU-A does "move" and CPU-B
does "page stat accounting".
When CPU-A goes 1st,
CPU-A CPU-B
update "struct page" info.
move_lock_mem_cgroup(memcg)
see pc->flags
copy page stat to new group
overwrite pc->mem_cgroup.
move_unlock_mem_cgroup(memcg)
move_lock_mem_cgroup(mem)
set pc->flags
update page stat accounting
move_unlock_mem_cgroup(mem)
stat accounting is guarded by move_lock_mem_cgroup() and "move" logic
(CPU-A) doesn't see changes in "struct page" information.
But it's costly to have the same information both in 'struct page' and
'struct page_cgroup'. And, there is a potential problem.
For example, assume we have PG_dirty accounting in memcg.
PG_..is a flag for struct page.
PCG_ is a flag for struct page_cgroup.
(This is just an example. The same problem can be found in any
kind of page stat accounting.)
CPU-A CPU-B
TestSet PG_dirty
(delay) TestClear PG_dirty
if (TestClear(PCG_dirty))
memcg->nr_dirty--
if (TestSet(PCG_dirty))
memcg->nr_dirty++
Here, memcg->nr_dirty = +1, this is wrong. This race was reported by Greg
Thelen <gthelen@google.com >. Now, only FILE_MAPPED is supported but
fortunately, it's serialized by page table lock and this is not real bug,
_now_,
If this potential problem is caused by having duplicated information in
struct page and struct page_cgroup, we may be able to fix this by using
original 'struct page' information. But we'll have a problem in "move
account"
Assume we use only PG_dirty.
CPU-A CPU-B
TestSet PG_dirty
(delay) move_lock_mem_cgroup()
if (PageDirty(page))
new_memcg->nr_dirty++
pc->mem_cgroup = new_memcg;
move_unlock_mem_cgroup()
move_lock_mem_cgroup()
memcg = pc->mem_cgroup
new_memcg->nr_dirty++
accounting information may be double-counted. This was original reason to
have PCG_xxx flags but it seems PCG_xxx has another problem.
I think we need a bigger lock as
move_lock_mem_cgroup(page)
TestSetPageDirty(page)
update page stats (without any checks)
move_unlock_mem_cgroup(page)
This fixes both of problems and we don't have to duplicate page flag into
page_cgroup. Please note: move_lock_mem_cgroup() is held only when there
are possibility of "account move" under the system. So, in most path,
status update will go without atomic locks.
This patch introduces mem_cgroup_begin_update_page_stat() and
mem_cgroup_end_update_page_stat() both should be called at modifying
'struct page' information if memcg takes care of it. as
mem_cgroup_begin_update_page_stat()
modify page information
mem_cgroup_update_page_stat()
=> never check any 'struct page' info, just update counters.
mem_cgroup_end_update_page_stat().
This patch is slow because we need to call begin_update_page_stat()/
end_update_page_stat() regardless of accounted will be changed or not. A
following patch adds an easy optimization and reduces the cost.
[akpm@linux-foundation.org: s/lock/locked/]
[hughd@google.com: fix deadlock by avoiding stat lock when anon]
Signed-off-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Greg Thelen <gthelen@google.com>
Acked-by: Johannes Weiner <hannes@cmpxchg.org>
Cc: Michal Hocko <mhocko@suse.cz>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Ying Han <yinghan@google.com>
Signed-off-by: Hugh Dickins <hughd@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2012-03-21 17:55:01 -07:00
..
2012-03-21 10:32:00 -07:00
2012-03-06 15:16:18 -05:00
2011-08-26 12:02:50 -04:00
2012-02-03 01:21:25 +01:00
2011-11-11 09:50:19 -08:00
2012-01-04 17:30:20 -02:00
2012-03-11 20:09:26 +00:00
2011-12-30 15:25:52 -08:00
2012-01-13 09:32:20 +10:30
2012-03-18 21:38:20 +00:00
2012-03-21 10:33:42 -07:00
2012-02-13 20:39:05 -05:00
2012-02-04 07:17:47 -08:00
2012-03-07 17:41:28 +01:00
2011-08-26 12:02:50 -04:00
2012-02-21 13:29:06 +01:00
2012-03-07 17:40:56 +01:00
2012-03-07 17:40:49 +01:00
2011-09-13 22:44:10 -04:00
2012-01-03 09:10:09 +01:00
2012-03-20 21:04:47 -07:00
2012-01-06 05:22:21 +04:00
2011-12-23 10:17:51 +11:00
2012-03-18 21:39:19 +00:00
2011-09-11 09:17:53 +08:00
2012-03-15 03:41:01 -06:00
2012-03-05 15:20:49 -05:00
2012-01-14 12:26:41 -08:00
2011-07-14 14:45:59 -07:00
2012-03-15 12:42:07 -07:00
2011-10-31 19:32:32 -04:00
2011-12-13 15:07:49 +00:00
2012-01-17 04:35:20 -05:00
2012-01-18 15:51:48 -08:00
2011-07-22 08:25:37 -07:00
2012-01-08 19:14:59 -05:00
2011-11-02 16:07:03 -07:00
2011-08-10 14:55:29 -07:00
2012-02-09 09:04:23 -08:00
2011-12-15 11:15:39 +01:00
2011-07-20 20:47:43 -04:00
2011-12-13 18:46:56 -05:00
2011-08-26 12:02:50 -04:00
2011-06-22 16:09:57 -04:00
2011-11-26 16:40:30 -05:00
2011-10-26 15:43:26 -04:00
2011-10-26 15:43:25 -04:00
2011-07-26 16:49:47 -07:00
2012-01-17 16:17:03 -05:00
2011-08-26 12:02:50 -04:00
2011-10-31 00:33:36 +08:00
2011-09-14 18:09:38 -07:00
2012-02-06 15:15:20 -08:00
2012-03-20 21:48:21 +08:00
2011-07-26 16:49:47 -07:00
2011-08-03 11:30:42 -04:00
2012-02-18 15:24:05 -08:00
2011-10-24 16:11:30 +02:00
2012-02-07 07:51:30 +01:00
2011-10-31 17:30:54 -07:00
2011-08-09 01:33:04 -07:00
2011-07-14 11:47:49 -07:00
2011-07-31 22:05:09 +02:00
2011-07-26 16:49:47 -07:00
2011-10-17 19:22:46 -04:00
2012-01-14 18:36:33 -08:00
2012-02-08 20:03:14 +01:00
2011-11-22 15:22:23 -05:00
2012-03-21 17:55:01 -07:00
2011-12-28 21:25:35 +08:00
2011-10-13 14:36:58 +01:00
2011-10-03 09:34:16 +02:00
2011-09-08 11:10:56 +02:00
2012-02-01 18:37:39 -08:00
2011-09-28 13:41:50 -04:00
2012-03-21 17:54:56 -07:00
2012-02-26 09:44:55 -08:00
2012-01-10 16:30:42 -08:00
2011-12-21 07:14:34 -05:00
2012-02-28 16:02:54 +01:00
2012-01-03 22:54:57 -05:00
2012-02-02 15:30:47 -08:00
2012-01-13 09:32:20 +10:30
2011-10-29 21:20:22 +02:00
2011-09-23 12:05:29 +05:30
2012-01-26 16:49:08 -08:00
2011-06-28 13:54:26 -07:00
2012-01-18 15:51:48 -08:00
2011-07-26 16:49:44 -07:00
2012-03-21 17:54:59 -07:00
2012-01-12 20:13:11 -08:00
2012-01-05 18:52:59 -05:00
2011-11-06 19:44:47 -08:00
2011-08-06 22:12:37 -07:00
2011-10-21 14:24:07 +02:00
2011-07-06 14:44:42 -07:00
2011-07-25 20:57:16 -07:00
2011-12-13 09:26:45 +00:00
2012-03-04 15:51:42 -08:00
2011-07-05 23:42:17 -07:00
2012-03-03 09:02:52 -07:00
2011-07-26 16:49:47 -07:00
2012-01-08 12:19:57 -08:00
2011-11-23 18:49:22 +01:00
2012-03-17 21:51:34 +01:00
2011-10-31 19:32:26 -04:00
2011-10-31 20:19:04 +00:00
2012-03-20 11:26:30 -07:00
2012-02-20 19:46:36 +11:00
2011-06-10 14:55:36 +02:00
2012-01-04 08:56:31 -06:00
2011-10-31 20:19:04 +00:00
2011-10-31 20:18:58 +00:00
2011-10-31 20:21:24 +00:00
2011-12-16 08:49:57 -08:00
2012-01-06 10:20:21 +00:00
2011-06-21 19:17:20 -07:00
2011-11-06 17:12:03 -08:00
2011-12-23 21:33:15 +05:30
2011-10-31 17:30:44 -07:00
2011-06-30 09:23:45 +02:00
2011-09-15 14:02:57 +02:00
2011-10-04 13:08:18 -07:00
2011-10-27 20:53:43 +05:30
2012-01-24 12:48:54 -08:00
2011-11-29 12:46:19 -05:00
2011-06-27 09:11:02 -04:00
2011-12-14 15:21:07 -08:00
2011-11-26 14:59:39 -05:00
2011-07-25 20:57:16 -07:00
2011-12-09 17:35:51 -08:00
2012-02-08 09:19:42 +01:00
2011-10-06 19:47:19 -04:00
2011-12-12 13:54:36 +00:00
2012-03-08 11:53:13 -08:00
2011-12-11 18:25:16 -05:00
2012-02-13 00:46:41 -05:00
2012-03-01 16:41:26 -05:00
2012-01-12 20:13:04 -08:00
2011-09-14 15:24:51 -04:00
2011-10-31 09:20:11 -04:00
2011-08-31 11:54:51 -04:00
2011-10-10 18:25:59 +02:00
2012-01-03 22:54:58 -05:00
2011-08-03 14:25:20 -10:00
2011-12-19 20:07:13 +00:00
2011-07-07 08:18:18 +02:00
2011-07-26 16:49:47 -07:00
2011-10-19 19:35:51 -04:00
2011-07-16 07:24:32 +02:00
2011-07-26 16:49:47 -07:00
2011-10-31 19:32:32 -04:00
2012-01-29 20:35:52 +01:00
2012-02-13 20:45:38 -05:00
2011-10-31 17:30:54 -07:00
2011-07-07 13:21:56 -07:00
2011-07-08 00:21:27 -05:00
2011-10-05 01:10:12 +00:00
2011-07-26 16:49:47 -07:00
2012-02-21 11:08:29 -05:00
2012-02-21 11:08:30 -05:00
2011-12-13 11:58:49 +01:00
2011-11-06 19:44:47 -08:00
2011-08-03 11:15:57 -04:00
2011-07-25 14:30:23 -04:00
2011-12-03 09:35:08 -08:00
2012-03-02 10:38:33 +01:00
2012-01-10 16:30:43 -08:00
2012-01-11 09:23:05 +00:00
2012-02-01 09:13:11 -08:00
2011-11-15 19:08:27 +08:00
2011-10-24 16:04:06 +02:00
2011-07-01 15:34:45 -07:00
2011-12-11 10:31:24 -08:00
2011-08-17 13:00:20 -07:00
2012-01-09 11:24:59 +01:00
2012-03-20 21:48:30 +08:00
2011-06-28 10:48:34 +02:00
2012-03-21 17:54:57 -07:00
2012-03-21 17:54:59 -07:00
2011-07-01 11:06:38 +02:00
2011-11-08 09:28:27 +02:00
2012-03-16 13:36:04 -07:00
2011-10-29 09:37:09 +01:00
2012-01-06 11:42:52 -08:00
2011-07-01 10:37:15 +02:00
2012-01-03 22:54:56 -05:00
2011-08-03 14:25:20 -10:00
2011-12-13 15:30:40 -05:00
2011-12-05 18:27:56 -05:00
2012-02-21 16:56:45 -05:00
2011-10-21 02:53:07 -04:00
2011-10-03 14:03:48 -04:00
2012-03-04 20:41:38 -05:00
2011-08-26 12:02:50 -04:00
2011-08-26 12:02:50 -04:00
2012-01-24 15:51:00 -05:00
2012-03-19 16:53:08 -04:00
2012-02-24 01:37:35 -08:00
2011-07-18 12:29:38 -04:00
2012-02-08 15:52:45 -05:00
2012-02-08 15:52:45 -05:00
2012-01-11 12:56:06 -08:00
2011-07-21 13:47:54 -07:00
2012-03-16 23:00:20 -07:00
2012-03-21 17:54:59 -07:00
2012-01-13 09:32:18 +10:30
2011-10-28 14:25:01 -07:00
2011-09-14 15:24:52 -04:00
2011-10-26 16:17:32 +02:00
2012-02-03 09:48:19 -05:00
2011-10-28 05:54:23 -07:00
2012-02-15 09:45:53 +01:00
2012-01-09 13:06:28 +01:00
2011-07-31 14:30:59 -10:00
2011-09-20 14:50:00 -04:00
2011-07-26 16:49:44 -07:00
2012-01-03 22:55:17 -05:00
2011-10-31 19:32:32 -04:00
2011-10-31 19:32:32 -04:00
2012-02-13 00:46:41 -05:00
2011-08-26 12:02:50 -04:00
2011-08-26 12:02:50 -04:00
2011-10-04 12:43:49 +02:00
2011-10-31 19:32:35 -04:00
2011-10-31 19:32:35 -04:00
2012-02-26 16:48:06 -07:00
2012-01-03 22:54:55 -05:00
2011-12-13 09:26:45 +00:00
2012-03-04 20:41:38 -05:00
2011-12-28 17:46:46 -05:00
2011-10-27 04:38:18 -04:00
2012-01-09 13:52:09 +01:00
2011-09-21 10:28:51 +02:00
2011-07-25 17:24:47 +02:00
2012-02-28 20:01:08 +01:00
2011-10-31 17:30:54 -07:00
2012-03-08 10:50:35 -08:00
2012-03-04 20:41:38 -05:00
2011-07-29 21:53:30 +02:00
2011-10-31 17:30:54 -07:00
2011-12-06 09:06:38 +01:00
2012-03-21 17:54:57 -07:00
2012-03-13 16:27:51 +01:00
2012-01-23 08:38:48 -08:00
2011-11-17 09:35:32 +11:00
2012-01-19 16:17:35 +11:00
2012-03-08 10:50:35 -08:00
2011-07-26 16:49:47 -07:00
2011-12-02 16:12:42 +00:00
2011-12-09 23:36:36 +01:00
2012-03-05 15:49:42 -08:00
2011-06-12 17:45:41 -04:00
2011-12-21 15:13:54 -08:00
2011-09-13 11:11:45 +02:00
2012-01-17 15:40:51 -08:00
2011-11-21 12:32:23 -08:00
2011-12-27 11:24:29 +02:00
2011-12-27 11:26:41 +02:00
2011-12-26 13:27:44 +02:00
2011-08-26 12:02:50 -04:00
2011-09-16 19:20:20 -04:00
2011-11-17 12:20:19 +01:00
2011-07-25 20:57:15 -07:00
2012-01-10 16:30:49 -08:00
2011-12-22 02:02:20 -05:00
2011-07-22 14:39:48 +09:30
2011-10-31 17:30:54 -07:00
2012-01-12 20:13:03 -08:00
2011-10-31 17:30:52 -07:00
2011-08-26 12:02:50 -04:00
2011-10-31 17:30:57 -07:00
2011-11-14 13:35:16 +01:00
2011-12-12 22:06:55 -08:00
2011-11-04 17:22:14 -07:00
2012-02-02 15:43:40 -08:00
2011-11-02 16:06:59 -07:00
2012-03-15 21:41:34 +01:00
2011-12-13 18:46:55 -05:00
2011-11-15 16:56:17 -05:00
2011-11-15 16:56:17 -05:00
2012-03-03 15:04:45 -05:00
2011-12-08 10:22:09 -08:00
2012-03-21 17:55:01 -07:00
2011-07-25 20:57:08 -07:00
2011-12-21 14:48:43 -08:00
2012-01-10 16:30:45 -08:00
2012-01-23 08:38:47 -08:00
2012-03-21 17:54:57 -07:00
2011-11-21 15:27:19 -05:00
2012-01-13 10:12:23 -08:00
2012-01-12 20:13:10 -08:00
2012-01-12 20:13:03 -08:00
2012-03-21 17:55:00 -07:00
2011-07-26 16:49:47 -07:00
2011-10-31 17:30:54 -07:00
2012-03-21 17:54:56 -07:00
2012-01-03 22:57:13 -05:00
2012-02-02 11:24:44 -08:00
2012-01-13 09:32:14 +10:30
2011-07-24 22:06:04 +09:30
2012-01-13 09:32:28 +10:30
2012-01-03 22:57:12 -05:00
2012-02-02 00:23:14 +11:00
2011-12-13 15:07:49 +00:00
2012-01-06 12:10:25 -08:00
2011-07-26 16:49:47 -07:00
2011-11-02 12:53:42 +01:00
2011-11-14 00:47:54 -05:00
2011-10-19 17:00:35 -04:00
2012-02-21 15:03:48 -05:00
2012-02-24 01:42:07 -08:00
2012-03-20 21:04:47 -07:00
2011-08-26 12:02:50 -04:00
2011-08-26 12:02:50 -04:00
2011-08-26 12:02:50 -04:00
2012-02-24 10:05:59 +01:00
2012-02-26 14:10:44 -05:00
2011-07-03 20:02:07 -07:00
2011-08-26 12:02:50 -04:00
2012-03-06 15:16:19 -05:00
2011-10-19 11:52:12 -04:00
2012-01-05 11:59:18 -05:00
2012-01-03 22:52:34 -05:00
2012-01-07 13:22:46 -05:00
2011-10-19 13:58:38 -07:00
2012-02-03 18:50:34 -05:00
2011-07-31 12:18:16 -04:00
2012-03-12 14:19:34 -04:00
2011-11-18 10:51:01 -08:00
2011-12-21 14:48:43 -08:00
2011-07-26 16:49:43 -07:00
2011-07-25 20:57:15 -07:00
2011-07-20 01:44:07 -04:00
2011-11-04 16:24:23 -04:00
2012-02-16 06:11:23 -07:00
2012-02-01 14:26:30 -07:00
2011-12-27 10:57:13 -06:00
2011-12-12 13:40:16 -07:00
2012-02-26 16:48:06 -07:00
2011-07-27 09:30:56 +08:00
2012-03-05 08:09:09 -07:00
2012-03-21 10:30:03 -07:00
2011-08-29 12:38:51 -03:00
2012-03-21 17:54:58 -07:00
2011-12-03 09:35:17 -08:00
2011-11-04 22:28:13 +01:00
2011-09-13 11:12:05 +02:00
2012-03-21 17:55:01 -07:00
2012-01-10 16:30:42 -08:00
2012-03-21 17:54:58 -07:00
2011-07-25 20:57:10 -07:00
2012-01-12 20:13:10 -08:00
2011-12-13 15:07:49 +00:00
2011-10-31 19:32:32 -04:00
2012-03-04 20:54:01 -05:00
2012-01-11 18:50:26 -08:00
2012-01-06 12:10:26 -08:00
2011-10-31 10:23:57 -07:00
2012-03-20 21:12:50 -07:00
2011-08-19 21:03:22 +04:00
2011-09-13 11:11:47 +02:00
2012-03-04 09:34:15 -08:00
2012-03-09 08:26:05 +01:00
2011-08-25 10:17:28 -07:00
2011-11-18 14:37:40 -05:00
2012-01-12 15:23:04 -08:00
2012-01-10 16:30:54 -08:00
2012-02-07 12:54:56 -05:00
2012-01-08 13:10:57 -08:00
2011-07-08 14:02:53 +02:00
2011-08-25 15:34:19 +02:00
2012-03-16 21:44:59 +01:00
2012-03-13 22:37:14 +01:00
2011-12-01 21:46:42 +01:00
2012-03-04 23:08:46 +01:00
2012-03-16 21:49:24 +01:00
2011-12-13 09:26:45 +00:00
2011-07-12 13:40:29 -04:00
2011-06-10 14:55:36 +02:00
2011-12-08 10:22:07 -08:00
2011-08-03 00:58:42 -04:00
2011-08-10 14:55:26 -07:00
2012-01-04 09:09:35 +04:00
2012-03-04 20:41:38 -05:00
2012-03-04 20:41:38 -05:00
2012-03-04 20:41:38 -05:00
2011-11-02 16:07:02 -07:00
2012-01-12 20:13:13 -08:00
2012-03-01 10:28:04 +01:00
2012-03-20 11:16:20 -07:00
2012-01-10 16:30:54 -08:00
2012-02-01 16:53:46 +08:00
2011-11-17 13:13:29 -08:00
2011-07-01 15:39:38 -07:00
2011-09-29 00:32:03 -04:00
2012-01-17 16:41:31 -08:00
2011-08-25 16:25:34 -07:00
2012-01-12 13:09:09 +01:00
2011-10-31 17:30:54 -07:00
2012-01-12 20:13:12 -08:00
2012-01-03 22:55:07 -05:00
2011-07-26 16:49:46 -07:00
2011-10-28 05:29:07 -07:00
2011-09-13 11:11:54 +02:00
2011-07-20 14:10:20 -07:00
2012-02-21 09:06:13 -08:00
2012-02-21 09:03:41 -08:00
2012-02-21 09:06:08 -08:00
2011-07-25 20:57:14 -07:00
2011-12-13 00:12:48 +08:00
2012-03-02 11:38:15 -08:00
2011-07-25 14:30:23 -04:00
2012-01-06 23:20:13 -05:00
2012-01-06 23:20:13 -05:00
2011-07-25 14:30:23 -04:00
2012-01-03 22:54:56 -05:00
2012-01-22 15:08:46 -05:00
2011-10-03 15:19:19 -04:00
2011-08-30 12:27:45 -04:00
2011-11-02 16:07:01 -07:00
2011-08-25 16:25:34 -07:00
2012-03-21 17:54:57 -07:00
2011-08-26 12:02:50 -04:00
2011-07-26 14:50:01 -07:00
2011-07-08 14:02:53 +02:00
2012-02-21 16:56:45 -05:00
2011-09-13 11:11:59 +02:00
2011-09-13 11:11:59 +02:00
2012-01-06 06:13:35 +04:00
2012-03-21 17:54:59 -07:00
2011-07-18 11:06:03 -07:00
2012-02-28 16:01:55 +01:00
2011-11-02 16:07:01 -07:00
2011-09-13 11:11:57 +02:00
2012-01-03 22:52:40 -05:00
2011-06-11 13:17:28 -07:00
2011-12-09 19:14:13 -08:00
2012-03-09 12:47:56 -08:00
2011-09-22 15:50:38 -07:00
2011-12-02 20:09:48 +09:00
2012-03-08 11:38:50 -08:00
2011-10-31 19:32:32 -04:00
2011-12-09 18:01:05 +09:00
2012-02-01 22:23:53 +05:30
2012-02-16 17:08:09 -05:00
2011-12-25 23:39:11 +01:00
2012-01-09 09:33:57 +09:00
2011-07-30 08:44:19 -10:00
2012-01-23 08:38:48 -08:00
2011-12-09 07:50:27 -08:00
2012-01-10 16:30:54 -08:00
2012-02-24 11:42:50 -08:00
2011-11-18 12:25:22 +05:30
2012-03-19 17:37:35 -04:00
2012-01-09 14:19:33 -08:00
2011-07-07 21:04:12 +03:00
2011-06-16 19:40:20 +03:00
2011-09-27 23:03:30 +03:00
2011-06-17 10:17:12 +02:00
2012-01-03 20:23:18 -05:00
2012-03-19 16:53:08 -04:00
2011-12-30 16:42:19 -05:00
2012-03-11 19:11:22 -07:00
2011-07-26 16:49:47 -07:00
2011-12-13 09:26:45 +00:00
2011-12-13 15:07:49 +00:00
2011-07-26 16:49:47 -07:00
2011-07-25 20:57:11 -07:00
2012-02-21 09:06:09 -08:00
2011-06-14 22:48:51 -04:00
2012-02-24 10:05:59 +01:00
2011-07-21 15:29:16 -07:00
2011-10-31 19:32:28 -04:00
2011-10-31 17:30:47 -07:00
2011-08-16 00:16:49 -07:00
2012-02-10 10:44:35 -08:00
2012-02-17 23:36:23 +01:00
2012-03-21 17:54:58 -07:00
2011-08-03 14:25:22 -10:00
2011-12-06 10:38:03 +00:00
2012-02-10 11:42:25 -08:00
2012-02-21 17:24:20 -08:00
2012-01-03 22:55:12 -05:00
2012-01-03 22:54:56 -05:00
2012-03-01 17:57:40 -05:00
2011-10-31 19:32:32 -04:00
2012-01-23 03:15:25 -05:00
2011-08-22 14:13:32 -07:00
2011-12-11 10:31:57 -08:00
2012-01-26 19:44:23 -08:00
2011-08-26 12:02:50 -04:00
2011-09-20 15:53:21 +10:00
2011-09-19 11:35:58 -04:00
2011-10-31 17:30:54 -07:00
2011-06-27 20:30:08 +02:00
2012-02-24 10:05:59 +01:00
2012-03-08 11:38:51 -08:00
2012-02-02 14:55:45 -08:00
2012-01-08 13:21:22 -08:00
2012-01-04 22:19:55 -08:00
2011-10-12 21:13:11 -07:00
2011-10-31 19:32:32 -04:00
2011-08-26 12:02:50 -04:00
2011-12-30 16:46:02 -05:00
2012-03-13 14:24:07 -07:00
2011-06-15 20:04:00 -07:00
2011-11-02 16:07:02 -07:00
2011-10-31 19:32:31 -04:00
2011-10-31 19:32:23 -04:00
2012-01-15 12:49:56 -08:00
2011-12-02 13:49:21 -05:00
2011-11-24 13:04:47 +10:30
2011-06-11 15:57:47 -07:00
2012-01-12 15:44:42 +10:30
2012-01-12 15:44:44 +10:30
2011-10-31 19:32:32 -04:00
2011-12-05 23:27:59 +00:00
2011-07-26 16:49:47 -07:00
2012-03-08 10:50:35 -08:00
2011-07-25 20:57:15 -07:00
2012-03-01 10:28:04 +01:00
2011-12-02 14:57:31 +01:00
2012-01-06 15:22:04 +01:00
2011-10-11 16:01:09 +03:00
2011-07-04 19:31:38 -07:00
2012-03-02 10:51:00 +01:00
2012-03-07 16:08:46 +01:00
2011-08-26 12:02:50 -04:00
2011-09-14 15:24:51 -04:00
2011-11-11 16:55:54 +00:00
2011-06-10 14:55:36 +02:00