This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from 5133c9e51de4 Merge tag 'drm-next-2023-07-07' of git://anongit.freedeskt [...] new 76862af5d1ad apparmor: fix kernel-doc complaints new b54aebd44111 apparmor: fix use of strcpy in policy_unpack_test new 755a22c74345 AppArmor: Fix some kernel-doc comments new 6d7467957ecd apparmor: Return directly after a failed kzalloc() in two [...] new 000518bc5aef apparmor: fix missing error check for rhashtable_insert_fast new 6600e9f692e3 apparmor: add missing failure check in compute_xmatch_perms new ba808cb5edfd apparmor: aa_buffer: Convert 1-element array to flexible array new 0bac2002b397 apparmor: fix policy_compat permission remap with extended [...] new 6f442d42c0d8 apparmor: fix profile verification and enable it new ec6851ae0ab4 apparmor: fix: kzalloc perms tables for shared dfas new 3f069c4c6432 apparmor: Fix kernel-doc header for verify_dfa_accept_index new 70806ee18a87 Merge tag 'apparmor-pr-2023-07-06' of git://git.kernel.org [...] new 39f49684036d powerpc: allow PPC_EARLY_DEBUG_CPM only when SERIAL_CPM=y new 6cb44bef35ac powerpc: Include asm/nmi.c in mobility.c for watchdog_hard [...] new abaa02fc944f powerpc: dts: turris1x.dts: Fix PCIe MEM size for pci2 node new 22dcc7d77fa4 Merge tag 'powerpc-6.5-2' of git://git.kernel.org/pub/scm/ [...] new bcc8790057c1 RISC-V: Document that V registers are clobbered on syscalls new e50db34efdc8 RISC-V: Fix up some vector state related build failures new ab7fa6b05ebb riscv: move options to keep entries sorted new cead443a3062 riscv: vmlinux-xip.lds.S: remove .alternative section new d4035ff16bfa vmlinux.lds.h: use correct .init.data.* section name new c828856b51bb riscv: enable HAVE_LD_DEAD_CODE_DATA_ELIMINATION new f7584322e4fe riscv: disable HAVE_LD_DEAD_CODE_DATA_ELIMINATION for LLD new 782aefb177e8 Merge patch series "riscv: enable HAVE_LD_DEAD_CODE_DATA_E [...] new 26c38cd802c9 riscv: vector: only enable interrupts in the first-use trap new 75b59f2a90aa riscv: vector: clear V-reg in the first-use trap new 5c93c4c72fbc selftests: Test RISC-V Vector's first-use handler new 54cdede08f2f riscv: vdso: include vdso/vsyscall.h for vdso_data new c1f048a6bd7d riscv: Enable ARCH_SUSPEND_POSSIBLE for s2idle new 85fadc0d0411 riscv: move memblock_allow_resize() after linear mapping is ready new 9657e9b7d253 riscv: Discard vector state on syscalls new 52909f176802 RISC-V: drop error print from riscv_hartid_to_cpuid() new aeb71e42caae dt-bindings: riscv: deprecate riscv,isa new 62ba41d27612 mm: riscv: fix an unsafe pte read in huge_pte_alloc() new 6259f3443c6a risc-v: Fix order of IPI enablement vs RCU startup new 5177978ee074 RISC-V: Document the ISA string parsing rules for ACPI new a2492ca86c98 riscv: Select HAVE_ARCH_USERFAULTFD_MINOR new 31ca5d49264b riscv: errata: thead: only set cbom size & noncoherent dur [...] new 3b472f860c5c riscv: mm: mark CBO relate initialization funcs as __init new 8500808a991f riscv: mm: mark noncoherent_supported as __ro_after_init new e8605e8fdf42 Merge patch series "riscv: some CMO alternative related clean up" new 4f6b6c2b2f86 Merge tag 'riscv-for-linus-6.5-mw2' of git://git.kernel.or [...]
The 42 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: Documentation/devicetree/bindings/riscv/cpus.yaml | 43 ++-- .../devicetree/bindings/riscv/extensions.yaml | 250 +++++++++++++++++++++ Documentation/riscv/acpi.rst | 10 + Documentation/riscv/index.rst | 1 + Documentation/riscv/vector.rst | 8 + arch/powerpc/Kconfig.debug | 2 +- arch/powerpc/boot/dts/turris1x.dts | 6 +- arch/powerpc/platforms/pseries/mobility.c | 1 + arch/riscv/Kconfig | 20 +- arch/riscv/errata/thead/errata.c | 7 +- arch/riscv/include/asm/vector.h | 34 +++ arch/riscv/include/uapi/asm/sigcontext.h | 4 + arch/riscv/kernel/smp.c | 1 - arch/riscv/kernel/smpboot.c | 5 +- arch/riscv/kernel/traps.c | 10 +- arch/riscv/kernel/vdso.c | 1 + arch/riscv/kernel/vector.c | 1 + arch/riscv/kernel/vmlinux-xip.lds.S | 6 - arch/riscv/kernel/vmlinux.lds.S | 6 +- arch/riscv/mm/cacheflush.c | 8 +- arch/riscv/mm/dma-noncoherent.c | 2 +- arch/riscv/mm/hugetlbpage.c | 6 +- arch/riscv/mm/init.c | 4 +- include/asm-generic/vmlinux.lds.h | 2 +- security/apparmor/crypto.c | 10 +- security/apparmor/file.c | 2 +- security/apparmor/lsm.c | 8 +- security/apparmor/policy.c | 20 +- security/apparmor/policy_compat.c | 20 +- security/apparmor/policy_unpack.c | 102 +++++---- security/apparmor/policy_unpack_test.c | 13 +- security/apparmor/secid.c | 3 +- tools/testing/selftests/riscv/vector/.gitignore | 1 + tools/testing/selftests/riscv/vector/Makefile | 6 +- .../selftests/riscv/vector/v_initval_nolibc.c | 68 ++++++ 35 files changed, 565 insertions(+), 126 deletions(-) create mode 100644 Documentation/devicetree/bindings/riscv/extensions.yaml create mode 100644 Documentation/riscv/acpi.rst create mode 100644 tools/testing/selftests/riscv/vector/v_initval_nolibc.c