OpenZFS/src cb333betests/zfs-tests/tests/functional/compression compress_004_pos.ksh, tests/zfs-tests/tests/functional/zstream zstream_raw_001_pos.ksh

ZTS: resolve two possible divide by zero errors in tests

Resolve two divide by zero errors observed by the CI. Change 
how random picking to ensure no divide by zero, and also keep 
same semantics.

Reviewed-by: Tony Hutter <hutter2 at llnl.gov>
Reviewed-by: Brian Behlendorf <behlendorf1 at llnl.gov>
Reviewed-by: George Melikov <mail at gmelikov.ru>
Signed-off-by: tiehexue <tiehexue at hotmail.com>
Closes #19078
DeltaFile
+7-2tests/zfs-tests/tests/functional/zstream/zstream_raw_001_pos.ksh
+6-1tests/zfs-tests/tests/functional/compression/compress_004_pos.ksh
+13-32 files

OpenZFS/src ba464dftests/zfs-tests/tests/functional/mmp mmp_write_uberblocks.ksh mmp_write_distribution.ksh

ZTS: do not leave a suspended pool behind in the mmp tests

The mmp tests destroy their pool from cleanup through

    datasetexists $TESTPOOL && destroy_pool $TESTPOOL

and datasetexists() asks zfs, which cannot open a pool whose I/O is
suspended:

    # zfs get name msus
    cannot open 'msus': pool I/O is currently suspended

MMP suspends the pool by itself once its writes have not succeeded for
long enough, which is exactly the state a failing mmp test tends to
leave behind, so the guard says the pool is gone, cleanup destroys
nothing, and the pool stays imported.  Every mmp test that runs after
it then fails on its own zpool create:

    /dev/loop0 is part of active pool 'testpool'

    [31 lines not shown]
DeltaFile
+21-3tests/zfs-tests/tests/functional/mmp/mmp_on_uberblocks.ksh
+2-1tests/zfs-tests/tests/functional/mmp/mmp_write_uberblocks.ksh
+2-1tests/zfs-tests/tests/functional/mmp/mmp_write_distribution.ksh
+2-1tests/zfs-tests/tests/functional/mmp/mmp_on_zdb.ksh
+2-1tests/zfs-tests/tests/functional/mmp/mmp_on_thread.ksh
+2-1tests/zfs-tests/tests/functional/mmp/mmp_on_off.ksh
+31-82 files not shown
+34-108 files

OPNSense/core 7fb3708src/etc/inc interfaces.inc

interfaces: whitespace
DeltaFile
+0-1src/etc/inc/interfaces.inc
+0-11 files

FreeBSD/ports 19708bbsysutils Makefile, sysutils/py-saltext.freebsd distinfo pkg-descr

sysutils/py-saltext.freebsd: new port

This is a Salt extension for interacting with various FreeBSD-specific
commands.  The bsd.shadow module, used by all BSDs, is also included.
The modules herein used to be part of Salt, in version 3006, but are now
developed in a separate repository.

PR:             296290
Reviewed by:    krion
Approved by:    krion (ports)
Sponsored by:   ConnectWise
DeltaFile
+26-0sysutils/py-saltext.freebsd/Makefile
+4-0sysutils/py-saltext.freebsd/pkg-descr
+3-0sysutils/py-saltext.freebsd/distinfo
+1-0sysutils/Makefile
+34-04 files

FreeBSD/ports 7d944fcsysutils Makefile, sysutils/py-saltext.zfs distinfo pkg-descr

sysutils/py-saltext.zfs: ZFS extensions for Salt 3008

This port contains modules and states that were previously builtin to
Salt 3006, but must now be installed separately.

It includes two patches used internally at Connectwise.

PR:             296290
Reviewed by:    krion
Approved by:    krion (ports)
Sponsored by:   ConnectWise
DeltaFile
+26-0sysutils/py-saltext.zfs/Makefile
+19-0sysutils/py-saltext.zfs/files/patch-src_saltext_zfs_states_zfs.py
+4-0sysutils/py-saltext.zfs/pkg-descr
+3-0sysutils/py-saltext.zfs/distinfo
+1-0sysutils/Makefile
+53-05 files

