diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-13 09:48:54 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-13 09:48:54 -0700 |
commit | ddbf9ef385bfbef897210733abfb73cb9b94ecec (patch) | |
tree | 64a9e965a71eef13e813a3327f8d74aa7168ee19 /include | |
parent | 5d54e69c68c05b162a56f9914cae72afd7e6f40a (diff) | |
parent | 2c40579bdc2a94977fcff2521d5b53a97c33e77a (diff) |
Merge master.kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/security.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/security.h b/include/linux/security.h index 55b02e1c73f..0e43460d374 100644 --- a/include/linux/security.h +++ b/include/linux/security.h @@ -1907,6 +1907,11 @@ extern int register_security (struct security_operations *ops); extern int unregister_security (struct security_operations *ops); extern int mod_reg_security (const char *name, struct security_operations *ops); extern int mod_unreg_security (const char *name, struct security_operations *ops); +extern struct dentry *securityfs_create_file(const char *name, mode_t mode, + struct dentry *parent, void *data, + struct file_operations *fops); +extern struct dentry *securityfs_create_dir(const char *name, struct dentry *parent); +extern void securityfs_remove(struct dentry *dentry); #else /* CONFIG_SECURITY */ |