Linus Torvalds
a66d2c8f7e
Merge branch 'for-linus-2' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
...
Pull the big VFS changes from Al Viro:
"This one is *big* and changes quite a few things around VFS. What's in there:
- the first of two really major architecture changes - death to open
intents.
The former is finally there; it was very long in making, but with
Miklos getting through really hard and messy final push in
fs/namei.c, we finally have it. Unlike his variant, this one
doesn't introduce struct opendata; what we have instead is
->atomic_open() taking preallocated struct file * and passing
everything via its fields.
Instead of returning struct file *, it returns -E... on error, 0
on success and 1 in "deal with it yourself" case (e.g. symlink
found on server, etc.).
See comments before fs/namei.c:atomic_open(). That made a lot of
goodies finally possible and quite a few are in that pile:
->lookup(), ->d_revalidate() and ->create() do not get struct
nameidata * anymore; ->lookup() and ->d_revalidate() get lookup
flags instead, ->create() gets "do we want it exclusive" flag.
With the introduction of new helper (kern_path_locked()) we are rid
of all struct nameidata instances outside of fs/namei.c; it's still
visible in namei.h, but not for long. Come the next cycle,
declaration will move either to fs/internal.h or to fs/namei.c
itself. [me, miklos, hch]
- The second major change: behaviour of final fput(). Now we have
__fput() done without any locks held by caller *and* not from deep
in call stack.
That obviously lifts a lot of constraints on the locking in there.
Moreover, it's legal now to call fput() from atomic contexts (which
has immediately simplified life for aio.c). We also don't need
anti-recursion logics in __scm_destroy() anymore.
There is a price, though - the damn thing has become partially
asynchronous. For fput() from normal process we are guaranteed
that pending __fput() will be done before the caller returns to
userland, exits or gets stopped for ptrace.
For kernel threads and atomic contexts it's done via
schedule_work(), so theoretically we might need a way to make sure
it's finished; so far only one such place had been found, but there
might be more.
There's flush_delayed_fput() (do all pending __fput()) and there's
__fput_sync() (fput() analog doing __fput() immediately). I hope
we won't need them often; see warnings in fs/file_table.c for
details. [me, based on task_work series from Oleg merged last
cycle]
- sync series from Jan
- large part of "death to sync_supers()" work from Artem; the only
bits missing here are exofs and ext4 ones. As far as I understand,
those are going via the exofs and ext4 trees resp.; once they are
in, we can put ->write_super() to the rest, along with the thread
calling it.
- preparatory bits from unionmount series (from dhowells).
- assorted cleanups and fixes all over the place, as usual.
This is not the last pile for this cycle; there's at least jlayton's
ESTALE work and fsfreeze series (the latter - in dire need of fixes,
so I'm not sure it'll make the cut this cycle). I'll probably throw
symlink/hardlink restrictions stuff from Kees into the next pile, too.
Plus there's a lot of misc patches I hadn't thrown into that one -
it's large enough as it is..."
* 'for-linus-2' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs: (127 commits)
ext4: switch EXT4_IOC_RESIZE_FS to mnt_want_write_file()
btrfs: switch btrfs_ioctl_balance() to mnt_want_write_file()
switch dentry_open() to struct path, make it grab references itself
spufs: shift dget/mntget towards dentry_open()
zoran: don't bother with struct file * in zoran_map
ecryptfs: don't reinvent the wheels, please - use struct completion
don't expose I_NEW inodes via dentry->d_inode
tidy up namei.c a bit
unobfuscate follow_up() a bit
ext3: pass custom EOF to generic_file_llseek_size()
ext4: use core vfs llseek code for dir seeks
vfs: allow custom EOF in generic_file_llseek code
vfs: Avoid unnecessary WB_SYNC_NONE writeback during sys_sync and reorder sync passes
vfs: Remove unnecessary flushing of block devices
vfs: Make sys_sync writeout also block device inodes
vfs: Create function for iterating over block devices
vfs: Reorder operations during sys_sync
quota: Move quota syncing to ->sync_fs method
quota: Split dquot_quota_sync() to writeback and cache flushing part
vfs: Move noop_backing_dev_info check from sync into writeback
...
2012-07-23 12:27:27 -07:00
..
2012-05-25 09:31:59 -07:00
2012-05-24 11:54:29 -07:00
2011-08-26 12:02:50 -04:00
2012-02-03 01:21:25 +01:00
2012-07-17 19:35:59 -07:00
2012-05-07 15:39:35 -07:00
2012-05-20 10:06:08 -03:00
2012-04-20 09:22:02 -07:00
2012-05-12 13:32:17 +08:00
2012-04-23 14:23:32 +03:00
2012-05-24 10:34:29 -07:00
2012-05-14 13:34:31 -07:00
2012-05-10 22:39:43 -07:00
2012-04-11 17:55:06 -04:00
2012-07-22 16:36:08 -07:00
2012-05-31 18:18:16 -04:00
2012-07-22 15:25:52 -04:00
2012-06-01 16:55:42 -07:00
2012-06-07 14:53:01 +02:00
2011-08-26 12:02:50 -04:00
2012-02-21 13:29:06 +01:00
2012-05-08 20:25:42 +02:00
2012-05-09 12:53:47 +02:00
2012-05-15 17:30:30 -04:00
2012-05-31 18:18:11 -07:00
2012-05-12 19:57:34 -07:00
2012-05-23 14:15:09 -07:00
2012-05-05 20:28:11 -07:00
2012-05-22 13:54:18 +10:00
2012-07-22 19:32:00 +01:00
2012-05-29 16:22:33 -07:00
2012-06-11 12:25:50 +08:00
2012-05-16 12:45:22 -04:00
2012-05-31 20:29:58 -04:00
2011-07-14 14:45:59 -07:00
2012-06-13 13:11:39 -07:00
2011-10-31 19:32:32 -04:00
2012-03-16 10:38:24 -04:00
2011-12-13 15:07:49 +00:00
2012-01-17 04:35:20 -05:00
2012-03-30 16:45:39 -07:00
2011-07-22 08:25:37 -07:00
2012-01-08 19:14:59 -05:00
2012-02-20 12:48:48 -08:00
2012-07-05 01:33:59 -07:00
2012-04-20 14:56:36 -07:00
2012-02-09 09:04:23 -08:00
2012-03-01 16:14:48 +01:00
2011-07-20 20:47:43 -04:00
2012-05-29 16:22:29 -07:00
2011-06-06 22:55:11 -07: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
2012-03-24 10:41:37 -07:00
2011-10-26 15:43:26 -04:00
2012-03-01 13:38:49 +01:00
2011-10-26 15:43:25 -04:00
2012-05-15 20:14:35 -04:00
2012-03-07 17:06:08 +11:00
2012-03-16 10:38:24 -04:00
2012-04-14 11:13:20 +10:00
2011-08-26 12:02:50 -04:00
2011-10-31 00:33:36 +08:00
2012-05-19 12:17:35 -06:00
2012-03-20 21:29:46 -04:00
2012-04-01 12:55:00 -07:00
2012-03-04 17:54:34 -05:00
2011-08-03 11:30:42 -04:00
2012-03-23 16:58:34 -07:00
2012-03-06 21:27:24 +01:00
2012-06-15 08:46:23 +02:00
2011-10-31 17:30:54 -07:00
2011-08-09 01:33:04 -07:00
2012-07-11 16:04:49 -07:00
2011-05-19 16:55:27 +09:30
2011-07-31 22:05:09 +02:00
2011-07-26 16:49:47 -07:00
2012-05-29 16:22:20 -07:00
2012-03-16 10:38:24 -04:00
2011-10-17 19:22:46 -04:00
2012-07-17 21:37:27 +02:00
2012-03-24 10:41:37 -07:00
2011-11-22 15:22:23 -05:00
2012-04-11 09:16:48 -07:00
2012-01-23 16:06:37 -05:00
2012-05-08 14:13:25 -07:00
2012-05-15 12:02:39 -07:00
2012-05-11 17:13:00 +02:00
2012-05-02 09:30:32 +01:00
2011-10-03 09:34:16 +02:00
2012-05-25 01:44:51 +02:00
2012-02-01 18:37:39 -08:00
2011-09-28 13:41:50 -04:00
2012-03-28 18:30:03 +01:00
2012-06-03 20:05:57 -07:00
2012-05-31 17:49:32 -07:00
2012-01-10 16:30:42 -08:00
2012-06-18 09:47:00 -04: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-05-31 17:49:29 -07:00
2012-03-24 10:41:37 -07:00
2012-07-19 00:03:17 +02:00
2012-03-29 15:38:31 +10:30
2012-03-29 14:46:05 -07:00
2012-03-16 10:38:24 -04:00
2011-06-03 15:01:06 -04:00
2012-03-23 16:58:38 -07:00
2012-05-31 17:49:28 -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
2011-07-25 20:57:16 -07:00
2011-12-13 09:26:45 +00:00
2012-07-14 16:34:14 +04:00
2012-04-05 05:08:04 -04:00
2012-04-14 15:24:26 -04:00
2012-03-28 15:58:21 -07:00
2012-04-17 00:18:36 -04: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-07-18 18:15:46 -07:00
2012-02-20 19:46:36 +11:00
2011-06-10 14:55:36 +02:00
2011-05-23 10:47:06 -05:00
2012-05-02 14:15:27 -05:00
2011-05-29 13:03:09 +01: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-03-28 16:36:44 +02:00
2012-05-25 12:46:23 +05:30
2012-05-21 15:09:37 +02:00
2011-06-21 19:17:20 -07:00
2012-04-04 17:13:43 -07:00
2012-05-31 17:49:31 -07:00
2012-05-07 14:35:00 +02:00
2012-05-09 15:10:45 +02:00
2012-05-09 15:10:45 +02:00
2011-09-15 14:02:57 +02:00
2012-05-10 12:00:56 +02:00
2011-10-04 13:08:18 -07:00
2012-02-22 18:15:39 +05:30
2012-05-01 08:58:06 -04:00
2011-11-29 12:46:19 -05:00
2011-06-27 09:11:02 -04:00
2012-05-28 19:13:50 -03:00
2011-11-26 14:59:39 -05:00
2011-07-25 20:57:16 -07:00
2012-04-30 15:30:18 -07:00
2012-03-06 21:27:24 +01:00
2011-10-06 19:47:19 -04:00
2011-12-12 13:54:36 +00:00
2012-03-04 17:54:34 -05:00
2012-06-01 12:12:01 -04:00
2011-12-11 18:25:16 -05:00
2012-05-17 15:36:35 -04:00
2012-05-15 13:13:33 -04:00
2012-05-31 17:49:32 -07:00
2012-07-17 21:37:27 +02:00
2011-09-14 15:24:51 -04:00
2011-10-31 09:20:11 -04:00
2012-05-29 23:28:33 -04:00
2012-03-31 16:03:16 -04:00
2012-05-04 16:25:29 -07:00
2011-08-03 14:25:20 -10:00
2012-06-01 16:57:51 -07:00
2011-07-07 08:18:18 +02:00
2012-02-19 10:30:57 -08:00
2012-07-22 23:57:58 +04:00
2012-05-21 20:27:36 -07:00
2012-03-18 22:15:39 +01:00
2012-05-24 12:57:47 -07:00
2011-10-31 19:32:32 -04:00
2012-05-14 09:47:23 -03:00
2011-05-26 17:12:33 -07:00
2012-01-29 20:35:52 +01:00
2012-05-15 11:34:08 -04:00
2012-07-23 00:01:29 +04:00
2011-10-31 17:30:54 -07:00
2011-07-07 13:21:56 -07:00
2012-04-18 13:46:42 -07:00
2011-07-08 00:21:27 -05:00
2011-10-05 01:10:12 +00:00
2012-05-30 21:04:53 -04:00
2012-03-04 17:54:34 -05:00
2012-06-28 13:52:15 -04:00
2012-05-16 20:00:27 -04:00
2012-04-25 12:25:05 +02:00
2012-04-04 09:25:44 -07:00
2011-08-03 11:15:57 -04:00
2011-07-25 14:30:23 -04:00
2012-04-09 11:14:50 -07:00
2012-05-29 22:33:56 -04:00
2012-05-15 08:22:04 +02:00
2012-05-21 15:09:33 +02:00
2012-02-28 17:10:21 +00:00
2012-03-19 17:56:18 -07:00
2012-04-27 10:46:45 +08:00
2012-07-05 15:04:10 +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-05-22 11:32:31 +02:00
2012-04-30 10:39:17 +02:00
2012-03-24 10:08:39 -07:00
2012-07-11 23:34:39 +02:00
2012-05-29 16:22:21 -07:00
2011-05-26 09:20:31 -07:00
2012-05-25 12:48:26 -04:00
2011-07-01 11:06:38 +02:00
2011-05-25 14:15:12 +02:00
2012-03-16 10:38:24 -04:00
2012-03-16 10:38:24 -04:00
2012-03-16 10:38:24 -04:00
2012-05-22 16:02:13 -07:00
2012-03-26 21:47:19 +02:00
2012-03-26 21:47:19 +02:00
2012-03-26 21:47:19 +02:00
2012-05-12 14:28:18 +02:00
2012-06-04 16:49:43 +02:00
2012-05-12 14:28:15 +02:00
2011-10-29 09:37:09 +01:00
2012-05-12 14:28:14 +02:00
2012-03-26 21:47:19 +02:00
2012-05-30 10:55:34 +02:00
2012-05-17 19:06:13 -04:00
2012-03-04 17:54:34 -05:00
2011-07-01 10:37:15 +02:00
2012-03-28 15:58:21 -07:00
2011-08-03 14:25:20 -10:00
2012-04-16 14:19:29 -04:00
2012-05-22 17:13:11 -04:00
2012-03-27 22:45:26 -04:00
2011-12-05 18:27:56 -05:00
2012-04-15 13:06:05 -04:00
2012-04-15 13:06:05 -04:00
2011-10-03 14:03:48 -04:00
2012-03-04 20:41:38 -05:00
2012-04-28 22:21:51 -04:00
2012-05-01 09:30:55 -04:00
2012-04-21 16:26:33 -04:00
2012-03-24 10:08:39 -07:00
2012-02-24 01:37:35 -08:00
2011-07-18 12:29:38 -04:00
2012-05-17 15:49:51 -04: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-07-02 12:34:22 -07:00
2012-01-13 09:32:18 +10:30
2012-06-11 23:57:22 -07:00
2011-09-14 15:24:52 -04:00
2012-06-08 12:15:43 +02:00
2012-05-23 22:11:12 -04:00
2012-03-04 17:54:34 -05:00
2012-03-20 12:47:48 +01:00
2012-05-22 18:08:08 +02:00
2012-05-07 10:58:57 -06:00
2012-03-20 12:47:47 +01:00
2011-09-20 14:50:00 -04:00
2012-05-08 19:38:31 +02:00
2012-05-31 17:49:31 -07:00
2012-01-03 22:55:17 -05:00
2012-03-16 10:38:24 -04:00
2012-03-16 10:38:24 -04:00
2012-02-13 00:46:41 -05:00
2012-05-23 13:49:23 -04:00
2011-08-26 12:02:50 -04:00
2011-10-04 12:43:49 +02:00
2012-07-22 12:19:36 -07:00
2011-10-31 19:32:35 -04:00
2012-05-19 12:41:56 -06:00
2011-06-03 14:53:15 +02:00
2012-01-03 22:54:55 -05:00
2011-12-13 09:26:45 +00:00
2012-04-09 11:16:55 -07:00
2012-02-14 13:45:56 -02:00
2012-05-27 08:12:42 -04:00
2012-04-29 18:21:10 -04:00
2012-05-15 23:34:37 +02:00
2011-09-21 10:28:51 +02:00
2012-03-13 22:45:25 -04:00
2012-07-06 10:53:49 +02:00
2012-03-16 10:38:24 -04:00
2012-05-29 16:22:32 -07:00
2012-03-08 10:50:35 -08:00
2012-05-31 17:49:30 -07:00
2012-05-31 17:49:32 -07:00
2012-04-12 18:35:58 -07:00
2011-10-31 17:30:54 -07:00
2011-12-06 09:06:38 +01:00
2012-05-29 16:22:21 -07:00
2012-07-21 13:58:17 -07:00
2012-05-31 17:49:30 -07:00
2011-11-17 09:35:32 +11:00
2012-07-02 12:34:23 -07:00
2012-03-08 10:50:35 -08:00
2012-05-11 10:56:56 +01:00
2012-03-29 17:41:25 -05:00
2012-04-19 19:17:30 -07:00
2011-12-02 16:12:42 +00:00
2012-05-31 17:49:28 -07:00
2012-07-21 10:34:00 -07:00
2011-06-12 17:45:41 -04:00
2011-12-21 15:13:54 -08:00
2012-03-04 17:54:34 -05:00
2012-01-17 15:40:51 -08:00
2011-11-21 12:32:23 -08:00
2012-07-02 21:10:30 -03:00
2011-12-27 11:26:41 +02:00
2012-05-17 21:06:01 -03:00
2012-05-01 09:30:55 -04:00
2011-09-16 19:20:20 -04:00
2011-11-17 12:20:19 +01:00
2012-05-29 16:22:29 -07:00
2012-05-29 16:22:32 -07:00
2012-03-23 16:58:34 -07:00
2011-05-25 08:39:50 -07:00
2012-01-10 16:30:49 -08:00
2012-05-29 16:22:31 -07:00
2012-05-29 23:28:41 -04:00
2011-07-22 14:39:48 +09:30
2012-05-07 15:32:23 -04:00
2012-01-12 20:13:03 -08:00
2011-10-31 17:30:52 -07:00
2011-05-19 14:15:29 -07:00
2011-08-26 12:02:50 -04:00
2012-03-28 18:30:03 +01:00
2012-05-15 08:08:31 -07:00
2011-12-12 22:06:55 -08:00
2011-11-04 17:22:14 -07:00
2012-03-23 16:58:33 -07:00
2012-03-26 20:40:59 +04:00
2011-05-24 10:01:37 +02:00
2012-04-09 12:23:04 -04:00
2012-03-23 16:58:31 -07:00
2012-03-16 10:38:24 -04: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-05-07 22:58:09 -04:00
2012-03-03 15:04:45 -05:00
2012-05-09 13:58:06 -07:00
2012-07-11 16:04:50 -07:00
2012-05-29 16:22:28 -07:00
2012-03-04 17:54:34 -05:00
2011-12-21 14:48:43 -08:00
2012-05-29 16:22:20 -07:00
2012-05-22 15:20:28 -04: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-05-16 15:24:36 -04:00
2012-05-16 15:23:46 -04:00
2012-05-29 16:22:28 -07:00
2012-06-20 14:39:35 -07:00
2012-07-11 10:20:47 -07:00
2011-07-26 16:49:47 -07:00
2012-05-29 16:22:20 -07:00
2011-10-31 17:30:54 -07:00
2011-05-25 08:39:19 -07:00
2012-07-11 16:04:41 -07:00
2012-01-03 22:57:13 -05:00
2012-05-01 12:54:54 +02:00
2012-03-26 12:50:52 +10:30
2011-07-24 22:06:04 +09:30
2012-06-08 14:58:13 +09: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-05-31 17:49:27 -07:00
2012-01-06 12:10:25 -08:00
2012-03-27 08:26:34 +01:00
2011-07-26 16:49:47 -07:00
2012-05-08 16:33:56 -07:00
2011-05-09 11:40:38 +10:00
2012-07-14 16:35:40 +04:00
2012-04-15 13:06:04 -04:00
2011-10-19 17:00:35 -04:00
2012-05-29 22:33:55 -04:00
2012-02-24 01:42:07 -08:00
2012-05-30 16:34:27 -04:00
2012-04-24 00:16:24 -04: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-04-20 21:22:30 -04:00
2012-05-08 20:25:42 +02:00
2011-07-03 20:02:07 -07:00
2011-08-26 12:02:50 -04:00
2012-04-12 15:10:33 -04:00
2012-05-26 14:17:30 -04:00
2012-01-31 18:20:28 -05:00
2012-06-18 08:45:16 -04:00
2012-05-24 16:15:48 -04:00
2012-03-05 15:26:47 -05:00
2012-02-16 14:55:27 -05:00
2012-05-09 15:17:43 -04:00
2012-07-14 16:33:08 +04:00
2012-01-31 18:20:25 -05:00
2012-03-04 17:54:34 -05:00
2012-05-16 13:08:15 -04:00
2012-05-16 15:17:08 -04:00
2011-11-18 10:51:01 -08:00
2012-03-23 16:58:31 -07: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-03-24 10:41:37 -07:00
2011-12-27 10:57:13 -06:00
2012-05-18 16:48:36 -06:00
2012-05-12 14:28:17 +02:00
2012-04-17 16:37:22 -06:00
2012-05-07 22:58:09 -04:00
2012-03-15 23:28:19 +08:00
2011-07-27 09:30:56 +08:00
2012-05-21 14:31:48 +01:00
2012-03-05 08:09:09 -07:00
2012-04-18 15:07:53 -07:00
2012-05-02 01:14:40 +02:00
2011-08-29 12:38:51 -03:00
2012-02-23 09:39:23 +02:00
2012-05-29 16:22:24 -07:00
2011-12-03 09:35:17 -08:00
2012-03-16 10:38:24 -04:00
2011-09-13 11:12:05 +02:00
2012-03-14 17:25:56 +08:00
2012-03-21 17:55:01 -07:00
2012-01-10 16:30:42 -08:00
2012-03-24 10:08:39 -07:00
2012-05-21 15:09:33 +02:00
2012-05-29 16:22:18 -07:00
2012-01-12 20:13:10 -08:00
2012-03-28 18:30:03 +01:00
2012-06-20 14:39:36 -07:00
2011-12-13 15:07:49 +00:00
2011-10-31 19:32:32 -04:00
2012-07-22 16:07:45 -07:00
2012-02-23 12:05:21 -08:00
2012-01-06 12:10:26 -08:00
2011-10-31 10:23:57 -07:00
2012-07-10 09:52:05 -07:00
2011-08-19 21:03:22 +04:00
2011-09-13 11:11:47 +02:00
2012-05-14 14:15:32 -07:00
2012-06-18 12:13:21 +02:00
2011-08-25 10:17:28 -07:00
2011-11-18 14:37:40 -05:00
2012-05-16 00:59:12 -04:00
2012-05-15 14:59:28 -07:00
2011-05-26 17:12:37 -07:00
2012-04-29 13:12:42 -07:00
2012-05-12 15:53:42 -04: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-07-05 22:12:32 +02:00
2012-07-19 00:02:30 +02:00
2012-05-01 21:28:38 +02:00
2012-05-01 21:25:49 +02:00
2012-05-01 21:28:38 +02: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
2012-03-23 16:58:38 -07:00
2012-03-04 17:54:34 -05:00
2011-05-10 10:16:21 +02:00
2011-08-10 14:55:26 -07:00
2012-05-04 21:15:52 -07: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-07-08 00:25:48 +10:00
2012-03-01 10:28:04 +01:00
2012-05-07 17:03:27 -07:00
2012-05-15 14:59:28 -07:00
2012-02-01 16:53:46 +08:00
2012-06-13 16:52:40 -07: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-04-04 05:28:45 -04:00
2011-05-23 13:01:00 -07:00
2012-04-14 11:13:21 +10:00
2011-08-25 16:25:34 -07:00
2012-06-11 12:26:15 +08:00
2012-03-20 21:29:38 -04:00
2012-07-22 23:58:19 +04:00
2012-07-22 23:58:19 +04:00
2012-06-05 10:46:40 -07:00
2012-01-03 22:55:07 -05:00
2011-10-28 05:29:07 -07:00
2011-09-13 11:11:54 +02:00
2012-05-17 15:18:37 +02:00
2012-04-24 20:54:49 -07:00
2012-07-06 06:01:49 -07:00
2012-07-02 11:39:19 -07:00
2012-06-06 20:43:28 -07:00
2011-07-25 20:57:14 -07:00
2012-07-22 19:26:07 +01:00
2012-03-24 10:08:39 -07:00
2012-03-20 21:29:43 -04:00
2012-03-20 21:29:42 -04:00
2012-03-04 17:54:34 -05:00
2012-03-06 19:14:37 +02:00
2012-05-29 16:22:27 -07:00
2011-10-03 15:19:19 -04:00
2012-03-16 10:38:24 -04:00
2012-04-23 21:17:51 -04:00
2012-05-31 17:49:31 -07:00
2011-11-02 16:07:01 -07:00
2011-08-25 16:25:34 -07:00
2012-05-31 17:49:31 -07:00
2012-05-29 16:22:21 -07:00
2012-05-12 15:15:20 -04:00
2011-08-26 12:02:50 -04:00
2011-05-12 08:28:47 -07:00
2012-07-04 11:51:59 +03:00
2012-05-29 16:22:33 -07:00
2011-07-08 14:02:53 +02:00
2012-04-15 13:06:04 -04:00
2011-09-13 11:11:59 +02:00
2012-03-28 18:30:03 +01:00
2012-01-06 06:13:35 +04:00
2012-03-07 11:32:21 +00:00
2012-03-04 17:54:34 -05:00
2012-07-23 12:27:27 -07:00
2011-07-18 11:06:03 -07:00
2012-04-18 12:24:50 +10:00
2012-06-01 10:37:01 -04:00
2011-11-02 16:07:01 -07:00
2011-09-13 11:11:57 +02:00
2012-03-24 10:08:39 -07:00
2012-05-04 15:13:54 -07:00
2012-05-23 17:12:06 -07:00
2012-04-18 15:57:31 -07:00
2012-03-16 10:38:24 -04:00
2011-09-22 15:50:38 -07:00
2012-04-09 17:39:34 +09:00
2012-05-17 19:02:14 -04:00
2012-04-04 09:25:42 -07:00
2012-04-11 12:05:50 +09:00
2012-02-01 22:23:53 +05:30
2012-02-16 17:08:09 -05:00
2012-05-22 19:07:55 +09:00
2012-01-09 09:33:57 +09:00
2011-07-30 08:44:19 -10:00
2012-05-15 14:59:29 -07:00
2011-12-09 07:50:27 -08:00
2011-05-19 08:19:36 -07:00
2012-06-01 12:58:52 -04:00
2012-02-24 11:42:50 -08:00
2011-11-18 12:25:22 +05:30
2012-06-15 15:30:15 -07:00
2012-01-09 14:19:33 -08:00
2012-05-31 17:49:26 -07:00
2011-06-16 19:40:20 +03:00
2012-03-28 15:04:26 -07:00
2012-06-05 17:32:30 +02:00
2012-01-03 20:23:18 -05:00
2012-03-19 16:53:08 -04:00
2012-04-25 20:46:59 -04:00
2012-04-15 12:44:40 -04: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
2012-03-23 13:18:57 +01:00
2011-05-20 12:51:07 -07:00
2012-03-28 15:58:21 -07:00
2012-06-13 21:16:42 +02:00
2012-04-30 10:48:25 -07:00
2011-06-14 22:48:51 -04:00
2012-05-15 14:08:35 -07:00
2012-02-24 10:05:59 +01:00
2012-04-14 07:47:49 -07:00
2012-05-14 18:53:19 -04:00
2012-04-20 23:27:08 +02:00
2012-03-28 18:30:03 +01: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-07-01 13:31:23 +02:00
2012-06-04 12:28:45 -07:00
2012-05-15 11:33:58 -04:00
2012-06-15 21:48:14 -07:00
2011-12-06 10:38:03 +00:00
2012-02-10 11:42:25 -08:00
2012-05-31 17:49:32 -07:00
2012-01-24 16:40:30 -08:00
2012-05-14 12:19:56 -07:00
2012-02-20 12:48:47 -08:00
2012-07-22 23:57:56 +04:00
2012-03-13 14:06:33 -04:00
2012-06-09 21:27:18 -07:00
2011-10-31 19:32:32 -04:00
2012-01-23 03:15:25 -05:00
2012-06-01 12:58:50 -04:00
2012-05-09 14:19:13 -07:00
2012-06-11 20:07:17 +02:00
2012-05-21 16:16:58 -07:00
2011-05-23 13:59:53 +02:00
2012-03-22 19:43:43 -07:00
2011-08-26 12:02:50 -04:00
2011-05-10 16:03:56 -04:00
2012-05-22 18:27:32 -07:00
2011-09-19 11:35:58 -04:00
2012-03-20 21:29:40 -04:00
2012-07-22 23:57:55 +04:00
2012-07-06 10:53:49 +02:00
2012-03-04 17:54:34 -05:00
2012-03-08 11:38:51 -08:00
2012-05-10 11:24:03 -07:00
2012-06-02 15:21:43 -07:00
2012-07-22 23:57:56 +04:00
2011-05-25 19:56:23 -04:00
2012-01-04 22:19:55 -08:00
2012-04-26 02:01:39 -07: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-04-14 13:25:48 +02:00
2011-06-07 09:05:42 -07:00
2012-05-21 09:00:03 -07:00
2012-05-03 03:28:39 -07:00
2011-06-15 20:04:00 -07:00
2011-11-02 16:07:02 -07:00
2012-05-09 13:57:30 -07:00
2011-05-20 09:30:46 -03:00
2011-10-31 19:32:31 -04:00
2012-05-20 08:27:44 -03:00
2011-05-20 11:28:49 -03:00
2012-04-10 15:00:41 -03:00
2011-10-31 19:32:23 -04:00
2012-06-21 09:32:16 +01:00
2012-05-03 09:30:55 +01:00
2012-06-11 15:47:21 -03:00
2011-05-30 11:14:14 +09:30
2011-05-30 11:14:14 +09:30
2011-05-30 11:14:14 +09:30
2012-05-22 12:16:16 +09:30
2011-05-30 11:14:14 +09:30
2012-03-27 16:30:09 -07:00
2011-11-24 13:04:47 +10:30
2012-04-15 03:23:31 -04:00
2011-05-30 11:14:14 +09:30
2012-01-12 15:44:42 +10:30
2012-02-19 09:50:20 -06:00
2012-03-31 08:09:50 +05:30
2011-10-31 19:32:32 -04:00
2012-04-25 21:26:33 -07:00
2011-12-05 23:27:59 +00:00
2012-04-26 12:34:58 -07:00
2011-07-26 16:49:47 -07:00
2012-04-24 16:14:14 -07:00
2011-07-25 20:57:15 -07:00
2012-03-28 18:30:03 +01:00
2011-12-02 14:57:31 +01:00
2012-05-30 07:55:31 +02: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-05-06 13:43:41 +08: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