freebsd-skq/sys/alpha/alpha
John Baldwin 6c56727456 - Change fast interrupts on x86 to push a full interrupt frame and to
return through doreti to handle ast's.  This is necessary for the
  clock interrupts to work properly.
- Change the clock interrupts on the x86 to be fast instead of threaded.
  This is needed because both hardclock() and statclock() need to run in
  the context of the current process, not in a separate thread context.
- Kill the prevproc hack as it is no longer needed.
- We really need Giant when we call psignal(), but we don't want to block
  during the clock interrupt.  Instead, use two p_flag's in the proc struct
  to mark the current process as having a pending SIGVTALRM or a SIGPROF
  and let them be delivered during ast() when hardclock() has finished
  running.
- Remove CLKF_BASEPRI, which was #ifdef'd out on the x86 anyways.  It was
  broken on the x86 if it was turned on since cpl is gone.  It's only use
  was to bogusly run softclock() directly during hardclock() rather than
  scheduling an SWI.
- Remove the COM_LOCK simplelock and replace it with a clock_lock spin
  mutex.  Since the spin mutex already handles disabling/restoring
  interrupts appropriately, this also lets us axe all the *_intr() fu.
- Back out the hacks in the APIC_IO x86 cpu_initclocks() code to use
  temporary fast interrupts for the APIC trial.
- Add two new process flags P_ALRMPEND and P_PROFPEND to mark the pending
  signals in hardclock() that are to be delivered in ast().

