lkml.org 
[lkml]   [2006]   [Oct]   [21]   [last100]   RSS Feed
Views: [more markup]  [less markup]  [headers]  [forward] 
 
Messages in this thread
/
DateSat, 21 Oct 2006 13:19:32 -0700
FromAndrew Morton <>
SubjectRe: 2.6.19-rc2-mm2 : empty files on vfat file system
On Sat, 21 Oct 2006 19:38:49 +0200
Damien Wyart <damien.wyart@free.fr> wrote:

> > --- 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;
> > +

That should have been

	if (to - from == 0)
		return 0;
-
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:23    [from the cache]
©2003-2008