aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/subr_bus.c
Commit message (Expand)AuthorAgeFilesLines
* Fix some easy, global, lint warnings. In most cases, this meansMark Murray2003-04-301-2/+2
* Create a new function, device_is_attached(), that is likeWarner Losh2003-04-211-0/+6
* Fix /dev/devctl's implementation of poll. We should only be settingWarner Losh2003-04-211-11/+5
* Lock the process before sending it a SIGIO. Not doing so is a panic(2)John Baldwin2003-04-021-2/+7
* Make sure we actually have a dev before dereferencing in case someoneAlfred Perlstein2003-03-131-1/+1
* Gigacommit to improve device-driver source compatibility betweenPoul-Henning Kamp2003-03-031-13/+7
* Fix comment about what we do when there are no listeners.Warner Losh2003-01-191-13/+3
* Don't forget to disconnect object from class.David Xu2003-01-151-2/+3
* Don't record thread pointer, it's not permanent in process life cycle,David Xu2003-01-101-6/+6
* Correct typos, mostly s/ a / an / where appropriate. Some whitespace cleanup,Jens Schweikhardt2003-01-011-2/+2
* Use 0600 for permissions for /dev/devctl until it is cloneable.Warner Losh2003-01-011-1/+2
* devd kernel improvements:Warner Losh2002-11-301-21/+38
* Use %z to quiet a warning.John Baldwin2002-11-071-1/+1
* Use ; not , as statement separator in PDEBUG() macro.Poul-Henning Kamp2002-10-151-5/+4
* Introducing /dev/devctl. This device reports events in theWarner Losh2002-10-071-2/+326
* Two minor bugfixes:Warner Losh2002-10-071-0/+3
* Add wrappers around the newly created bus_child_pnpinfo_str andWarner Losh2002-10-071-2/+28
* Minor string handling cleanup that I've had in my tree for a while:Warner Losh2002-10-071-21/+20
* Don't need to NUL terminate after snprintfWarner Losh2002-10-071-1/+0
* Absorb <sys/bus_private.h> into kern/subr_bus.c to prevent misunderstandings.Poul-Henning Kamp2002-10-021-1/+75
* Move includ of <sys/bus_priate.h> later to get semantic identity ofPoul-Henning Kamp2002-09-281-1/+1
* Add additional information returned to userland by the device queryingWarner Losh2002-09-141-0/+5
* Fixed style bugs in resource_list_add_next().Bruce Evans2002-09-121-5/+5
* Include <vm/uma.h> instead of depending on namespace pollution inBruce Evans2002-09-111-7/+10
* Add bus_child_present and the child_present method to bus_if.mWarner Losh2002-07-211-0/+26
* Don't call malloc(9) to allocate zero bytes softc data for devices.Poul-Henning Kamp2002-04-231-1/+1
* Add resource_list_add_next() which returns the RID for the resource added.Matthew N. Dodd2002-03-291-0/+13
* Don't (blindly) truncate the unit number to 4 digits when formatting theBruce Evans2002-03-061-1/+3
* Fixed 3 regressions in rev.1.99 (clobbering of the English fix in rev.1.98,Bruce Evans2002-02-261-3/+4
* Hide "bla bla exists, skipping it" behind bootverbose.Søren Schmidt2002-02-261-4/+4
* Fixed an apparent typo ("-" before ":") and an English error (commaBruce Evans2001-12-281-4/+4
* Add a generic __BUS_ACCESSOR macro to construct ivar accessor functions,Thomas Moestl2001-12-211-2/+30
* Update to C99, s/__FUNCTION__/__func__/.David E. O'Brien2001-12-101-1/+1
* o No need to set values to 0 when we utilize M_ZEROAndrew R. Reiter2001-11-051-2/+0
* Don't hide the failure to allocate device behind boot verbose. It isWarner Losh2001-11-021-3/+2
* Add new interface functionAndrey A. Chernov2001-11-011-0/+10
* 1) In devclass_alloc_unit(), skip duplicated wired devices (i.e. with fixedAndrey A. Chernov2001-10-281-8/+8
* Move the hints gunk to a seperate file. It isn't really part of thePeter Wemm2001-07-141-299/+0
* Go back to having either static OR dynamic hints, with fallbackPeter Wemm2001-07-141-17/+42
* Hints overhaul:Peter Wemm2001-06-121-465/+274
* Unset the devclass if the attach fails and the devclass was not set toNick Hibma2001-01-081-0/+4
* Make this file conform mostly to style(9):Warner Losh2001-01-051-917/+909
* Convert more malloc+bzero to malloc+M_ZERO.David Malone2000-12-081-14/+7
* Staticize some malloc M_ instances.Poul-Henning Kamp2000-12-081-1/+1
* Alter the return value and arguments of the GET_RESOURCE_LIST bus method.Matthew N. Dodd2000-11-281-23/+17
* In preparation for deprecating CIRCLEQ macros in favor of TAILQKirk McKusick2000-11-141-4/+2
* Implement a trivial but effective interface for obtaining the kernel'sMike Smith2000-11-091-142/+213
* Add new bus method 'GET_RESOURCE_LIST' and appropriate genericMatthew N. Dodd2000-10-181-0/+92
* Initialize 'hints_loaded' to 0.Matthew N. Dodd2000-09-171-1/+1
* When we are picking the next available unit number, specifically sayPeter Wemm2000-09-051-3/+3