LoongArch architecture development
 help / color / mirror / Atom feed
 messages from 2023-04-12 08:30:41 to 2023-04-17 20:53:31 UTC [more...]

[PATCH 00/33] Split ptdesc from struct page
 2023-04-17 20:50 UTC  (34+ messages)
` [PATCH 01/33] s390: Use _pt_s390_gaddr for gmap address tracking
` [PATCH 02/33] s390: Use pt_frag_refcount for pagetables
` [PATCH 03/33] pgtable: Create struct ptdesc
` [PATCH 04/33] mm: add utility functions for ptdesc
` [PATCH 05/33] mm: Convert pmd_pgtable_page() to pmd_ptdesc()
` [PATCH 06/33] mm: Convert ptlock_alloc() to use ptdescs
` [PATCH 07/33] mm: Convert ptlock_ptr() "
` [PATCH 08/33] mm: Convert pmd_ptlock_init() "
` [PATCH 09/33] mm: Convert ptlock_init() "
` [PATCH 10/33] mm: Convert pmd_ptlock_free() "
` [PATCH 11/33] mm: Convert ptlock_free() "
` [PATCH 12/33] mm: Create ptdesc equivalents for pgtable_{pte,pmd}_page_{ctor,dtor}
` [PATCH 13/33] powerpc: Convert various functions to use ptdescs
` [PATCH 14/33] x86: "
` [PATCH 15/33] s390: Convert various gmap "
` [PATCH 16/33] s390: Convert various pgalloc "
` [PATCH 17/33] mm: Remove page table members from struct page
` [PATCH 18/33] pgalloc: Convert various functions to use ptdescs
` [PATCH 19/33] arm: "
` [PATCH 20/33] arm64: "
` [PATCH 21/33] csky: Convert __pte_free_tlb() "
` [PATCH 22/33] hexagon: "
` [PATCH 23/33] loongarch: Convert various functions "
` [PATCH 24/33] m68k: "
` [PATCH 25/33] mips: "
` [PATCH 26/33] nios2: Convert __pte_free_tlb() "
` [PATCH 27/33] openrisc: "
` [PATCH 28/33] riscv: Convert alloc_{pmd, pte}_late() "
` [PATCH 29/33] sh: Convert pte_free_tlb() "
` [PATCH 30/33] sparc64: Convert various functions "
` [PATCH 31/33] sparc: Convert pgtable_pte_page_{ctor, dtor}() to ptdesc equivalents
` [PATCH 32/33] um: Convert {pmd, pte}_free_tlb() to use ptdescs
` [PATCH 33/33] mm: Remove pgtable_{pmd, pte}_page_{ctor, dtor}() wrappers

[PATCH v3 00/19] arch: Consolidate <asm/fb.h>
 2023-04-17 14:21 UTC  (27+ messages)
` [PATCH v3 01/19] fbdev: Prepare generic architecture helpers
` [PATCH v3 02/19] arch/arc: Implement <asm/fb.h> with generic helpers
` [PATCH v3 03/19] arch/arm: "
` [PATCH v3 04/19] arch/arm64: "
` [PATCH v3 05/19] arch/ia64: "
` [PATCH v3 06/19] arch/loongarch: "
` [PATCH v3 07/19] arch/m68k: Merge variants of fb_pgprotect() into single function
` [PATCH v3 08/19] arch/m68k: Implement <asm/fb.h> with generic helpers
` [PATCH v3 09/19] arch/mips: "
` [PATCH v3 10/19] video: Remove trailing whitespaces
` [PATCH v3 11/19] video: Move HP PARISC STI core code to shared location
` [PATCH v3 12/19] arch/parisc: Remove trailing whitespaces
` [PATCH v3 13/19] arch/parisc: Implement fb_is_primary_device() under arch/parisc
` [PATCH v3 14/19] arch/parisc: Implement <asm/fb.h> with generic helpers
` [PATCH v3 15/19] arch/powerpc: "
` [PATCH v3 16/19] arch/sh: "
` [PATCH v3 17/19] arch/sparc: Implement fb_is_primary_device() in source file
` [PATCH v3 18/19] arch/sparc: Implement <asm/fb.h> with generic helpers
` [PATCH v3 19/19] arch/x86: "

[PATCH v7 00/30] Add KVM LoongArch support
 2023-04-17  9:59 UTC  (31+ messages)
