Re: [GIT PULL] ocfs2 changes for 2.6.32

From: Joel Becker
Date: Thu Sep 17 2009 - 16:36:47 EST


On Thu, Sep 17, 2009 at 01:17:55PM -0700, Linus Torvalds wrote:
> On Thu, 17 Sep 2009, Roland Dreier wrote:
> >
> > I guess one bit of semantics to figure out is what happens if copyfile()
> > does the async case but then copyfile_ctrl() returns an error halfway
> > through... is the state of the dest file just undefined?
>
> I think that's the one that most filesystems would prefer. Maybe the file
> is there, it's just that it's only half copied because the filesystem
> filled up.

I have to say, adding 'undefined behavior' things isn't fun in a
call that is already potentially confusing. We have a bunch of flags
and behaviors we're covering.

> Making filesystems give atomicity guarantees would be hard for the async
> case.

Note that "cleaning up after an error" and "atomic" are not the
same. Atomicity implies that not only do you see all or none, but that
the contents are a point-in-time of the source file. A non-atomic
implementation may be affected by writes that happen during the copy
(like any read-write-loop copy would be).
As an example, ocfs2_reflink() builds the target inode in the
orphan directory. If the operation fails at any point, it's removed.
If we crash, orphan cleanup happens. Only if it succeeds do we move it
to the target directory. ocfs2_reflink() is an atomic snapshot, of
course, but recoverability is certainly possible for a non-atomic
copyfile() on filesystems with similar orphan schemes (ext3 is the
obvious example).
Of course, how the network filesystems might see it, I don't
know. NFS/CIFS folks, please speak up.

> Of course, if the filesystem can do the copy entirely atomically (ie by
> just incrementing a refcount), then it can give atomicity guarantees, but
> then you'd never see the async case either.

Even the atomic copy might take a little time (say, to bump up
and write out the metadata structures). Do you want to define that as
not being async? I was figuring COPYFILE_ATOMIC and COPYFILE_WAIT to be
separate flags.

Joel

--

"Behind every successful man there's a lot of unsuccessful years."
- Bob Brown

Joel Becker
Principal Software Developer
Oracle
E-mail: joel.becker@xxxxxxxxxx
Phone: (650) 506-8127
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/