From: Ming Lei Date: Mon, 29 Apr 2013 22:06:07 +0000 (-0700) Subject: fs/read_write.c: fix generic_file_llseek() comment X-Git-Tag: upstream/snapshot3+hdmi~5281^2~125 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=546ae2d2f717230b2ff423295f8d6dc489a878e8;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git fs/read_write.c: fix generic_file_llseek() comment Commit ef3d0fd27e90 ("vfs: do (nearly) lockless generic_file_llseek") has removed i_mutex from generic_file_llseek, so update the comment accordingly. Signed-off-by: Ming Lei Cc: Alexander Viro Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/read_write.c b/fs/read_write.c index e6ddc8d..7a64891 100644 --- a/fs/read_write.c +++ b/fs/read_write.c @@ -128,7 +128,7 @@ EXPORT_SYMBOL(generic_file_llseek_size); * * This is a generic implemenation of ->llseek useable for all normal local * filesystems. It just updates the file offset to the value specified by - * @offset and @whence under i_mutex. + * @offset and @whence. */ loff_t generic_file_llseek(struct file *file, loff_t offset, int whence) {