` [PATCH v7 01/30] LoongArch: KVM: Add kvm related header files
` [PATCH v7 02/30] LoongArch: KVM: Implement kvm module related interface
` [PATCH v7 03/30] LoongArch: KVM: Implement kvm hardware enable, disable interface
` [PATCH v7 04/30] LoongArch: KVM: Implement VM related functions
` [PATCH v7 05/30] LoongArch: KVM: Add vcpu related header files
` [PATCH v7 06/30] LoongArch: KVM: Implement vcpu create and destroy interface
` [PATCH v7 07/30] LoongArch: KVM: Implement vcpu run interface
` [PATCH v7 08/30] LoongArch: KVM: Implement vcpu handle exit interface
` [PATCH v7 09/30] LoongArch: KVM: Implement vcpu get, vcpu set registers
` [PATCH v7 10/30] LoongArch: KVM: Implement vcpu ENABLE_CAP ioctl interface
` [PATCH v7 11/30] LoongArch: KVM: Implement fpu related operations for vcpu
` [PATCH v7 12/30] LoongArch: KVM: Implement vcpu interrupt operations
` [PATCH v7 13/30] LoongArch: KVM: Implement misc vcpu related interfaces
` [PATCH v7 14/30] LoongArch: KVM: Implement vcpu load and vcpu put operations
` [PATCH v7 15/30] LoongArch: KVM: Implement vcpu status description
` [PATCH v7 16/30] LoongArch: KVM: Implement update VM id function
` [PATCH v7 17/30] LoongArch: KVM: Implement virtual machine tlb operations
` [PATCH v7 18/30] LoongArch: KVM: Implement vcpu timer operations
` [PATCH v7 19/30] LoongArch: KVM: Implement kvm mmu operations
` [PATCH v7 20/30] LoongArch: KVM: Implement handle csr excption
` [PATCH v7 21/30] LoongArch: KVM: Implement handle iocsr exception
` [PATCH v7 22/30] LoongArch: KVM: Implement handle idle exception
` [PATCH v7 23/30] LoongArch: KVM: Implement handle gspr exception
` [PATCH v7 24/30] LoongArch: KVM: Implement handle mmio exception
` [PATCH v7 25/30] LoongArch: KVM: Implement handle fpu exception
` [PATCH v7 26/30] LoongArch: KVM: Implement kvm exception vector
` [PATCH v7 27/30] LoongArch: KVM: Implement vcpu world switch
` [PATCH v7 28/30] LoongArch: KVM: Implement probe virtualization when loongarch cpu init
` [PATCH v7 29/30] LoongArch: KVM: Enable kvm config and add the makefile
` [PATCH v7 30/30] LoongArch: KVM: Supplement kvm document about loongarch-specific part

[PATCH 0/2] LoongArch: Make bounds-checking instructions useful
 2023-04-17  9:50 UTC  (7+ messages)
` [PATCH 1/2] LoongArch: Add opcodes of bounds-checking instructions
` [PATCH 2/2] LoongArch: Relay BCE exceptions to userland as SIGSEGVs with si_code=SEGV_BNDERR

[PATCH v7 00/30] Add KVM LoongArch support
 2023-04-17  9:46 UTC  (29+ messages)
` [PATCH v7 01/30] LoongArch: KVM: Add kvm related header files
` [PATCH v7 02/30] LoongArch: KVM: Implement kvm module related interface
` [PATCH v7 03/30] LoongArch: KVM: Implement kvm hardware enable, disable interface
` [PATCH v7 04/30] LoongArch: KVM: Implement VM related functions
` [PATCH v7 05/30] LoongArch: KVM: Add vcpu related header files
` [PATCH v7 06/30] LoongArch: KVM: Implement vcpu create and destroy interface
` [PATCH v7 07/30] LoongArch: KVM: Implement vcpu run interface
` [PATCH v7 08/30] LoongArch: KVM: Implement vcpu handle exit interface
` [PATCH v7 09/30] LoongArch: KVM: Implement vcpu get, vcpu set registers
` [PATCH v7 10/30] LoongArch: KVM: Implement vcpu ENABLE_CAP ioctl interface
` [PATCH v7 11/30] LoongArch: KVM: Implement fpu related operations for vcpu
` [PATCH v7 12/30] LoongArch: KVM: Implement vcpu interrupt operations
` [PATCH v7 13/30] LoongArch: KVM: Implement misc vcpu related interfaces
` [PATCH v7 14/30] LoongArch: KVM: Implement vcpu load and vcpu put operations
` [PATCH v7 15/30] LoongArch: KVM: Implement vcpu status description
` [PATCH v7 16/30] LoongArch: KVM: Implement update VM id function
` [PATCH v7 17/30] LoongArch: KVM: Implement virtual machine tlb operations
` [PATCH v7 18/30] LoongArch: KVM: Implement vcpu timer operations
` [PATCH v7 19/30] LoongArch: KVM: Implement kvm mmu operations
` [PATCH v7 20/30] LoongArch: KVM: Implement handle csr excption
` [PATCH v7 21/30] LoongArch: KVM: Implement handle iocsr exception
` [PATCH v7 22/30] LoongArch: KVM: Implement handle idle exception
` [PATCH v7 23/30] LoongArch: KVM: Implement handle gspr exception
` [PATCH v7 24/30] LoongArch: KVM: Implement handle mmio exception
` [PATCH v7 25/30] LoongArch: KVM: Implement handle fpu exception
` [PATCH v7 26/30] LoongArch: KVM: Implement kvm exception vector
` [PATCH v7 27/30] LoongArch: KVM: Implement vcpu world switch
` [PATCH v7 28/30] LoongArch: KVM: Implement probe virtualization when loongarch cpu init

[PATCH v2 00/19] arch: Consolidate <asm/fb.h>
 2023-04-17  9:22 UTC  (8+ messages)
