created | 2023-09-29T18:44:29Z |
---|---|
begin | 2023-09-26T00:00:00Z |
end | 2023-09-27T00:00:00Z |
path | src/sys |
commits | 4 |
date | 2023-09-26T08:30:13Z | |||
---|---|---|---|---|
author | mvs | |||
files | src/sys/dev/pv/vmt.c | log | diff | annotate |
message |
Use shared netlock to protect ifnet data within vmt_tclo_broadcastip(). Execute vmt_tclo_tick() timeout handler in process context to allow context switch within vmt_tclo_broadcastip(). ok yasuoka |
date | 2023-09-26T13:27:32Z | |||
---|---|---|---|---|
author | deraadt | |||
files | src/sys/conf/newvers.sh | log | diff | annotate |
message | we are heading out of -beta |
date | 2023-09-26T15:16:44Z | |||
---|---|---|---|---|
author | sthen | |||
files | src/sys/net/if_wg.c | log | diff | annotate |
message |
Have wg(4) copy the priority from the inner packet to the outer encrypted packet, so that higher priority packets are picked from hfsc queues for earlier transmission. (Does not copy ToS bits from inner to outer packet headers sent on the wire, which some may regard as secret). tested by Andrew Lemin, ok dlg@ |
date | 2023-09-26T19:55:24Z | |||
---|---|---|---|---|
author | mvs | |||
files | src/sys/dev/midi.c | log | diff | annotate |
src/sys/dev/midivar.h | log | diff | annotate | |
message |
Use existing `audio_lock' mutex(9) to make `midi{read,write}_filtops' MP safe. knote_locked(9) will not grab kernel lock, so call it directly from interrupt handlers instead of scheduling software interrupts. feedback and ok ratchov |