created | 2024-07-28T01:39:41Z |
---|---|
begin | 2024-07-23T00:00:00Z |
end | 2024-07-24T00:00:00Z |
path | src/sys |
commits | 4 |
date | 2024-07-23T08:38:02Z | |||
---|---|---|---|---|
author | claudio | |||
files | src/sys/kern/kern_synch.c | log | diff | annotate |
message |
Pass curproc pointer down from sleep_finish() instead of pulling it in again in sleep_signal_check(). OK dlg@ |
date | 2024-07-23T08:59:21Z | |||
---|---|---|---|---|
author | ratchov | |||
files | src/sys/dev/usb/uaudio.c | log | diff | annotate |
message |
uaudio: Fix confusion between interface numbers and interface indexes There is rare hardware for which the interface numbers and indexes are not equal. Such devices couldn't attach because the driver claimed the wrong interface. |
date | 2024-07-23T19:14:05Z | |||
---|---|---|---|---|
author | sf | |||
files | src/sys/dev/pv/virtio.c | log | diff | annotate |
message | virtio: fix comment |
date | 2024-07-23T20:04:51Z | |||
---|---|---|---|---|
author | tobhe | |||
files | src/sys/net/pfkeyv2_parsemessage.c | log | diff | annotate |
message |
Accept and ignore SADB_X_EXT_REPLAY and SADB_X_EXT_COUNTER payloads for incoming SADB_ADD and SADB_UPDATE message. Since we send them as part of the SADB_GET reply we must also accept them on SADB_ADD/UPDATE as sasyncd will forward payloads previously received in SADB_GET. Fixes a bug where sasync can't restore SAs because pfkey returns EINVAL. From Rafa\xc5\x82 Ramocki ok bluhm@ |