Commit Briefs
Document RW_UPGRADE. (master)
Simple implementation to upgrade a shared lock into an exclusive one.
This is required by upcoming changes to run the UVM fault handler in parallel. Only uncontended locks are allowed to be upgraded, sleeping is not handled. In other words the new RW_UPGRADE flag requires RW_NOSLEEP. From dlg@, ok claudio@
Increment `spc_spinning' when spinning inside rw_enter(9).
from dlg@, ok claudio@
Unlock open(2) & openat(2).
ok mvs@
Move fd manipulation oustide of the KERNEL_LOCK() scope in doopenat().
Tested by many as part of a larger diff. ok mvs@
virtio: Prefer 1.x over 0.9
Make virtio 1.x the default if the hypervisor offers both 0.9 and 1.x. Version 1.x is required for feature bits >= 32, as in vio(4) multiqueue. Also be more compliant to the virtio 1.x standard, which says "Drivers MUST match any PCI Revision ID value". tested by bluhm@
Add L = Leaked to the flags list in the header of show rib.
Currently this only covers leaks detected by OTC and RFC 9234.
Preserve NAS-{Identifier,IP-Address,IPV6-Address} of Access-Request to
delete the records before Accounting-Start with Acct-On or Acct-Off.
Don't refer NULL pointer if session-timeout is configured but no address
pool is configured.
Always "get in first" by sending out the values for all session and
connection params for each stage of the login process. This way iscsid is in control what is selected and the targets just need to answer. With this it is possible to connect to a lio target. Diff by Jack Burton (jack at saosce.com.au)
vio: set the flowid to the rx queue number
We don't currently have anything better and without this, all packets are sent on the same queue for udp forwarding. ok dlg@
Ignore SR_IRQ in ipmi_acpi_parse_crs().
ok kettenis
Apply pre-built unicore patch - perl-5.40.1
ok sthen@ sooner rather than later deraadt@
Apply local patches - perl-5.40.1
ok sthen@ sooner rather than later deraadt@
Fix merge issues, remove excess files - match perl-5.40.1 dist
ok sthen@ sooner rather than later deraadt@
Import perl-5.40.1
ok sthen@ sooner rather than later deraadt@
Flip the switch on reject as-set from default no to yes.
BGP AS_PATH AS_SET are deprecated (or in the process to be). In short AS_SET don't play nice with Route Origin Validation (ROV) and with ASPA validation any AS_SET makes the path invalid and ineligible. Right now there are some 200 routes left in the DFZ that use AS_SET so the impact of this is minimal. While there cleanup the code and remove some double negations and NO defines. OK sthen@ tb@, job@ agrees
Mop up RC4_INDEX.
The RC4_INDEX define switches between base pointer indexing and per-byte pointer increment. This supposedly made a huge difference to performance on x86 at some point, however compilers have improved somewhat since then. There is no change (or effectively no change) in generated assembly on a the majority of LLVM platforms and even when there is some change (e.g. aarch64), there is no noticable performance difference. Simplify the (still messy) macros/code and mop up RC4_INDEX. ok tb@