FreeBSD/ports 344b4b0sysutils/py-salt pkg-plist distinfo, sysutils/py-salt/files patch-pyproject.toml patch-tools_pkg_salt__build__backend.py

sysutils/py-salt: 3008.2

Version 3008.1 version works with Python 3.12+.  However, it lacks many
states included in Salt 3006, for example ZFS.

Version 3008.2 fixes a regression in the pkg.installed state, though it
wasn't mentioned in Salt's changelog.

PR:             296290
Approved by:    krion (maintainer)
Sponsored by:   ConnectWise
DeltaFile
+36-14sysutils/py-salt/Makefile
+0-41sysutils/py-salt/files/patch-requirements_base.txt
+21-0sysutils/py-salt/files/patch-tools_pkg_salt__build__backend.py
+10-0sysutils/py-salt/files/patch-pyproject.toml
+5-3sysutils/py-salt/distinfo
+0-5sysutils/py-salt/pkg-plist
+72-636 files

FreeNAS/freenas 62aa630src/middlewared/middlewared/utils/directoryservices krb5_conf.py, tests/unit test_krb5.py

NAS-142772 / 26.0.0-RC.1 / krb5.conf: alias realm case variants and fix domain_realm (by anodos325) (#19589)

MIT krb5 matches [realms] sections case-sensitively, and we set
dns_lookup_kdc = false whenever KDCs are pinned. Samba reconnects as the
machine account after creating it, kiniting as
MACHINE$@<dns_domain_name>, and that name comes from
lsa_QueryInfoPolicy2 in lower case. The lookup misses our upper-case
realm section, has no DNS fallback, and fails with KRB5_REALM_UNKNOWN.

SPNEGO normally falls back to NTLMSSP and the join survives. With the
GPOS STIG enabled smb.conf carries client use kerberos = required,
leaving no other mechanism, so every fresh AD join fails with
WERR_GEN_FAILURE.

Emit each realm under both case spellings sharing the same pinned KDCs,
and take default_domain from the canonical name.

Also rename [domain_realms] to [domain_realm]. MIT krb5 only reads the
singular form, so the section was parsing cleanly and being ignored.

    [5 lines not shown]
DeltaFile
+92-7tests/unit/test_krb5.py
+26-5src/middlewared/middlewared/utils/directoryservices/krb5_conf.py
+118-122 files

FreeNAS/freenas 29c4f62src/middlewared/middlewared/utils/directoryservices krb5_conf.py, tests/unit test_krb5.py

NAS-142772 / 26.0.0 / krb5.conf: alias realm case variants and fix domain_realm (by anodos325) (#19588)

MIT krb5 matches [realms] sections case-sensitively, and we set
dns_lookup_kdc = false whenever KDCs are pinned. Samba reconnects as the
machine account after creating it, kiniting as
MACHINE$@<dns_domain_name>, and that name comes from
lsa_QueryInfoPolicy2 in lower case. The lookup misses our upper-case
realm section, has no DNS fallback, and fails with KRB5_REALM_UNKNOWN.

SPNEGO normally falls back to NTLMSSP and the join survives. With the
GPOS STIG enabled smb.conf carries client use kerberos = required,
leaving no other mechanism, so every fresh AD join fails with
WERR_GEN_FAILURE.

Emit each realm under both case spellings sharing the same pinned KDCs,
and take default_domain from the canonical name.

Also rename [domain_realms] to [domain_realm]. MIT krb5 only reads the
singular form, so the section was parsing cleanly and being ignored.

    [5 lines not shown]
DeltaFile
+92-7tests/unit/test_krb5.py
+26-5src/middlewared/middlewared/utils/directoryservices/krb5_conf.py
+118-122 files

OPNSense/core dedee81src/etc/inc interfaces.inc, src/opnsense/mvc/app/models/OPNsense/Interfaces Wlan.php

interfaces: rename WLAN getConfig() for clarity
DeltaFile
+2-2src/opnsense/mvc/app/models/OPNsense/Interfaces/Wlan.php
+1-1src/etc/inc/interfaces.inc
+3-32 files

LLVM/project 77874a5clang/docs ReleaseNotes.md, clang/lib/AST ExprClassification.cpp

[Clang][Sema] Make _Imag int/float LValue not assignable (#218270)

Clang accepts `__real int/float` as an LValue because it's equal to the
scalar value itself, so the assignment will work fine, but it's not the
case for `__imag` because, for int and float, there is no imaginary part
to assign a value to it, so in the sema we can reject this case, similar
to GCC.

Fixes: #119498
DeltaFile
+36-0clang/test/SemaCXX/imag-lvalue-with-non-complex-operand.cpp
+7-1clang/lib/AST/ExprClassification.cpp
+1-0clang/docs/ReleaseNotes.md
+44-13 files

FreeNAS/freenas b9f6963

Empty commit to create PR on github.

You should reset it
DeltaFile
+0-00 files

FreeBSD/src 3716da9sys/compat/linuxkpi/common/include/linux sched.h, sys/sys param.h

LinuxKPI: Add tgid to task_struct under sched.h

The amdkfd driver requires the `tgid` to be a part of the `task_struct`.
This patch introduces the `tgid` member to `task_struct`.

Reviewed by:    bz
Sponsored By:   The FreeBSD Foundation
Differential Revision:  https://reviews.freebsd.org/D58228
DeltaFile
+1-1sys/sys/param.h
+1-0sys/compat/linuxkpi/common/include/linux/sched.h
+2-12 files

FreeNAS/freenas bcae8c4src/middlewared/middlewared/plugins rsync.py, src/middlewared/middlewared/plugins/rsync_ utils.py

NAS-143382 / 26.0.0 / Fix rsync extra arguments quoting (#19655)

https://github.com/truenas/middleware/pull/19496 introduced a
regression: the user had `--rsync-path="sudo rsync"` in their `extra`
args, and the argument value was used literally, causing `bash: line 1:
sudo rsync: command not found` error (it tried to launch `sudo rsync`
binary which didn't exist).

This is a 25.10.7 bug that didn't exist in 25.10.6, so, if we're ever
publishing 25.10.8, it should be backported there.
DeltaFile
+60-0src/middlewared/middlewared/pytest/unit/plugins/test_rsync_extra_args.py
+21-0tests/api2/test_rsync_ssh_authentication.py
+14-0src/middlewared/middlewared/plugins/rsync_/utils.py
+2-2src/middlewared/middlewared/plugins/rsync.py
+97-24 files

LLVM/project 7349dc8llvm/lib/Transforms/InstCombine InstCombineLoadStoreAlloca.cpp InstCombineMulDivRem.cpp

[𝘀𝗽𝗿] changes to main this commit is based on

Created using spr 1.3.7

[skip ci]
DeltaFile
+15-29llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
+12-25llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp
+8-14llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
+8-13llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
+1-7llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp
+1-6llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
+45-946 files

LLVM/project 21886callvm/lib/Transforms/InstCombine InstCombineMulDivRem.cpp InstCombineAndOrXor.cpp, llvm/lib/Transforms/Utils IntegerDivision.cpp

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+15-29llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
+12-25llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp
+8-14llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
+8-13llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
+6-12llvm/lib/Transforms/Utils/IntegerDivision.cpp
+1-7llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp
+50-1003 files not shown
+53-1139 files

LLVM/project 9c4200dllvm/test/CodeGen/AMDGPU dpp_combine_rev_opcode.ll

[AMDGPU] Update REV Opcode DPP Combine test to have True16 and Fake16 runs (#222217)

DPP is not implemented for VGPR16 operands, so we also need runs with
True16 disabled to verify that combining into opcodes that might use
them is being properly guarded.
DeltaFile
+286-142llvm/test/CodeGen/AMDGPU/dpp_combine_rev_opcode.ll
+286-1421 files

LLVM/project 2c09e15flang-rt/lib/cuda init.cpp, flang/include/flang/Optimizer/Transforms Passes.td

[flang][cuda] Emit Mcuda_compiled sentinel for CUDA Fortran objects (#222421)

Objects compiled as CUDA Fortran now declare an undefined Mcuda_compiled
symbol from CUFAddConstructor when emit-cuda-compiled is set. Linking
without the CUDA Fortran runtime then fails with a clear undefined
reference instead of only _FortranACUFInit, which is limited to PROGRAM
units.

The CUDA Fortran runtime defines the symbol so linking with the CUDA
Fortran runtime still succeeds.
DeltaFile
+19-0flang/lib/Optimizer/Transforms/CUDA/CUFAddConstructor.cpp
+10-3flang/test/Fir/CUDA/cuda-constructor-2.f90
+7-2flang/include/flang/Optimizer/Transforms/Passes.td
+2-0flang-rt/lib/cuda/init.cpp
+38-54 files

LLVM/project 5ad3dd8clang/test/CodeGenOpenCL builtins-amdgcn-gfx1250-async-load-store-lds.cl, llvm/include/llvm/IR IntrinsicsAMDGPU.td

[AMDGPU] Add more attributes to some intrinsics to help with attribute propagation (#222222)
DeltaFile
+34-25llvm/test/Transforms/FunctionAttrs/sendmsg-nocallback.ll
+15-13llvm/include/llvm/IR/IntrinsicsAMDGPU.td
+6-6clang/test/CodeGenOpenCL/builtins-amdgcn-gfx1250-async-load-store-lds.cl
+55-443 files

LLVM/project 3cab00bclang/lib/CIR/CodeGen CIRGenBuiltinAMDGPU.cpp, clang/test/CIR/CodeGenHIP builtins-amdgcn-vi-f16.hip builtins-amdgcn.hip

[CIR][AMDGPU] Add support for AMDGCN fract builtins (#222185)

Adds codegen for the following AMDGCN fract builtins:

* __builtin_amdgcn_fract (double)
* __builtin_amdgcn_fractf (float)
* __builtin_amdgcn_fracth (half)

These are lowered to the corresponding `llvm.amdgcn.fract` intrinsics.
DeltaFile
+16-0clang/test/CIR/CodeGenHIP/builtins-amdgcn.hip
+2-6clang/lib/CIR/CodeGen/CIRGenBuiltinAMDGPU.cpp
+8-0clang/test/CIR/CodeGenHIP/builtins-amdgcn-vi-f16.hip
+26-63 files

LLVM/project 2c9afb4clang/lib/CIR/CodeGen CIRGenBuiltinAMDGPU.cpp, clang/test/CIR/CodeGenHIP builtins-amdgcn.hip

[CIR][AMDGPU] Add support for AMDGCN bitfield extract builtins (#222186)

Adds codegen for the following AMDGCN bitfield extract builtins:

* __builtin_amdgcn_ubfe (unsigned)
* __builtin_amdgcn_sbfe (signed)

These are lowered to the corresponding `llvm.amdgcn.ubfe` and
`llvm.amdgcn.sbfe` intrinsics.
DeltaFile
+18-0clang/test/CIR/CodeGenHIP/builtins-amdgcn.hip
+4-12clang/lib/CIR/CodeGen/CIRGenBuiltinAMDGPU.cpp
+22-122 files

OpenZFS/src 0e2c0f9tests/zfs-tests/cmd mmap_sync.c

ZTS: judge mmap_sync by a concurrent fsync, not by a fixed bound

mmap_sync fails whenever one msync() takes longer than two seconds,
and in CI it does, on machines that are merely loaded:

    slow msync: 2318.177000 ms
    slow msync: 4043.686000 ms

The bound was raised once already, in c4d1a19b3 ("ZTS: increase
timeout of mmap_sync_001_pos"), and the ctime_001_pos failure fixed in
8486ea36f shows the same CI stalling a creat() for twelve seconds, so
no fixed bound is going to hold there.

An msync() goes through zpl_fsync(): since a18c9edda ("Linux: sync:
remove async/sync accounting") it writes the dirty pages out with
zfs_putpage() and ends in zil_commit(), and it never waits for page
writeback.  So what the bound really measures is the ZIL commit, which
is the disk.  Sampling the kernel stacks of mmap_sync under an IO load
in a VM confirms it: the time goes into zil_commit_impl() waiting for

    [28 lines not shown]
DeltaFile
+200-36tests/zfs-tests/cmd/mmap_sync.c
+200-361 files

LLVM/project e829049clang/include/clang/StaticAnalyzer/Core/PathSensitive ExprEngine.h, clang/lib/StaticAnalyzer/Core ExprEngineCallAndReturn.cpp ExprEngineObjC.cpp

[NFC][analyzer] Cleanup checker calls in `ExprEngine::ProcessStmt`, `ExprEngine::Visit*` (#218691)

Begin standardizing how `PreStmt` checkers and `PostStmt` checkers are
called by the analyzer engine. Previously, checkers were called either
from `ExprEngine::Visit` or the visit method of the statement. Now this
logic was hoisted out into `ExprEngine::ProcessStmt` and most of the
checker calls happen from there.

There are several statement kinds that do not call checkers at all or
only call `PreVisit` or only call `PostVisit` checkers. There are also
statement kinds whose visit code does not easily lend itself to the
`PreVisit`, `Visit`, `PostVisit` scheme, so those have been left
unmodified and will be refactored in a separate patch. The checker
calling status of statement kinds have been documented in the function
`shouldJustCallCheckers`.
DeltaFile
+575-376clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
+275-274clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
+32-26clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
+24-16clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h
+2-15clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp
+2-7clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
+910-7146 files

FreeNAS/freenas a5cbdb9src/middlewared/middlewared/api/v26_0_0 s3.py, src/middlewared/middlewared/api/v27_0_0 s3.py

NAS-143505 / 27.0.0-BETA.1 / Let the S3 protocol create and delete buckets (by anodos325) (#19670)

An S3 client creating a bucket sends a name and nothing about placement,
so something has to decide where the dataset goes. That decision is this
service's: the S3 daemon holds no ZFS layout, and a daemon that composed
a dataset name would be holding half of a policy whose other half it
cannot see.

The S3 service gains managed_root_dataset and sharing.s3.create's
dataset becomes optional. Omitted, the dataset is created under that
root and named after the bucket. Empty is the default and refuses a
bucket that named no dataset, which is what an appliance whose
administrator has not chosen a location should do rather than picking
one. The root must exist and is never created: a service that made a
dataset out of a string typed into its configuration would make one out
of a typo just as readily. It is checked at s3.update, because a create
is the wrong place to learn the service is misconfigured - the client
that provoked it can do nothing about it.


    [44 lines not shown]
DeltaFile
+135-1tests/api2/test_s3_accesskey.py
+89-27src/middlewared/middlewared/plugins/truenas_s3/bucket_crud.py
+89-1src/middlewared/middlewared/plugins/truenas_s3/accesskey_crud.py
+61-0tests/api2/test_s3_bucket.py
+36-5src/middlewared/middlewared/api/v27_0_0/s3.py
+36-5src/middlewared/middlewared/api/v26_0_0/s3.py
+446-394 files not shown
+532-3910 files

LLVM/project 442789allvm/lib/Target/AMDGPU SIFoldOperands.cpp, llvm/test/CodeGen/AMDGPU llvm.amdgcn.alignbyte.ll true16-fold.mir

fold sgpr32 via vgpr16
DeltaFile
+116-12llvm/test/CodeGen/AMDGPU/true16-fold.mir
+26-58llvm/test/CodeGen/AMDGPU/GlobalISel/fshl.ll
+57-0llvm/lib/Target/AMDGPU/SIFoldOperands.cpp
+4-11llvm/test/CodeGen/AMDGPU/GlobalISel/fshr.ll
+1-3llvm/test/CodeGen/AMDGPU/llvm.amdgcn.alignbyte.ll
+2-2llvm/test/CodeGen/AMDGPU/GlobalISel/fshr-new-regbank-select.ll
+206-861 files not shown
+207-887 files

LLVM/project 5501013llvm/lib/Target/AMDGPU SIInstrInfo.h SIInstrInfo.cpp, llvm/test/CodeGen/AMDGPU lit.local.cfg

add machine verifier check
DeltaFile
+84-3llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
+3-0llvm/lib/Target/AMDGPU/SIInstrInfo.h
+2-0llvm/test/CodeGen/AMDGPU/lit.local.cfg
+89-33 files

LLVM/project 59f480bllvm/test/CodeGen/AMDGPU llvm.amdgcn.image.d16.dim.ll float-to-arbitrary-fp-fp8-hw.ll

fix pattern
DeltaFile
+8,380-0llvm/test/CodeGen/AMDGPU/schedule-amdgpu-trackers.ll
+1,481-1,527llvm/test/CodeGen/AMDGPU/float-to-arbitrary-fp-widen.ll
+1,021-1,456llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.64bit.ll
+172-359llvm/test/CodeGen/AMDGPU/bf16.ll
+210-215llvm/test/CodeGen/AMDGPU/float-to-arbitrary-fp-fp8-hw.ll
+359-0llvm/test/CodeGen/AMDGPU/llvm.amdgcn.image.d16.dim.ll
+11,623-3,55735 files not shown
+12,823-4,56841 files

LLVM/project 15cfa45llvm/test/CodeGen/AMDGPU amdgcn.bitcast.96bit.ll amdgcn.bitcast.64bit.ll

rebase and update test
DeltaFile
+4,487-4,646llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+1,881-1,913llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+2,102-1,533llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.128bit.ll
+1,576-1,609llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.256bit.ll
+1,514-1,093llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.64bit.ll
+1,141-782llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.96bit.ll
+12,701-11,57648 files not shown
+20,913-24,24054 files

LLVM/project 1ce69e4llvm/test/CodeGen/AMDGPU fptoui-sat-scalar.ll usubsat.ll, llvm/test/CodeGen/AMDGPU/GlobalISel llvm.amdgcn.raw.tbuffer.store.f16.ll combine-fma-add-fma-mul.ll

update test
DeltaFile
+434-434llvm/test/CodeGen/AMDGPU/GlobalISel/combine-fma-add-fma-mul.ll
+146-218llvm/test/CodeGen/AMDGPU/fptoui-sat-vector.ll
+106-170llvm/test/CodeGen/AMDGPU/gfx-callable-argument-types.ll
+134-134llvm/test/CodeGen/AMDGPU/GlobalISel/llvm.amdgcn.raw.tbuffer.store.f16.ll
+42-89llvm/test/CodeGen/AMDGPU/usubsat.ll
+13-41llvm/test/CodeGen/AMDGPU/fptoui-sat-scalar.ll
+875-1,0869 files not shown
+1,006-1,26315 files

LLVM/project 2fb634ellvm/test/CodeGen/AMDGPU flat-atomicrmw-fmax.ll global-atomicrmw-fadd.ll, llvm/test/CodeGen/AMDGPU/GlobalISel legalize-llvm.amdgcn.image.sample.a16.ll

calling conv update
DeltaFile
+1,777-2,342llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.128bit.ll
+1,241-1,664llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.64bit.ll
+927-1,291llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.96bit.ll
+748-1,428llvm/test/CodeGen/AMDGPU/GlobalISel/legalize-llvm.amdgcn.image.sample.a16.ll
+1,248-856llvm/test/CodeGen/AMDGPU/global-atomicrmw-fadd.ll
+1,251-722llvm/test/CodeGen/AMDGPU/flat-atomicrmw-fmax.ll
+7,192-8,303158 files not shown
+22,916-20,214164 files

LLVM/project df14903llvm/lib/Target/AMDGPU SIInstrInfo.cpp

clang-format change
DeltaFile
+4-10llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
+4-101 files