Commit Briefs

380dd543fe mpi

Document RW_UPGRADE. (master)


0c0478dcf3 mpi

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@


8c57ff2fa4 mpi

Increment `spc_spinning' when spinning inside rw_enter(9).

from dlg@, ok claudio@


a40deed5e7 mpi

regen.


22561cc6b1 mpi

Unlock open(2) & openat(2).

ok mvs@


385dfb3d32 mpi

Move fd manipulation oustide of the KERNEL_LOCK() scope in doopenat().

Tested by many as part of a larger diff. ok mvs@


1f33ff36f5 sf

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@


34605cdf49 claudio

Add L = Leaked to the flags list in the header of show rib.

Currently this only covers leaks detected by OTC and RFC 9234.



aae7f36381 yasuoka

Preserve NAS-{Identifier,IP-Address,IPV6-Address} of Access-Request to

delete the records before Accounting-Start with Acct-On or Acct-Off.


7a099e4db6 yasuoka

Don't refer NULL pointer if session-timeout is configured but no address

pool is configured.


abc3a9caf4 yasuoka

Fix typos in log.


2224f3a16d claudio

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)


c6d6c1ee0d sf

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@


1e57e0848a job

Add allow for AS112 Project IPv6 prefix to ARIN's constraints

OK tb@


51a90f2d03 anton

Cope with Perl 5.40.1 upgrade in regress.


e012216e8a yasuoka

Ignore SR_IRQ in ipmi_acpi_parse_crs().

ok kettenis


a986de27f7 afresh1

Sync for perl 5.40.1


103c904c67 afresh1

Apply pre-built unicore patch - perl-5.40.1

ok sthen@ sooner rather than later deraadt@


e0a5400065 afresh1

Apply local patches - perl-5.40.1

ok sthen@ sooner rather than later deraadt@


3d61058aa5 afresh1

Fix merge issues, remove excess files - match perl-5.40.1 dist

ok sthen@ sooner rather than later deraadt@


5486feefcc afresh1

Import perl-5.40.1

ok sthen@ sooner rather than later deraadt@


e3db1f63b9 claudio

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


0e95c6a699 mvs

Get rid of unused `so' argument in sballoc(). No functional changes.

ok bluhm


902bfdca52 jsing

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@