OpenBSD cvs log

created 2024-05-19T03:37:58Z
begin 2024-05-16T00:00:00Z
end 2024-05-17T00:00:00Z
path src/sys
commits 3

date 2024-05-16T09:30:03Z
author kettenis
files src/sys/arch/hppa/include/mutex.h log diff annotate
src/sys/arch/m88k/include/mutex.h log diff annotate
src/sys/sys/mutex.h log diff annotate
message Stop treating IPL_NONE mutexes special in MULTIPROCESSOR kernels. While
in theory these are safe to use in code that runs under the kernel lock
they are nasty trips when converting code to run without the kernel lock.

ok mpi@, claudio@

date 2024-05-16T10:52:11Z
author mglocker
files src/sys/dev/ic/ufshci.c log diff annotate
src/sys/dev/ic/ufshcireg.h log diff annotate
message As of the documentation, the value of the Command UPIU expected_xfer_len
field shall be the product of the Logical Block Size and the transfer
length field of the CDB.

date 2024-05-16T13:01:04Z
author bluhm
files src/sys/netinet/ip_output.c log diff annotate
message Fix IPsec in use with IP forwarding 2 logic.

If sysctl net.inet.ip.forwarding is 2, only packets processed by
IPsec are forwarded. Variable ipsec_in_use is a shortcut to avoid
IPsec processing if no policy has been configured. With ipsec_in_use
unset and ipforwarding set to IPsec only, the packet must be dropped.

OK claudio@