diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2009-11-20 16:08:53 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-12-11 11:24:54 -0800 |
commit | e61ab4ae48fbf477f5b9fcbec9e1b8dc789920d0 (patch) | |
tree | 70199a29a97a4f5ba8aea4340bc828da4f550e5d /fs/sysfs/symlink.c | |
parent | c099aacd48ee73bd2de7da029e536ed005d72a43 (diff) | |
download | op-kernel-dev-e61ab4ae48fbf477f5b9fcbec9e1b8dc789920d0.zip op-kernel-dev-e61ab4ae48fbf477f5b9fcbec9e1b8dc789920d0.tar.gz |
sysfs: Implement sysfs_getattr & sysfs_permission
With the implementation of sysfs_getattr and sysfs_permission
sysfs becomes able to lazily propogate inode attribute changes
from the sysfs_dirents to the vfs inodes. This paves the way
for deleting significant chunks of now unnecessary code.
While doing this we did not reference sysfs_setattr from
sysfs_symlink_inode_operations so I added along with
sysfs_getattr and sysfs_permission.
Acked-by: Tejun Heo <tj@kernel.org>
Acked-by: Serge Hallyn <serue@us.ibm.com>
Signed-off-by: Eric W. Biederman <ebiederm@aristanetworks.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'fs/sysfs/symlink.c')
-rw-r--r-- | fs/sysfs/symlink.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/sysfs/symlink.c b/fs/sysfs/symlink.c index 1137418..c5eff49 100644 --- a/fs/sysfs/symlink.c +++ b/fs/sysfs/symlink.c @@ -214,6 +214,9 @@ const struct inode_operations sysfs_symlink_inode_operations = { .readlink = generic_readlink, .follow_link = sysfs_follow_link, .put_link = sysfs_put_link, + .setattr = sysfs_setattr, + .getattr = sysfs_getattr, + .permission = sysfs_permission, }; |