]> Devi Nivas Git - cs3210-lab0.git/log
cs3210-lab0.git
19 years agoand the file
kaashoek [Wed, 12 Jul 2006 17:19:24 +0000 (17:19 +0000)]
and the file

19 years agoextract lapic code from mp.c
kaashoek [Wed, 12 Jul 2006 17:00:54 +0000 (17:00 +0000)]
extract lapic code from mp.c

19 years agopasses both usertests
rtm [Wed, 12 Jul 2006 15:35:33 +0000 (15:35 +0000)]
passes both usertests
exit had acquire where I meant release
swtch now checks that you hold no locks

19 years agoi think my cmpxchg use was wrong in acquire
rtm [Wed, 12 Jul 2006 11:15:38 +0000 (11:15 +0000)]
i think my cmpxchg use was wrong in acquire
nesting cli/sti: release shouldn't always enable interrupts
separate setup of lapic from starting of other cpus, so cpu() works earlier
flag to disable locking in console output
make locks work even when curproc==0
(still crashes in clock interrupt)

19 years agocvs add spinlock.h
rtm [Wed, 12 Jul 2006 09:10:25 +0000 (09:10 +0000)]
cvs add spinlock.h
fix race in schedule()

19 years agono more big kernel lock
rtm [Wed, 12 Jul 2006 01:48:35 +0000 (01:48 +0000)]
no more big kernel lock
succeeds at usertests.c pipe test

19 years agogive each cpu its own clock, so that preemption works on cpu 1
rtm [Tue, 11 Jul 2006 18:45:27 +0000 (18:45 +0000)]
give each cpu its own clock, so that preemption works on cpu 1

19 years agopre-empt both user and kernel, in clock interrupt
rtm [Tue, 11 Jul 2006 17:39:45 +0000 (17:39 +0000)]
pre-empt both user and kernel, in clock interrupt
usertest.c tests pre-emption
kill()

19 years agoChanges to allow use of native x86 ELF compilers, which on my
rsc [Tue, 11 Jul 2006 01:07:40 +0000 (01:07 +0000)]
Changes to allow use of native x86 ELF compilers, which on my
Linux 2.4 box using gcc 3.4.6 don't seem to follow the same
conventions as the i386-jos-elf-gcc compilers.
Can run make 'TOOLPREFIX=' or edit the Makefile.

curproc[cpu()] can now be NULL, indicating that no proc is running.
This seemed safer to me than having curproc[0] and curproc[1]
both pointing at proc[0] potentially.

The old implementation of swtch depended on the stack frame layout
used inside swtch being okay to return from on the other stack
(exactly the V6 you are not expected to understand this).
It also could be called in two contexts: at boot time, to schedule
the very first process, and later, on behalf of a process, to sleep
or schedule some other process.

I split this into two functions: scheduler and swtch.

The scheduler is now a separate never-returning function, invoked
by each cpu once set up.  The scheduler looks like:

scheduler() {
setjmp(cpu.context);

pick proc to schedule
blah blah blah

longjmp(proc.context)
}

The new swtch is intended to be called only when curproc[cpu()] is not NULL,
that is, only on behalf of a user proc.  It does:

swtch() {
if(setjmp(proc.context) == 0)
longjmp(cpu.context)
}

to save the current proc context and then jump over to the scheduler,
running on the cpu stack.

Similarly the system call stubs are now in assembly in usys.S to avoid
needing to know the details of stack frame layout used by the compiler.

Also various changes in the debugging prints.

19 years agoqueue with disk requests
kaashoek [Mon, 10 Jul 2006 19:06:48 +0000 (19:06 +0000)]
queue with disk requests

19 years agooops
kaashoek [Mon, 10 Jul 2006 16:27:15 +0000 (16:27 +0000)]
oops

19 years agoread the disk using interrupts
kaashoek [Mon, 10 Jul 2006 13:08:37 +0000 (13:08 +0000)]
read the disk using interrupts

19 years agodisable all interrupts when acquiring lock
kaashoek [Thu, 6 Jul 2006 21:47:22 +0000 (21:47 +0000)]
disable all interrupts when acquiring lock
user program that makes a blocking system call

