Re: ext3-2.4-0.9.4

Linus Torvalds (torvalds@transmeta.com)
Tue, 31 Jul 2001 09:41:16 -0700 (PDT)


On Tue, 31 Jul 2001, Matti Aarnio wrote:
> >
> > Logical, isn't it?
>
> No. I don't see why I should opendir() a directory, fsync()
> that handle, and closedir() the handle. I would definitely prefer:
>
> lsync(dirpath)

Btw, you don't have to do opendir() - that just wastes time. Just do
something like

int lsync(char *path)
{
int err, fd;
fd = open(path, 0);
if (fd >= 0) {
err = fsync(fd);
close(fd);
}
return err;
}

and you're done. But it won't do the symlink thing...

Linus

-
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/