sysfs: don't call notify_change
authorMiklos Szeredi <mszeredi@suse.cz>
Mon, 16 Jun 2008 11:46:47 +0000 (13:46 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 22 Jul 2008 04:54:57 +0000 (21:54 -0700)
commit93265d13ea5c3ec5f61a8009407fbe046ce6b7c0
tree1db94fa6cc1ee9b0eae1332a340ac98efa4d8f28
parent838ea8e8dbfc8d907c7a55bbad507a44c1b81d57
sysfs: don't call notify_change

sysfs_chmod_file() calls notify_change() to change the permission bits
on a sysfs file.  Replace with explicit call to sysfs_setattr() and
fsnotify_change().

This is equivalent, except that security_inode_setattr() is not
called.  This function is called by drivers, so the security checks do
not make any sense.

Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
fs/sysfs/file.c