` [PATCH v2 01/19] fbdev: Prepare generic architecture helpers
` [PATCH v2 02/19] arch/arc: Implement <asm/fb.h> with generic helpers

[PATCH V2] tools/perf: Add basic support for LoongArch
 2023-04-17  9:22 UTC  (5+ messages)

[PATCH v2 0/4] Add uprobes support for LoongArch
 2023-04-17  9:22 UTC  (9+ messages)
` [PATCH v2 1/4] LoongArch: Move three functions from kprobes.c to inst.c
` [PATCH v2 2/4] LoongArch: Add larch_insn_gen_break() to generate break insns
` [PATCH v2 3/4] LoongArch: Use larch_insn_gen_break() for kprobes
` [PATCH v2 4/4] LoongArch: Add uprobes support

CV IT Engineer / Python / React / Spark / AI / ML / Odoo / BlockChain
 2023-04-16 19:49 UTC 

[PATCH V3 0/7] rtc: ls2x: Add support for the Loongson-2K/LS7A RTC
 2023-04-16 19:51 UTC  (13+ messages)
` [PATCH V3 1/7] dt-bindings: rtc: Subdivision of LS2X RTC compatible
` [PATCH V3 2/7] rtc: Add support for the Loongson-2K/LS7A RTC
` [PATCH V3 3/7] LoongArch: Enable LS2X RTC in loongson3_defconfig
` [PATCH V3 4/7] MIPS: Loongson64: DTS: Add RTC support to LS7A
` [PATCH V3 5/7] MIPS: Loongson: Enable LS2X RTC in loongson3_defconfig
` [PATCH V3 6/7] MIPS: Loongson64: DTS: Add RTC support to Loongson-2K
` [PATCH V3 7/7] MIPS: Loongson: Enable LS2X RTC in loongson2k_defconfig

[PATCH v4 00/12] LoongArch: Better backtraces
 2023-04-16  6:03 UTC  (13+ messages)
` [PATCH v4 01/12] LoongArch: Clean up the architectural interrupt definitions
` [PATCH v4 02/12] LoongArch: Add exception subcode definitions for the watchpoint exception
` [PATCH v4 03/12] LoongArch: Print GPRs with ABI names when showing registers
` [PATCH v4 04/12] LoongArch: Print symbol info for CSR.ERA and $ra only for kernel-mode contexts
` [PATCH v4 05/12] LoongArch: Fix format of CSR lines during show_regs
` [PATCH v4 06/12] LoongArch: Humanize the CRMD line when showing registers
` [PATCH v4 07/12] LoongArch: Humanize the PRMD "
` [PATCH v4 08/12] LoongArch: Humanize the EUEN "
` [PATCH v4 09/12] LoongArch: Humanize the ECFG "
` [PATCH v4 10/12] LoongArch: Humanize the ESTAT "
` [PATCH v4 11/12] LoongArch: Use lowercase ISA manual names for BADV and CPUCFG.PRID lines in show_regs
` [PATCH v4 12/12] LoongArch: Include CSR.BADV in show_regs in case of BCE exceptions

[PATCH v11 0/8] function_graph: Support recording and printing the return value of function
 2023-04-14  7:55 UTC  (4+ messages)
` [PATCH v11 1/8] "

[PATCH v6 29/30] LoongArch: KVM: Enable kvm config and add the makefile
 2023-04-13 11:52 UTC  (4+ messages)

[PATCH v1 0/4] Add uprobes support for LoongArch
 2023-04-13  1:58 UTC  (9+ messages)
` [PATCH v1 1/4] LoongArch: Move three functions from kprobes.c to inst.h
` [PATCH v1 2/4] LoongArch: Add larch_insn_gen_break() to generate break insns
` [PATCH v1 3/4] LoongArch: Use larch_insn_gen_break() for kprobes
` [PATCH v1 4/4] LoongArch: Add uprobes support

[PATCH v2] LoongArch: Improve memory ops
 2023-04-12 15:23 UTC 

[PATCH v2 0/5] locking: Introduce local{,64}_try_cmpxchg
 2023-04-12 13:40 UTC  (5+ messages)
` [PATCH v2 3/5] locking/arch: Wire up local_try_cmpxchg

[PATCH] LoongArch: Use VALEN instead of hard code in comments
 2023-04-12  9:54 UTC  (4+ messages)

[PATCH v6 00/30] Add KVM LoongArch support
 2023-04-12  8:30 UTC  (9+ messages)
` [PATCH v6 09/30] LoongArch: KVM: Implement vcpu get, vcpu set registers
` [PATCH v6 13/30] LoongArch: KVM: Implement misc vcpu related interfaces
` [PATCH v6 16/30] LoongArch: KVM: Implement update VM id function
` [PATCH v6 20/30] LoongArch: KVM: Implement handle csr excption
` [PATCH v6 21/30] LoongArch: KVM: Implement handle iocsr exception
` [PATCH v6 22/30] LoongArch: KVM: Implement handle idle exception
` [PATCH v6 27/30] LoongArch: KVM: Implement vcpu world switch
` [PATCH v6 30/30] LoongArch: KVM: Supplement kvm document about loongarch-specific part


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