linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Erik Andersen <andersen@codepoet.org>
To: Linus Torvalds <torvalds@transmeta.com>
Cc: "David S. Miller" <davem@redhat.com>,
	Dieter.Nuetzel@hamburg.de, linux-kernel@vger.kernel.org
Subject: Re: 7.52 second kernel compile
Date: Mon, 18 Mar 2002 22:24:57 -0700	[thread overview]
Message-ID: <20020319052457.GA25461@codepoet.org> (raw)
In-Reply-To: <20020318.162031.98995076.davem@redhat.com> <Pine.LNX.4.33.0203181805460.10711-100000@penguin.transmeta.com>

On Mon Mar 18, 2002 at 06:08:17PM -0800, Linus Torvalds wrote:
> 
> On Mon, 18 Mar 2002, David S. Miller wrote:
> >    
> >    Or maybe the program is just flawed, and the interesting 1/8 pattern comes 
> >    from something else altogether.
> > 
> > I think the weird Athlon behavior has to do with the fact that
> > you've made your little test program as much of a cache tester
> > as a TLB tester :-)
> 
> Oh, I was assuming that malloc(BIG) would do a mmap() of MAP_ANONYMOUS, 

Perhaps adding an explicit 

    void *malloc(size_t size)
    {
	void *result = mmap((void *) 0, size + sizeof(size_t), PROT_READ | PROT_WRITE,
		MAP_PRIVATE | MAP_ANONYMOUS, 0, 0);
	if (result == MAP_FAILED)
	    exit(EXIT_FAILURE);
	* (size_t *) result = size;
	return(result + sizeof(size_t));
    }

would ensure libc isn't trying to do something sneaky,

 -Erik

--
Erik B. Andersen             http://codepoet-consulting.com/
--This message was written using 73% post-consumer electrons--

  reply	other threads:[~2002-03-19  5:25 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-03-18 22:12 7.52 second kernel compile Dieter Nützel
2002-03-18 22:46 ` Linus Torvalds
2002-03-18 23:53   ` Davide Libenzi
2002-03-19  0:20   ` David S. Miller
2002-03-19  0:47     ` Davide Libenzi
2002-03-19  1:37     ` Andreas Ferber
2002-03-19  1:38       ` David S. Miller
2002-03-19  2:08     ` Linus Torvalds
2002-03-19  5:24       ` Erik Andersen [this message]
  -- strict thread matches above, loose matches on Subject: below --
2002-03-13  8:52 10.31 " Anton Blanchard
2002-03-16  6:15 ` 7.52 " Anton Blanchard
2002-03-16  8:05   ` Linus Torvalds
2002-03-16 11:54     ` yodaiken
2002-03-16 11:04   ` Paul Mackerras
2002-03-16 18:32     ` Linus Torvalds
2002-03-17  2:00     ` Paul Mackerras
2002-03-17  2:40       ` Linus Torvalds
2002-03-17  2:50         ` M. Edward Borasky
2002-03-18 19:42       ` Cort Dougan
2002-03-18 20:04         ` Linus Torvalds
2002-03-18 20:23           ` Linus Torvalds
2002-03-18 21:50             ` Rene Herman
2002-03-18 22:36             ` Cort Dougan
2002-03-18 22:47               ` Linus Torvalds
2002-03-18 22:56                 ` Cort Dougan
2002-03-18 23:52                 ` Paul Mackerras
2002-03-19  0:57                   ` Dave Jones
2002-03-19  3:35                     ` Jeff Garzik
2002-03-19  0:22                 ` David S. Miller
2002-03-19  0:27                   ` Cort Dougan
2002-03-19  0:27                     ` David S. Miller
2002-03-19  0:36                       ` Cort Dougan
2002-03-19  0:38                         ` David S. Miller
2002-03-19  1:28                           ` Davide Libenzi
2002-03-19  2:42             ` Paul Mackerras
2002-03-27  2:53             ` Richard Henderson
2002-04-02  4:32               ` Linus Torvalds
2002-04-02 10:50             ` Pablo Alcaraz
2002-03-18 21:34           ` Cort Dougan
2002-03-18 22:00             ` Linus Torvalds
2002-03-18 19:37     ` Cort Dougan

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=20020319052457.GA25461@codepoet.org \
    --to=andersen@codepoet.org \
    --cc=Dieter.Nuetzel@hamburg.de \
    --cc=davem@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@transmeta.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;
as well as URLs for NNTP newsgroup(s).