This is the mail archive of the elfutils-devel@sourceware.org mailing list for the elfutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] libelf: Use possix_fallocate instead of ftruncate to extend ELF file.


On Thu, 2015-05-14 at 09:44 -0700, Josh Stone wrote:
> On 05/14/2015 03:44 AM, Mark Wielaard wrote:
> > diff --git a/libelf/ChangeLog b/libelf/ChangeLog
> > index 2d10b83..5e7b104 100644
> > --- a/libelf/ChangeLog
> > +++ b/libelf/ChangeLog
> > @@ -1,3 +1,8 @@
> > +2015-05-14  Mark Wielaard  <mjw@redhat.com>
> > +
> > +	* elf_update.c (write_file): Use possix_fallocate instead of
> > +	ftruncate to extend file if necessary.
> 
> Just one 's' in posix -- also mistyped in the subject line.

Worse, also mistyped in the patch as posted though not in the commit on
the branch, since obviously I noticed it didn't compile and fixed it,
but somehow still posted the broken patch...

Fixed it everywhere and updated the mjw/pending branch. Not pushing yet.
I would like to know what others think about using posix_fallocate
instead of ftruncate. There is some discussion on the glibc mailinglist
about whether or not posix_fallocate actually guarantees to extend the
file or not. I think it does, that is the main difference with fallocate
(and ftruncate). But lets see what glibc ends up deciding.
https://sourceware.org/ml/libc-alpha/2015-04/msg00309.html

Cheers,

Mark

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]