OpenBSD cvs log

created 2023-12-05T01:59:08Z
begin 2023-11-28T00:00:00Z
end 2023-11-29T00:00:00Z
path src/sys
commits 4

date 2023-11-28T00:17:48Z
author dv
files src/sys/arch/amd64/amd64/vmm_support.S log diff annotate
src/sys/arch/amd64/include/vmmvar.h log diff annotate
message Adapt inv{vpid,ept} to return success or failure.

ok mlarkin@

date 2023-11-28T09:10:18Z
author jsg
files src/sys/arch/riscv64/include/vmparam.h log diff annotate
src/sys/arch/riscv64/riscv64/pmap.c log diff annotate
src/sys/arch/riscv64/riscv64/trap.c log diff annotate
message remove more unused defines
ok kettenis@

date 2023-11-28T09:29:20Z
author jsg
files src/sys/dev/ic/cac.c log diff annotate
src/sys/dev/ic/mfi.c log diff annotate
src/sys/kern/uipc_usrreq.c log diff annotate
message correct spelling of FALLTHROUGH

date 2023-11-28T13:23:20Z
author bluhm
files src/sys/net/if_etherip.c log diff annotate
src/sys/net/if_gif.c log diff annotate
src/sys/net/if_gre.c log diff annotate
src/sys/net/if_vxlan.c log diff annotate
src/sys/net/pfkeyv2_convert.c log diff annotate
src/sys/net/pipex.c log diff annotate
src/sys/netinet/in_pcb.h log diff annotate
src/sys/netinet/ip_ipip.c log diff annotate
src/sys/netinet/tcp_usrreq.c log diff annotate
src/sys/netinet/udp_usrreq.c log diff annotate
src/sys/netinet6/icmp6.c log diff annotate
src/sys/netinet6/in6.h log diff annotate
src/sys/netinet6/in6_pcb.c log diff annotate
src/sys/netinet6/in6_src.c log diff annotate
src/sys/netinet6/ip6_output.c log diff annotate
src/sys/netinet6/raw_ip6.c log diff annotate
src/sys/netinet6/udp6_output.c log diff annotate
message Remove struct inpcb from in6_embedscope() parameters.

rip6_output() did modify inp_outputopts6 temporarily to provide
different ip6_pktopts to in6_embedscope(). Better pass inp_outputopts6
and inp_moptions6 as separate arguments to in6_embedscope().
Simplify the code that deals with these options in in6_embedscope().
Doucument inp_moptions and inp_moptions6 as protected by net lock.

OK kn@