summaryrefslogtreecommitdiffstats
path: root/fs/attr.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2000-03-02 02:36:47 +0000
committerRalf Baechle <ralf@linux-mips.org>2000-03-02 02:36:47 +0000
commit8624512aa908741ba2795200133eae0d7f4557ea (patch)
treed5d3036fccf2604f4c98dedc11e8adb929d6b52e /fs/attr.c
parent7b8f5d6f1d45d9f9de1d26e7d3c32aa5af11b488 (diff)
Merge with 2.3.48.
Diffstat (limited to 'fs/attr.c')
-rw-r--r--fs/attr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/attr.c b/fs/attr.c
index 1639308b9..304ebd3db 100644
--- a/fs/attr.c
+++ b/fs/attr.c
@@ -92,8 +92,8 @@ int notify_change(struct dentry * dentry, struct iattr * attr)
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)