Submitted by:	jakeb (making statclock safe in a fast interrupt)
Submitted by:	cp (concept of delaying signals until ast())
2000-10-06 02:20:21 +00:00
..
alpha-gdbstub.c Add $FreeBSD$ 2000-05-01 20:32:07 +00:00
api_up1000.c KNF'ize. 2000-07-18 18:26:03 +00:00
atomic.s Remove atomic_*_{32,64} since they are now inline. If you haven't rebuilt 2000-09-22 08:30:59 +00:00
autoconf.c - Heavyweight interrupt threads on the alpha for device I/O interrupts. 2000-10-05 23:09:57 +00:00
busdma_machdep.c * Completely rewrite the alpha busspace to hide the implementation from 2000-08-28 21:48:13 +00:00
busspace.c Remove a vestige of an older attempt at implementing this. 2000-08-29 08:50:17 +00:00
clock_if.m * Factor out the object system from new-bus so that it can be used by 2000-04-08 14:17:18 +00:00
clock.c Major update to the way synchronization is done in the kernel. Highlights 2000-09-07 01:33:02 +00:00
cpuconf.c - print out the correct cputype & string for unconfigured API systems 2000-06-25 20:41:49 +00:00
db_disasm.c Don't tell printf() to output a sign when printing out a value as hex. 2000-09-11 05:28:52 +00:00
db_instruction.h Add $FreeBSD$ 2000-05-01 20:32:07 +00:00
db_interface.c Don't release Giant for db_nofault exceptions since it isn't held when 2000-09-14 13:04:38 +00:00
db_trace.c Add $FreeBSD$ 2000-05-01 20:32:07 +00:00
dec_1000a.c * Completely rewrite the alpha busspace to hide the implementation from 2000-08-28 21:48:13 +00:00
dec_2100_a50.c * Completely rewrite the alpha busspace to hide the implementation from 2000-08-28 21:48:13 +00:00
dec_2100_a500.c * Completely rewrite the alpha busspace to hide the implementation from 2000-08-28 21:48:13 +00:00
dec_3000_300.c KNF'ize. 2000-07-18 18:26:03 +00:00
dec_3000_500.c KNF'ize. 2000-07-18 18:26:03 +00:00
dec_axppci_33.c * Completely rewrite the alpha busspace to hide the implementation from 2000-08-28 21:48:13 +00:00
dec_eb64plus.c KNF'ize. 2000-07-18 18:26:03 +00:00
dec_eb164.c KNF'ize. 2000-07-18 18:26:03 +00:00
dec_kn8ae.c Remove an OBE comment. 2000-07-18 18:27:06 +00:00
dec_kn20aa.c KNF'ize. 2000-07-18 18:26:03 +00:00
dec_kn300.c KNF'ize. 2000-07-18 18:26:03 +00:00
dec_st550.c KNF'ize. 2000-07-18 18:26:03 +00:00
dec_st6600.c * Completely rewrite the alpha busspace to hide the implementation from 2000-08-28 21:48:13 +00:00
divrem.m4 Add $FreeBSD$ 2000-05-01 20:32:07 +00:00
elf_machdep.c $Id$ -> $FreeBSD$ 1999-08-28 01:08:13 +00:00
exception.s $Id$ -> $FreeBSD$ 1999-08-28 01:08:13 +00:00
fp_emulate.c Re-organise the code which manages the owner of the FP state (fpcurproc). 1999-11-10 21:14:25 +00:00
genassym.c Remove the NCPU, NAPIC, NBUS, NINTR config options. Make NAPIC, 2000-09-22 23:40:10 +00:00
gensetdefs.c $Id$ -> $FreeBSD$ 1999-08-28 01:08:13 +00:00
ieee_float.c Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL" 1999-12-29 04:46:21 +00:00
ieee_float.h $Id$ -> $FreeBSD$ 1999-08-28 01:08:13 +00:00
in_cksum.c Fix checksum calculations. This should fix the network problems 2000-05-07 16:41:15 +00:00
interrupt.c - Heavyweight interrupt threads on the alpha for device I/O interrupts. 2000-10-05 23:09:57 +00:00
ipl_funcs.c - Heavyweight interrupt threads on the alpha for device I/O interrupts. 2000-10-05 23:09:57 +00:00
locore.s Major update to the way synchronization is done in the kernel. Highlights 2000-09-07 01:33:02 +00:00
machdep.c Big mbuf subsystem diff #1: incorporate mutexes and fix things up somewhat 2000-09-30 06:30:39 +00:00
mem.c Relocate sys/systm.h #include to quiet warning. 2000-09-11 05:19:37 +00:00
mp_machdep.c Move MAXCPU from machine/smp.h to machine/param.h to fix breakage 2000-09-23 12:18:06 +00:00
pal.s Add $FreeBSD$ 2000-05-01 20:32:07 +00:00
pmap.c Move MAXCPU from machine/smp.h to machine/param.h to fix breakage 2000-09-23 12:18:06 +00:00
procfs_machdep.c $Id$ -> $FreeBSD$ 1999-08-28 01:08:13 +00:00
prom_disp.s useracc() the prequel: 1999-10-29 18:09:36 +00:00
prom.c Major update to the way synchronization is done in the kernel. Highlights 2000-09-07 01:33:02 +00:00
promcons.c Alpha 8200: redo prom console code to be more up to date, etc. This 2000-03-18 08:02:35 +00:00
setdef0.c $Id$ -> $FreeBSD$ 1999-08-28 01:08:13 +00:00
setdef1.c $Id$ -> $FreeBSD$ 1999-08-28 01:08:13 +00:00
sgmap.c useracc() the prequel: 1999-10-29 18:09:36 +00:00
support.s Major update to the way synchronization is done in the kernel. Highlights 2000-09-07 01:33:02 +00:00
swtch.s - Heavyweight interrupt threads on the alpha for device I/O interrupts. 2000-10-05 23:09:57 +00:00
synch_machdep.c Fix spelling error ("exits" should be "exists"). 2000-10-04 01:20:49 +00:00
sys_machdep.c The kernel side of per-process unaligned access control (printing, fixing & 2000-01-16 07:07:33 +00:00
timerreg.h $Id$ -> $FreeBSD$ 1999-08-28 01:08:13 +00:00
trap.c - Change fast interrupts on x86 to push a full interrupt frame and to 2000-10-06 02:20:21 +00:00
vm_machdep.c Clear pcb_schednest in cpu_fork() for the child process. This is 2000-10-03 08:03:03 +00:00