Linux C-SKY architecture development
 help / color / mirror / Atom feed
 messages from 2026-06-29 13:07:44 to 2026-07-14 18:29:09 UTC [more...]

[RFC PATCH 00/34] mm: optimize unnecessary loads due to ptep_get() and friends out
 2026-07-14 18:28 UTC  (68+ messages)
` [RFC PATCH 01/34] ARM: mm: make nommu pgd_t a scalar
` [RFC PATCH 02/34] ARM: mm: make 2-level "
` [RFC PATCH 03/34] ARM: mm: remove custom pgdp_get()
` [RFC PATCH 04/34] LoongArch: mm: define pud_leaf() only when PUD exists
` [RFC PATCH 05/34] MIPS: "
` [RFC PATCH 06/34] mm/pgtable: define (pgd|p4d|pud)_leaf() for folded page tables
` [RFC PATCH 07/34] mm/pgtable: define (pgd|p4d|pud)_offset_lockless() "
` [RFC PATCH 08/34] loongarch: kvm: remove stack copy address of pXd in pXd_offset()
` [RFC PATCH 09/34] riscv: "
` [RFC PATCH 10/34] x86: mm: carve out the generic compile-time folded pgtable case in effective_prot()
` [RFC PATCH 11/34] mm: vmscan: remove stack copy address of pud pass in wallk_pud_range()
` [RFC PATCH 12/34] arm64: mm: use proper set_pXd() for generic compile-time folded patable in kasan_early_init()
` [RFC PATCH 13/34] arm64: mm: define pud_set_huge() when __PGTABLE_PMD_FOLDED not defined
` [RFC PATCH 14/34] csky: mm: use proper set_pXd() for generic compile-time folded patable in vmalloc_fault()
` [RFC PATCH 15/34] mips: mm: use proper set_pXd() for generic compile-time folded patable in vmalloc_fault path
` [RFC PATCH 16/34] nios2: "
` [RFC PATCH 17/34] riscv: mm: use proper set_pXd() for generic compile-time folded patable in vmalloc_fault()
` [RFC PATCH 18/34] riscv: mm: use proper set_pXd() for generic compile-time folded patable in setup_vm_final()
` [RFC PATCH 19/34] x86: power: use proper set_pXd() for generic compile-time folded patable in resume_one_md_table_init()
` [RFC PATCH 20/34] x86: kexec: use proper set_pXd() for generic compile-time folded patable in machine_kexec_page_table_set_one()
` [RFC PATCH 21/34] x86: platform: use proper set_pXd() for generic compile-time folded patable in setup_olpc_ofw_pgd()
` [RFC PATCH 22/34] x86: mm: use proper set_pXd() for generic compile-time folded patable in one_md_table_init()
` [RFC PATCH 23/34] x86: mm: skip pud setup when using generic compile-time folded pagetable
` [RFC PATCH 24/34] x86: mm: call try_to_free_pmd_page() when CONFIG_PGTABLE_LEVELS > 2
` [RFC PATCH 25/34] x86: mm: remove usage of pgd_page_vaddr() for CONFIG_x86_PAE
` [RFC PATCH 26/34] x86: mm: define pudp_set_access_flags() when CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD is enabled only
` [RFC PATCH 27/34] m68k: mm: remove usage of pgd_page_vaddr() for CONFIG_PGTABLE_LEVELS=3
` [RFC PATCH 28/34] arm: mm: use proper pgtable APIs for generic compile-time folded patable in kasan_init()
` [RFC PATCH 29/34] mm/pgtable: disallow calling folded set_pgd/set_p4d/set_pud
` [RFC PATCH 30/34] mm/pgtable: disallow calling folded (pgd|p4d|pud)_page, pgd_page_vaddr() and (p4d|pud)_pgtable
` [RFC PATCH 31/34] mm/pgtable: optimize pmdp_get() and friends for folded pagetable levels
` [RFC PATCH 32/34] openrisc/pgtable: drop __pmd_offset()
` [RFC PATCH 33/34] mm/pgtable: catch abuse of folded dummy pgd_t/p4d_t/pud_t
` [RFC PATCH 34/34] arm64: pgtable: convert pte_present() from macro to static inline

[patch 00/18] entry: Consolidate and rework syscall entry handling
 2026-07-14  8:20 UTC  (98+ messages)
` [patch 01/18] powerpc: Move stack randomization after syscall_enter_from_user_mode()
` [patch 02/18] randomize_kstack: Provide add_random_kstack_offset_irqsoff()
` [patch 03/18] entry: Provide [syscall_]enter_from_user_mode_randomize_stack()
` [patch 04/18] loongarch/syscall: Use syscall_enter_from_user_mode_randomize_stack()
` [patch 05/18] powerpc/syscall: "
` [patch 06/18] riscv/syscall: "
` [patch 07/18] s390/syscall: Use enter_from_user_mode_randomize_stack()
` [patch 08/18] x86/syscall: Use [syscall_]enter_from_user_mode_randomize_stack()
` [patch 09/18] entry: Remove syscall_enter_from_user_mode()
` [patch 10/18] entry: Use syscall number instead of rereading it
` [patch 11/18] seccomp, treewide: Rename and convert __secure_computing() to return boolean
` [patch 12/18] ptrace, treewide: Rename ptrace_report_syscall_entry() to ptrace_report_syscall_permit_entry()
` [patch 13/18] entry: Make trace_syscall_enter() return type bool
` [patch 14/18] entry: Make return type of syscall_trace_enter() bool
` [patch 15/18] x86/entry: Make syscall functions static
` [patch 16/18] x86/entry: Get rid of the sys_ni_syscall() indirection
` [patch 17/18] x86/entry: Simplify the syscall number logic
` [patch 18/18] entry, treewide: Make syscall_enter_from_user_mode[_work]() indicate syscall execution

[PATCH v16 00/18] arm64: entry: Convert to Generic Entry
 2026-07-09  8:27 UTC  (26+ messages)
` [PATCH v16 01/18] seccomp: Convert __secure_computing() to return boolean
` [PATCH v16 02/18] syscall_user_dispatch: Introduce a weak fallback for arch_syscall_is_vdso_sigreturn()
` [PATCH v16 13/18] arm64: syscall: Simplify el0_svc_common() syscall exit path
` [PATCH v16 15/18] arm64: ptrace: Skip syscall exit reporting for PTRACE_SYSEMU_SINGLESTEP
` [PATCH v16 16/18] arm64: entry: Convert to generic entry
` [PATCH v16 17/18] arm64: Inline el0_svc_common()
` [PATCH v16 18/18] arm64: vdso: Expose sigreturn address on vdso to the kernel

[PATCH] csky: Fix ABIv2 memcmp() s1 alignment check
 2026-07-07  3:47 UTC  (4+ messages)

[akpm-mm:mm-new 59/142] mm/vmalloc.c:3590:23: warning: unused variable 'start'
 2026-06-30 10:57 UTC  (3+ messages)


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox