Re: [PATCH] ext4: delayed inode insertion into transaction at write()

2017-02-21 Thread Jan Kara
On Tue 21-02-17 12:34:07, Seongbae Son wrote: > On Wed 15-02-17 14:18:39, Seongbae Son wrote: > >> If a write request writes a data which is larger than 4 KB, the inode of > >> the file is updated by the write system call, and also by kworker thread. > >> This duplicated inode update causes malfunc

[PATCH] ext4: delayed inode insertion into transaction at write()

2017-02-20 Thread Seongbae Son
On Wed 15-02-17 14:18:39, Seongbae Son wrote: >> If a write request writes a data which is larger than 4 KB, the inode of >> the file is updated by the write system call, and also by kworker thread. >> This duplicated inode update causes malfunction of the EXT4 journaling >> behavior in ordered mod

Re: [PATCH] ext4: delayed inode insertion into transaction at write()

2017-02-20 Thread Jan Kara
On Wed 15-02-17 14:18:39, Seongbae Son wrote: > If a write request writes a data which is larger than 4 KB, the inode of > the file is updated by the write system call, and also by kworker thread. > This duplicated inode update causes malfunction of the EXT4 journaling > behavior in ordered mode. >

[PATCH] ext4: delayed inode insertion into transaction at write()

2017-02-14 Thread Seongbae Son
If a write request writes a data which is larger than 4 KB, the inode of the file is updated by the write system call, and also by kworker thread. This duplicated inode update causes malfunction of the EXT4 journaling behavior in ordered mode. For example, if 6KB write(fileA) on 18KB file is per