GNU bug report logs -
#850
23.0.60; make autoloads reports memory exhaustion
Previous Next
Reported by: Tim Van Holder <tim.vanholder <at> gmail.com>
Date: Mon, 1 Sep 2008 10:25:04 UTC
Severity: normal
Tags: moreinfo, unreproducible
Done: Lars Magne Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 850 in the body.
You can then email your comments to 850 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded to
bug-submit-list <at> lists.donarmstrong.com, Emacs Bugs <bug-gnu-emacs <at> gnu.org>
:
bug#850
; Package
emacs
.
Full text and
rfc822 format available.
Acknowledgement sent to
Tim Van Holder <tim.vanholder <at> gmail.com>
:
New bug report received and forwarded. Copy sent to
Emacs Bugs <bug-gnu-emacs <at> gnu.org>
.
Full text and
rfc822 format available.
Message #5 received at submit <at> emacsbugs.donarmstrong.com (full text, mbox):
CVS build of this morning; did a make maintainer-clean followed by a
make boostrap to ensure a clean slate.
My normal "rebuild" script updates the sources and then runs
test -f src/emacs && test -x src/emacs || make
make info
make -C lisp recompile updates
rm -f etc/DOC* src/emacs
make
But since this morning the make command for the lisp subdir fails during
autoloads processing:
Saving file /home/tim/gnu/src/emacs/lisp/loaddefs.el...
Memory exhausted--use C-x s then exit and restart Emacs
make: *** [autoloads] Error 255
loaddefs.el doesn't seem to get updated. It also prevented the other
commands for the 'updates' target from running, but I've added -k to the
make options to work around that.
In case it's relevant, I build outside the source tree.
Information forwarded to
bug-submit-list <at> lists.donarmstrong.com, Emacs Bugs <bug-gnu-emacs <at> gnu.org>
:
bug#850
; Package
emacs
.
Full text and
rfc822 format available.
Acknowledgement sent to
Chong Yidong <cyd <at> stupidchicken.com>
:
Extra info received and forwarded to list. Copy sent to
Emacs Bugs <bug-gnu-emacs <at> gnu.org>
.
Full text and
rfc822 format available.
Message #10 received at 850 <at> emacsbugs.donarmstrong.com (full text, mbox):
> But since this morning the make command for the lisp subdir fails
> during autoloads processing:
>
> Saving file /home/tim/gnu/src/emacs/lisp/loaddefs.el...
> Memory exhausted--use C-x s then exit and restart Emacs
> make: *** [autoloads] Error 255
>
> loaddefs.el doesn't seem to get updated. It also prevented the other
> commands for the 'updates' target from running, but I've added -k to
> the make options to work around that.
I can't reproduce this. Do you still see this problem with latest CVS?
If so, what's your platform?
Information forwarded to
bug-submit-list <at> lists.donarmstrong.com, Emacs Bugs <bug-gnu-emacs <at> gnu.org>
:
bug#850
; Package
emacs
.
Full text and
rfc822 format available.
Acknowledgement sent to
"Tim Van Holder" <tim.vanholder <at> gmail.com>
:
Extra info received and forwarded to list. Copy sent to
Emacs Bugs <bug-gnu-emacs <at> gnu.org>
.
Full text and
rfc822 format available.
Message #15 received at 850 <at> emacsbugs.donarmstrong.com (full text, mbox):
On Wed, Sep 3, 2008 at 2:20 AM, Chong Yidong <cyd <at> stupidchicken.com> wrote:
>> But since this morning the make command for the lisp subdir fails
>> during autoloads processing:
>>
>> Saving file /home/tim/gnu/src/emacs/lisp/loaddefs.el...
>> Memory exhausted--use C-x s then exit and restart Emacs
>> make: *** [autoloads] Error 255
>>
>> loaddefs.el doesn't seem to get updated. It also prevented the other
>> commands for the 'updates' target from running, but I've added -k to
>> the make options to work around that.
>
> I can't reproduce this. Do you still see this problem with latest CVS?
> If so, what's your platform?
Yes, with an emacs built from CVS (not a full bootstrap) 20 minutes ago,
"make -C lisp autoloads" still reports the memory exhaustion during the
save operation.
A little debugging shows that the signal is raised from memory_full(), which is
called by lisp_malloc; it was asked to allocate 1.2MiB worth of non-lisp memory.
At the point of the memory_full() invocation, val is indeed 0 (and
this is the direct
return value of malloc, not because of further changes to val) - but
at this point
emacs only has 15MiB of memory allocated so there's no way it really ran out
of memory.
My system is a debian linux box, running a 2.4.27 kernel (which I can't upgrade
to 2.6 because the 2.6 kernel dropped support for its Dell RAID controller),
with glibc 2.3.6. Configured using only --with-x.
OK - it looks like this was an extreme edge case.
I just set aside my existing loaddefs.el (unfortunately as
loaddefs.el~, so it was
destroyed in the process) and reran make -C lisp autoloads. While this
took a lot
longer (all files as opposed to the 6 or so that had changed since the
last time),
this completed without error. So it looks like it was some sort of
very rare bug,
presumably in the system malloc.
So I guess you can close this one.
bug closed, send any further explanations to Tim Van Holder <tim.vanholder <at> gmail.com>
Request was from
Chong Yidong <cyd <at> stupidchicken.com>
to
control <at> emacsbugs.donarmstrong.com
.
(Wed, 03 Sep 2008 14:25:07 GMT)
Full text and
rfc822 format available.
Information forwarded to
bug-submit-list <at> lists.donarmstrong.com, Emacs Bugs <bug-gnu-emacs <at> gnu.org>
:
bug#850
; Package
emacs
.
Full text and
rfc822 format available.
Acknowledgement sent to
"Tim Van Holder" <tim.vanholder <at> gmail.com>
:
Extra info received and forwarded to list. Copy sent to
Emacs Bugs <bug-gnu-emacs <at> gnu.org>
.
Full text and
rfc822 format available.
Message #22 received at 850 <at> emacsbugs.donarmstrong.com (full text, mbox):
[Message part 1 (text/plain, inline)]
reopen 850
Unfortunately, it is back, so it seems like it's not as much of an edge case as
I thought. If I remove loaddefs.el, make autoloads works fine; if it exists and
needs updating, it fails.
I'll attach the loaddefs.el I had the problem with this morning (in tarball to
preserve timestamp), in case this helps you reproduce it.
[loaddefs.tar.gz (application/x-gzip, attachment)]
bug reopened, originator not changed.
Request was from
Glenn Morris <rgm <at> gnu.org>
to
control <at> emacsbugs.donarmstrong.com
.
(Tue, 16 Sep 2008 22:35:03 GMT)
Full text and
rfc822 format available.
Tags added: unreproducible
Request was from
Glenn Morris <rgm <at> gnu.org>
to
control <at> emacsbugs.donarmstrong.com
.
(Tue, 16 Sep 2008 22:35:03 GMT)
Full text and
rfc822 format available.
Information forwarded to
bug-submit-list <at> lists.donarmstrong.com, Emacs Bugs <bug-gnu-emacs <at> gnu.org>
:
bug#850
; Package
emacs
.
Full text and
rfc822 format available.
Acknowledgement sent to
"Tim Van Holder" <tim.vanholder <at> gmail.com>
:
Extra info received and forwarded to list. Copy sent to
Emacs Bugs <bug-gnu-emacs <at> gnu.org>
.
Full text and
rfc822 format available.
Message #31 received at 850 <at> emacsbugs.donarmstrong.com (full text, mbox):
[Message part 1 (text/plain, inline)]
Attached is the log of a gdb session (with a CVS HEAD build of this morning)
that shows a backtrace after bumping into the memory issue.
[emacs850-gdb.txt (text/plain, attachment)]
Information forwarded to
bug-submit-list <at> lists.donarmstrong.com, Emacs Bugs <bug-gnu-emacs <at> gnu.org>
:
bug#850
; Package
emacs
.
Full text and
rfc822 format available.
Acknowledgement sent to
"Tim Van Holder" <tim.vanholder <at> gmail.com>
:
Extra info received and forwarded to list. Copy sent to
Emacs Bugs <bug-gnu-emacs <at> gnu.org>
.
Full text and
rfc822 format available.
Message #36 received at 850 <at> emacsbugs.donarmstrong.com (full text, mbox):
Looks like this was a compiler issue - having updated gcc to 4.3.2
(selfcompiled)
instead of the stock debian gcc 4.1.1-21 I was using before, the issue
goes away.
So I guess this can be closed again.
Information forwarded to
bug-submit-list <at> lists.donarmstrong.com, Emacs Bugs <bug-gnu-emacs <at> gnu.org>
:
bug#850
; Package
emacs
.
Full text and
rfc822 format available.
Acknowledgement sent to
"Tim Van Holder" <tim.vanholder <at> gmail.com>
:
Extra info received and forwarded to list. Copy sent to
Emacs Bugs <bug-gnu-emacs <at> gnu.org>
.
Full text and
rfc822 format available.
Message #41 received at 850 <at> emacsbugs.donarmstrong.com (full text, mbox):
And after this morning's build from CVS HEAD it's back - this is a
frigging heisenbug...
Tags added: unreproducible, moreinfo
Request was from
Chong Yidong <cyd <at> stupidchicken.com>
to
control <at> emacsbugs.donarmstrong.com
.
(Tue, 11 Aug 2009 04:55:05 GMT)
Full text and
rfc822 format available.
Information forwarded
to
owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org
:
bug#850
; Package
emacs
.
(Thu, 28 Jul 2011 00:31:02 GMT)
Full text and
rfc822 format available.
Message #46 received at 850 <at> debbugs.gnu.org (full text, mbox):
"Tim Van Holder" <tim.vanholder <at> gmail.com> writes:
> And after this morning's build from CVS HEAD it's back - this is a
> frigging heisenbug...
Has this bug gone away forever now, or are you still seeing it?
--
(domestic pets only, the antidote for overdose, milk.)
bloggy blog http://lars.ingebrigtsen.no/
Information forwarded
to
owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org
:
bug#850
; Package
emacs
.
(Sat, 30 Jul 2011 19:26:01 GMT)
Full text and
rfc822 format available.
Message #49 received at 850 <at> debbugs.gnu.org (full text, mbox):
On 28 July 2011 02:29, Lars Magne Ingebrigtsen <larsi <at> gnus.org> wrote:
> "Tim Van Holder" <tim.vanholder <at> gmail.com> writes:
>
>> And after this morning's build from CVS HEAD it's back - this is a
>> frigging heisenbug...
>
> Has this bug gone away forever now, or are you still seeing it?
Looks like it's gone. Hadn't built emacs in a long time; did a bzr up
to get the latest sources, then ran make -C lisp autoloads, and it
completed just fine.
Reply sent
to
Lars Magne Ingebrigtsen <larsi <at> gnus.org>
:
You have taken responsibility.
(Sun, 31 Jul 2011 14:42:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Tim Van Holder <tim.vanholder <at> gmail.com>
:
bug acknowledged by developer.
(Sun, 31 Jul 2011 14:42:02 GMT)
Full text and
rfc822 format available.
Message #54 received at 850-close <at> debbugs.gnu.org (full text, mbox):
Tim Van Holder <tim.vanholder <at> gmail.com> writes:
> Looks like it's gone. Hadn't built emacs in a long time; did a bzr up
> to get the latest sources, then ran make -C lisp autoloads, and it
> completed just fine.
Ok; I'm closing the bug report, then.
--
(domestic pets only, the antidote for overdose, milk.)
bloggy blog http://lars.ingebrigtsen.no/
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Mon, 29 Aug 2011 11:24:04 GMT)
Full text and
rfc822 format available.
This bug report was last modified 13 years and 297 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.