From: Linus Torvalds <torvalds@linux-foundation.org>
To: Ingo Molnar <mingo@elte.hu>
Cc: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
Andrew Morton <akpm@linux-foundation.org>,
Mike Travis <travis@sgi.com>,
Rusty Russell <rusty@rustcorp.com.au>
Subject: Re: [git pull] cpus4096 fixes
Date: Sun, 27 Jul 2008 13:15:26 -0700 (PDT) [thread overview]
Message-ID: <alpine.LFD.1.10.0807271242260.3486@nehalem.linux-foundation.org> (raw)
In-Reply-To: <20080727190601.GA764@elte.hu>
On Sun, 27 Jul 2008, Ingo Molnar wrote:
>
> Please pull the latest cpus4096-fixes git tree from:
No. Not without explanations.
Quite frankly, this "fix" looks like a huge stinking pile of sh*t.
I can't follow that thread on lkml.org (horrible web interface with
hard-to-follow threading), and I'm too lazy to bother to look in my lkml
email archives, but whoever said
"The simple version is just a static array of [NR_CPUS] cpumask_t's."
and then implemented this piece of shit is a complete and utter moron.
I'm sorry, but guys, I really expect people to have better taste than
this, and also expect people to be able to _think_ better than this.
Am I right, and all you want is NR_CPU constant bitmasks that have just a
single big set in each (for that single CPU)?
And I further right, adn you are so STUPID that you cannot see that you
can share all the zero words?
In other words, on a 64-bit architecture, you only ever need 64 of these
arrays - with a different bit set in ONE SINGLE WORD (with enough zero
words around it so that you can create any bitmask by just offsetting in
that big array). And then you just put enough zeroes around it that you
can point _every_single_cpumask_ to be one of those things.
So when you have 4k CPU's, instead of having 4k arrays (of 4k bits each,
with one bit set in each array - 2MB memory total), you have exactly 64
arrays instead, each 8k bits in size (64kB total).
And then you just point cpumask(n) to the right position (which you can
calculate dynamically). Once you have the right arrays, getting
"cpumask(n)" ends up being something like
static const cpumask_t *cpumask_of_cpu(int cpu)
{
/* Get the array with the right bit set */
unsigned long *p = array[cpu % BITS_PER_LONG];
/* Offset it so that it's in the right word */
p += (NR_CPUS-n)/BITS_PER_LONG;
/* Return it as a cpumask_t */
return (cpumask_t) p;
}
And once you're not being a total idiot about wasting memory that is just
filled with a single bit in various different places, you don't need all
those games to re-create the arrays in some dense format, because they're
already going to be dense enough. If you compile a kernel for up to 4k
CPU's, "wasting" that 64kB of memory is a non-issue (especially since by
doing this "overlapping" trick you probbaly get better cache behaviour
anyway).
Ok, so now that I've insulted you and your pets (they're ugly!), show me
wrong, and then call me a d*ckhead. ("Linus - you're a d*ckhead, and you
didn't understand the problem, so you're a _stupid_ d*ckhead. And my
pet may be ugly, but yours _smells_ bad!").
Or say "Uh, yeah, we're morons, and here's the much better patch, and we
won't do that again".
Linus
next prev parent reply other threads:[~2008-07-27 20:18 UTC|newest]
Thread overview: 43+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-07-27 19:06 Ingo Molnar
2008-07-27 20:15 ` Linus Torvalds [this message]
2008-07-27 21:03 ` Ingo Molnar
2008-07-28 18:42 ` Mike Travis
2008-07-27 21:05 ` Al Viro
2008-07-27 22:17 ` Linus Torvalds
2008-07-28 0:42 ` Rusty Russell
2008-07-28 3:06 ` Andrew Morton
2008-07-28 6:34 ` Rusty Russell
2008-07-28 6:58 ` Nick Piggin
2008-07-28 7:56 ` Ingo Molnar
2008-07-28 18:12 ` Mike Travis
2008-07-28 8:33 ` Ingo Molnar
2008-07-28 18:07 ` Mike Travis
2008-07-28 17:50 ` Mike Travis
2008-07-28 18:32 ` Linus Torvalds
2008-07-28 18:37 ` Linus Torvalds
2008-07-28 18:51 ` Ingo Molnar
2008-07-28 19:22 ` Mike Travis
2008-07-28 19:31 ` Mike Travis
2008-07-28 19:04 ` Mike Travis
2008-07-28 20:57 ` [rfc git pull] cpus4096 fixes, take 2 Ingo Molnar
2008-07-28 21:35 ` Ingo Molnar
2008-07-28 21:41 ` [build error] drivers/char/pcmcia/ipwireless/hardware.c:571: error: invalid use of undefined type 'struct ipw_network' Ingo Molnar
2008-07-28 22:06 ` Ingo Molnar
2008-07-28 22:20 ` Andrew Morton
2008-07-28 22:29 ` Ingo Molnar
2008-07-30 14:59 ` David Sterba
2008-07-30 15:11 ` James Bottomley
2008-07-30 15:14 ` Jiri Kosina
2008-07-28 21:36 ` [rfc git pull] cpus4096 fixes, take 2 Mike Travis
2008-07-29 1:45 ` Rusty Russell
2008-07-29 12:11 ` Ingo Molnar
2008-07-30 0:15 ` Rusty Russell
2008-07-28 18:46 ` [git pull] cpus4096 fixes Mike Travis
2008-07-28 19:13 ` Ingo Molnar
2008-07-29 1:33 ` Rusty Russell
2008-07-28 0:53 ` Rusty Russell
2008-07-28 8:16 ` Ingo Molnar
2008-07-28 13:21 ` Rusty Russell
2008-07-28 18:23 ` Mike Travis
2008-07-31 10:30 ` Ingo Molnar
2008-07-28 8:43 ` Ingo Molnar
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=alpine.LFD.1.10.0807271242260.3486@nehalem.linux-foundation.org \
--to=torvalds@linux-foundation.org \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=rusty@rustcorp.com.au \
--cc=travis@sgi.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
Powered by JetHome