mirror of
https://github.com/torvalds/linux.git
synced 2024-12-03 17:41:22 +00:00
f2fs: assign parent's i_mode for empty dir
When assigning i_mode for dotdot, it needs to assign parent's i_mode. Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
parent
510022a858
commit
cb58463bc9
@ -334,7 +334,7 @@ void do_make_empty_dir(struct inode *inode, struct inode *parent,
|
||||
de->name_len = cpu_to_le16(2);
|
||||
de->ino = cpu_to_le32(parent->i_ino);
|
||||
memcpy(d->filename[1], "..", 2);
|
||||
set_de_type(de, inode->i_mode);
|
||||
set_de_type(de, parent->i_mode);
|
||||
|
||||
test_and_set_bit_le(0, (void *)d->bitmap);
|
||||
test_and_set_bit_le(1, (void *)d->bitmap);
|
||||
|
Loading…
Reference in New Issue
Block a user