From: mel@skynet.ie (Mel Gorman)
To: Damien Wyart <damien.wyart@free.fr>
Cc: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>,
linux-kernel <linux-kernel@vger.kernel.org>,
Nick Piggin <npiggin@suse.de>, Andrew Morton <akpm@osdl.org>
Subject: Re: 2.6.19-rc2-mm2 : empty files on vfat file system
Date: Mon, 23 Oct 2006 21:39:44 +0100 [thread overview]
Message-ID: <20061023203944.GA17290@skynet.ie> (raw)
In-Reply-To: <20061021173849.GA1999@localhost.localdomain>
On (21/10/06 19:38), Damien Wyart didst pronounce:
> > > 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.
>
I don't know about the fix, but the issue is pretty serious for IA64 and the
EFI bootloader. On the IA64 I have access to, the bootloader and related
files are stored on a VFAT file system so when an automated system ran a
simple boot-test, the bootloader was blown away as a result.
--
Mel Gorman
Part-time Phd Student Linux Technology Center
University of Limerick IBM Dublin Software Lab
prev parent reply other threads:[~2006-10-23 20:39 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-10-21 10:44 2.6.19-rc2-mm2 : empty files on vfat file system Damien Wyart
2006-10-21 13:24 ` OGAWA Hirofumi
2006-10-21 13:29 ` OGAWA Hirofumi
2006-10-21 17:38 ` Damien Wyart
2006-10-21 20:17 ` OGAWA Hirofumi
2006-10-21 20:19 ` Andrew Morton
2006-10-21 20:24 ` Andrew Morton
2006-10-22 1:34 ` Nick Piggin
2006-10-21 20:38 ` OGAWA Hirofumi
2006-10-22 1:50 ` Nick Piggin
2006-10-22 9:11 ` OGAWA Hirofumi
2006-10-22 9:25 ` Nick Piggin
2006-10-23 20:39 ` Mel Gorman [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20061023203944.GA17290@skynet.ie \
--to=mel@skynet.ie \
--cc=akpm@osdl.org \
--cc=damien.wyart@free.fr \
--cc=hirofumi@mail.parknet.co.jp \
--cc=linux-kernel@vger.kernel.org \
--cc=npiggin@suse.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.