aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/subr_bus.c
Commit message (Expand)AuthorAgeFilesLines
* Revert r267961, r267973:Glen Barber2014-06-271-14/+13
* Extend the meaning of the CTLFLAG_TUN flag to automatically check ifHans Petter Selasky2014-06-271-13/+14
* Revert r263754, re-adding support for hw.bus.devctl_disable. BreakingBrooks Davis2014-04-281-3/+37
* Add kqueue support for devctl.David Xu2014-04-101-0/+41
* Fix SIGIO delivery. Use fsetown() to handle file descriptor ownerDavid Xu2014-04-041-30/+13
* Document a known problem with handling the process intended to receiveMateusz Guzik2014-03-251-0/+16
* Remove long obsolete sysctl hw.bus.devctl_disable.Mateusz Guzik2014-03-251-37/+3
* Remove lockless check in devopen, while correct it does not make much sense.Mateusz Guzik2014-03-251-2/+0
* Make /dev/devctl mpsafe.Mateusz Guzik2014-03-251-7/+15
* Add YARROW_RNG and FORTUNA_RNG to sys/conf/options.Dag-Erling Smørgrav2013-10-081-0/+16
* Allow drivers to return BUS_PROBE_NOWILDCARD from their attach routine toRyan Stone2013-08-081-3/+3
* PR: 168520 170096Craig Rodrigues2013-07-151-1/+7
* Make detaching drivers from PCI devices more robust. While here, fix aJohn Baldwin2013-06-271-0/+42
* Fix a typo.John Baldwin2013-01-231-1/+1
* Provide a generic way to disable devices at boot timeEitan Adler2012-10-021-0/+7
* Add a BUS_CHILD_DELETED() method that a bus can hook to allow it to cleanupJohn Baldwin2012-08-211-0/+2
* Revert r239178 and implement two new functions, namelyHans Petter Selasky2012-08-151-14/+33
* Add new device method to free the automaticallyHans Petter Selasky2012-08-101-4/+14
* device_add_child: protect against child device with no driver but fixed unit ...Andriy Gapon2012-05-251-0/+2
* Allow device_busy() and device_unbusy() to be invoked while a device isJohn Baldwin2012-04-111-5/+13
* Properly clear a device's devclass if DEVICE_ATTACH() fails if the deviceJohn Baldwin2012-02-281-3/+2
* Clear the a device's description string anytime it's driver changes.John Baldwin2012-02-271-3/+2
* - Fix undefined behavior when device_get_name is nullEitan Adler2012-01-151-2/+8
* It doesn't make much sense to check whether child is NULL after alreadyMarius Strobl2011-12-021-4/+5
* - In device_probe_child(9) check the return value of device_set_driver(9)Marius Strobl2011-12-021-11/+15
* Rename device_delete_all_children() into device_delete_children().Hans Petter Selasky2011-11-221-1/+1
* Style change.Hans Petter Selasky2011-11-221-2/+2
* Move the device_delete_all_children() function from usb_util.cHans Petter Selasky2011-11-191-0/+33
* In device_get_children() avoid malloc(0) in order to increase portabilityMarius Strobl2011-10-091-0/+5
* In order to maximize the re-usability of kernel code in user space thisKip Macy2011-09-161-1/+1
* Add a new bus method, BUS_ADJUST_RESOURCE() that is intended to be aJohn Baldwin2011-04-291-0/+32
* - Merge changes to the base system to support OFED. These includeJeff Roberson2011-03-211-2/+2
* Similar to 189574, properly handle subclasses of bus drivers when deletingJohn Baldwin2011-03-011-30/+81
* Specify a CTLTYPE_FOO so that a future sysctl(8) change does not needMatthew D Fleming2011-01-181-6/+6
* Finish r210923, 210926. Mark some devices as eternal.Konstantin Belousov2011-01-041-2/+2
* removed tag is '-', not '+'.Warner Losh2010-12-021-2/+1
* Remove redundant (and bogus) insertion of pnp info when announcing newWarner Losh2010-11-301-37/+2
* Add a resource_list_reserved() method that returns true if a resourceJohn Baldwin2010-11-171-0/+24
* By popular demand, kill all the non GIANT related interrupt messages.Warner Losh2010-09-171-9/+0
* bus_add_child: change type of order parameter to u_intAndriy Gapon2010-09-101-1/+1
* subr_bus: use hexadecimal representation for bit flagsAndriy Gapon2010-09-081-8/+8
* struct device: widen type of flags and order fields to u_intAndriy Gapon2010-09-041-5/+4
* Properly indent a continue statement. No functional changes.Justin T. Gibbs2010-08-121-1/+1
* Use ISO C99 integer types in sys/kern where possible.Ed Schouten2010-06-211-3/+3
* Add modifications of devctl_notify(9) functions that take flags. UseKonstantin Belousov2010-06-121-6/+21
* Call BUS_PROBE_NOMATCH() when device detached due to driver unload.Alexander Motin2010-06-071-0/+4
* Make sure that we free the passed in data message if we don't actuallyWarner Losh2010-04-201-3/+12
* Spelling nitGavin Atkinson2010-02-071-1/+1
* Actually set RLE_ALLOCATED when allocating a reserved resource so thatJohn Baldwin2009-12-301-3/+3
* - Assert that a reserved resource returned via resource_list_alloc() is notJohn Baldwin2009-12-301-1/+12