From: William Lee Irwin III <wli@holomorphy.com>
To: Dave Jones <davej@suse.de>, Ingo Molnar <mingo@elte.hu>,
Linux Kernel <linux-kernel@vger.kernel.org>,
James Bottomley <James.Bottomley@SteelEye.com>,
Linus Torvalds <torvalds@transmeta.com>
Subject: Re: [patch] scheduler bits from 2.5.23-dj1
Date: Thu, 20 Jun 2002 10:20:59 -0700 [thread overview]
Message-ID: <20020620172059.GW22961@holomorphy.com> (raw)
In-Reply-To: <20020620014729.X29373@suse.de>
On Thu, Jun 20, 2002 at 01:47:29AM +0200, Dave Jones wrote:
> I'll take a look at this tomorrow, unless William "no sleep `til 2.6" Irwin
> beats me to it 8-) (he did this part of the patch iirc).
How does this look? (compiles, boots, & runs on UP i386)
Cheers,
Bill
diff -urN linux-2.5.23-virgin/include/linux/sched.h linux-2.5.23-wli/include/linux/sched.h
--- linux-2.5.23-virgin/include/linux/sched.h Thu Jun 20 00:10:26 2002
+++ linux-2.5.23-wli/include/linux/sched.h Thu Jun 20 08:21:30 2002
@@ -144,6 +144,7 @@
typedef struct task_struct task_t;
extern void sched_init(void);
+extern void pidhash_init(void);
extern void init_idle(task_t *idle, int cpu);
extern void show_state(void);
extern void cpu_init (void);
diff -urN linux-2.5.23-virgin/init/main.c linux-2.5.23-wli/init/main.c
--- linux-2.5.23-virgin/init/main.c Thu Jun 20 00:10:27 2002
+++ linux-2.5.23-wli/init/main.c Thu Jun 20 08:21:04 2002
@@ -347,6 +347,7 @@
trap_init();
init_IRQ();
sched_init();
+ pidhash_init();
softirq_init();
time_init();
diff -urN linux-2.5.23-virgin/kernel/fork.c linux-2.5.23-wli/kernel/fork.c
--- linux-2.5.23-virgin/kernel/fork.c Thu Jun 20 00:10:27 2002
+++ linux-2.5.23-wli/kernel/fork.c Thu Jun 20 08:20:33 2002
@@ -27,7 +27,7 @@
#include <linux/fs.h>
#include <linux/mm.h>
#include <linux/jiffies.h>
-
+#include <linux/bootmem.h>
#include <asm/pgtable.h>
#include <asm/pgalloc.h>
#include <asm/uaccess.h>
@@ -49,6 +49,25 @@
list_t *pidhash;
unsigned long pidhash_size;
+
+void __init pidhash_init(void)
+{
+ int i, size = PAGE_SIZE*sizeof(list_t);
+
+ do {
+ pidhash = (list_t *)alloc_bootmem(size);
+ if (!pidhash)
+ size >>= 1;
+ } while (!pidhash && size >= sizeof(list_t));
+
+ if (!pidhash)
+ panic("Failed to allocated pid hash table!\n");
+
+ pidhash_size = size/sizeof(list_t);
+
+ for (i = 0; i < pidhash_size; ++i)
+ INIT_LIST_HEAD(&pidhash[i]);
+}
rwlock_t tasklist_lock __cacheline_aligned = RW_LOCK_UNLOCKED; /* outer */
diff -urN linux-2.5.23-virgin/kernel/sched.c linux-2.5.23-wli/kernel/sched.c
--- linux-2.5.23-virgin/kernel/sched.c Thu Jun 20 00:10:27 2002
+++ linux-2.5.23-wli/kernel/sched.c Thu Jun 20 08:20:47 2002
@@ -1662,21 +1662,7 @@
void __init sched_init(void)
{
runqueue_t *rq;
- int i, j, k, size = PAGE_SIZE*sizeof(list_t);
-
- do {
- pidhash = (list_t *)alloc_bootmem(size);
- if (!pidhash)
- size >>= 1;
- } while (!pidhash && size >= sizeof(list_t));
-
- if (!pidhash)
- panic("Failed to allocated pid hash table!\n");
-
- pidhash_size = size/sizeof(list_t);
-
- for (i = 0; i < pidhash_size; ++i)
- INIT_LIST_HEAD(&pidhash[i]);
+ int i, j, k;
for (i = 0; i < NR_CPUS; i++) {
prio_array_t *array;
next prev parent reply other threads:[~2002-06-20 17:21 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-06-19 11:23 Linux 2.5.23-dj1 Dave Jones
2002-06-19 23:36 ` [patch] scheduler bits from 2.5.23-dj1 Ingo Molnar
2002-06-19 23:47 ` Robert Love
2002-06-20 0:07 ` Andrea Arcangeli
2002-06-20 0:10 ` Robert Love
2002-06-19 23:47 ` Dave Jones
2002-06-20 17:20 ` William Lee Irwin III [this message]
2002-06-20 17:31 ` Ingo Molnar
2002-06-20 17:52 ` William Lee Irwin III
2002-06-20 18:17 ` William Lee Irwin III
2002-06-20 19:26 ` William Lee Irwin III
2002-06-21 1:34 ` William Lee Irwin III
2002-06-19 23:56 ` William Lee Irwin III
2002-06-20 7:26 ` Manik Raina
2002-06-20 13:13 ` Ingo Molnar
2002-06-20 13:34 ` Ingo Molnar
-- strict thread matches above, loose matches on Subject: below --
2002-06-20 10:11 Mikael Pettersson
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=20020620172059.GW22961@holomorphy.com \
--to=wli@holomorphy.com \
--cc=James.Bottomley@SteelEye.com \
--cc=davej@suse.de \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--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