[FIR] Route embox+projected slice through shapeVec in FIRToMemRef
The descriptor-strides path iterates source-rank dims but queries the
rank-reduced embox result box, miscompiling slices that collapse dims
(e.g. complex %re/%im on b(:,k)). For embox-derived boxes the underlying
storage is contiguous, so the shape-derived layout is both correct and
the natural place to encode "static shape information is available."
Drop the `|| hasProjectedSlice` carve-out from boxNeedsDescriptorStrides
so projection cases also take the shapeVec path. Non-embox boxes
(rebox, assumed-shape) still go through fir.box_dims because their
storage may be non-contiguous.
Fixes the SIGSEGV at -O0 -lro and miscompile at -O1 -lro on the Fujitsu
0086_0019 reproducer (complex(:,k)%re inside WHERE).
Co-Authored-By: Claude Sonnet 4.6 <noreply at anthropic.com>
drm/amd/display: Use krealloc_array() in dal_vector_reserve()
From Harry Wentland
e09689286385a66311ac6922af95339d7a3cef8d in linux-6.18.y/6.18.36
da48bc4461b8a5ebfb9264c9b191a701d8e99009 in mainline linux
drm/amd/display: Fix out-of-bounds read in dp_get_eq_aux_rd_interval()
From Harry Wentland
454d3b3d499c18373f8960d31aea48338a3ca9e0 in linux-6.18.y/6.18.36
e8b4d37eba05141ee01794fc6b7f2da808cee83b in mainline linux
drm/amd/display: Fix NULL deref and buffer over-read in SDP debugfs
From Harry Wentland
bb6f705b73b5f191f14ad004e2c8c4b615806187 in linux-6.18.y/6.18.36
adf67034b1f61f7119295208085bfd43f85f56af in mainline linux
drm/amd/display: add missing CSC entries for BT.2020 for DCE IPs
From Leorize
c000da79df787097abdfb1cb4bf94af8151a566a in linux-6.18.y/6.18.36
6590fe323ce2807f5d9454e7fccf3fab875d4352 in mainline linux
drm/amd/display: Clamp VBIOS HDMI retimer register count to array size
From Harry Wentland
3f32d52ec604c659725d865cf8cc6a17a33f9c6a in linux-6.18.y/6.18.36
fb0707ce00eef4e2d60c3020e1c0432739703e4a in mainline linux
drm/amd/display: Clamp HDMI HDCP2 rx_id_list read to buffer size
From Harry Wentland
1906064d50d194a145486e5caf3db3e708b6f6ef in linux-6.18.y/6.18.36
f0f3981c43b32cadfe373d636d9e9ca522bb3702 in mainline linux
drm/amd/display: Bound VBIOS record-chain walk loops
From Harry Wentland
0e56f460bddb397fa9a8e6faf7ae7eaa86953eb1 in linux-6.18.y/6.18.36
ff287df16a1a58aca78b08d1f3ee09fc44da0351 in mainline linux
drm/amd/pm: smu_v14_0_0: use SoftMin for gfxclk in set_soft_freq_limited_range
From Priya Hosur
57607fe55e6d598bc58c15d1143ba7a266b17103 in linux-6.18.y/6.18.36
03b70e0d8aa26bab89a0f1394c1c80a871925e42 in mainline linux
drm/amd/pm: mark metrics.energy_accumulator is invalid for smu 14.0.2
From Yang Wang
932642791cb1513118847370f4cbe09d69400eed in linux-6.18.y/6.18.36
ee193c5bbd5e2b56bbeb54ef554414b43a6fc896 in mainline linux
[orc-rt] Rename scope_exit header, add nodiscard attribute. (#205030)
The rename brings the scope_exit type's header name into alignment with
other ORC runtime snake_case types.
The [[nodiscard]] attribute should help to prevent accidental misuse of
the type.
drm/amd/pm: fix smu13 power limit default/cap calculation
From Yang Wang
8979ded4d8997cdaba94a6c58be2ad069c720ee8 in linux-6.18.y/6.18.36
bb204f19e4a115f094a6a3c4d82fcf48862d0766 in mainline linux
drm/amdgpu: set noretry=1 as default for GFX 10.1.x (Navi10/12/14)
From Vitaly Prosyak
39b5397bf8de2c5f110a0599707a7b1e0dbc6bf3 in linux-6.18.y/6.18.36
e47b0056a08dc70430ffc44bbf62197e7d1ff8ea in mainline linux
drm/amdgpu: restart the CS if some parts of the VM are still invalidated
From Christian Koenig
fcd51a085e9a0d01315606e9d2dad1732563faf2 in linux-6.18.y/6.18.36
40396ffdf6120e2380706c59e1a84d7e765a37b6 in mainline linux
drm/amdgpu: fix waiting for all submissions for userptrs
From Christian Koenig
68455b117258243e73b9697d15a570158ad93e1c in linux-6.18.y/6.18.36
58bafc666c484b21839a2d27e923ae1b2727a1df in mainline linux
[clang] Avoid assertion on invalid member template specialization (#201506)
fixes #201490
It would be possible to have `PrevClassTemplate == false` when `SS` was
invalid.
Since it is already invalid, it would be safe to skip
`setMemberSpecialization` for `NewTemplate`. When the qualified scope
specifier is invalid, Sema may have already diagnosed the declaration
and marked it invalid. In that case there may be no previous class
template declaration, so the assertion is too strong. Avoid marking the
new declaration as a member specialization unless the previous class
template exists.