From: Michael Snyder <msnyder@redhat.com>
To: Andrew Cagney <ac131313@cygnus.com>
Cc: gdb-patches@sources.redhat.com
Subject: Re: [RFA] Crasher bug in infptrace.c
Date: Thu, 03 Jan 2002 12:15:00 -0000 [thread overview]
Message-ID: <3C34BAB2.573376FB@redhat.com> (raw)
In-Reply-To: <3C34B7FB.7060900@cygnus.com>
Andrew Cagney wrote:
>
> >
> > Will do.
> >
> >
> >
> >> > + int alloc = count * sizeof (PTRACE_XFER_TYPE);
> >> > + PTRACE_XFER_TYPE *buffer;
> >> > +
> >> > /* Allocate buffer of that many longwords. */
> >> > ! if (len < GDB_MAX_ALLOCA)
> >> > ! {
> >> > ! buffer = (PTRACE_XFER_TYPE *) alloca (alloc);
> >> > ! }
> >> > ! else
> >> > ! {
> >> > ! buffer = (PTRACE_XFER_TYPE *) xmalloc (alloc);
> >> > ! make_cleanup (xfree, buffer);
> >> > ! }
> >
> >>
> >> I think it would be better to just abandon the alloca() case and just
> >> use xmalloc(). That way the same code path (xmalloc()) is always used
> >> and mysterious / obscure bugs that end up being attributed to
> >> len?=GDB_MAX_ALLOCA can be avoided.
> >
> >
> > I don't think so -- this function gets called a lot. Heavy use of
> > xmalloc on small buffers might lead to fragmentation. Let's try the
> > idea of using alloca for small buffers and xmalloc for big ones.
>
> I think trying to tune an alloca() buffer size is really dangerous.
> GDB's crashability starts to depend on how many alloca's have gone
> before / after the above call. Regarding fragmentation, wouldn't it be
> better to get the code working correctly and only when fragmentation is
> demonstrated to be a problem, modify the algorithm.
>
> Anyway, looking at the code, I'm wondering if it would actually be
> better to just eliminate that bounce buffer and, instead just transfer
> the data directly. This might leave the buffer in an undefined state, I
> think, however, that is ok.
I spent an hour thinking about how to do that (without significantly
uglifying the code), and decided it was more trouble than I wanted to
go to. I agree with you -- the function doesn't require a buffer
at all. Anyone who wants to rewrite the function to that extent
is more than welcome to by me. ;-)
next prev parent reply other threads:[~2002-01-03 20:15 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-12-30 16:25 Michael Snyder
2001-12-30 22:26 ` Eli Zaretskii
2001-12-31 12:03 ` Michael Snyder
2001-12-31 12:05 ` Michael Snyder
2001-12-31 22:05 ` Eli Zaretskii
2001-12-31 21:59 ` Eli Zaretskii
2002-01-02 22:26 ` Andrew Cagney
2002-01-03 11:27 ` Michael Snyder
2002-01-03 11:58 ` Andrew Cagney
2002-01-03 12:15 ` Michael Snyder [this message]
2002-01-13 17:48 ` Andrew Cagney
2002-01-13 18:41 ` Michael Snyder
2002-01-13 19:27 ` Andrew Cagney
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3C34BAB2.573376FB@redhat.com \
--to=msnyder@redhat.com \
--cc=ac131313@cygnus.com \
--cc=gdb-patches@sources.redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox