index
:
wireguard-openbsd
jd/histogram
jd/queueboosts
jd/simplify-queueing
master
WireGuard implementation for the OpenBSD kernel
Matt Dunwoodie
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
sys
/
dev
/
usb
/
usb_subr.c
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
Return an error if getting the config descriptor failed.
jsg
2015-03-23
1
-1
/
+3
*
Always clear a port reset feature after setting it, or at least try to.
mpi
2014-12-21
1
-18
/
+17
*
yet more mallocarray() changes.
doug
2014-12-13
1
-4
/
+5
*
More malloc() -> mallocarray() in the kernel.
doug
2014-12-09
1
-4
/
+4
*
Remove USB locators. They are currently unused and this wont change due
mpi
2014-11-10
1
-45
/
+4
*
Remove the port status argument from usbd_reset_port(). We don't do
mpi
2014-11-01
1
-21
/
+18
*
Use usbd_set_port_feature() instead of rerolling it.
mpi
2014-11-01
1
-15
/
+3
*
Do not re-establish the default pipe twice for every controller. Move
mpi
2014-10-05
1
-24
/
+4
*
Check that the speed of a new device does not exceed its parent's speed
mpi
2014-10-01
1
-12
/
+1
*
Do not allocate space for the whole structure when we just want to store
mpi
2014-08-10
1
-3
/
+2
*
Do not store the whole USB hub descriptor in the "struct usbd_hub"
mpi
2014-08-09
1
-5
/
+4
*
add a size argument to free. will be used soon, but for now default to 0.
tedu
2014-07-12
1
-17
/
+17
*
Remove incorrect comment about how autoconf(9) works and document
mpi
2014-07-12
1
-16
/
+3
*
Only detach the USB device you disconnected, fix a regression reported
mpi
2014-07-12
1
-3
/
+7
*
Always assign the device address found by the USB stack even if it
mpi
2014-07-10
1
-4
/
+8
*
autoconf(9) is your friend and it knows you more than you think. It
mpi
2014-07-09
1
-51
/
+28
*
Adds an optional bus function to set the address of a new device and
mpi
2014-07-09
1
-18
/
+30
*
Pass M_ZERO to malloc(9) when allocating usbd pipes to make sure to
mpi
2014-03-08
1
-9
/
+4
*
Print the wrong device descriptor's bMaxPacketSize before correcting it
mpi
2014-03-07
1
-3
/
+3
*
Make sure to close the default pipe before re-opening it when we want
mpi
2014-02-09
1
-3
/
+3
*
Do not allow to unconfigure a device by setting the configuration
mpi
2014-02-09
1
-4
/
+1
*
Remove a hack to update the address and packet length for every device
mpi
2014-01-15
1
-2
/
+19
*
Kill matchlvl usage throughout the usb stack.
pirofti
2013-11-19
1
-13
/
+1
*
Remove a layer of abstraction for fetching a configuration descriptor.
mpi
2013-11-02
1
-7
/
+10
*
Unswap address and configuration value arguments in a debug printf.
mpi
2013-08-21
1
-3
/
+3
*
Remove bogus and useless refcounting of usbd pipes that could lead to
mpi
2013-08-13
1
-2
/
+1
*
These functions should only used in the usb-autoconf glue, do not expose
mpi
2013-08-08
1
-1
/
+4
*
Use the same functions to abort and close the control pipe of a device
mpi
2013-08-08
1
-14
/
+5
*
Get rid of various 'typedef struct' definitions and use plain structure
mglocker
2013-04-15
1
-39
/
+40
*
Merge usbd_get_device_desc() into the only function using them.
mpi
2013-04-10
1
-2
/
+3
*
Merge usb_devinfo* helper functions into usbd_print(), nothing else use
mpi
2013-04-10
1
-20
/
+5
*
There's no need for usbd_get_config_desc_full() so just call usbd_get_desc()
mpi
2013-04-09
1
-2
/
+2
*
Make ugen_get_cdesc() a generic function by renaming it to usbd_get_cdesc()
mglocker
2013-04-01
1
-1
/
+35
*
proc.h is way too much header for usb to handle.
tedu
2013-03-28
1
-2
/
+1
*
No need for two similar functions to free/remove USB device descriptors.
mpi
2013-03-16
1
-26
/
+16
*
Set the usb(4) unit number as bus number. This fixes a possible
mpi
2012-05-15
1
-2
/
+2
*
Remove usb_event_cookie_t type and instances of it found in various structs;
miod
2012-01-08
1
-5
/
+1
*
garbage collect "usb events". without /dev/usb there is no way to access
jakemsr
2011-01-25
1
-4
/
+1
*
* instead of NULLing pointers to interface descriptors in the uaa, mark
jakemsr
2011-01-16
1
-23
/
+34
*
* add 'udi_serial' to struct usb_device_info.
jakemsr
2011-01-15
1
-1
/
+5
*
- use nitems()
jasper
2010-12-17
1
-2
/
+2
*
don't delay if the device is dying
jakemsr
2010-12-15
1
-1
/
+4
*
call config_deactivate() before config_detach() when detaching devices.
jakemsr
2010-12-06
1
-1
/
+5
*
tsleep on a static and private handle, since our goal is to not be
deraadt
2010-09-24
1
-2
/
+5
*
cap device's speed to the parent's one if higher. from FreeBSD.
fgsch
2009-01-14
1
-1
/
+12
*
change a device descriptor get logic during the enumeration process.
yuo
2008-11-24
1
-7
/
+37
*
revert part of rev. 1.65 where we set the address earlier. this seems
fgsch
2008-08-03
1
-24
/
+16
*
When getting the string descriptors, fetch 2 bytes (size and type) first,
fgsch
2008-07-28
1
-3
/
+3
*
add usb2.0 to usb1.1(ohci/uchi) handover request to usb subsystem.
yuo
2008-06-29
1
-1
/
+51
*
First pass at removing clauses 3 and 4 from NetBSD licenses.
ray
2008-06-26
1
-8
/
+1
[next]