OpenZFS/src e2b97abtests/unit test_zap.c

unit/zap: uint64 keys

Add coverage for binary uint64-array keys (ZAP_FLAG_UINT64_KEY), the key
type used by the dedup table and block reference table.  Covers the
by-dnode operations on such a ZAP: add, lookup, length, lookup_length,
update and remove.

Reviewed-by: Brian Behlendorf <behlendorf1 at llnl.gov>
Signed-off-by: Christos Longros <chris.longros at gmail.com>
Closes #18639
DeltaFile
+71-0tests/unit/test_zap.c
+71-01 files

LLVM/project 5e85dbclldb/source/Plugins/SymbolFile/DWARF DWARFASTParserClang.cpp, lldb/test/Shell/SymbolFile/DWARF wasm-function-display-name.yaml

[lldb] Use the source name when the linkage name is not mangled (#205701)

When a DW_TAG_subprogram has a DW_AT_linkage_name that is not actually a
mangled name and differs from DW_AT_name, lldb used the linkage name as
the function's display name. For C++ the linkage name demangles back to
the source name, but a plain symbol such as __main_argc_argv does not,
so the function showed up under its raw linkage name in backtraces,
breakpoint locations and `image lookup`, and was not findable by its
source name.

This happens on WebAssembly: wasi-libc renames `int main(int, char**)`
to its __main_argc_argv argv-passing wrapper, keeping DW_AT_name "main"
but recording DW_AT_linkage_name "__main_argc_argv".

When the linkage name has no recognized mangling scheme, use DW_AT_name
as the display name and keep the linkage name as the symbol, so lookups
by either name still resolve.
DeltaFile
+81-0lldb/test/Shell/SymbolFile/DWARF/wasm-function-display-name.yaml
+10-2lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
+91-22 files

LLVM/project cf223ebmlir/include/mlir/Dialect/OpenACC/Transforms Passes.td, mlir/lib/Dialect/OpenACC/Transforms ACCEmitRemarksPrivate.cpp CMakeLists.txt

[OpenACC] Add pass `ACCEmitRemarksPrivate`. (#205824)

The pass emits remarks describing `acc.firstprivate` and `acc.private`
associated with OpenACC compute and loop constructs.

Assisted-by: Claude Code
DeltaFile
+119-0mlir/test/Dialect/OpenACC/acc-emit-remarks-private.mlir
+100-0mlir/lib/Dialect/OpenACC/Transforms/ACCEmitRemarksPrivate.cpp
+14-0mlir/include/mlir/Dialect/OpenACC/Transforms/Passes.td
+1-0mlir/lib/Dialect/OpenACC/Transforms/CMakeLists.txt
+234-04 files

FreeBSD/ports 21aa7e2devel/maki distinfo Makefile.crates

devel/maki: Update to 0.3.20
DeltaFile
+69-23devel/maki/distinfo
+34-11devel/maki/Makefile.crates
+1-4devel/maki/Makefile
+104-383 files

LLVM/project 6d64753clang/lib/AST/ByteCode Compiler.cpp EvalEmitter.cpp, clang/test/SemaCXX constant-expression-p2280r4.cpp

[clang][bytecode] Don't ignore discarded `DeclRefExpr`s (#204165)

Check for the evaluating decl in `GetRefGlobal` so we don't fail too
early. We also need to mark the `APValue` as constexpr-unknown when
returning it, even though the backing `Descriptor` is not marked
constexpr-unknown.



This fixes the last differences in `constant-expression-p2280r4.cpp`.
DeltaFile
+35-12clang/lib/AST/ByteCode/Compiler.cpp
+11-1clang/lib/AST/ByteCode/EvalEmitter.cpp
+6-6clang/test/SemaCXX/constant-expression-p2280r4.cpp
+8-0clang/lib/AST/ByteCode/Interp.h
+60-194 files

Linux/linux 962528farch/x86 Kconfig, arch/x86/platform/geode geode-common.c

Merge tag 'gpio-fixes-for-v7.2-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux

Pull gpio fixes from Bartosz Golaszewski:

 - fix locking context with shared GPIOs in gpio-tegra

 - fix IRQ domain leak in error path in gpio-davinci

 - fix returning a potentially uninitialized integer in
   gpiochip_set_multiple()

 - use raw spinlock in gpio-eic-sprd and gpio-sch to address locking
   context issues

 - bail out of probe() if registering the GPIO chip fails in gpio-mlxbf3

 - fix varible type for storing the "ngpios" property in gpio-pisosr

 - fix out-of-bounds pin access in GPIO ACPI

    [22 lines not shown]
DeltaFile
+45-12drivers/gpio/gpiolib-acpi-core.c
+16-16drivers/gpio/gpio-sch.c
+2-16drivers/gpio/gpio-tegra.c
+5-7arch/x86/platform/geode/geode-common.c
+5-5arch/x86/Kconfig
+4-4drivers/gpio/gpio-eic-sprd.c
+77-605 files not shown
+87-6411 files

FreeBSD/ports 6c89b24net-p2p/amule Makefile distinfo, net-p2p/amule/files patch-fix-cryptopp-modern-version patch-disable-try-to-use-ccache

net-p2p/amule: Update to 3.0.1

- Use src tarball from release assets
- Add GEOIP option default ON
- Turn OFF TRANSLATED_MANPAGES so we can use pre-rendered man translations
- Remove upstreamed patches

ChangeLog: https://github.com/amule-org/amule/releases/tag/3.0.1
DeltaFile
+0-78net-p2p/amule/files/patch-fix-cryptopp-modern-version
+0-31net-p2p/amule/files/patch-disable-try-to-use-ccache
+18-7net-p2p/amule/Makefile
+0-17net-p2p/amule/files/patch-use-xdg-open-as-preview-default
+0-12net-p2p/amule/files/patch-disable-version-check
+3-3net-p2p/amule/distinfo
+21-1481 files not shown
+25-1497 files

LLVM/project 4c20398llvm/test/Transforms/SLPVectorizer/WebAssembly or-reduction-zero-test.ll, llvm/test/Transforms/SLPVectorizer/X86 reduction-zero-test-ctpop.ll

[SLP] Add pre-commit tests for zero-tested OR/UMax reductions (NFC) (#205738)

Add pre-commit tests for scalar OR/UMax reductions whose result is
only used by an eq/ne-zero comparison.
DeltaFile
+235-0llvm/test/Transforms/SLPVectorizer/WebAssembly/or-reduction-zero-test.ll
+166-0llvm/test/Transforms/SLPVectorizer/X86/reduction-zero-test-ctpop.ll
+401-02 files

LLVM/project d0373bamlir/include/mlir/Dialect/SPIRV/IR SPIRVGLOps.td, mlir/lib/Dialect/SPIRV/IR SPIRVOps.cpp

[mlir][SPIR-V] Add GL NMin, NMax and NClamp ops (#203878)
DeltaFile
+77-0mlir/include/mlir/Dialect/SPIRV/IR/SPIRVGLOps.td
+54-0mlir/test/Dialect/SPIRV/IR/gl-ops.mlir
+11-0mlir/test/Target/SPIRV/gl-ops.mlir
+10-0mlir/lib/Dialect/SPIRV/IR/SPIRVOps.cpp
+152-04 files

LLVM/project 04450c8mlir/include/mlir/Dialect/SPIRV/IR SPIRVCLOps.td, mlir/test/Dialect/SPIRV/IR ocl-ops.mlir

[mlir][SPIR-V] Add CL copysign, fdim, fmod and hypot ops (#203880)
DeltaFile
+88-0mlir/include/mlir/Dialect/SPIRV/IR/SPIRVCLOps.td
+80-0mlir/test/Dialect/SPIRV/IR/ocl-ops.mlir
+8-0mlir/test/Target/SPIRV/ocl-ops.mlir
+176-03 files

LLVM/project 4f638ffmlir/lib/Dialect/OpenACC/Transforms ACCSpecializeForHost.cpp, mlir/test/Dialect/OpenACC acc-if-clause-lowering.mlir

[mlir][acc] Drop redundant `acc.terminator` erase that broke atomic capture under `if` (#205731)

Example:
```fortran
!$acc parallel if(cond)
!$acc atomic capture
  a = a + 1
  b = a
!$acc end atomic
!$acc end parallel
```

In this code, the `if` clause triggers host-fallback specialization. A
blanket `acc.terminator` erase pattern strips the implicit terminator of
the still-present `acc.atomic.capture`, so the later `getTerminator()`
trips `mightHaveTerminator()`.

Fix: remove that pattern — every ACC region op already erases its own
terminator when it unwraps/inlines, so it was redundant (and only raced
ahead to break this case). Adds a lit test.
DeltaFile
+33-1mlir/test/Dialect/OpenACC/acc-if-clause-lowering.mlir
+2-2mlir/lib/Dialect/OpenACC/Transforms/ACCSpecializeForHost.cpp
+35-32 files

Linux/linux ec85be7drivers/power/sequencing core.c pwrseq-pcie-m2.c

Merge tag 'pwrseq-fixes-for-v7.2-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux

Pull power sequencing fixes from Bartosz Golaszewski:

 - fix an ABBA deadlock in pwrseq unregister path

 - fix a use-after-free bug in pwrseq core

 - sort PCI device IDs in ascending order in pwrseq-pcie-m2

* tag 'pwrseq-fixes-for-v7.2-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux:
  power: sequencing: fix ABBA deadlock in pwrseq_device_unregister()
  power: sequencing: pcie-m2: Sort PCI device IDs in ascending order
  pwrseq: core: fix use-after-free in pwrseq_debugfs_seq_next()
DeltaFile
+15-8drivers/power/sequencing/core.c
+2-2drivers/power/sequencing/pwrseq-pcie-m2.c
+17-102 files

LLVM/project 1508332llvm/lib/Target/NVPTX NVPTXAddressFolder.cpp NVPTXInstrInfo.td, llvm/test/CodeGen/NVPTX address-folder.ll address-folder.mir

Revert "[NVPTX] Fold symbol addresses into memory operands (#202379)"

This reverts commit 94c1a8bc3e6b790ccc5723803129b3b956f11d13.
DeltaFile
+0-123llvm/lib/Target/NVPTX/NVPTXAddressFolder.cpp
+0-113llvm/test/CodeGen/NVPTX/address-folder.ll
+0-60llvm/test/CodeGen/NVPTX/address-folder.mir
+2-2llvm/lib/Target/NVPTX/NVPTXInstrInfo.td
+0-3llvm/lib/Target/NVPTX/NVPTX.h
+0-3llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp
+2-3044 files not shown
+2-30910 files

FreeNAS/freenas 6b09e68

Empty commit to create PR on github.

You should reset it
DeltaFile
+0-00 files

FreeNAS/freenas 15f53b0src/middlewared/middlewared/plugins failover.py, src/middlewared/middlewared/plugins/failover_ event.py stcnith.py

NAS-141531 / 26.0.0-RC.1 / more zpool status checks in failover (by yocalebo) (#19205)

These changes make the standby transition fail closed so a controller
never releases its disks while a pool might still be imported.

When a controller demotes to standby it exports its pools and then stops
fencing to make the disks available to the other controller. The old
code exported each pool on a best effort basis and skipped any pool that
reported a status of OFFLINE. In rare cases a pool can report OFFLINE
while it is in fact still imported, so the old code could stop fencing
and release the disks while a pool was still attached. That is a fail
open scenario because the other controller could then import the same
pool at the same time, which can lead to data corruption.

The new code attempts to export every pool and then confirms the outcome
before releasing fencing. It checks each pool again using a lockless
read of the kernel kstat namespace, which reflects whether a pool is
actually present rather than what state it reports. If any pool is still
imported, or the export is still running past its timeout, or the import

    [20 lines not shown]
DeltaFile
+66-27src/middlewared/middlewared/plugins/failover_/event.py
+83-0src/middlewared/middlewared/pytest/unit/plugins/test_failover_event_failclosed.py
+43-0src/middlewared/middlewared/plugins/failover_/stcnith.py
+2-14src/middlewared/middlewared/plugins/failover.py
+2-11src/middlewared/middlewared/scripts/ha_panic.py
+196-525 files

LLVM/project fa059dallvm/lib/Transforms/Scalar LoopInterchange.cpp, llvm/test/Transforms/LoopInterchange transform-stop-partway.ll

address review
DeltaFile
+4-3llvm/test/Transforms/LoopInterchange/transform-stop-partway.ll
+2-0llvm/lib/Transforms/Scalar/LoopInterchange.cpp
+6-32 files

OpenZFS/src 6b8f798include/sys abd.h, module/zfs abd.c vdev_raidz.c

Avoid more abd_t allocations in RAIDZ/dRAID

RAIDZ/dRAID allocate rc_abdstruct for every column, but used it only
for data columns, while parity columns allocated additional abd_t's
on top of that.  This change introduces abd_alloc_linear_struct(),
abd_alloc_gang_struct() and abd_get_zeros_struct() to the ABD API,
mirroring the existing abd_get_offset_struct() pattern, and uses
them to use rc_abdstruct in remaining column cases.

Reviewed-by: Brian Behlendorf <behlendorf1 at llnl.gov>
Reviewed-by: Rob Norris <rob.norris at truenas.com>
Signed-off-by: Alexander Motin <alexander.motin at TrueNAS.com>
Closes #18668
DeltaFile
+38-7module/zfs/abd.c
+12-9module/zfs/vdev_raidz.c
+6-4module/zfs/vdev_draid.c
+3-0include/sys/abd.h
+59-204 files

LLVM/project d4148a8libc/docs/dev builtin_compatibility.rst index.rst

[libc][docs] add `builtin_compatibility` (#200539)

Document the built-in compatibility for different GCC versions since
GCC-5
DeltaFile
+351-0libc/docs/dev/builtin_compatibility.rst
+1-0libc/docs/dev/index.rst
+352-02 files

Linux/linux da07894. MAINTAINERS, Documentation/driver-api uio-howto.rst

Merge tag 'docs-7.2-2' of git://git.kernel.org/pub/scm/linux/kernel/git/docs/linux

Pull more documentation updates from Jonathan Corbet:
 "A handful of late-arriving docs fixes, along with one document update
  that fell through the cracks before"

* tag 'docs-7.2-2' of git://git.kernel.org/pub/scm/linux/kernel/git/docs/linux:
  docs: tools: Fix typo 'ackward' to 'awkward' in unittest.rst
  kdoc: xforms: ignore special static/inline macros
  kdoc: xforms_lists: handle DECLARE_PER_CPU() in kernel-doc
  MAINTAINERS: Fix regex for kdoc
  docs: kgdb: Fix path of driver options
  Documentation: tracing: fix typo in events documentation
  Docs/driver-api/uio-howto: document mmap_prepare callback
  docs/mm: clarify that we are not looking for LLM generated content
  kernel-doc: xforms: support __SYSFS_FUNCTION_ALTERNATIVE()
DeltaFile
+13-0Documentation/mm/index.rst
+4-0tools/lib/python/kdoc/xforms_lists.py
+2-2Documentation/driver-api/uio-howto.rst
+1-1Documentation/trace/events.rst
+1-1MAINTAINERS
+1-1Documentation/process/debugging/kgdb.rst
+22-51 files not shown
+23-67 files

LLVM/project 78247bfllvm/lib/Transforms/Scalar SROA.cpp, llvm/test/Transforms/SROA struct-to-vector.ll struct-to-vector-fp-store-only-tail.ll

[SROA] Adjust struct layout requirements for struct to vector canonicalization (#201967)

Address a bug pointed out by @bjope (thank you!)

- To perform struct to vector canonicalization, it is not enough that
the struct layout size is the same as the vector layout size, because
structs and vectors may have padding in different locations! Previously
we would promote `{ i5, i5 }` as `<i5, i5>`, which is a miscompile!

- I also relaxed another requirement. Previously we made sure that the
struct layout size is equal to the vector allocation size. This
prevented promoting `{ i32, i32, i32 }` as `<i32, i32, i32>` because the
struct layout size is 3 x i32 but the vector allocation size is 4 x i32.
So instead we should compare to the vector store size, which is 3 x i32.
DeltaFile
+31-0llvm/test/Transforms/SROA/struct-to-vector.ll
+14-4llvm/lib/Transforms/Scalar/SROA.cpp
+1-4llvm/test/Transforms/SROA/struct-to-vector-fp-store-only-tail.ll
+46-83 files

LLVM/project fcc105fclang-tools-extra/clang-tidy/misc ExplicitConstructorCheck.cpp, clang-tools-extra/clang-tidy/utils TypeTraits.cpp TypeTraits.h

[clang-tidy] Move isStdInitializerList to utils::type_traits and add unit tests (#205449)

Moves isStdInitializerList from misc/ExplicitConstructorCheck into
utils::type_traits so it can be shared, and adds unit tests for it. NFC.
DeltaFile
+60-0clang-tools-extra/unittests/clang-tidy/TypeTraitsTest.cpp
+2-22clang-tools-extra/clang-tidy/misc/ExplicitConstructorCheck.cpp
+19-0clang-tools-extra/clang-tidy/utils/TypeTraits.cpp
+3-0clang-tools-extra/clang-tidy/utils/TypeTraits.h
+1-0clang-tools-extra/unittests/clang-tidy/CMakeLists.txt
+85-225 files

Linux/linux 6cc37b8Documentation/kbuild kconfig.rst, scripts/kconfig confdata.c

Merge tag 'kbuild-7.2-2' of git://git.kernel.org/pub/scm/linux/kernel/git/kbuild/linux

Pull more Kbuild updates from Nathan Chancellor:

 - Link host programs with ld.lld when $(LLVM) is set to match user's
   expectations that LLVM will be used exclusively during the build
   process

 - Fix modpost warnings from static variable name promotion that can
   happen more aggressively with the recently merged distributed ThinLTO
   support

 - Add an optional warning for user-supplied Kconfig values that changed
   after processing, such as out of range values or options that have
   incorrect / missing dependencies

* tag 'kbuild-7.2-2' of git://git.kernel.org/pub/scm/linux/kernel/git/kbuild/linux:
  kconfig: add optional warnings for changed input values
  modpost: Ignore Clang LTO suffixes in symbol matching
  kbuild: Use ld.lld for linking host programs when LLVM is set
DeltaFile
+102-4scripts/kconfig/confdata.c
+40-0scripts/kconfig/tests/warn_changed_input/Kconfig
+33-0scripts/kconfig/tests/warn_changed_input/__init__.py
+6-2scripts/kconfig/tests/conftest.py
+6-0scripts/kconfig/tests/warn_changed_input/expected_config
+5-0Documentation/kbuild/kconfig.rst
+192-65 files not shown
+204-711 files

LLVM/project d3c00bfutils/bazel/llvm-project-overlay/llvm driver.bzl BUILD.bazel

Bazel driver-tools build-setting simplification (#205846)

Read the validated `driver-tools` build setting directly in
`generate_driver_tools_def` instead of reconstructing tool names from
selected `CcInfo` dependency labels through `label.name`.
`generate_driver_selects` now returns the selected dependency labels, so
`select_driver_tools` is removed.

This fixes a silent issue when 2 multicall participants have the same
`label.name`.
DeltaFile
+13-29utils/bazel/llvm-project-overlay/llvm/driver.bzl
+5-5utils/bazel/llvm-project-overlay/llvm/BUILD.bazel
+18-342 files

LLVM/project 0e84786clang/lib/CIR/CodeGen CIRGenExprCXX.cpp, clang/test/CIR/CodeGen new-array-init.cpp new.cpp

[CIR] Zero-init array-new with trivial ctor (#205611)

emitNewArrayInitializer hit errorNYI for a value-initialized array new of
a trivially-constructible element (new T[n]()), where the trailing
parentheses mean zero-initialization.  Route the trivial-ctor branch
through the existing tryMemsetInitialization() helper, following classic
CodeGen: a zero-initializable element gets operator new[] plus a single
memset to 0, while a non-zero-initializable element (an array of
pointers-to-data-member, whose null value is -1) declines the memset and
falls through to the constructor loop value-initializing each element.
Also add the getParent()->isEmpty() early return.  tryMemsetInitialization
builds the memset through the Address overload of createMemSet so the
destination alignment is preserved.

Found building the SPEC CPU 2026 LLVM benchmark (723.llvm_r / 823.llvm_s)
with ClangIR.
DeltaFile
+75-0clang/test/CIR/CodeGen/new-array-init.cpp
+8-8clang/test/CIR/CodeGenCXX/new-array-init.cpp
+7-8clang/lib/CIR/CodeGen/CIRGenExprCXX.cpp
+6-6clang/test/CIR/CodeGen/new.cpp
+1-1clang/test/CIR/CodeGen/paren-list-agg-init.cpp
+97-235 files

LLVM/project df49da3flang/lib/Semantics openmp-utils.cpp, flang/test/Lower/OpenMP metadirective-construct.f90

[flang][OpenMP] Decompose combined construct selectors in variant matching (#205802)

The previous code resolved a `construct={...}` selector by mapping its
name to a trait through a string lookup
(`getOpenMPContextTraitSelectorKind` ->
`getOpenMPContextTraitPropertyForSelector`). That works for a standalone
leaf construct such as `parallel`, whose name matches a single construct
selector string, but not for a combined/composite directive such as
`target teams`: its name (`"target teams"`) matches no selector string,
so the lookup returns `invalid` and the selector's construct traits are
dropped.

This PR adds `AppendConstructTraitsForDirective` that walks the
directive sets and adds each leaf trait, so combined directives are no
longer reduced to a single (or dropped) trait. It also handles the
standalone `dispatch` construct trait.

Fixes https://github.com/llvm/llvm-project/issues/205664

Assisted-by: Cursor
DeltaFile
+28-4flang/lib/Semantics/openmp-utils.cpp
+19-0flang/test/Lower/OpenMP/metadirective-construct.f90
+47-42 files

Linux/linux 504c806drivers/char/ipmi ipmi_msghandler.c ipmi_si_platform.c

Merge tag 'for-linus-7.2-1' of https://github.com/cminyard/linux-ipmi

Pull ipmi updates from Corey Minyard:
 "Lots of little tweaks.

  Nothing huge, the biggest issue was a possible refcount underflow that
  could cause a memory leak in some situations. Otherwise, fixing
  formatting and style things and some docs typos"

* tag 'for-linus-7.2-1' of https://github.com/cminyard/linux-ipmi:
  docs: ipmi: Fix path of the "hotmod" module parameter
  ipmi: Drop unused assignment of platform_device_id driver data
  ipmi: si: Use platform_get_irq_optional() to retrieve interrupt
  ipmi: fix refcount leak in i_ipmi_request()
  ipmi:ssif: Drop unused assignment of platform_device_id driver data
  ipmi: Fix user refcount underflow in event delivery
  ipmi: Use named initializers for struct i2c_device_id
  ipmi: Use LIST_HEAD() to initialize on stack list head
  ipmi:kcs: Reduce the number of retries
DeltaFile
+12-12drivers/char/ipmi/ipmi_msghandler.c
+7-4drivers/char/ipmi/ipmi_si_platform.c
+2-2drivers/char/ipmi/ipmb_dev_int.c
+2-2drivers/char/ipmi/ipmi_ssif.c
+2-2drivers/char/ipmi/ipmi_ipmb.c
+1-1drivers/char/ipmi/ssif_bmc.c
+26-232 files not shown
+28-258 files

NetBSD/pkgsrc MKFb9KEnet/powerdns distinfo Makefile.common

   powerdns: Update to 5.1.2

   Released: 25th of June 2026
   This is release 5.1.2 of the Authoritative Server. It contains a security fix only.

   Please review the Upgrade Notes before upgrading from versions < 5.1.x.

   Bug Fixes
   Fix PowerDNS Security Advisory 2026-07 for PowerDNS Authoritative Server
VersionDeltaFile
1.60+4-4net/powerdns/distinfo
1.49+2-2net/powerdns/Makefile.common
+6-62 files

NetBSD/pkgsrc mC6K70zdoc CHANGES-2026

   doc: Updated net/powerdns to 5.1.2
VersionDeltaFile
1.4013+2-1doc/CHANGES-2026
+2-11 files

FreeNAS/freenas f454bbfsrc/middlewared/middlewared/plugins/failover_ stcnith.py, src/middlewared/middlewared/pytest/unit/plugins test_failover_event_failclosed.py

ruff it
DeltaFile
+9-9src/middlewared/middlewared/pytest/unit/plugins/test_failover_event_failclosed.py
+8-8src/middlewared/middlewared/plugins/failover_/stcnith.py
+17-172 files

FreeBSD/ports 62d8ebesysutils/rubygem-fluentd distinfo Makefile

sysutils/rubygem-fluentd: Update to 1.19.3

Release notes:  https://github.com/fluent/fluentd/releases/tag/v1.19.3
DeltaFile
+3-3sysutils/rubygem-fluentd/distinfo
+1-1sysutils/rubygem-fluentd/Makefile
+4-42 files