[Ocfs2-devel] [PATCH] ocfs2: Remove the deprecated inode_setattr.

Tao Ma tao.ma at oracle.com
Wed Jun 9 01:48:20 PDT 2010


Nick has changed the turncate sequence and now inode_setattr
is deprecated. ocfs2 has done the most work of i_size change
before calling inode_setattr, so we are safe to just call
simple_setsize to update the i_size in vfs inode and then
generic_setattr.

As for dlmfs, we don't allow inode size change, so it is safe
for us to just call generic_setattr.

Cc: Nick Piggin <npiggin at suse.de>
Signed-off-by: Tao Ma <tao.ma at oracle.com>
---
 fs/ocfs2/dlmfs/dlmfs.c |    2 +-
 fs/ocfs2/file.c        |   18 +++++++++---------
 2 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/fs/ocfs2/dlmfs/dlmfs.c b/fs/ocfs2/dlmfs/dlmfs.c
index b83d610..e959b88 100644
--- a/fs/ocfs2/dlmfs/dlmfs.c
+++ b/fs/ocfs2/dlmfs/dlmfs.c
@@ -215,7 +215,7 @@ static int dlmfs_file_setattr(struct dentry *dentry, struct iattr *attr)
 	attr->ia_valid &= ~ATTR_SIZE;
 	error = inode_change_ok(inode, attr);
 	if (!error)
-		error = inode_setattr(inode, attr);
+		generic_setattr(inode, attr);
 
 	return error;
 }
diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c
index 6a13ea6..06fd85c 100644
--- a/fs/ocfs2/file.c
+++ b/fs/ocfs2/file.c
@@ -1052,17 +1052,17 @@ int ocfs2_setattr(struct dentry *dentry, struct iattr *attr)
 	}
 
 	/*
-	 * This will intentionally not wind up calling simple_setsize(),
-	 * since all the work for a size change has been done above.
-	 * Otherwise, we could get into problems with truncate as
-	 * ip_alloc_sem is used there to protect against i_size
-	 * changes.
+	 * Since all the work for a size change has been done above,
+	 * we only need to call simple_setsize to update i_size.
 	 */
-	status = inode_setattr(inode, attr);
-	if (status < 0) {
-		mlog_errno(status);
-		goto bail_commit;
+	if (attr->ia_valid & ATTR_SIZE) {
+		status = simple_setsize(inode, attr->ia_size);
+		if (status < 0) {
+			mlog_errno(status);
+			goto bail_commit;
+		}
 	}
+	generic_setattr(inode, attr);
 
 	status = ocfs2_mark_inode_dirty(handle, inode, bh);
 	if (status < 0)
-- 
1.5.5




More information about the Ocfs2-devel mailing list