This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from 42b00f122cfb Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt [...] new fa7d949337cc x86/resctrl: Rename and move rdt files to a separate directory new 352940ececac x86/resctrl: Rename the RDT functions and definitions new 0f00717ecce4 x86/resctrl: Re-arrange the RDT init code new aa50453a448a x86/resctrl: Move all the macros to resctrl/internal.h new 1ad4fa41d99f x86/resctrl: Initialize the vendor-specific resource functions new a36c5ff560fb x86/resctrl: Bring cbm_validate() into the resource structure new 580ebb66cbb3 x86/resctrl: Add vendor check for the MBA software controller new 6fe07ce35e8a x86/resctrl: Rename the config option INTEL_RDT to RESCTRL new 9f72f855a6cd x86/resctrl: Add AMD's X86_FEATURE_MBA to the scattered CP [...] new 723f1a0dd8e2 x86/resctrl: Fixup the user-visible strings new 4d05bf71f157 x86/resctrl: Introduce AMD QOS feature new a6f771c9bf4e Documentation: Rename and update intel_rdt_ui.txt to resct [...] new 1f8251d3bfad MAINTAINERS: Update resctrl filename patterns new 456824896de2 x86/resctrl: Use rdt_last_cmd_puts() where possible new cb74635faa17 x86/resctrl: Remove unnecessary check for cbm_validate() new 52eb74339a62 x86/resctrl: Fix rdt_find_domain() return value and checks new a52fb43a5faa Merge branch 'x86-cache-for-linus' of git://git.kernel.org [...] new 479229d1607b x86/microcode/AMD: Subtract SECTION_HDR_SIZE from file lef [...] new f4ff25916c11 x86/microcode/AMD: Add microcode container verification new 3974b68114fe x86/microcode/AMD: Move verify_patch_size() up in the file new cfffbfeb424b x86/microcode/AMD: Clean up per-family patch size checks new 70887cb23eda x86/microcode/AMD: Cleanup verify_patch_size() more new 2b8d34b1ece5 x86/microcode/AMD: Concentrate patch verification new 6cdce951f7a1 x86/microcode/AMD: Simplify patch family detection new 51776fb805fe x86/microcode/AMD: Move patch family check to verify_patch() new c79570205ba6 x86/microcode/AMD: Move chipset-specific check into verify [...] new d430a305b7f8 x86/microcode/AMD: Change verify_patch()'s return value new c45e80358cb3 x86/microcode/AMD: Convert early parser to the new verific [...] new 72dc571a3a77 x86/microcode/AMD: Fix container size's type new 38673f623dfc x86/microcode/AMD: Check microcode container data in the l [...] new 39cd7c17f9bc x86/microcode/AMD: Convert CPU equivalence table variable [...] new 413c89154c67 x86/microcode/AMD: Check the equivalence table size when s [...] new 2ffcbce39ea1 x86/microcode/AMD: Update copyright new 72af84151fa7 Merge branch 'x86-microcode-for-linus' of git://git.kernel [...] new 21afaf181362 x86/mce: Streamline MCE subsystem's naming new 3bfaf95cb1fe x86/mce: Unify pr_* prefix new 72a8f089c382 x86/mce: Restore MCE injector's module name new eed9688f8513 Merge branch 'ras-core-for-linus' of git://git.kernel.org/ [...]
The 38 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: .../x86/{intel_rdt_ui.txt => resctrl_ui.txt} | 9 +- MAINTAINERS | 6 +- arch/x86/Kconfig | 22 +- .../asm/{intel_rdt_sched.h => resctrl_sched.h} | 28 +- arch/x86/kernel/cpu/Makefile | 7 +- arch/x86/kernel/cpu/{mcheck => mce}/Makefile | 10 +- .../x86/kernel/cpu/{mcheck/mce_amd.c => mce/amd.c} | 2 +- .../kernel/cpu/{mcheck/mce-apei.c => mce/apei.c} | 2 +- arch/x86/kernel/cpu/{mcheck/mce.c => mce/core.c} | 4 +- arch/x86/kernel/cpu/{mcheck => mce}/dev-mcelog.c | 4 +- .../cpu/{mcheck/mce-genpool.c => mce/genpool.c} | 2 +- .../cpu/{mcheck/mce-inject.c => mce/inject.c} | 2 +- .../kernel/cpu/{mcheck/mce_intel.c => mce/intel.c} | 2 +- .../cpu/{mcheck/mce-internal.h => mce/internal.h} | 3 + arch/x86/kernel/cpu/{mcheck => mce}/p5.c | 2 + .../cpu/{mcheck/mce-severity.c => mce/severity.c} | 2 +- arch/x86/kernel/cpu/{mcheck => mce}/therm_throt.c | 2 + arch/x86/kernel/cpu/{mcheck => mce}/threshold.c | 2 + arch/x86/kernel/cpu/{mcheck => mce}/winchip.c | 2 + arch/x86/kernel/cpu/microcode/amd.c | 470 ++++++++++++++------- arch/x86/kernel/cpu/resctrl/Makefile | 4 + .../x86/kernel/cpu/{intel_rdt.c => resctrl/core.c} | 186 ++++++-- .../ctrlmondata.c} | 107 ++++- .../kernel/cpu/{intel_rdt.h => resctrl/internal.h} | 55 ++- .../cpu/{intel_rdt_monitor.c => resctrl/monitor.c} | 16 +- .../pseudo_lock.c} | 40 +- .../pseudo_lock_event.h} | 2 +- .../{intel_rdt_rdtgroup.c => resctrl/rdtgroup.c} | 61 +-- arch/x86/kernel/cpu/scattered.c | 7 +- arch/x86/kernel/process_32.c | 4 +- arch/x86/kernel/process_64.c | 4 +- include/linux/sched.h | 2 +- 32 files changed, 719 insertions(+), 352 deletions(-) rename Documentation/x86/{intel_rdt_ui.txt => resctrl_ui.txt} (99%) rename arch/x86/include/asm/{intel_rdt_sched.h => resctrl_sched.h} (77%) rename arch/x86/kernel/cpu/{mcheck => mce}/Makefile (61%) rename arch/x86/kernel/cpu/{mcheck/mce_amd.c => mce/amd.c} (99%) rename arch/x86/kernel/cpu/{mcheck/mce-apei.c => mce/apei.c} (99%) rename arch/x86/kernel/cpu/{mcheck/mce.c => mce/core.c} (99%) rename arch/x86/kernel/cpu/{mcheck => mce}/dev-mcelog.c (99%) rename arch/x86/kernel/cpu/{mcheck/mce-genpool.c => mce/genpool.c} (99%) rename arch/x86/kernel/cpu/{mcheck/mce-inject.c => mce/inject.c} (99%) rename arch/x86/kernel/cpu/{mcheck/mce_intel.c => mce/intel.c} (99%) rename arch/x86/kernel/cpu/{mcheck/mce-internal.h => mce/internal.h} (98%) rename arch/x86/kernel/cpu/{mcheck => mce}/p5.c (98%) rename arch/x86/kernel/cpu/{mcheck/mce-severity.c => mce/severity.c} (99%) rename arch/x86/kernel/cpu/{mcheck => mce}/therm_throt.c (99%) rename arch/x86/kernel/cpu/{mcheck => mce}/threshold.c (96%) rename arch/x86/kernel/cpu/{mcheck => mce}/winchip.c (97%) create mode 100644 arch/x86/kernel/cpu/resctrl/Makefile rename arch/x86/kernel/cpu/{intel_rdt.c => resctrl/core.c} (83%) rename arch/x86/kernel/cpu/{intel_rdt_ctrlmondata.c => resctrl/ctrlmondata.c} (81%) rename arch/x86/kernel/cpu/{intel_rdt.h => resctrl/internal.h} (91%) rename arch/x86/kernel/cpu/{intel_rdt_monitor.c => resctrl/monitor.c} (98%) rename arch/x86/kernel/cpu/{intel_rdt_pseudo_lock.c => resctrl/pseudo_lock.c} (97%) rename arch/x86/kernel/cpu/{intel_rdt_pseudo_lock_event.h => resctrl/pseudo_lock_e [...] rename arch/x86/kernel/cpu/{intel_rdt_rdtgroup.c => resctrl/rdtgroup.c} (98%)