| Commit message (Expand) | Author | Age | Files | Lines |
| * | Unify the two sleep lock order lists to enforce the process lock -> | John Baldwin | 2001-02-09 | 3 | -6/+6 |
| * | Revert the previous revision for two reasons: | John Baldwin | 2001-02-09 | 1 | -2/+0 |
| * | Work around some sizeof(long) != sizeof(int) bogons. | John Baldwin | 2001-02-09 | 2 | -3/+3 |
| * | Catch up to the new swi API. | John Baldwin | 2001-02-09 | 2 | -14/+12 |
| * | - Use a spin mutex instead of COM_LOCK, since COM_LOCK is going away. | John Baldwin | 2001-02-09 | 3 | -495/+249 |
| * | Use the MI ithread helper functions in the alpha hardware interrupt code. | John Baldwin | 2001-02-09 | 9 | -266/+63 |
| * | Catch up to changes to inthand_add(). | John Baldwin | 2001-02-09 | 5 | -40/+40 |
| * | Use the MI ithread helper functions in the x86 interrupt code. | John Baldwin | 2001-02-09 | 12 | -882/+398 |
| * | - Catch up to the new swi API changes: | John Baldwin | 2001-02-09 | 8 | -41/+39 |
| * | - Move struct ithd to sys/interrupt.h. | John Baldwin | 2001-02-09 | 3 | -121/+364 |
| * | Add a new SYSINIT for interrupt thread initialization and stick | John Baldwin | 2001-02-09 | 1 | -1/+2 |
| * | Axe INTR_HEAVY, INTR_LIGHT, and INTR_THREADED. Add in a INTR_TYPE_CLK | John Baldwin | 2001-02-09 | 1 | -4/+3 |
| * | Release the proc lock around crfree() and uifree() in wait1(). It leads to | John Baldwin | 2001-02-09 | 1 | -0/+2 |
| * | Unbreak EISA. The PCI-EISA bridge bus is named `eisab', not `isab'. | Joerg Wunsch | 2001-02-09 | 1 | -1/+1 |
| * | Proc locking. | John Baldwin | 2001-02-09 | 1 | -14/+10 |
| * | Move the initailization of the proc lock for proc0 very early into the MD | John Baldwin | 2001-02-09 | 7 | -1/+6 |
| * | Woops, remove an obsolete reference to gd_cpu_lockid. | John Baldwin | 2001-02-09 | 7 | -7/+0 |
| * | - Change the 'witness_list' ddb command to 'show mutexes'. Note that this | John Baldwin | 2001-02-09 | 3 | -54/+177 |
| * | Change the ktr ddb commands to be show commands. The commands are now as | John Baldwin | 2001-02-09 | 1 | -4/+4 |
| * | - Point out that we don't lock anything during the idle setup because | John Baldwin | 2001-02-09 | 1 | -1/+6 |
| * | Remove bogus #if 0'd code that dinked with the saved interrupt state in | John Baldwin | 2001-02-09 | 1 | -7/+0 |
| * | Remove unused forward_irq counters. | John Baldwin | 2001-02-09 | 3 | -27/+0 |
| * | Axe gd_cpu_lockid as it is no longer used. | John Baldwin | 2001-02-09 | 3 | -3/+0 |
| * | Fix some problems that were introduced in revision 1.97. Instead | Ian Dowse | 2001-02-09 | 2 | -92/+202 |
| * | Remove some leftovers. This is obviously unused, since the #defines | Peter Wemm | 2001-02-09 | 1 | -26/+0 |
| * | poll(2) array limits (take 2) - after some input from bde. | Peter Wemm | 2001-02-09 | 1 | -8/+7 |
| * | Change and clean the mutex lock interface. | Bosko Milekic | 2001-02-09 | 200 | -3705/+3493 |
| * | Apply patch to add support for the intergrated ethernet in the SiS630E | Bill Paul | 2001-02-09 | 2 | -1/+105 |
| * | Add includes of sys/malloc.h so this actually compiles. | John Baldwin | 2001-02-09 | 2 | -1/+2 |
| * | Whoops... forgotten a few pieces in previous patch: | Luigi Rizzo | 2001-02-08 | 1 | -5/+9 |
| * | Make sure that we do not accept packets shorter than a full ethernet | Luigi Rizzo | 2001-02-08 | 1 | -1/+3 |
| * | Fix memory leaks with dev_get_children(). | Warner Losh | 2001-02-08 | 1 | -0/+6 |
| * | Fix a memory leak. | Søren Schmidt | 2001-02-08 | 1 | -5/+4 |
| * | Fix memoryleaks with device_get_children(). | Jeroen Ruigrok van der Werven | 2001-02-08 | 2 | -0/+3 |
| * | Fix memory leaks with dev_get_children(). | Warner Losh | 2001-02-08 | 1 | -0/+3 |
| * | Free the memory we get from devclass_get_devices and device_get_children. | Mike Smith | 2001-02-08 | 3 | -9/+24 |
| * | Fix typos: initalise -> initialise. | Jeroen Ruigrok van der Werven | 2001-02-08 | 2 | -6/+6 |
| * | When we receive an incoming Ethernet frame that was unicast to a | Archie Cobbs | 2001-02-08 | 1 | -10/+14 |
| * | Added pc98 supports. | Yoshihiro Takahashi | 2001-02-08 | 1 | -0/+5 |
| * | Add recently added PHY drivers sources. | Semen Ustimenko | 2001-02-08 | 1 | -0/+3 |
| * | Don't bother with acquiring/releasing Giant around kmem_malloc() and | John Baldwin | 2001-02-08 | 1 | -40/+0 |
| * | Don't enable interrupts for a kernel breakpoint or trace trap. Otherwise, | John Baldwin | 2001-02-08 | 3 | -18/+21 |
| * | - Check if the ccb_infos in the softc is NULL before trying to free it in | John Baldwin | 2001-02-08 | 2 | -2/+11 |
| * | The code I picked up from NetBSD in '97 had a nasty bug. It limited | Peter Wemm | 2001-02-07 | 1 | -7/+15 |
| * | When SMPng was first committed, we removed 'cpl' from the interrupt | John Baldwin | 2001-02-07 | 2 | -2/+2 |
| * | Oops... I knew i shouldn't use arrows in vi. Fix a typo causing errors in | Semen Ustimenko | 2001-02-07 | 1 | -1/+0 |
| * | back out rev 1.49, looks like i committed it from the wrong tree. | Cameron Grant | 2001-02-07 | 1 | -421/+800 |
| * | Reflect recently added support for SMC9432FTX cards. | Semen Ustimenko | 2001-02-07 | 2 | -2/+2 |
| * | Add support for SMC9432FTX card, possibly othe fiber optic SMC9432 family | Semen Ustimenko | 2001-02-07 | 5 | -85/+406 |
| * | Add QS6612, AC101 and LXT970 personal drivers and register definitions. | Semen Ustimenko | 2001-02-07 | 8 | -7/+1368 |