LLVM/project 1774af8clang/lib/Analysis/LifetimeSafety FactsGenerator.cpp, clang/lib/Sema SemaLifetimeSafety.h AnalysisBasedWarnings.cpp

[LifetimeSafety] Support C Language in LifetimeSafety (#203270)

There are a few constraints that make supporting C a bit cumbersome:

* C assignment expressions are rvalues, unlike C++ assignment
expressions. The analysis has to account for the different origin shape
of the assignment result by stripping an origin from `LHSExpr`.
* Function addresses in C do not need lifetime tracking. Taking `&f`
should not create origins because functions do not have local object
lifetime (unlike in C++).
* GNU C permits `void*` subscripting/pointer arithmetic. Expressions
like `bytes[0]` (where `bytes` is `void*`) have type `void` and do not
produce an addressable object with origins, even though `void*` itself
can carry pointer origins.
* Some C subscripts, such as vector subscripts, are not GLValues, so
they do not have storage origins to track.
* `va_arg(ap, array_type)` is undefined behavior, so we skip it instead
of trying to model origins for it.
* C does not have a spelling for `[[gsl::Owner]]` / `[[gsl::Pointer]]`,

    [21 lines not shown]
DeltaFile
+181-0clang/test/Sema/LifetimeSafety/safety-c.c
+28-0clang/test/Sema/attr-lifetime-capture-by.c
+23-1clang/lib/Analysis/LifetimeSafety/FactsGenerator.cpp
+21-0clang/test/Sema/attr-lifetimebound.c
+19-0clang/lib/Sema/SemaLifetimeSafety.h
+3-6clang/lib/Sema/AnalysisBasedWarnings.cpp
+275-75 files not shown
+297-1111 files

LLVM/project 085ac53llvm/lib/Target/NVPTX NVPTXAsmPrinter.h NVPTXAsmPrinter.cpp, llvm/test/CodeGen/NVPTX packed-aggr.ll global-ordering.ll

[NVPTX] Don't force the mask() path for widening ptrtoint in aggregate initializers.

After #201217, global-ordering.ll crashes on the 32-bit nvptx triple with

    LLVM ERROR: initialized packed aggregate with pointers 'sadd' requires at least PTX ISA version 7.1

for

    @sadd = addrspace(1) global { i64, i64 }
              { i64 add (i64 ptrtoint (ptr addrspace(1) @g to i64), i64 4), i64 7 }

That PR added allSymbolsFullPtrSize, which forces the per-byte mask() path
whenever a symbol's slot size differs from the pointer size.  The intent was
to catch *narrowing* ptrtoint (an i32 slot on a 64-bit target), where emitting
a full pointer word would clobber the next field.  But here the ptrtoint is
*widening* -- an i64 slot on a 32-bit target -- and the word path already
handles that fine: it emits the symbol as one 32-bit word and the remaining
zero-extension bytes come from the buffer as 0 words.


    [7 lines not shown]
DeltaFile
+8-6llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h
+6-3llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
+9-0llvm/test/CodeGen/NVPTX/packed-aggr.ll
+1-0llvm/test/CodeGen/NVPTX/global-ordering.ll
+24-94 files

Linux/linux e771677drivers/iommu/iommufd eventq.c driver.c, include/uapi/linux iommufd.h

Merge tag 'for-linus-iommufd' of git://git.kernel.org/pub/scm/linux/kernel/git/jgg/iommufd

Pull iommufd updates from Jason Gunthorpe:
 "All various fixes:

   - Typo breaking the veventq uAPI for 32 bit userspace

   - Several Sashiko found errors in the veventq and fault fd paths

   - Fix incorrect use of dmabuf locks, and possible races with iommufd
     destroy and dmabuf revoke

   - Sashiko errors found in the uAPI validation for IOMMU_HWPT_INVALIDATE"

* tag 'for-linus-iommufd' of git://git.kernel.org/pub/scm/linux/kernel/git/jgg/iommufd:
  iommu: Avoid copying the user array twice in the full-array copy helper
  iommufd/selftest: Add invalidation entry_num and entry_len boundary tests
  iommufd: Set upper bounds on cache invalidation entry_num and entry_len
  iommufd: Clarify IOAS_MAP_FILE dma-buf support

    [14 lines not shown]
DeltaFile
+49-2tools/testing/selftests/iommu/iommufd.c
+31-5drivers/iommu/iommufd/eventq.c
+9-8tools/testing/selftests/iommu/iommufd_utils.h
+8-5drivers/iommu/iommufd/driver.c
+8-4include/uapi/linux/iommufd.h
+10-1drivers/iommu/iommufd/hw_pagetable.c
+115-254 files not shown
+124-3110 files

FreeNAS/freenas 2c56946src/middlewared/middlewared/plugins/auth_ 2fa.py

NAS-141437 / 26.0.0-RC.1 / Ensure oath users file entries are always valid (by anodos325) (#19160)

If we have an invalid TOTP entry (interval not supported by liboath)
then lookups will fail with OATH_UNKNOWN_USER, which is an incorrect
response when we'd expect rather to have an explicit failure mode. API
model / more thorough changes are tracked in NAS-141431.

Original PR: https://github.com/truenas/middleware/pull/19159

Co-authored-by: Andrew Walker <andrew.walker at truenas.com>
DeltaFile
+5-1src/middlewared/middlewared/plugins/auth_/2fa.py
+5-11 files

FreeBSD/src e290363sys/net iflib.c

iflib: Fix mbufs leaked by 0 len packets emitted from the if driver

Some interface drivers, notably bnxt, can insert 0 length packets onto
their receive queues when certain conditions are met, such as discarding
packets in the case of bnxt.

When this packet gets processed by assemble_segments(), The solitary
mbuf on the queue that composes it consist of a single zero length
fragment. The loop in assemble_segments() doesn't seem to expect
that a 0 length fragment can exist in the iri_frags list without a
non-zero length header preceding it. In this situation, without filter
intervention rxd_frag_to_sd() returns a pointer to the corresponding
mbuf in the rxq, where it is matched as a zero-length fragment and
immediately discarded without freeing as mh has not yet been assigned.

This change corrects this behavior by falling through the mh == NULL
case and freeing m on the condition that it is not NULL before
continuing the loop.


    [3 lines not shown]
DeltaFile
+4-4sys/net/iflib.c
+4-41 files

FreeNAS/freenas e32ef46. CLAUDE.md, src/middlewared/middlewared/api/base/server doc.py

introduce :method: role
DeltaFile
+47-0src/middlewared/middlewared/pytest/unit/api/base/server/test_expand_method_refs.py
+6-7src/middlewared/middlewared/service/core_service.py
+5-5src/middlewared/middlewared/plugins/network.py
+9-0src/middlewared/middlewared/api/base/server/doc.py
+4-4src/middlewared/middlewared/plugins/zfs/resource_crud.py
+1-1CLAUDE.md
+72-176 files

Linux/linux d076a8ddrivers/iommu vsi-iommu.c, drivers/iommu/amd iommu.c

Merge tag 'iommu-updates-v7.2' of git://git.kernel.org/pub/scm/linux/kernel/git/iommu/linux

Pull iommu updates from Joerg Roedel:
 "Core Code:

   - Fix dma-iommu scatterlist length handling in the P2PDMA path

   - Extend the generic IOMMU page-table code with detailed gather
     support for more precise invalidations

   - Add pending-gather tracking to generic page-table invalidation
     handling

   - Add support for smaller virtual address sizes in the generic AMDv1
     page-table format, including KUnit coverage

   - Fix page-size bitmap calculation for smaller VA configurations

   - Rework Arm io-pgtable allocation/freeing to consistently use the

    [99 lines not shown]
DeltaFile
+791-0drivers/iommu/vsi-iommu.c
+245-313drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c
+159-90drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.h
+84-97drivers/iommu/amd/iommu.c
+124-38drivers/iommu/riscv/iommu.c
+74-49drivers/iommu/riscv/iommu-bits.h
+1,477-58736 files not shown
+2,055-76642 files

LLVM/project 443dae9llvm/docs AMDGPUDwarfExtensionsForHeterogeneousDebugging.rst

[AMDGPU][docs] Remove abandoned augementation-related changes

These haven't been carried forward in the DWARF committee proposal, and
we don't expect them to standardized (at least in the form presented
here). Drop them to avoid confusion.

Change-Id: I60dd6ffb5df1bb63d132733466ecf3d697f79276
DeltaFile
+7-117llvm/docs/AMDGPUDwarfExtensionsForHeterogeneousDebugging.rst
+7-1171 files

LLVM/project 8301dc7llvm/docs AMDGPUDwarfExtensionsForHeterogeneousDebugging.rst

[AMDGPU][docs] Correct DWARF extension attribute encodings

These were not updated when the final numbers were committed in
Dwarf.def, so update them now.

Change-Id: Ide931b835dc2c5def60dd7fad29525f598e8c8b6
DeltaFile
+8-8llvm/docs/AMDGPUDwarfExtensionsForHeterogeneousDebugging.rst
+8-81 files

Linux/linux 4cc1438drivers/ntb ntb_transport.c, kernel/dma debug.c contiguous.c

Merge tag 'dma-mapping-7.2-2026-06-16' of git://git.kernel.org/pub/scm/linux/kernel/git/mszyprowski/linux

Pull dma-mapping updates from Marek Szyprowski:

 - added checks for DMA attributes in the debug code, especially to
   ensure that mappings are created and released with matching
   attributes (Leon Romanovsky)

 - better default configuration for CMA on NUMA machines (Feng Tang)

 - code cleanup in dma benchmark tool (Rosen Penev)

* tag 'dma-mapping-7.2-2026-06-16' of git://git.kernel.org/pub/scm/linux/kernel/git/mszyprowski/linux:
  dma: map_benchmark: turn dma_sg_map_param buf into a flexible array
  dma-contiguous: simplify numa cma area handling
  dma-contiguous: add kconfig option to setup numa cma area if not configured explicitly
  dma-debug: Ensure mappings are created and released with matching attributes
  dma-debug: Feed DMA attribute for unmapping flows too
  dma-debug: Record DMA attributes in debug entry

    [3 lines not shown]
DeltaFile
+61-26kernel/dma/debug.c
+22-36kernel/dma/contiguous.c
+12-15kernel/dma/map_benchmark.c
+13-12kernel/dma/debug.h
+13-1kernel/dma/Kconfig
+6-4drivers/ntb/ntb_transport.c
+127-942 files not shown
+136-998 files

Linux/linux 21bd909mm numa_emulation.c mm_init.c, tools/testing/memblock README TODO

Merge tag 'memblock-v7.2-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rppt/memblock

Pull memblock updates from Mike Rapoport:
 "Small fixes and a cleanup:

   - numa emulation: fix detection of under-allocated emulated nodes

   - memblock tests: fix NUMA tests to properly differentiate reserved
     areas with differnet flags

   - mm_init: use div64_ul() instead of do_div() to better express the
     intent of the division"

* tag 'memblock-v7.2-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rppt/memblock:
  mm: mm_init: use div64_ul() instead of do_div()
  tools/testing/memblock: fix stale NUMA reservation tests
  mm/fake-numa: fix under-allocation detection in uniform split
DeltaFile
+13-4mm/numa_emulation.c
+3-3tools/testing/memblock/tests/alloc_nid_api.c
+3-3tools/testing/memblock/tests/alloc_exact_nid_api.c
+1-4tools/testing/memblock/README
+2-2tools/testing/memblock/TODO
+1-1mm/mm_init.c
+23-176 files

FreeNAS/freenas a704587src/middlewared/middlewared/plugins/interface addresses.py, src/middlewared/middlewared/plugins/service_/services docker.py

NAS-141208 / 26.0.0-RC.1 / don't process IPv6 RAs when autoconfigure is disabled (by yocalebo) (#19158)

Disabling "Autoconfigure IPv6" on an interface only set
net.ipv6.conf.<if>.autoconf=0, which stops SLAAC address assignment but
not the kernel's processing of Router Advertisements. As a result,
RA-derived routes (including an IPv6 default route) were still installed
on interfaces that had autoconf disabled. The accept_ra sysctl that
actually controls this was never managed alongside autoconf, and docker
made it worse by force-setting accept_ra=2 on every physical interface.
This sets accept_ra in lockstep with autoconf during interface sync (2
when IPv6 autoconf is enabled, so RAs are still honored once docker
enables ipv6 forwarding, and 0 when disabled) and removes docker's
blanket override so the per-interface value sticks.

Original PR: https://github.com/truenas/middleware/pull/19150

Co-authored-by: Caleb St. John <30729806+yocalebo at users.noreply.github.com>
DeltaFile
+11-1src/middlewared/middlewared/plugins/interface/addresses.py
+0-2src/middlewared/middlewared/plugins/service_/services/docker.py
+11-32 files

Linux/linux 0839c89tools/testing/selftests/livepatch test-sysfs.sh functions.sh, tools/testing/selftests/livepatch/test_modules test_klp_syscall.c

Merge tag 'livepatching-for-7.2' of git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching

Pull livepatching updates from Petr Mladek:

 - Fix a potential memory leak in a selftest module

 - Make selftests locale independent

 - Allow running the selftest with older kernels back to 4.12

* tag 'livepatching-for-7.2' of git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching:
  selftests/livepatch: fix resource leak in test_klp_syscall init error path
  selftests: livepatch: set LC_ALL=C to fix locale-dependent test failure
  selftests: livepatch: Check if stack_order sysfs attribute exists
  selftests: livepatch: Check if replace sysfs attribute exists
  selftests: livepatch: Check if patched sysfs attribute exists
  selftests: livepatch: Introduce does_sysfs_exist function
  selftests: livepatch: Replace true/false module parameter by y/n
  selftests: livepatch: Check for ARCH_HAS_SYSCALL_WRAPPER config
DeltaFile
+117-96tools/testing/selftests/livepatch/test-sysfs.sh
+24-9tools/testing/selftests/livepatch/test_modules/test_klp_syscall.c
+12-0tools/testing/selftests/livepatch/functions.sh
+4-4tools/testing/selftests/livepatch/test-kprobe.sh
+157-1094 files

LLVM/project a2f4a1cllvm/lib/Transforms/Vectorize VPlanUtils.cpp, llvm/test/Transforms/LoopVectorize single-early-exit-deref-assumptions.ll pr58811-scev-expansion.ll

[VPlan] Also expand SCEVUDivExpr in expandSCEVExpr. (#203093)

Add support for expanding SCEVUDivExpr to VPInstructions, completing the
set of SCEV expression kinds that can be fully expanded without falling
back to SCEVExpander.

PR: https://github.com/llvm/llvm-project/pull/203093
DeltaFile
+10-10llvm/test/Transforms/LoopVectorize/single-early-exit-deref-assumptions.ll
+8-10llvm/test/Transforms/LoopVectorize/VPlan/expand-scev.ll
+12-0llvm/lib/Transforms/Vectorize/VPlanUtils.cpp
+4-4llvm/test/Transforms/LoopVectorize/pr58811-scev-expansion.ll
+2-2llvm/test/Transforms/PhaseOrdering/AArch64/std-find.ll
+36-265 files

FreeBSD/ports 6da1ef2www/librewolf distinfo Makefile, www/librewolf/files patch-libwebrtc-generated patch-ipc_glue_GeckoChildProcessHost.cpp

www/librewolf: Update 151.0.3-1 => 152.0-1

Changelog:
https://www.firefox.com/en-US/firefox/152.0/releasenotes/

PR:             296108
Sponsored by:   UNIS Labs
MFH:            2026Q2

(cherry picked from commit 78b90543cf1786d02cf44e117f95dc7bbbcd7acc)
DeltaFile
+344-397www/librewolf/files/patch-libwebrtc-generated
+0-13www/librewolf/files/patch-ipc_glue_GeckoChildProcessHost.cpp
+5-4www/librewolf/files/patch-python_sites_mach.txt
+3-3www/librewolf/distinfo
+2-2www/librewolf/Makefile
+354-4195 files

FreeBSD/ports 83bdf5ewww/ungoogled-chromium distinfo, www/ungoogled-chromium/files patch-chrome_browser_about__flags.cc patch-chrome_browser_chrome__content__browser__client.cc

www/ungoogled-chromium: update to 149.0.7827.155

Security:       https://vuxml.freebsd.org/freebsd/cffe1232-e4b3-4c72-8b4c-6a8298c9b289.html
DeltaFile
+50-50www/ungoogled-chromium/files/patch-chrome_browser_about__flags.cc
+21-21www/ungoogled-chromium/files/patch-chrome_browser_chrome__content__browser__client.cc
+7-7www/ungoogled-chromium/distinfo
+6-6www/ungoogled-chromium/files/patch-media_base_media__switches.cc
+4-4www/ungoogled-chromium/files/patch-chrome_browser_ui_views_tabs_dragging_tab__drag__controller.cc
+4-4www/ungoogled-chromium/files/patch-base_files_file__util__posix.cc
+92-9213 files not shown
+120-12019 files

FreeBSD/ports 78b9054www/librewolf distinfo Makefile, www/librewolf/files patch-libwebrtc-generated patch-ipc_glue_GeckoChildProcessHost.cpp

www/librewolf: Update 151.0.3-1 => 152.0-1

Changelog:
https://www.firefox.com/en-US/firefox/152.0/releasenotes/

PR:             296108
Sponsored by:   UNIS Labs
MFH:            2026Q2
DeltaFile
+344-397www/librewolf/files/patch-libwebrtc-generated
+0-13www/librewolf/files/patch-ipc_glue_GeckoChildProcessHost.cpp
+5-4www/librewolf/files/patch-python_sites_mach.txt
+3-3www/librewolf/distinfo
+2-3www/librewolf/Makefile
+354-4205 files

Linux/linux 0db1496Documentation/core-api printk-formats.rst, drivers/hid hid-nintendo.c

Merge tag 'printk-for-7.2' of git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux

Pull printk updates from Petr Mladek:

 - Add upper case flavor for printing MAC addresses (%p[mM][U]) and use
   it in the nintendo driver

 - Fix matching of hash_pointers= parameter modes

 - Fix size check of vsprintf() field_width and precision values

 - Add check of size returned by vsprintf()

 - Add KUnit test for restricted pointer printing (%pK)

 - Some code cleanup

* tag 'printk-for-7.2' of git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux:
  HID: nintendo: Use %pM format specifier for MAC addresses

    [8 lines not shown]
DeltaFile
+51-37lib/vsprintf.c
+23-1lib/tests/printf_kunit.c
+2-8drivers/hid/hid-nintendo.c
+3-3kernel/printk/nbcon.c
+3-3kernel/printk/printk.c
+3-0Documentation/core-api/printk-formats.rst
+85-526 files

LLVM/project fea57a9lldb/bindings/interface SBTargetDocstrings.i, lldb/include/lldb/API SBTarget.h

Add the ability to look up persistent types and variables defined in the expression parser through the SB API's. (#203128)

In responding to the question here:

https://discourse.llvm.org/t/creating-nested-synthetic-children/90997/3

it became clear that getting the persistent variable/type results from
the expression parser was much harder than it needed to be. I filed a
couple issues for this:

https://github.com/llvm/llvm-project/issues/201952
https://github.com/llvm/llvm-project/issues/201949

though after thinking about this a bit more, I decided to go with
dedicated API for getting Persistent Expression variables & types. We
don't allow redefinitions of persistent variables and types within the
same Target, so a "FirstType" API didn't make sense, nor did one
returning a list of types or values.

Plus, this will be easier to discover.
DeltaFile
+121-0lldb/test/API/python_api/persistent_decls/TestPersistentDecls.py
+91-0lldb/source/API/SBTarget.cpp
+34-0lldb/bindings/interface/SBTargetDocstrings.i
+9-0lldb/include/lldb/Target/Language.h
+7-0lldb/include/lldb/API/SBTarget.h
+6-0lldb/source/Target/Language.cpp
+268-02 files not shown
+276-08 files

LLVM/project ad4b6d5lldb/source/Plugins/ExpressionParser/Clang InjectPointerSigningFixups.cpp, lldb/test/API/commands/expression/ptrauth-weak-symbols TestPtrauthWeakSymbols.py Makefile

Merge branch 'main' into revert-196754-main
DeltaFile
+71-15lldb/source/Plugins/ExpressionParser/Clang/InjectPointerSigningFixups.cpp
+65-0lldb/test/API/commands/expression/ptrauth-weak-symbols/TestPtrauthWeakSymbols.py
+20-0lldb/test/API/commands/expression/ptrauth-weak-symbols/Makefile
+7-8llvm/include/llvm/ADT/GenericUniformityImpl.h
+13-0lldb/test/API/commands/expression/ptrauth-weak-symbols/main.c
+8-4llvm/include/llvm/ADT/GenericUniformityInfo.h
+184-2716 files not shown
+216-4322 files

LLVM/project c55aca8openmp/runtime/src kmp_adt.h

fixed grow/resize/reserve issue
DeltaFile
+21-23openmp/runtime/src/kmp_adt.h
+21-231 files

OpenBSD/ports r5m1Il6www/ungoogled-chromium distinfo, www/ungoogled-chromium/patches patch-chrome_browser_about_flags_cc patch-chrome_browser_chrome_content_browser_client_cc

   update to 149.0.7827.155
VersionDeltaFile
1.63+49-49www/ungoogled-chromium/patches/patch-chrome_browser_about_flags_cc
1.50+20-20www/ungoogled-chromium/patches/patch-chrome_browser_chrome_content_browser_client_cc
1.154+6-6www/ungoogled-chromium/distinfo
1.50+5-5www/ungoogled-chromium/patches/patch-media_base_media_switches_cc
1.15+3-3www/ungoogled-chromium/patches/patch-chrome_browser_ui_views_tabs_dragging_tab_drag_controller_cc
1.19+3-3www/ungoogled-chromium/patches/patch-base_files_file_util_posix_cc
+86-8613 files not shown
+102-10219 files

OpenBSD/ports bJ1rEnRnet/ocserv Makefile

   ocserv uses nettle so can't use base-gcc. Move to ports-gcc on base-gcc
   to fix build on sparc64
VersionDeltaFile
1.64+4-0net/ocserv/Makefile
+4-01 files

Linux/linux 09fb689Documentation/devicetree/bindings/display/imx fsl,imx53-tve.yaml, Documentation/devicetree/bindings/display/panel samsung,sofef01-m.yaml

Merge tag 'devicetree-for-7.2' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux

Pull devicetree updates from Rob Herring:
 "DT core:

   - Add support for handling multiple cells in "iommu-map" entries

   - Support only 1 entry in /reserved-memory "reg" entries. Support for
     more than 1 entry has been broken

   - Fix a UAF on alloc_reserved_mem_array() failure

   - Make "ibm,phandle" handling logic specific to PPC

   - Use memcpy() instead of strcpy() for known length strings

   - Ensure __of_find_n_match_cpu_property() handles malformed "reg"
     entries


    [52 lines not shown]
DeltaFile
+1,192-0scripts/dtc/dt-check-style
+209-61drivers/of/base.c
+104-0Documentation/devicetree/bindings/display/imx/fsl,imx53-tve.yaml
+96-0Documentation/devicetree/bindings/interrupt-controller/ti,irq-crossbar.yaml
+94-0Documentation/devicetree/bindings/display/panel/samsung,sofef01-m.yaml
+85-0Documentation/devicetree/bindings/hwmon/apple,smc-hwmon.yaml
+1,780-61160 files not shown
+3,608-448166 files

LLVM/project 6dc69f6llvm/include/llvm/TargetParser AMDGPUTargetParser.def

[AMDGPU] Added SRAMECC feature for gfx1250/1251 (#203313)

Added SRAMECC feature in TargetParser.def for gfx1250/1251 to
properly reflect hardware spec
DeltaFile
+2-2llvm/include/llvm/TargetParser/AMDGPUTargetParser.def
+2-21 files

LLVM/project 61f3ed1lldb/tools/lldb-dap/extension package.json

[lldb-dap] Bump the version to 0.6.1 (#204411)
DeltaFile
+1-1lldb/tools/lldb-dap/extension/package.json
+1-11 files

FreeBSD/ports 6a242benet-im/signal-desktop Makefile, net-im/teams Makefile

*/*: Bump port revision after electron41 update (48900abd36a3)
DeltaFile
+1-1net-im/teams/Makefile
+1-1x11/waveterm/Makefile
+1-1net-im/signal-desktop/Makefile
+3-33 files

Linux/linux d44ade0drivers/char virtio_console.c, drivers/net/can virtio_can.c

Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost

Pull virtio updates from Michael Tsirkin:

 - new virtio CAN driver

 - support for LoongArch architecture in fw_cfg

 - support for firmware notifications in vdpa/octeon_ep

 - support for VFs in virtio core

 - fixes, cleanups all over the place, notably:

    - vhost: fix vhost_get_avail_idx for a non empty ring
      fixing an significant old perf regression

    - READ_ONCE() annotations mean virtio ring is now
      free of KCSAN warnings

    [23 lines not shown]
DeltaFile
+1,022-0drivers/net/can/virtio_can.c
+167-30drivers/vdpa/vdpa_user/vduse_dev.c
+113-18drivers/vdpa/octeon_ep/octep_vdpa_main.c
+78-0include/uapi/linux/virtio_can.h
+60-17drivers/virtio/virtio_ring.c
+31-21drivers/char/virtio_console.c
+1,471-8629 files not shown
+1,690-18435 files

FreeBSD/ports 48900abdevel/electron41 distinfo, devel/electron41/files patch-electron_spec_api-app-spec.ts patch-electron_shell_browser_native__window__views.cc

devel/electron41: Update to 41.8.0

Changelog: https://github.com/electron/electron/releases/tag/v41.8.0

Reported by:    GitHub (watch releases)
DeltaFile
+51-217devel/electron41/files/packagejsons/yarn.lock
+26-17devel/electron41/files/patch-electron_spec_api-app-spec.ts
+15-15devel/electron41/files/patch-electron_shell_browser_native__window__views.cc
+7-7devel/electron41/distinfo
+4-4devel/electron41/files/patch-electron_shell_browser_api_electron__api__web__contents.cc
+4-4devel/electron41/files/patch-content_browser_renderer__host_render__widget__host__view__aura.cc
+107-26411 files not shown
+128-28517 files

FreeBSD/ports fb0cbccwww/iocaine distinfo Makefile

www/iocaine: Update 3.4.0 => 3.5.0

Changelog:
https://git.madhouse-project.org/iocaine/iocaine/releases/tag/iocaine-3.5.0

PR:             295626
Approved by:    maintainer timeout (2+ weeks)
Approved by:    osa, vvd (Mentors, implicit)
DeltaFile
+3-3www/iocaine/distinfo
+1-2www/iocaine/Makefile
+4-52 files