CVS: cvs.openbsd.org: src

2022-06-13 Thread Henning Brauer
CVSROOT:/cvs
Module name:src
Changes by: henn...@cvs.openbsd.org 2022/06/13 06:48:00

Modified files:
sys/net: pf.c 

Log message:
fix logic bug in pf_find_state()
a state in PFTM_PURGE could potentially hide another state on the same state
key that is active and we'd incorrectly block the packet
I believe that cannot happen as things are now.
ok sashan



CVS: cvs.openbsd.org: src

2022-06-13 Thread Mark Kettenis
CVSROOT:/cvs
Module name:src
Changes by: kette...@cvs.openbsd.org2022/06/13 06:40:30

Modified files:
sys/arch/arm64/dev: aplsart.c 

Log message:
Fix compatible strings to match the official device tree binding.

ok patrick@, dlg@, jsg@



CVS: cvs.openbsd.org: src

2022-06-13 Thread Claudio Jeker
CVSROOT:/cvs
Module name:src
Changes by: clau...@cvs.openbsd.org 2022/06/13 03:57:44

Modified files:
usr.sbin/bgpd  : kroute.c 

Log message:
Split dispatch_rtmsg_addr() into a function parsing a route message
into a struct kroute_full and then two functions to add/change or delete
that route from the kroute tree.
Cleanup some additional things and use the same parse funtion in fetchtable.
OK tb@