diff options
author | Dmitry Monakhov <dmonakhov@openvz.org> | 2014-01-23 18:55:21 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-01-23 19:37:00 -0500 |
commit | 7e775f46a125f894a1d71e96797c776dbec161f0 (patch) | |
tree | 81ab750ea46bbdb3826173bc4f1095c9a3c7e8e7 /fs | |
parent | d643a49ae16c755b3dc2ef897438b7d9c6dd488b (diff) |
fs/pipe.c: skip file_update_time on frozen fs
Pipe has no data associated with fs so it is not good idea to block
pipe_write() if FS is frozen, but we can not update file's time on such
filesystem. Let's use same idea as we use in touch_time().
Addresses https://bugzilla.kernel.org/show_bug.cgi?id=65701
Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org>
Reviewed-by: Jan Kara <jack@suse.cz>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/pipe.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -663,10 +663,11 @@ out: | |||
663 | wake_up_interruptible_sync_poll(&pipe->wait, POLLIN | POLLRDNORM); | 663 | wake_up_interruptible_sync_poll(&pipe->wait, POLLIN | POLLRDNORM); |
664 | kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN); | 664 | kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN); |
665 | } | 665 | } |
666 | if (ret > 0) { | 666 | if (ret > 0 && sb_start_write_trylock(file_inode(filp)->i_sb)) { |
667 | int err = file_update_time(filp); | 667 | int err = file_update_time(filp); |
668 | if (err) | 668 | if (err) |
669 | ret = err; | 669 | ret = err; |
670 | sb_end_write(file_inode(filp)->i_sb); | ||
670 | } | 671 | } |
671 | return ret; | 672 | return ret; |
672 | } | 673 | } |