bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] read-file: Avoid memory reallocations with seekable files.


From: Pádraig Brady
Subject: Re: [PATCH] read-file: Avoid memory reallocations with seekable files.
Date: Mon, 25 Oct 2010 01:26:52 +0100
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.8) Gecko/20100227 Thunderbird/3.0.3

I noticed large realloc()s still being done by fread_file() for the
common case of a regular file.  As well as being inefficient,
it could needlessly fail for large files.

$ truncate -s1M t.f
$ ltrace ./a.out < t.f
__libc_start_main(0x8048624, 1, 0xbfd86c34, 0x8048940, 0x8048930 <unfinished 
...>
fileno(0x7b7420)                                 = 0
__fxstat(3, 0, 0xbfd86acc)                       = 0
ftello(0x7b7420, 0xbfd86acc, 0xb78c22ac, 0xf63d4e2e, 3) = 0
malloc(1048577)                                  = 0xb77c0008
fread(0xb77c0008, 1, 1048576, 0x7b7420)          = 1048576
realloc(0xb77c0008, 1572865)                     = 0xb763f008
fread(0xb773f008, 1, 524288, 0x7b7420)           = 0
__errno_location()                               = 0xb78c1688
ferror(0x7b7420)                                 = 0
realloc(0xb763f008, 1048577)                     = 0xb763f008

After applying the attached patch I get:

$ ltrace ./a.out < t.f
__libc_start_main(0x8048624, 1, 0xbfa14994, 0x8048940, 0x8048930 <unfinished 
...>
fileno(0x7b7420)                                 = 0
__fxstat(3, 0, 0xbfa1482c)                       = 0
ftello(0x7b7420, 0xbfa1482c, 0xb783a2ac, 0xf63d4e2e, 3) = 0
malloc(1048578)                                  = 0xb7738008
fread(0xb7738008, 1, 1048577, 0x7b7420)          = 1048576
__errno_location()                               = 0xb7839688
ferror(0x7b7420)                                 = 0

On a related note I was wondering if we should fall back
to increasing the buffer by +=BUFSIZ rather than *=2
when we get ENOMEM? If we do then we'd need to be more careful
with the overflow checking with lines like the following:

if (size + BUFSIZ + 1 > alloc)

cheers,
Pádraig.

Attachment: read-file.diff
Description: Text Data


reply via email to

[Prev in Thread] Current Thread [Next in Thread]