| Kernel v2.3.48 /fs/attr.c |
|---|
 2.3.48
 fs
 attr.c
diff -u --recursive --new-file v2.3.47/linux/fs/attr.c linux/fs/attr.c
--- v2.3.47/linux/fs/attr.c Sun Feb 20 21:12:39 2000
+++ linux/fs/attr.c Sat Feb 26 20:33:42 2000
@@ -92,8 +92,8 @@
attr->ia_mtime = now;
if (inode->i_sb && inode->i_sb->s_op &&
- inode->i_sb->s_op->notify_change)
- error = inode->i_sb->s_op->notify_change(dentry, attr);
+ inode->i_op->setattr)
+ error = inode->i_op->setattr(dentry, attr);
else {
error = inode_change_ok(inode, attr);
if (!error)
|