This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from 315d99318179 Merge tag 'pm-5.13-rc2' of git://git.kernel.org/pub/scm/li [...] new 875d598db60a MAINTAINERS: Update address for Emma Anholt new f7c475b8dfc2 drm/ttm: Do not add non-system domain BO into swap list new ffe8768fb8f3 drm/vc4: remove unused function new cc2520909c2d MAINTAINERS: Update my e-mail new c55b44c9386f Merge drm/drm-fixes into drm-misc-fixes new 1db7aa269ada Merge tag 'drm-misc-fixes-2021-05-13' of git://anongit.fre [...] new 5d31950a4833 drm/radeon/ni_dpm: Fix booting bug new 1ddeedaa28e1 drm/radeon/si_dpm: Fix SMU power state load new 939baec9e895 drm/amd/pm: Fix out-of-bounds bug new fe1c97d008f8 drm/amd/display: Initialize attribute for hdcp_srm sysfs file new 83a0b8639185 drm/amdgpu: add judgement when add ip blocks (v2) new 5c1a376823c4 drm/amdgpu: update the method for harvest IP for specific SKU new 227545b9a08c drm/radeon/dpm: Disable sclk switching on Oland when two 4 [...] new 3666f83a1129 drm/amdgpu: set vcn mgcg flag for picasso new 5c1efb5f7682 drm/amdgpu: update vcn1.0 Non-DPG suspend sequence new 08f0cfbf739a Merge tag 'amd-drm-fixes-5.13-2021-05-13' of https://gitla [...] new b5304a4f9ad8 Merge tag 'drm-fixes-2021-05-14' of git://anongit.freedesk [...] new 349c4d6c75d7 f2fs: avoid null pointer access when handling IPU error new a753103909a7 f2fs: support iflag change given the mask new a12cc5b423d4 f2fs: compress: fix to free compress page correctly new a949dc5f2c5c f2fs: compress: fix race condition of overwrite vs truncate new 8bfbfb0ddd70 f2fs: compress: fix to assign cc.cluster_idx correctly new ca298241bc22 f2fs: avoid swapon failure by giving a warning first new f395183f9544 f2fs: return EINVAL for hole cases in swap file new ac524ece210e Merge tag 'f2fs-5.13-rc1-fix' of git://git.kernel.org/pub/ [...] new 0c6c2d3615ef arm64: Generate cpucaps.h new a1bed090fc56 kselftest/arm64: Add missing stddef.h include to BTI tests new 37a8024d2655 arm64: mte: initialize RGSR_EL1.SEED in __cpu_setup new af44068c581c arm64: tools: Add __ASM_CPUCAPS_H to the endif in cpucaps.h new 588a513d3425 arm64: Fix race condition on PG_dcache_clean in __sync_ica [...] new bd3c9cdb21a2 Merge tag 'arm64-fixes' of git://git.kernel.org/pub/scm/li [...]
The 31 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: .mailmap | 1 + MAINTAINERS | 18 +-- arch/arm64/Makefile | 3 + arch/arm64/include/asm/Kbuild | 2 + arch/arm64/include/asm/cpucaps.h | 74 --------- arch/arm64/mm/flush.c | 4 +- arch/arm64/mm/proc.S | 12 ++ arch/arm64/tools/Makefile | 22 +++ arch/arm64/tools/cpucaps | 65 ++++++++ arch/arm64/tools/gen-cpucaps.awk | 40 +++++ drivers/gpu/drm/amd/amdgpu/amdgpu.h | 1 + drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 15 +- drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c | 28 ++++ drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.h | 1 + drivers/gpu/drm/amd/amdgpu/nv.c | 38 +++-- drivers/gpu/drm/amd/amdgpu/soc15.c | 3 +- drivers/gpu/drm/amd/amdgpu/vcn_v1_0.c | 13 +- .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_hdcp.c | 1 + drivers/gpu/drm/amd/include/amd_shared.h | 6 + drivers/gpu/drm/amd/pm/powerplay/si_dpm.c | 174 ++++++++++---------- drivers/gpu/drm/amd/pm/powerplay/sislands_smc.h | 34 ++-- drivers/gpu/drm/radeon/ni_dpm.c | 144 ++++++++--------- drivers/gpu/drm/radeon/nislands_smc.h | 34 ++-- drivers/gpu/drm/radeon/radeon.h | 1 + drivers/gpu/drm/radeon/radeon_pm.c | 8 + drivers/gpu/drm/radeon/si_dpm.c | 177 +++++++++++---------- drivers/gpu/drm/radeon/sislands_smc.h | 34 ++-- drivers/gpu/drm/vc4/vc4_vec.c | 6 - fs/f2fs/compress.c | 55 +++---- fs/f2fs/data.c | 39 +++-- fs/f2fs/f2fs.h | 2 +- fs/f2fs/file.c | 3 +- fs/f2fs/segment.c | 4 +- tools/testing/selftests/arm64/bti/test.c | 1 + 34 files changed, 623 insertions(+), 440 deletions(-) delete mode 100644 arch/arm64/include/asm/cpucaps.h create mode 100644 arch/arm64/tools/Makefile create mode 100644 arch/arm64/tools/cpucaps create mode 100755 arch/arm64/tools/gen-cpucaps.awk