]> git.baikalelectronics.ru Git - kernel.git/commit
Simplify exec_permission_lite() further
authorLinus Torvalds <torvalds@linux-foundation.org>
Fri, 28 Aug 2009 17:53:56 +0000 (10:53 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 8 Sep 2009 18:07:43 +0000 (11:07 -0700)
commit3080daf05aaafdd33d7c8670eca6f9cb330e5215
tree01b4e3c84e1403f6c900dd4412aa09cd335c030c
parent3e660220f4c4f063eade8a984760bbc1a66311f2
Simplify exec_permission_lite() further

This function is only called for path components that are already known
to be directories (they have a '->lookup' method).  So don't bother
doing that whole S_ISDIR() testing, the whole point of the 'lite()'
version is that we know that we are looking at a directory component,
and that we're only checking name lookup permission.

Reviewed-by: James Morris <jmorris@namei.org>
Acked-by: Serge Hallyn <serue@us.ibm.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/namei.c