]> git.baikalelectronics.ru Git - kernel.git/commit
VFS: Make pathwalk use d_is_reg() rather than S_ISREG()
authorDavid Howells <dhowells@redhat.com>
Tue, 17 Mar 2015 22:16:40 +0000 (22:16 +0000)
committerAl Viro <viro@zeniv.linux.org.uk>
Wed, 15 Apr 2015 19:05:30 +0000 (15:05 -0400)
commit9bd1f9c69375b85059a5f8722f41eff0ab0b7c7e
tree2672c860238fac8efb1cea46a74cdbb99284e620
parentc09a2e09423572a948c87af1b3c13f7b6b8f427a
VFS: Make pathwalk use d_is_reg() rather than S_ISREG()

Make pathwalk use d_is_reg() rather than S_ISREG() to determine whether to
honour O_TRUNC.  Since this occurs after complete_walk(), the dentry type
field cannot change and the inode pointer cannot change as we hold a ref on
the dentry, so this should be safe.

Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/namei.c