From: Eric Sandeen <hidden> Date: 2011-03-04 22:02:11
(crossport of 1f7bebb9e911d870fa8f997ddff838e82b5715ea
by Andreas Schlick [off-list ref])
When ext4_dx_add_entry() has to split an index node, it has to ensure that
name_len of dx_node's fake_dirent is also zero, because otherwise e2fsck
won't recognise it as an intermediate htree node and consider the htree to
be corrupted.
Signed-off-by: Eric Sandeen <redacted>
---
While it's a simple one liner, this took me forever to (re-)find.
kill_ext3_now++;
That is all. ;)
From: Eric Sandeen <hidden> Date: 2011-03-04 22:04:12
(crossport of 1f7bebb9e911d870fa8f997ddff838e82b5715ea
by Andreas Schlick [off-list ref])
When ext3_dx_add_entry() has to split an index node, it has to ensure that
name_len of dx_node's fake_dirent is also zero, because otherwise e2fsck
won't recognise it as an intermediate htree node and consider the htree to
be corrupted.
Signed-off-by: Eric Sandeen <redacted>
---
(V2: fix subject and commit and formatting)
While it's a simple one liner, this took me forever to (re-)find.
kill_ext3_now++;
That is all. ;)
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
From: Andreas Dilger <hidden> Date: 2011-03-04 22:23:47
On 2011-03-04, at 3:04 PM, Eric Sandeen wrote:
(crossport of 1f7bebb9e911d870fa8f997ddff838e82b5715ea
by Andreas Schlick [off-list ref])
When ext3_dx_add_entry() has to split an index node, it has to ensure that
name_len of dx_node's fake_dirent is also zero, because otherwise e2fsck
won't recognise it as an intermediate htree node and consider the htree to
be corrupted.
Signed-off-by: Eric Sandeen <redacted>
---
Should also be sent to stable I think.
quoted hunk
(V2: fix subject and commit and formatting)
While it's a simple one liner, this took me forever to (re-)find.
kill_ext3_now++;
That is all. ;)
goto cleanup;
node2 = (struct dx_node *)(bh2->b_data);
entries2 = node2->entries;
+ memset(&node2->fake, 0, sizeof(struct fake_dirent));
node2->fake.rec_len = ext3_rec_len_to_disk(sb->s_blocksize);
- node2->fake.inode = 0;
BUFFER_TRACE(frame->bh, "get_write_access");
err = ext3_journal_get_write_access(handle, frame->bh);
if (err)
--
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
--
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
From: Jan Kara <jack@suse.cz> Date: 2011-03-07 16:26:50
On Fri 04-03-11 16:04:08, Eric Sandeen wrote:
(crossport of 1f7bebb9e911d870fa8f997ddff838e82b5715ea
by Andreas Schlick [off-list ref])
When ext3_dx_add_entry() has to split an index node, it has to ensure that
name_len of dx_node's fake_dirent is also zero, because otherwise e2fsck
won't recognise it as an intermediate htree node and consider the htree to
be corrupted.
Signed-off-by: Eric Sandeen <redacted>
Thanks. Merged - and added CC to stable@kernel.org as Andreas suggested.
While it's a simple one liner, this took me forever to (re-)find.
From: Eric Sandeen <hidden> Date: 2011-03-07 16:32:25
On 3/7/11 10:26 AM, Jan Kara wrote:
On Fri 04-03-11 16:04:08, Eric Sandeen wrote:
quoted
(crossport of 1f7bebb9e911d870fa8f997ddff838e82b5715ea
by Andreas Schlick [off-list ref])
When ext3_dx_add_entry() has to split an index node, it has to ensure that
name_len of dx_node's fake_dirent is also zero, because otherwise e2fsck
won't recognise it as an intermediate htree node and consider the htree to
be corrupted.
Signed-off-by: Eric Sandeen <redacted>
Thanks. Merged - and added CC to stable@kernel.org as Andreas suggested.
Thanks!
-Eric
quoted
While it's a simple one liner, this took me forever to (re-)find.