diff options
author | Miklos Szeredi <mszeredi@suse.cz> | 2008-07-01 17:07:54 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2008-07-26 20:53:07 -0400 |
commit | 7ac6cd653d7c31ad6b7bb5b88c549c4ebf628c34 (patch) | |
tree | c882be6f679aca92ae8e5cb9b94aedf45e811aa2 /fs | |
parent | d2d9648ec6858e19d16a0b16da62534e85888653 (diff) |
[patch] hppfs: remove hppfs_permission
hppfs_permission() is equivalent to the '.permission == NULL' case.
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/hppfs/hppfs.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/fs/hppfs/hppfs.c b/fs/hppfs/hppfs.c index 65077aa90f0a..2b3d1828db99 100644 --- a/fs/hppfs/hppfs.c +++ b/fs/hppfs/hppfs.c | |||
@@ -655,20 +655,13 @@ static void *hppfs_follow_link(struct dentry *dentry, struct nameidata *nd) | |||
655 | return proc_dentry->d_inode->i_op->follow_link(proc_dentry, nd); | 655 | return proc_dentry->d_inode->i_op->follow_link(proc_dentry, nd); |
656 | } | 656 | } |
657 | 657 | ||
658 | int hppfs_permission(struct inode *inode, int mask, struct nameidata *nd) | ||
659 | { | ||
660 | return generic_permission(inode, mask, NULL); | ||
661 | } | ||
662 | |||
663 | static const struct inode_operations hppfs_dir_iops = { | 658 | static const struct inode_operations hppfs_dir_iops = { |
664 | .lookup = hppfs_lookup, | 659 | .lookup = hppfs_lookup, |
665 | .permission = hppfs_permission, | ||
666 | }; | 660 | }; |
667 | 661 | ||
668 | static const struct inode_operations hppfs_link_iops = { | 662 | static const struct inode_operations hppfs_link_iops = { |
669 | .readlink = hppfs_readlink, | 663 | .readlink = hppfs_readlink, |
670 | .follow_link = hppfs_follow_link, | 664 | .follow_link = hppfs_follow_link, |
671 | .permission = hppfs_permission, | ||
672 | }; | 665 | }; |
673 | 666 | ||
674 | static struct inode *get_inode(struct super_block *sb, struct dentry *dentry) | 667 | static struct inode *get_inode(struct super_block *sb, struct dentry *dentry) |