created | 2018-11-30T00:03:44Z |
---|---|
begin | 2018-07-19T00:00:00Z |
end | 2018-07-20T00:00:00Z |
path | src/sys |
commits | 6 |
date | 2018-07-19T09:16:17Z | |||
---|---|---|---|---|
author | florian | |||
files | src/sys/net80211/ieee80211_node.c | log | diff | annotate |
message |
ieee80211_ess_is_better() returns 0 or 1, comparing > 1 is always false so we always selected the first wifi available, not the best one. While here shuffle some deck chairs to make it clearer that anything is better than nothing. tweak & OK phessler |
date | 2018-07-19T12:35:14Z | |||
---|---|---|---|---|
author | mpi | |||
files | src/sys/dev/usb/usb.h | log | diff | annotate |
src/sys/dev/usb/usb_subr.c | log | diff | annotate | |
message |
Reuse implicit padding to export the port number of a USB device in USB_DEVICEINFO. devel/libusb1 requires this piece of information. ok jcs@, mikeb@, jasper@, sthen@ |
date | 2018-07-19T17:33:26Z | |||
---|---|---|---|---|
author | sthen | |||
files | src/sys/dev/usb/usbdevs | log | diff | annotate |
message |
Add RTL8188EU under AboCom's vendor id. From FreeBSD via Mikhail |
date | 2018-07-19T17:33:42Z | |||
---|---|---|---|---|
author | sthen | |||
files | src/sys/dev/usb/usbdevs.h | log | diff | annotate |
src/sys/dev/usb/usbdevs_data.h | log | diff | annotate | |
message | sync |
date | 2018-07-19T17:34:22Z | |||
---|---|---|---|---|
author | sthen | |||
files | src/sys/dev/usb/if_urtwn.c | log | diff | annotate |
message |
attach RTL8188EU under AboCom's vendor id. From FreeBSD via Mikhail |
date | 2018-07-19T17:38:12Z | |||
---|---|---|---|---|
author | drahn | |||
files | src/sys/arch/arm64/arm64/exception.S | log | diff | annotate |
src/sys/arch/arm64/arm64/locore.S | log | diff | annotate | |
message |
Enable kernel profiling on arm64 sigcode() runs in user land context, so should not call mcount. Without the symbol type on the exception entry functions, gprof doesn't correctly identify the caller for exception entry symbols. ok kettenis@ |