Security/VFS: re-export security_inode_permission symbol
authorErez Zadok <ezk@cs.sunysb.edu>
Tue, 13 Jan 2009 03:16:46 +0000 (22:16 -0500)
committerErez Zadok <ezk@cs.sunysb.edu>
Tue, 11 Nov 2014 02:40:59 +0000 (21:40 -0500)
Unionfs needs it because it has to do everything in there, but skip the
EROFS test (so copyup can be triggered).  There's no easy way to execute
parts of security_inode_permission() without copying  and duplicating much
of its functionality, so exporting the symbol seems the simplest.

Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
security/security.c

index bf619ffc9a4d2b81053b62eafe5fffd7a8d9524f..57742c6177a97f310c3512a9088dab6bc15959b2 100644 (file)
@@ -526,6 +526,7 @@ int security_inode_permission(struct inode *inode, int mask)
                return 0;
        return security_ops->inode_permission(inode, mask);
 }
+EXPORT_SYMBOL(security_inode_permission);
 
 int security_inode_setattr(struct dentry *dentry, struct iattr *attr)
 {