LLVM/project c25018bllvm/docs LangRef.rst

[Docs][Intrisics] Fix the name of llvm.memset.inline in the documentation (#180373)

LLVM intrinsic `llvm.memset.inline` indicates in its name the types of
the destination pointer and the size. There is no second pointer.

Moreover, the tests are already verifying that generated code uses
`@llvm.memset.inline.p0.i32` and `@llvm.memset.inline.p0.i64`. So make
the documentation reference these names as well.

Fixes: https://github.com/llvm/llvm-project/issues/163454
DeltaFile
+4-4llvm/docs/LangRef.rst
+4-41 files

GhostBSD/ports b3507a3x11-toolkits/gershwin-libs-gui pkg-plist Makefile

Merge pull request #117 from pkgdemon/2026-02-07-gershwin-libs-gui-fix

Fix gershwin-libs-gui ports build
DeltaFile
+9-572x11-toolkits/gershwin-libs-gui/pkg-plist
+1-6x11-toolkits/gershwin-libs-gui/Makefile
+10-5782 files

Linux/linux 05f7e89. Makefile

Linux 6.19
DeltaFile
+1-1Makefile
+1-11 files

FreeBSD/src e4b1dc4share/man/man7 build.7

Fix typo in build(7) man page

Signed-off-by: Kalevi Kolttonen <kalevi at kolttonen.fi>
Reviewed by: imp
Pull Request: https://github.com/freebsd/freebsd-src/pull/2009
DeltaFile
+1-1share/man/man7/build.7
+1-11 files

FreeBSD/src d3ed0e0libexec/rc/rc.d kld devmatch

rc.d: Convert more service to Use startmsg

Signed-off-by: Thibault Payet <contact at thibaultpayet.fr>
Reviewed by: imp,mhorne
Pull Request: https://github.com/freebsd/freebsd-src/pull/2001
DeltaFile
+1-1libexec/rc/rc.d/kld
+1-1libexec/rc/rc.d/devmatch
+2-22 files

FreeBSD/ports 4a487d7java/openjdk17 distinfo Makefile, java/openjdk17/files patch-src_hotspot_cpu_aarch64_jniFastGetField__aarch64.cpp

java/openjdk17: Update to 17.0.18
DeltaFile
+0-10java/openjdk17/files/patch-src_hotspot_cpu_aarch64_jniFastGetField__aarch64.cpp
+3-3java/openjdk17/distinfo
+2-3java/openjdk17/Makefile
+5-163 files

OpenBSD/ports lIsX40Leditors/libreoffice distinfo Makefile, editors/libreoffice/patches patch-configure

   update to 26.2.0.3
VersionDeltaFile
1.89+82-123editors/libreoffice/pkg/PLIST-main
1.134+26-18editors/libreoffice/distinfo
1.20+6-36editors/libreoffice/pkg/PLIST-i18n-ar
1.83+13-13editors/libreoffice/patches/patch-configure
1.337+13-10editors/libreoffice/Makefile
1.28+6-6editors/libreoffice/pkg/PLIST-i18n-lt
+146-20649 files not shown
+325-38655 files

OpenBSD/ports jK3Osd1audio/ncspot distinfo crates.inc

   Update to ncspot 1.3.3 from Matthias Schmidt

   Unbreaks after change in Spotify's authorization flow.
   https://github.com/hrkfdn/ncspot/releases/tag/v1.3.3

   Tweaks: drop wantlib on curses (we don't build the ncurses_backend feature)
   and drop dep on dbus since this has been using zbus for a while.
VersionDeltaFile
1.40+116-72audio/ncspot/distinfo
1.26+57-35audio/ncspot/crates.inc
1.57+4-4audio/ncspot/Makefile
+177-1113 files

LLVM/project a563e6bllvm/lib/Target/RISCV RISCVISelLowering.cpp RISCVISelDAGToDAG.cpp, llvm/test/CodeGen/RISCV rv32p.ll

[RISCV] Add support for forming WMULSU during type legalization. (#180331)

Add a DAG combine to turn it into MULHSU if the lower half result
is unused.
DeltaFile
+27-2llvm/test/CodeGen/RISCV/rv32p.ll
+18-2llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+17-3llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp
+2-0llvm/lib/Target/RISCV/RISCVInstrInfoP.td
+64-74 files

LLVM/project 6324ee3llvm/lib/Transforms/Vectorize VPlanRecipes.cpp, llvm/test/Transforms/LoopVectorize lcssa-crashes.ll

[VPlan] Use PredBB's terminator as insert point for VPIRPhi extracts.

Use PredBB's terminator as insert point in VPIRPhi::execute to make sure
the extracts are placed after any possibly sunk instructions.

Fixes https://github.com/llvm/llvm-project/issues/180363.
DeltaFile
+57-0llvm/test/Transforms/LoopVectorize/lcssa-crashes.ll
+1-1llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
+58-12 files

FreeBSD/src 436af57libexec/flua/modules lposix.c

flua: Fix SIGSEGV in lua_chown when uid/gid doesn't exist

When lua_chown is used to call chown(2) internally, it first resolves
the user and/or group by calling the getpwnam_r(3) and getgrnam_r(3)
functions, respectively. However, although it checks for errors, it does
not check when entries are not found (which is not an error), which
means that the buffer will be set to NULL, and since lua_chown attempts
to access the NULL structure, it will receive a SIGSEGV signal.

Reviewed by:                    imp@
Approved by:                    imp@
Differential Revision:          https://reviews.freebsd.org/D55172
DeltaFile
+4-4libexec/flua/modules/lposix.c
+4-41 files

LLVM/project 862663allvm/test/CodeGen/AArch64 atomic-ops-lse.ll trampoline.ll

[AArch64] Consider MOVaddr* as cheap if fuse-adrp-add

These pseudo-instructions usually translate into a pair of adrp+add and
have a single cycle latency on some micro-architectures.
DeltaFile
+88-88llvm/test/CodeGen/AArch64/atomic-ops-lse.ll
+43-34llvm/test/CodeGen/AArch64/trampoline.ll
+55-0llvm/test/CodeGen/AArch64/cheap-as-a-move-MOVaddr.ll
+34-19llvm/test/CodeGen/AArch64/machine-outliner-loh.ll
+14-12llvm/test/CodeGen/AArch64/cfguard-checks.ll
+12-10llvm/test/CodeGen/AArch64/atomic-ops.ll
+246-16310 files not shown
+294-19416 files

FreeBSD/src 1dd5b19sys/dev/uart uart_dev_ns8250.c

uart: Add ns8250 ACPI entry for SPCR rev 2

This is an MFC "in spirit" of a685a263b803; the code in this area has
been significantly restructured between 14.x and 15.x, but the general
concept of adding ACPI_DBG2_16550_WITH_GAS (aka 0x12) as a recognized
flavour of ns8250 UART which can be configured via SPCR remains.

Reviewed by:    imp
Tested by:      David Woodhouse
Sponsored by:   Amazon
Differential Revision:  https://reviews.freebsd.org/D55173
DeltaFile
+1-0sys/dev/uart/uart_dev_ns8250.c
+1-01 files

FreeBSD/ports 75b573anet-im/teams distinfo Makefile, net-im/teams/files/packagejsons package-lock.json package.json

net-im/teams: Update to 2.7.2

Changelog:
- https://github.com/IsmaelMartinez/teams-for-linux/releases/tag/v2.6.19
- https://github.com/IsmaelMartinez/teams-for-linux/releases/tag/v2.7.0
- https://github.com/IsmaelMartinez/teams-for-linux/releases/tag/v2.7.1
- https://github.com/IsmaelMartinez/teams-for-linux/releases/tag/v2.7.2

Reported by:    portscout
DeltaFile
+737-501net-im/teams/files/packagejsons/package-lock.json
+18-17net-im/teams/files/packagejsons/package.json
+5-5net-im/teams/distinfo
+2-2net-im/teams/Makefile
+762-5254 files

FreeBSD/src 7266121sys/dev/usb/net if_ure.c

ure: improve transmit checksum offloading

Apparently, the name of the variable l4off was correct. Providing the
offset to the TCP or UDP header allows the transmit checksum offload to
work for TCP/IPv4, TCP/IPv6, UDP/IPv4, and UDP/IPv6.

Reported by:            vishwin
Reviewed by:            vishwin
MFC after:              1 week
Differential Revision:  https://reviews.freebsd.org/D55187
DeltaFile
+10-6sys/dev/usb/net/if_ure.c
+10-61 files

FreeBSD/src 2fe3f16. .git-blame-ignore-revs

chore: ignore style(9) changes made in dd1410321

MFC after:      1 month
DeltaFile
+2-0.git-blame-ignore-revs
+2-01 files

FreeBSD/src d76bb14sys/dev/asmc asmc.c

chore: asmc: additional style(9) cleanup

Pick out non-gratuitous style(9) changes suggested by `clang-format` on
the driver. This helps eliminate minor stylistic issues with spaces,
braces, line lengths, etc, so future functional changes in the driver
will be easier to pick out.

Many of the other `clang-format` suggested changes were not taken because
they were considerably more gratuitous.

No functional change intended.

MFC after:      1 week
DeltaFile
+56-49sys/dev/asmc/asmc.c
+56-491 files

NetBSD/pkgsrc Rrh98i2chat/ejabberd Makefile

   chat/ejabberd: Cleanup dependency comments

   and s/ABI_DEPENDS/API_DEPENDS/
VersionDeltaFile
1.113+4-6chat/ejabberd/Makefile
+4-61 files

FreeBSD/src d84870dtools/tools/ifinfo ifinfo.c

ifinfo: improve output of hwassist value

In addition to print the hexadecimal number hwassist, also print
the symbolic names of the corresponding CSUM_* flags.

Reviewed by:            tuexen
MFC after:              1 week
Differential Revision:  https://reviews.freebsd.org/D55055
DeltaFile
+47-1tools/tools/ifinfo/ifinfo.c
+47-11 files

FreeBSD/src a8f3c3bsys/dev/asmc asmc.c

chore: asmc: minor code cleanup

- Use symbolic names in Mac definitions in lieu of the unrolled values
  they represent.
- Delete trailing whitespace.
- Fix indentation.

No functional change intended.

MFC after:      1 week
DeltaFile
+37-35sys/dev/asmc/asmc.c
+37-351 files

OpenBSD/src bZqL4mAusr.bin/ssh monitor.c gss-genr.c

   Reorder headers according to KNF, and pull in a few we don't have from
   Portable.
VersionDeltaFile
1.252+6-5usr.bin/ssh/monitor.c
1.31+6-1usr.bin/ssh/gss-genr.c
1.151+3-3usr.bin/ssh/sftp-server.c
1.272+3-3usr.bin/ssh/scp.c
1.26+4-1usr.bin/ssh/auth-krb5.c
1.190+3-1usr.bin/ssh/kex.c
+25-1411 files not shown
+47-2817 files

LLVM/project ac89dbfclang/include/clang/Analysis/Analyses/LifetimeSafety Loans.h, clang/lib/Analysis/LifetimeSafety FactsGenerator.cpp Checker.cpp

Field and interior paths
DeltaFile
+172-100clang/unittests/Analysis/LifetimeSafetyTest.cpp
+147-98clang/include/clang/Analysis/Analyses/LifetimeSafety/Loans.h
+110-46clang/test/Sema/warn-lifetime-safety-invalidations.cpp
+46-42clang/lib/Analysis/LifetimeSafety/FactsGenerator.cpp
+30-47clang/lib/Analysis/LifetimeSafety/Checker.cpp
+58-9clang/lib/Analysis/LifetimeSafety/Loans.cpp
+563-3426 files not shown
+611-36712 files

OPNSense/core 2c1d5cbsrc/opnsense/mvc/app/library/OPNsense/Firewall FilterRule.php

Firewall: Rules [new] - missing reply-to when not specifically set, closes https://github.com/opnsense/core/issues/9761

(cherry picked from commit e98e55ede5dffb109a11a979a49b9c2b37f931d4)
DeltaFile
+1-1src/opnsense/mvc/app/library/OPNsense/Firewall/FilterRule.php
+1-11 files

OPNSense/core e98e55esrc/opnsense/mvc/app/library/OPNsense/Firewall FilterRule.php

Firewall: Rules [new] - missing reply-to when not specifically set, closes https://github.com/opnsense/core/issues/9761
DeltaFile
+1-1src/opnsense/mvc/app/library/OPNsense/Firewall/FilterRule.php
+1-11 files

NetBSD/pkgsrc-wip c6e13f2chromium distinfo Makefile

chromium: update to 144.0.7559.132
DeltaFile
+6-6chromium/distinfo
+1-1chromium/Makefile
+7-72 files

FreeBSD/ports e1f2c5fjava/openjdk11 distinfo Makefile

java/openjdk11: Update to 11.0.30
DeltaFile
+2-2java/openjdk11/distinfo
+1-2java/openjdk11/Makefile
+3-42 files

NetBSD/pkgsrc-wip bd70c25valgrind-netbsd-git Makefile

valgrind-netbsd-git: install libxml2 (xmllint) for testing)
DeltaFile
+3-0valgrind-netbsd-git/Makefile
+3-01 files

HardenedBSD/src babe569libexec/rtld-elf/powerpc reloc.c, libexec/rtld-elf/powerpc64 reloc.c

Merge branch 'freebsd/current/main' into hardened/current/master
DeltaFile
+0-13libexec/rtld-elf/powerpc/reloc.c
+0-13libexec/rtld-elf/powerpc64/reloc.c
+6-0sys/dev/vt/vt_core.c
+4-0sys/teken/teken.c
+1-2usr.sbin/bsdinstall/scripts/zfsboot
+2-0sys/teken/teken.h
+13-282 files not shown
+15-288 files

HardenedBSD/ports ff7aee0devel/clojure-cider pkg-plist, multimedia/libopenshot/files patch-src_FFmpegReader.cpp patch-src_FFmpegWriter.cpp

Merge branch 'freebsd/main' into hardenedbsd/main
DeltaFile
+247-7multimedia/openshot/pkg-plist
+41-0devel/clojure-cider/pkg-plist
+0-34x11/waybar/files/patch-no-systemctl
+21-6multimedia/libopenshot/files/patch-src_FFmpegReader.cpp
+20-7multimedia/libopenshot/files/patch-src_FFmpegWriter.cpp
+12-12x11/waybar/Makefile
+341-6678 files not shown
+658-25784 files

NetBSD/pkgsrc-wip 3be3b53valgrind-netbsd-git Makefile

valgrind-netbsd-git: reduce pkgsrc-added CFLAGS as much as possible
DeltaFile
+7-1valgrind-netbsd-git/Makefile
+7-11 files