created | 2018-11-29T15:15:56Z |
---|---|
begin | 2018-05-19T00:00:00Z |
end | 2018-05-20T00:00:00Z |
path | src/sys |
commits | 4 |
date | 2018-05-19T10:43:10Z | |||
---|---|---|---|---|
author | patrick | |||
files | src/sys/dev/sdmmc/if_bwfm_sdio.c | log | diff | annotate |
src/sys/dev/sdmmc/if_bwfm_sdio.h | log | diff | annotate | |
message |
Akin to the PCI attachment driver we can extract the chip's dmesg(8) over the SDIO bus by accessing the correct addresses. This helped me find the RX FIFO overflow issue and might help find more issues where the chip's firmware complains about our wrongdoing. |
date | 2018-05-19T12:34:35Z | |||
---|---|---|---|---|
author | mpi | |||
files | src/sys/netinet/ip_ipsp.c | log | diff | annotate |
message |
Introduce a tdb_reaper() function to prevent a use-after-free when a timeout is blocking on the NET_LOCK(). Issue reported by Harald Dunkel, ok visa@, bluhm@ |
date | 2018-05-19T17:38:29Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/dev/acpi/dsdt.c | log | diff | annotate |
message |
Fix GenericSerialBus support by parsing ExtendedAccessField correctly. ok mlarkin@ |
date | 2018-05-19T20:04:55Z | |||
---|---|---|---|---|
author | bluhm | |||
files | src/sys/net/pfkeyv2.c | log | diff | annotate |
message |
As long we have no per socket locking, we must grab either net lock or kernel lock when accessing a socket. For pf key sockets it is kernel lock, so add its protection in pfkey_sendup(). Fixes a kernel lock assertion panic reported by Peter J. Philipp. OK mpi@ visa@ |