lkml.org 
[lkml]   [2006]   [Oct]   [21]   [last100]   RSS Feed
Views: [more markup]  [less markup]  [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: 2.6.19-rc2-mm2 : empty files on vfat file system
FromOGAWA Hirofumi <>
DateSun, 22 Oct 2006 05:17:22 +0900
Damien Wyart <damien.wyart@free.fr> writes:

>> > I have noticed something strange (and bad :) since using
>> > 2.6.19-rc2-mm2 (the problem is NOT present on 2.6.19-rc2-mm1 ; do
>> > not know for mainline, I have not been able to test yet, but I think
>> > there have not been recent changes in this area) : writing a file to
>> > a vfat fs (fat 32) writes it, but with size 0 and no content.>> * OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> [2006-10-21 22:24]:
>> diff -puN fs/fat/inode.c~fs-prepare_write-fixes fs/fat/inode.c
>> --- a/fs/fat/inode.c~fs-prepare_write-fixes>> +++ a/fs/fat/inode.c>> @@ -150,7 +150,11 @@ static int fat_commit_write(struct file 
>>  			    unsigned from, unsigned to)
>>  {
>>  	struct inode *inode = page->mapping->host;
>> -	int err = generic_commit_write(file, page, from, to);
>> +	int err;
>> +	if (to - from > 0)
>> +		return 0;
>> +
>> +	err = generic_commit_write(file, page, from, to);
>>  	if (!err && !(MSDOS_I(inode)->i_attrs & ATTR_ARCH)) {
>>  		inode->i_mtime = inode->i_ctime = CURRENT_TIME_SEC;
>>  		MSDOS_I(inode)->i_attrs |= ATTR_ARCH;
>
>> This change does't update ->i_size. Could you just delete, and test
>> it? Anyway, this seems wrong even if it's "if ((to - from) == 0)".
>
> Reverting the change makes the problem go away. But I do not know if
> this is safe wrt the fs-prepare_write-fixes patch.

Yes, maybe another patch will be needed. However, I don't know the
background of this change. I'll make time and see what happened.
-- 
OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2006-10-21 22:21    [from the cache]
©2003-2008