| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove Giant from CAM. Drivers (SIMs) now register a mutex that CAM will | scottl | 2007-04-15 | 1 | -1/+3 |
* | Remove a useless cast from void * to struct ppb_device *. | piso | 2007-03-06 | 1 | -1/+1 |
* | Catchup with filters | imp | 2007-02-23 | 1 | -2/+3 |
* | o break newbus api: add a new argument of type driver_filter_t to | piso | 2007-02-23 | 4 | -8/+9 |
* | Fix fat-fingering in previous commit. | jhb | 2006-12-29 | 1 | -1/+1 |
* | Various bpf(4) related fixes to catch places up to the new bpf(4) | jhb | 2006-12-29 | 1 | -5/+5 |
* | Add MODULE_DEPENDS for cam, pci, mca, eisa and isa where needed. | mjacob | 2006-12-11 | 1 | -0/+2 |
* | Since DELAY() was moved, most <machine/clock.h> #includes have been | phk | 2006-05-16 | 1 | -1/+0 |
* | Import ACPI Dock Station support. Note that this is still very young. | iwasaki | 2006-04-15 | 2 | -0/+34 |
* | - Use bus_setup_intr() and bus_teardown_intr() to register device driver | jhb | 2006-02-22 | 3 | -5/+5 |
* | Use a wildcard unit (-1) to device_find_child() in our identify routine to | jhb | 2006-02-13 | 1 | -1/+1 |
* | Add missing MODULE_DEPEND() so that ppbus.ko and these .ko's can be | ru | 2005-12-21 | 5 | -0/+5 |
* | bandaid assumption that char is signed | sam | 2005-12-21 | 1 | -1/+1 |
* | Propagate rename of IFF_OACTIVE and IFF_RUNNING to IFF_DRV_OACTIVE and | rwatson | 2005-08-09 | 1 | -6/+8 |
* | Stop embedding struct ifnet at the top of driver softcs. Instead the | brooks | 2005-06-10 | 1 | -21/+25 |
* | In ppsintr, we needed ppsdev to get to the softc and nothing else. | imp | 2005-04-14 | 1 | -11/+7 |
* | When locking a MTX_SPIN, one needs to use mtx_lock_spin. | imp | 2005-03-17 | 1 | -5/+7 |
* | Remove unused variable. | phk | 2005-03-17 | 1 | -6/+0 |
* | Make the pps interrupt register as MPSAFE and FAST. Use a spin lock | imp | 2005-03-11 | 1 | -6/+15 |
* | Kill trailing white space | imp | 2005-03-10 | 1 | -3/+3 |
* | Back out previous commit. The description didn't match the commit, | imp | 2005-03-06 | 1 | -1/+1 |
* | Use BUS_PROBE_DEFAULT for pci probe return value | imp | 2005-03-05 | 1 | -1/+1 |
* | Start each of the license/copyright comments with /*-, minor shuffle of lines | imp | 2005-01-06 | 5 | -5/+5 |
* | Apply error and success logic consistently to the function netisr_queue() and | andre | 2004-08-27 | 1 | -2/+2 |
* | Since if_plip doesn't contain locking or run with INTR_MPSAFE, mark | rwatson | 2004-08-13 | 1 | -1/+2 |
* | Do not bzero() the softc, as newbus does it for us. | cognet | 2004-07-09 | 5 | -5/+0 |
* | Newbus returns a zeroed softc, so there's no need to call bzero() here. | cognet | 2004-07-09 | 1 | -2/+0 |
* | Do the dreaded s/dev_t/struct cdev */ | phk | 2004-06-16 | 4 | -22/+22 |
* | Add missing <sys/module.h> includes | phk | 2004-05-30 | 1 | -0/+1 |
* | Prevent the strange situation that after each load/unload of a ppbus | guido | 2004-03-18 | 7 | -7/+34 |
* | Device megapatch 4/6: | phk | 2004-02-21 | 4 | -0/+8 |
* | Device megapatch 1/6: | phk | 2004-02-21 | 4 | -8/+0 |
* | Apparently there's a good reason why M_WAITOK malloc() is done before | ru | 2004-01-18 | 1 | -2/+2 |
* | Fixed a memory leak. | ru | 2004-01-18 | 1 | -1/+2 |
* | o eliminate widespread on-stack mbuf use for bpf by introducing | sam | 2003-12-28 | 1 | -12/+1 |
* | Replace the if_name and if_unit members of struct ifnet with new members | brooks | 2003-10-31 | 1 | -4/+3 |
* | Remove unused lp_unit member from softc. | brooks | 2003-10-30 | 1 | -3/+0 |
* | Use __FBSDID(). | obrien | 2003-08-24 | 13 | -16/+40 |
* | Define a module version. | imp | 2003-08-22 | 1 | -0/+2 |
* | Consistently use the BSD u_int and u_short instead of the SYSV uint and | jhb | 2003-08-07 | 1 | -3/+3 |
* | Fix a printf warning from the recent CAM changes. | jhb | 2003-05-01 | 1 | -2/+2 |
* | Centralize the devstat handling for all GEOM disk device drivers | phk | 2003-03-08 | 1 | -2/+0 |
* | Update netisr handling; Each SWI now registers its queue, and all queue | jlemon | 2003-03-04 | 1 | -10/+2 |
* | Gigacommit to improve device-driver source compatibility between | phk | 2003-03-03 | 4 | -52/+24 |
* | More low-hanging fruit: kill caddr_t in calls to wakeup(9) / [mt]sleep(9). | des | 2003-03-02 | 1 | -6/+6 |
* | Back out M_* changes, per decision of the TRB. | imp | 2003-02-19 | 3 | -4/+4 |
* | Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0. | alfred | 2003-01-21 | 3 | -4/+4 |
* | Fix typos, mostly s/ an / a / where appropriate and a few s/an/and/ | schweikh | 2002-12-30 | 2 | -14/+14 |
* | Synchronize mode for ppsX devices to that found previously in MAKEDEV | rwatson | 2002-12-27 | 1 | -2/+2 |
* | Synchronize make_dev() for pcfclock devices to the values in MAKEDEV | rwatson | 2002-12-27 | 1 | -1/+1 |