LLVM/project 6fd20a2llvm/lib/Target/LoongArch/MCTargetDesc LoongArchAsmBackend.h LoongArchELFStreamer.h

address @MaskRay's comments

Created using spr 1.3.7
DeltaFile
+18-18llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchAsmBackend.cpp
+12-9llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchELFStreamer.cpp
+11-0llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchELFStreamer.h
+3-0llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchAsmBackend.h
+44-274 files

LLVM/project afa36ecllvm/lib/Target/LoongArch/MCTargetDesc LoongArchAsmBackend.h LoongArchELFStreamer.h

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+23-20llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchAsmBackend.cpp
+12-9llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchELFStreamer.cpp
+11-0llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchELFStreamer.h
+3-0llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchAsmBackend.h
+49-294 files

LLVM/project bce5312llvm/lib/Target/LoongArch/MCTargetDesc LoongArchAsmBackend.h LoongArchELFStreamer.h

rebase

Created using spr 1.3.7
DeltaFile
+23-20llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchAsmBackend.cpp
+12-9llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchELFStreamer.cpp
+11-0llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchELFStreamer.h
+3-0llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchAsmBackend.h
+49-294 files

LLVM/project 6879fafllvm/lib/Target/LoongArch/MCTargetDesc LoongArchAsmBackend.h LoongArchELFStreamer.h

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+23-20llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchAsmBackend.cpp
+12-9llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchELFStreamer.cpp
+11-0llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchELFStreamer.h
+3-0llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchAsmBackend.h
+49-294 files

LLVM/project adb5a33llvm/lib/Target/LoongArch/MCTargetDesc LoongArchAsmBackend.h LoongArchELFStreamer.h

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+23-20llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchAsmBackend.cpp
+12-9llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchELFStreamer.cpp
+11-0llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchELFStreamer.h
+3-0llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchAsmBackend.h
+49-294 files

DragonFlyBSD/src 634062alib/libc/sys mincore.2, sys/vm vm_mmap.c

mincore(2): Fix several bugs

* Return ENOMEN when the requested range is not fully mapped.
  (obtained from FreeBSD: 455dd7d4c79bc7bef5401721f617e64eca7ef422)

  This change should fix a crash in Mesa where it calls mincore() to
  determine whether a protocol field is a valid pointer in order to
  keep compatible with an old protocol version.

* Fix an off-by-one error in filling the skipped entries.  lastvecindex
  refers to the last valid byte, so the new bytes should come after it.
  (obtained from FreeBSD: 6a87d217e2da2a63d4431aeb871783e1dd7349ae)

* Fix the calculation of the 'end' boundary.
  (obtained from FreeBSD: d0c9294b810f8b42b7ac27a46db44b94ddca3160)

* Update the man page.

Reported-by: peeterm
DeltaFile
+46-14lib/libc/sys/mincore.2
+28-14sys/vm/vm_mmap.c
+74-282 files

DragonFlyBSD/src 49eae19lib/libc/sys mlock.2

mlock.2: Add a missing '.Pp' after list
DeltaFile
+1-0lib/libc/sys/mlock.2
+1-01 files

DragonFlyBSD/src 9c2637alib/libc/sys mincore.2, sys/vm vm_mmap.c

mincore(2): Add 'vm.mincore_mapped' sysctl to control reporting

Add the 'vm.mincore_mapped' (default ON!) to control whether to report
only the mapping status (if set to a non-zero value) or the physical
residency (if set to a zero value; the old behavior).

The idea of implementing this and enabling it by default is to help
mitigate page cache attacks [1].

[1] Page Cache Attacks: https://arxiv.org/abs/1901.01161

