From: Li Haifeng <hidden> Date: 2011-08-30 09:54:04
The function iget referred by the comment is replaced by ext2_iget .
And the ext2_read_inode() is not exist, the ext2_iget is "neater". So
the comment is fixed here.
Signed-off-by: Li Haifeng <redacted>
---
fs/ext2/super.c | 6 ++----
1 files changed, 2 insertions(+), 4 deletions(-)
super_block *sb,
if (ino > le32_to_cpu(EXT2_SB(sb)->s_es->s_inodes_count))
return ERR_PTR(-ESTALE);
- /* iget isn't really right if the inode is currently unallocated!!
- * ext2_read_inode currently does appropriate checks, but
- * it might be "neater" to call ext2_get_inode first and check
- * if the inode is valid.....
+ /*
+ * ext2_iget isn't really right if the inode is currently unallocated!!
*/
inode = ext2_iget(sb, ino);
if (IS_ERR(inode))
--
1.7.4.1
From: Jan Kara <jack@suse.cz> Date: 2011-08-30 10:35:48
On Tue 30-08-11 17:53:58, Li Haifeng wrote:
quoted hunk
The function iget referred by the comment is replaced by ext2_iget .
And the ext2_read_inode() is not exist, the ext2_iget is "neater". So
the comment is fixed here.
Signed-off-by: Li Haifeng <redacted>
---
fs/ext2/super.c | 6 ++----
1 files changed, 2 insertions(+), 4 deletions(-)
super_block *sb,
if (ino > le32_to_cpu(EXT2_SB(sb)->s_es->s_inodes_count))
return ERR_PTR(-ESTALE);
- /* iget isn't really right if the inode is currently unallocated!!
- * ext2_read_inode currently does appropriate checks, but
- * it might be "neater" to call ext2_get_inode first and check
- * if the inode is valid.....
+ /*
+ * ext2_iget isn't really right if the inode is currently unallocated!!
OK, but we should keep there a note that ext2_iget() does appropriate
checks to handle stale inodes.
Honza
*/
inode = ext2_iget(sb, ino);
if (IS_ERR(inode))
--
1.7.4.1
From: Li Haifeng <hidden> Date: 2011-08-30 11:29:34
Thanks for your point. I will remake this patch.
2011/8/30 Jan Kara [off-list ref]
On Tue 30-08-11 17:53:58, Li Haifeng wrote:
quoted
The function iget referred by the comment is replaced by ext2_iget .
And the ext2_read_inode() is not exist, the ext2_iget is "neater". So
the comment is fixed here.
Signed-off-by: Li Haifeng <redacted>
---
fs/ext2/super.c | 6 ++----
1 files changed, 2 insertions(+), 4 deletions(-)
super_block *sb,
if (ino > le32_to_cpu(EXT2_SB(sb)->s_es->s_inodes_count))
return ERR_PTR(-ESTALE);
- /* iget isn't really right if the inode is currently unallocated!!
- * ext2_read_inode currently does appropriate checks, but
- * it might be "neater" to call ext2_get_inode first and check
- * if the inode is valid.....
+ /*
+ * ext2_iget isn't really right if the inode is currently unallocated!!
OK, but we should keep there a note that ext2_iget() does appropriate
checks to handle stale inodes.
Honza
quoted
*/
inode = ext2_iget(sb, ino);
if (IS_ERR(inode))
--
1.7.4.1
--
Jan Kara [off-list ref]
SUSE Labs, CR
--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html