created | 2020-07-28T20:10:04Z |
---|---|
begin | 2020-05-19T00:00:00Z |
end | 2020-05-20T00:00:00Z |
path | src/sys |
commits | 7 |
date | 2020-05-19T06:32:24Z | |||
---|---|---|---|---|
author | mpi | |||
files | src/sys/dev/audio.c | log | diff | annotate |
message |
Implement kqueue(2) support. Assert that the KERNEL_LOCK() has to be held before grabbing `audio_lock' to prevent lock ordering issues inside selwakeup(). ok visa@, ratchov@ |
date | 2020-05-19T08:11:25Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/dev/fdt/amlpwrc.c | log | diff | annotate |
message | Use static inline instead of inline; fixes ramdisk build. |
date | 2020-05-19T08:34:19Z | |||
---|---|---|---|---|
author | stsp | |||
files | src/sys/net80211/ieee80211_output.c | log | diff | annotate |
message |
Do not set the 802.11 ESS capability bit in association requests. The ESS capability bit should be set if the transmitter is an AP. Association requests are sent by clients. ok jca@ |
date | 2020-05-19T12:54:37Z | |||
---|---|---|---|---|
author | patrick | |||
files | src/sys/lib/libsa/in_cksum.c | log | diff | annotate |
message |
If we pass a packet length larger than 2^16, we should panic() instead of returning -1. With a return type of u_int16_t, -1 is not different to a valid checksum. For incoming packets, the header lengths don't exceed that size anyway, but for outgoing packets it's better to see if our bootloader crafts a broken one. Discussed with gerhard@ ok deraadt@ procter@ |
date | 2020-05-19T14:26:59Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/dev/acpi/acpivout.c | log | diff | annotate |
message |
Don't provide backlight control if the list returned by _BCL is empty. Prevents crashes on broken AML. ok jcs@ |
date | 2020-05-19T15:47:32Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/dev/fdt/amlmmc.c | log | diff | annotate |
message | We need to double the clock frequency for DDR modes. |
date | 2020-05-19T18:57:57Z | |||
---|---|---|---|---|
author | stsp | |||
files | src/sys/net80211/ieee80211_output.c | log | diff | annotate |
message |
Revert previous; Set the ESS capability bit in assoc requests again. Association to some access points breaks without the ESS capability bit. Apparently I misunderstood something. Reported by krw@ and tb@ |