OpenBSD cvs log

created 2025-03-05T08:36:43Z
begin 2025-03-02T00:00:00Z
end 2025-03-03T00:00:00Z
path src/sys
commits 3

date 2025-03-02T08:18:12Z
author landry
files src/sys/dev/usb/upd.c log diff annotate
message upd(4): fix RunTimeToEmpty on at least some EATON models

for some reason when that hid report is on 4 bytes, the value is
absurdly high (eg 'days'). Comparing with what sysutils/nut says,
right-shifting the value given by the device matches the readings from
nut (eg between 30mn and 1h).

looking at the usbhid parser in nut, it seems to refer to the concept of
'offset' in a reading, but that's something we don't have in hid.c, and
isn't clearly mentioned in the usbhid spec.. besides the cryptic
sentence 'the offset of a field in a report is determined by the fields
that are declared before it'.

tested on macppc & amd64 with an 'EATON Ellipse PRO' (which reports
a broken value on 4 bytes) and an 'APC Back-UPS BX950MI' (which reports
an already correct value on 2 bytes)

a variation of this was tested a while ago by Walter Alejandro Iglesias
to fix the same issue on a 'Eaton 3S 550'.

to know the report size for RunTimeToEmpty:
$lsusb -v -d <vendor>:<product> | grep -A2 'Time To Empty' | grep Size

ok miod@

date 2025-03-02T21:28:31Z
author bluhm
files src/sys/net/if.c log diff annotate
src/sys/net/if.h log diff annotate
src/sys/net/if_aggr.c log diff annotate
src/sys/net/if_bpe.c log diff annotate
src/sys/net/if_bpe.h log diff annotate
src/sys/net/if_bridge.c log diff annotate
src/sys/net/if_etherip.c log diff annotate
src/sys/net/if_etherip.h log diff annotate
src/sys/net/if_ethersubr.c log diff annotate
src/sys/net/if_gif.c log diff annotate
src/sys/net/if_gif.h log diff annotate
src/sys/net/if_gre.c log diff annotate
src/sys/net/if_gre.h log diff annotate
src/sys/net/if_loop.c log diff annotate
src/sys/net/if_mpe.c log diff annotate
message Cache route per softnet thread with netstack.

Introduce struct netstack to pass memory down the network stack.
Currently this is only implemented as part of struct softnet serving
as thread local storage. Especially the interface input and IP
protocol input functions if_input() and pr_input() have been extended
by a netstack parameter. if_input_process() selects the netstack
pointer of the currently running softnet thread and passes it to
the input functions.

The first user of this storage is the route cache in ipv4_input()
and ipv6_input(). For consecutive packets it can reuse the route
to the same destination. Cache invalidation via route generation
number has already been implemented before.

OK claudio@ dlg@

date 2025-03-02T21:28:32Z
author bluhm
files src/sys/net/if_mpip.c log diff annotate
src/sys/net/if_mpw.c log diff annotate
src/sys/net/if_pfsync.c log diff annotate
src/sys/net/if_pfsync.h log diff annotate
src/sys/net/if_ppp.c log diff annotate
src/sys/net/if_pppoe.c log diff annotate
src/sys/net/if_pppoe.h log diff annotate
src/sys/net/if_pppx.c log diff annotate
src/sys/net/if_rport.c log diff annotate
src/sys/net/if_sec.c log diff annotate
src/sys/net/if_spppsubr.c log diff annotate
src/sys/net/if_tpmr.c log diff annotate
src/sys/net/if_trunk.c log diff annotate
src/sys/net/if_trunk.h log diff annotate
src/sys/net/if_tun.c log diff annotate
src/sys/net/if_var.h log diff annotate
src/sys/net/if_veb.c log diff annotate
src/sys/net/if_vlan.c log diff annotate
src/sys/net/if_vlan_var.h log diff annotate
src/sys/net/if_vxlan.c log diff annotate
src/sys/net/if_wg.c log diff annotate
src/sys/net/ifq.c log diff annotate
src/sys/net/pipex.c log diff annotate
src/sys/net/pipex.h log diff annotate
src/sys/net/pipex_local.h log diff annotate
src/sys/netinet/icmp6.h log diff annotate
src/sys/netinet/if_ether.c log diff annotate
src/sys/netinet/if_ether.h log diff annotate
src/sys/netinet/igmp.c log diff annotate
src/sys/netinet/igmp_var.h log diff annotate
src/sys/netinet/in.h log diff annotate
src/sys/netinet/in_pcb.h log diff annotate
src/sys/netinet/ip_ah.c log diff annotate
src/sys/netinet/ip_carp.c log diff annotate
src/sys/netinet/ip_carp.h log diff annotate
src/sys/netinet/ip_divert.c log diff annotate
src/sys/netinet/ip_esp.c log diff annotate
src/sys/netinet/ip_icmp.c log diff annotate
src/sys/netinet/ip_icmp.h log diff annotate
src/sys/netinet/ip_input.c log diff annotate
src/sys/netinet/ip_ipcomp.c log diff annotate
src/sys/netinet/ip_ipip.c log diff annotate
src/sys/netinet/ip_ipip.h log diff annotate
src/sys/netinet/ip_ipsp.h log diff annotate
src/sys/netinet/ip_output.c log diff annotate
src/sys/netinet/ip_var.h log diff annotate
src/sys/netinet/ipsec_input.c log diff annotate
src/sys/netinet/raw_ip.c log diff annotate
src/sys/netinet/tcp_input.c log diff annotate
src/sys/netinet/tcp_subr.c log diff annotate
src/sys/netinet/tcp_var.h log diff annotate
src/sys/netinet/udp_usrreq.c log diff annotate
src/sys/netinet/udp_var.h log diff annotate
src/sys/netinet6/dest6.c log diff annotate
src/sys/netinet6/frag6.c log diff annotate
src/sys/netinet6/icmp6.c log diff annotate
src/sys/netinet6/in6.h log diff annotate
src/sys/netinet6/ip6_divert.c log diff annotate
src/sys/netinet6/ip6_input.c log diff annotate
src/sys/netinet6/ip6_output.c log diff annotate
src/sys/netinet6/ip6_var.h log diff annotate
src/sys/netinet6/mld6.c log diff annotate
src/sys/netinet6/raw_ip6.c log diff annotate
src/sys/netinet6/route6.c log diff annotate
src/sys/netmpls/mpls.h log diff annotate
src/sys/netmpls/mpls_input.c log diff annotate
src/sys/sys/protosw.h log diff annotate
message Cache route per softnet thread with netstack.

Introduce struct netstack to pass memory down the network stack.
Currently this is only implemented as part of struct softnet serving
as thread local storage. Especially the interface input and IP
protocol input functions if_input() and pr_input() have been extended
by a netstack parameter. if_input_process() selects the netstack
pointer of the currently running softnet thread and passes it to
the input functions.

The first user of this storage is the route cache in ipv4_input()
and ipv6_input(). For consecutive packets it can reuse the route
to the same destination. Cache invalidation via route generation
number has already been implemented before.

OK claudio@ dlg@