19 years agotimer interrupts
kaashoek [Wed, 5 Jul 2006 20:00:14 +0000 (20:00 +0000)]
timer interrupts
disk interrupts (assuming bochs has a bug)

19 years agoswtch saves callee-saved registers
rtm [Sat, 1 Jul 2006 21:26:01 +0000 (21:26 +0000)]
swtch saves callee-saved registers
swtch idles on per-CPU stack, not on calling process's stack
fix pipe bugs
usertest.c tests pipes, fork, exit, close

19 years agodisable interrupts when holding kernel lock
kaashoek [Wed, 28 Jun 2006 16:44:41 +0000 (16:44 +0000)]
disable interrupts when holding kernel lock

19 years agotimer interrupts
kaashoek [Wed, 28 Jun 2006 16:35:03 +0000 (16:35 +0000)]
timer interrupts

19 years agofile descriptors
rtm [Tue, 27 Jun 2006 14:35:53 +0000 (14:35 +0000)]
file descriptors
pipes

19 years agosystem call return values
rtm [Mon, 26 Jun 2006 20:31:52 +0000 (20:31 +0000)]
system call return values
initialize 2nd cpu's idt

19 years agostick mpstack in cpu structure
kaashoek [Mon, 26 Jun 2006 16:40:43 +0000 (16:40 +0000)]
stick mpstack in cpu structure

19 years agosystem call arguments
rtm [Mon, 26 Jun 2006 15:11:19 +0000 (15:11 +0000)]
system call arguments

19 years agoboot more than two CPUs, each on own initial stack
rtm [Sat, 24 Jun 2006 22:47:06 +0000 (22:47 +0000)]
boot more than two CPUs, each on own initial stack

19 years agobug in trapret
rtm [Thu, 22 Jun 2006 20:50:32 +0000 (20:50 +0000)]
bug in trapret

19 years agocompile "user programs"
rtm [Thu, 22 Jun 2006 20:47:23 +0000 (20:47 +0000)]
compile "user programs"
curproc array

19 years agosend console output to parallel port
rtm [Thu, 22 Jun 2006 15:51:57 +0000 (15:51 +0000)]
send console output to parallel port

19 years agooops
kaashoek [Thu, 22 Jun 2006 15:28:09 +0000 (15:28 +0000)]
oops

19 years agocheckpoint. booting second processor. stack is messed up, but thanks to cliff
kaashoek [Thu, 22 Jun 2006 01:28:57 +0000 (01:28 +0000)]
checkpoint. booting second processor.  stack is messed up, but thanks to cliff
and plan 9 code, at least boots and gets into C code.

19 years agostart on MP; detect MP configuration
kaashoek [Wed, 21 Jun 2006 01:53:07 +0000 (01:53 +0000)]
start on MP; detect MP configuration

19 years agocheckpoint
rtm [Fri, 16 Jun 2006 20:29:25 +0000 (20:29 +0000)]
checkpoint

19 years agosleep, wakeup, wait, exit
rtm [Thu, 15 Jun 2006 19:58:01 +0000 (19:58 +0000)]
sleep, wakeup, wait, exit

19 years agoprimitive fork and exit system calls
rtm [Thu, 15 Jun 2006 16:02:20 +0000 (16:02 +0000)]
primitive fork and exit system calls

19 years agofix some trap bugs
rtm [Tue, 13 Jun 2006 22:08:20 +0000 (22:08 +0000)]
fix some trap bugs

19 years agofoo
rtm [Tue, 13 Jun 2006 15:50:40 +0000 (15:50 +0000)]
foo

19 years agomore or less take traps/interrupts
rtm [Tue, 13 Jun 2006 15:50:06 +0000 (15:50 +0000)]
more or less take traps/interrupts

19 years agoxx
rtm [Mon, 12 Jun 2006 15:27:13 +0000 (15:27 +0000)]
xx

19 years agoimport
rtm [Mon, 12 Jun 2006 15:22:12 +0000 (15:22 +0000)]
import