Obtain-from: FreeBSD (https://reviews.freebsd.org/D18764)
DeltaFile
+16-3lib/libc/sys/mincore.2
+7-3sys/vm/vm_mmap.c
+23-62 files

NetBSD/pkgsrc-wip b787db8dpbox Makefile distinfo

dpbox: update to 6.1.5
DeltaFile
+3-18dpbox/distinfo
+1-1dpbox/Makefile
+4-192 files

FreeBSD/src 3393002sys/fs/nfs nfs_commonkrpc.c

nfs_commonkrpc.c: Handle NFSERR_DELAY for Sequence correctly

Unlike RFC5661 (the original NFSv4.1 RFC), RFC8881 specifies
that a NFS4ERR_DELAY reply to the SEQUENCE operation requires
a reply using the same slot/sequence#.

This patch fixes handling of this case, so it conforms to
RFC8881.

(cherry picked from commit 6901cbbd5a2c00d378a7f87426b36d6ee6ce0aa2)
DeltaFile
+14-1sys/fs/nfs/nfs_commonkrpc.c
+14-11 files

FreeBSD/src 25d1f68sys/fs/nfs nfs_commonkrpc.c

nfs_commonkrpc.c: Handle NFSERR_DELAY for Sequence correctly

Unlike RFC5661 (the original NFSv4.1 RFC), RFC8881 specifies
that a NFS4ERR_DELAY reply to the SEQUENCE operation requires
a reply using the same slot/sequence#.

This patch fixes handling of this case, so it conforms to
RFC8881.

(cherry picked from commit 6901cbbd5a2c00d378a7f87426b36d6ee6ce0aa2)
DeltaFile
+14-1sys/fs/nfs/nfs_commonkrpc.c
+14-11 files

NetBSD/pkgsrc-wip 44bbfe2dpbox Makefile distinfo

dpbox: derive the version from DISTNAME in one place
DeltaFile
+15-0dpbox/distinfo
+3-3dpbox/Makefile
+18-32 files

FreeBSD/ports 8d39e17comms/klog pkg-plist distinfo

comms/klog: Update to 2.5.3

July 2026 - 2.5.3
- Bugfix: BandRX was not synced with FreqRX if FreqRX was not defined and BandRX was same as BandTX.
- Bugfix: Default DXCluster server is not shown in the combobox after first installation (Closes #1043)
- Enhancement: Color the QLineEdit that has the focus (Close #3) (TNX EA5WA)
- Enhancement: Move Comment field from Comment tab to QSO tab (Closes #1020) (TNX EA5WA)
- New feature: Selection of language (Closes #9) (TNX EA5WA)
- New feature: Set CQ zone from DXCC when adding QSO (TNX YL3GBC)
- New feature: Show a "New Locator" indicator when the DX locator is new on the current band or via satellite (Closes #1035) (TNX EA5WA)
- Translations: Latvian (TNX YL3GBC & YL3AUG)
DeltaFile
+2-19comms/klog/Makefile
+3-3comms/klog/distinfo
+1-1comms/klog/pkg-plist
+6-233 files

FreeBSD/src 7d24381contrib/netbsd-tests/lib/libpthread t_condwait.c

tests/libpthread: add pthread_cond_clockwait(3) tests

(cherry picked from commit 10ea2300bf29cdcaf12182e8b722f6becb0da1fb)
DeltaFile
+92-18contrib/netbsd-tests/lib/libpthread/t_condwait.c
+92-181 files

FreeBSD/src d62a413share/man/man3 Makefile pthread_cond_timedwait.3

pthread_cond_timedwait.3: document pthread_cond_clockwait(3)

(cherry picked from commit e7015a3834abe0956e9a8ec6ec4b8e75ea7d71ab)
DeltaFile
+30-2share/man/man3/pthread_cond_timedwait.3
+1-0share/man/man3/Makefile
+31-22 files

FreeBSD/src 0aa7237sys/geom/zero g_zero.c

geom_zero(4): reset the uio vector on each uiomove()

PR:     297062

(cherry picked from commit 34ca5a9e7362b0c820fe339daa2b8d06c58b6fea)
DeltaFile
+6-5sys/geom/zero/g_zero.c
+6-51 files

FreeBSD/src ff36771share/man/man3 pthread_cond_timedwait.3

pthread_cond_timedwait.3: use .Fo/.Fc for long arguments list

(cherry picked from commit 6d3db07a2e2f4288b7e54af8e8371f9a022e751f)
DeltaFile
+5-1share/man/man3/pthread_cond_timedwait.3
+5-11 files

FreeBSD/src 4dcfa6dinclude pthread.h, lib/libthr pthread.map

libthr: implement pthread_cond_clockwait(3)

(cherry picked from commit e1136fbcab184b8fb87456ca0d115d502bab6643)
DeltaFile
+48-16lib/libthr/thread/thr_cond.c
+22-6lib/libthr/thread/thr_umtx.c
+4-2lib/libthr/thread/thr_barrier.c
+5-0include/pthread.h
+2-1lib/libthr/thread/thr_umtx.h
+1-0lib/libthr/pthread.map
+82-256 files

FreeBSD/src d32bf06lib/libthr/thread thr_cond.c

libthr/thread/thr_cond.c: some style

(cherry picked from commit 149d3e5fcb76bff86d4343b7378258e9a6d3e25b)
DeltaFile
+11-15lib/libthr/thread/thr_cond.c
+11-151 files

FreeBSD/src 671e2cblib/libsys _umtx_op.2

_umtx_op.2: document the CVWAIT_UMTX_TIME flag for the UMTX_OP_CV_WAIT_UC request

(cherry picked from commit f4a05f37936e422b1e8f4f127253562d3f58f50c)
DeltaFile
+21-2lib/libsys/_umtx_op.2
+21-21 files

FreeBSD/src 0737ff2lib/libthr/thread thr_umtx.c

libthr/thread/thr_umtx.c: style _thr_ucond_wait()

(cherry picked from commit 196cc005b197ab8bf5044c3fc457697986a14b39)
DeltaFile
+3-3lib/libthr/thread/thr_umtx.c
+3-31 files

FreeBSD/src 16015bfsys/kern kern_umtx.c, sys/sys umtx.h

umtx_op(2): add the CVWAIT_UMTX_TIME flag for the UMTX_OP_CV_WAIT_UC request

(cherry picked from commit d738f66fab9208ee3bccea5fed293d8ce3ee5ca3)
DeltaFile
+55-35sys/kern/kern_umtx.c
+1-0sys/sys/umtx.h
+56-352 files

LLVM/project 4132205llvm/lib/Target/X86/MCTargetDesc X86EncodingOptimization.cpp, llvm/test/MC/X86 symbolic-vcmp-predicate.s

[X86] Don't shrink VEX3 to VEX2 on a symbolic compare predicate (#213172)

`llvm-mc` asserts on a VCMP predicate given as a symbol:

```asm
vcmpps $f0, %xmm0, %xmm1, %xmm2
```

```
Assertion failed: isImm() && "This is not an immediate", MCInst.h:85
```

`optimizeInstFromVEX3ToVEX2` reads the predicate with `getImm()` to
decide whether the operands commute. A symbolic predicate is not known
until link time, so that decision cannot be made here. Decline the
shrink instead.

Unlike the sibling FPCLASS issues (#185364, #185365) this one is on the
encoding path and asserts under `--filetype=obj` too, so a release build

    [6 lines not shown]
DeltaFile
+20-0llvm/test/MC/X86/symbolic-vcmp-predicate.s
+6-0llvm/lib/Target/X86/MCTargetDesc/X86EncodingOptimization.cpp
+26-02 files

FreeBSD/ports 36a72a1devel/simpleini Makefile distinfo, devel/simpleini/files patch-CMakeLists.txt

devel/simpleini: update 4.24 → 4.26
DeltaFile
+0-11devel/simpleini/files/patch-CMakeLists.txt
+3-3devel/simpleini/distinfo
+2-3devel/simpleini/Makefile
+5-173 files

FreeBSD/ports 8a56e08devel/protozero Makefile distinfo

devel/protozero: update 1.8.1 → 1.8.2
DeltaFile
+3-3devel/protozero/distinfo
+1-1devel/protozero/Makefile
+4-42 files

FreeBSD/ports 0c7b1fescience/py-MDAnalysis Makefile, science/py-MDAnalysis/files patch-MDAnalysis_lib_formats_src_xdrfile.c

science/py-MDAnalysis: Unbreak by removing unnecessary patch; Remove installed doc folder

Reported by:    fallout

(cherry picked from commit d165f681b92994b336453fa8d8a717bcaea88fdd)
DeltaFile
+0-15science/py-MDAnalysis/files/patch-MDAnalysis_lib_formats_src_xdrfile.c
+6-3science/py-MDAnalysis/Makefile
+6-182 files

FreeBSD/ports f9412d9misc/py-apache-beam distinfo Makefile, misc/py-apache-beam/files patch-pyproject.toml

misc/py-apache-beam: update 2.43.0 → 2.75.0

(cherry picked from commit 48e8f730b61e1125e86d44a4edbe4d59cf2ebac3)
DeltaFile
+29-29misc/py-apache-beam/Makefile
+43-0misc/py-apache-beam/files/patch-pyproject.toml
+3-3misc/py-apache-beam/distinfo
+75-323 files

FreeBSD/ports e9a43a8science/conduit distinfo Makefile, science/conduit/files patch-config_ConduitConfig.cmake.in

science/conduit: update 0.9.5 → 0.9.6

PR:             295212
DeltaFile
+9-2science/conduit/pkg-plist
+11-0science/conduit/files/patch-config_ConduitConfig.cmake.in
+5-2science/conduit/Makefile
+3-3science/conduit/distinfo
+28-74 files

HardenedBSD/src a5c03easys/dev/aq aq_device.h aq_dbg.h

Merge remote-tracking branch 'rad/hardened/current/master' into hardened/current/pledge
DeltaFile
+264-18sys/dev/aq/aq_fw2x.c
+135-97sys/dev/aq/aq_main.c
+145-6sys/dev/aq/aq_irq.c
+115-6sys/dev/aq/aq2_fw.c
+48-14sys/dev/aq/aq_dbg.h
+30-18sys/dev/aq/aq_device.h
+737-1599 files not shown
+864-20115 files

LLVM/project 7a618a2llvm/lib/Target/RISCV RISCVISelLowering.cpp, llvm/test/CodeGen/RISCV/rvv fold-binary-reduce-zve32x-crash.ll

[RISCV] Fix assertion in combineBinOpOfExtractToReduceTree on type mismatch (#202201)

combineBinOpOfExtractToReduceTree asserts that the extract source
vector's element type equals the binop's value type
(SrcVecVT.getVectorElementType() == VT). This invariant does not hold
for all valid inputs.

A <1 x i1> binary operation under -mattr=+zve32x reaches this point with
the source vector element type differing from VT, which trips the
assertion in an assertions-enabled build and silently proceeds on a
false assumption otherwise.

Convert the assertion into an early return, so the combine declines when
its precondition is not met. This matches the existing bail-out style in
the same function (the isScalableVector and getScalarSizeInBits() >
getELen() checks immediately following). The change only ever skips the
fold; it never alters correct output.

Generative AI was used for the test case. The fix

    [3 lines not shown]
DeltaFile
+17-0llvm/test/CodeGen/RISCV/rvv/fold-binary-reduce-zve32x-crash.ll
+2-1llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+19-12 files