linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
 messages from 2021-02-06 11:55:15 to 2021-02-09 16:33:14 UTC [more...]

[PATCH 0/5] powerpc/xive: Map one IPI interrupt per node
 2021-02-09 16:19 UTC  (6+ messages)
` [PATCH 1/5] powerpc/xive: Use cpu_to_node() instead of ibm, chip-id property
` [PATCH 2/5] powerpc/xive: Introduce an IPI interrupt domain
` [PATCH 3/5] powerpc/xive: Remove useless check on XIVE_IPI_HW_IRQ
` [PATCH 4/5] powerpc/xive: Simplify xive_core_debug_show()
` [PATCH 5/5] powerpc/xive: Map one IPI interrupt per node

[PATCH v5 00/22] powerpc/32: Implement C syscall entry/exit
 2021-02-09 16:13 UTC  (50+ messages)
` [PATCH v5 01/22] powerpc/32s: Add missing call to kuep_lock on syscall entry
` [PATCH v5 02/22] powerpc/32: Always enable data translation "
` [PATCH v5 03/22] powerpc/32: On syscall entry, enable instruction translation at the same time as data
` [PATCH v5 04/22] powerpc/32: Reorder instructions to avoid using CTR in syscall entry
` [PATCH v5 05/22] powerpc/irq: Add helper to set regs->softe
` [PATCH v5 06/22] powerpc/irq: Rework helpers that manipulate MSR[EE/RI]
` [PATCH v5 07/22] powerpc/irq: Add stub irq_soft_mask_return() for PPC32
` [PATCH v5 08/22] powerpc/syscall: Rename syscall_64.c into interrupt.c
` [PATCH v5 09/22] powerpc/syscall: Make interrupt.c buildable on PPC32
` [PATCH v5 10/22] powerpc/syscall: Use is_compat_task()
` [PATCH v5 11/22] powerpc/syscall: Save r3 in regs->orig_r3
` [PATCH v5 12/22] powerpc/syscall: Change condition to check MSR_RI
` [PATCH v5 13/22] powerpc/32: Always save non volatile GPRs at syscall entry
` [PATCH v5 14/22] powerpc/syscall: implement system call entry/exit logic in C for PPC32
` [PATCH v5 15/22] powerpc/32: Remove verification of MSR_PR on syscall in the ASM entry
` [PATCH v5 16/22] powerpc/syscall: Avoid stack frame in likely part of system_call_exception()
` [PATCH v5 17/22] powerpc/syscall: Do not check unsupported scv vector on PPC32
` [PATCH v5 18/22] powerpc/syscall: Remove FULL_REGS verification in system_call_exception
` [PATCH v5 19/22] powerpc/syscall: Optimise checks in beginning of system_call_exception()
` [PATCH v5 20/22] powerpc/syscall: Avoid storing 'current' in another pointer
` [PATCH v5 21/22] powerpc/32: Remove the counter in global_dbcr0
` [PATCH v5 22/22] powerpc/32: Handle bookE debugging in C in syscall entry/exit

[PATCH] powerpc/64: Fix stack trace not displaying final frame
 2021-02-09 14:16 UTC 

[PATCH v3 1/8] powerpc/uaccess: Add unsafe_copy_from_user
 2021-02-09 14:09 UTC  (3+ messages)

[PATCH v2 1/3] powerpc/uaccess: get rid of small constant size cases in raw_copy_{to,from}_user()
 2021-02-09 14:02 UTC  (3+ messages)
` [PATCH v2 2/3] powerpc/uaccess: Merge __put_user_size_allowed() into __put_user_size()
` [PATCH v2 3/3] powerpc/uaccess: Merge raw_copy_to_user_allowed() into raw_copy_to_user()

[PATCH] tools/perf: Fix powerpc gap between kernel end and module start
 2021-02-09 12:47 UTC  (6+ messages)

[PATCH 1/3] spi: mpc52xx: Avoid using get_tbl()
 2021-02-09 10:26 UTC  (3+ messages)
` [PATCH 2/3] powerpc/time: "
` [PATCH 3/3] powerpc/time: Remove get_tbl()

linux-next: build failure after merge of the powerpc tree
 2021-02-09 10:19 UTC 

[RFC PATCH v1 00/41] powerpc/32: Switch to interrupt entry/exit in C
 2021-02-09  9:57 UTC  (42+ messages)
` [RFC PATCH v1 01/41] powerpc/32: Preserve cr1 in exception prolog stack check to fix build error
` [RFC PATCH v1 02/41] powerpc/40x: Don't use SPRN_SPRG_SCRATCH0/1 in TLB miss handlers
` [RFC PATCH v1 03/41] powerpc/40x: Change CRITICAL_EXCEPTION_PROLOG macro to a gas macro
` [RFC PATCH v1 04/41] powerpc/40x: Save SRR0/SRR1 and r10/r11 earlier in critical exception
` [RFC PATCH v1 05/41] powerpc/40x: Reorder a few instructions in critical exception prolog
` [RFC PATCH v1 06/41] powerpc/40x: Prepare for enabling MMU "
` [RFC PATCH v1 07/41] powerpc/40x: Prepare normal exception handler for enabling MMU early
` [RFC PATCH v1 08/41] powerpc/32: Reconcile interrupts in C
` [RFC PATCH v1 09/41] powerpc/32: Entry cpu time accounting "
` [RFC PATCH v1 10/41] powerpc/32: Handle bookE debugging in C in exception entry
` [RFC PATCH v1 11/41] powerpc/32: Use fast instruction to set MSR RI in exception prolog on 8xx
` [RFC PATCH v1 12/41] powerpc/32: Remove ksp_limit
` [RFC PATCH v1 13/41] powerpc/32: Always enable data translation in exception prolog
` [RFC PATCH v1 14/41] powerpc/32: Tag DAR in EXCEPTION_PROLOG_2 for the 8xx
` [RFC PATCH v1 15/41] powerpc/32: Enable instruction translation at the same time as data translation
` [RFC PATCH v1 16/41] powerpc/32: Statically initialise first emergency context
` [RFC PATCH v1 17/41] powerpc/32: Add vmap_stack_overflow label inside the macro
` [RFC PATCH v1 18/41] powerpc/32: Use START_EXCEPTION() as much as possible
` [RFC PATCH v1 19/41] powerpc/32: Move exception prolog code into .text once MMU is back on
` [RFC PATCH v1 20/41] powerpc/32: Provide a name to exception prolog continuation in virtual mode
` [RFC PATCH v1 21/41] powerpc/32: Refactor booke critical registers saving
` [RFC PATCH v1 22/41] powerpc/32: Perform normal function call in exception entry
` [RFC PATCH v1 23/41] powerpc/32: Always save non volatile registers on "
` [RFC PATCH v1 24/41] powerpc/32: Replace ASM exception exit by C exception exit from ppc64
` [RFC PATCH v1 25/41] powerpc/32: Set regs parameter in r3 in transfer_to_handler
` [RFC PATCH v1 26/41] powerpc/32: Remove handle_page_fault()
` [RFC PATCH v1 27/41] powerpc/32: Save trap number on stack in exception prolog
` [RFC PATCH v1 28/41] powerpc/32: Add a prepare_transfer_to_handler macro for exception prologs
` [RFC PATCH v1 29/41] powerpc/32: Only restore non volatile registers when required
` [RFC PATCH v1 30/41] powerpc/32: Dismantle EXC_XFER_STD/LITE/TEMPLATE
` [RFC PATCH v1 31/41] powerpc/32: Remove the xfer parameter in EXCEPTION() macro
` [RFC PATCH v1 32/41] powerpc/32: Refactor saving of volatile registers in exception prologs
` [RFC PATCH v1 33/41] powerpc/32: Save remaining registers in exception prolog
` [RFC PATCH v1 34/41] powerpc/32: Set current->thread.regs in C interrupt entry
` [RFC PATCH v1 35/41] powerpc/32: Return directly from power_save_ppc32_restore()
` [RFC PATCH v1 36/41] powerpc/32: Only use prepare_transfer_to_handler function on book3s/32 and e500
` [RFC PATCH v1 37/41] powerpc/32s: Move KUEP locking/unlocking in C
` [RFC PATCH v1 38/41] powerpc/64s: Make kuap_check_amr() and kuap_get_and_check_amr() generic
` [RFC PATCH v1 39/41] powerpc/32s: Create C version of kuap save/restore/check helpers
` [RFC PATCH v1 40/41] powerpc/8xx: "
` [RFC PATCH v1 41/41] powerpc/32: Manage KUAP in C

[PATCH V3] powerpc/perf: Adds support for programming of Thresholding in P10
 2021-02-09  9:52 UTC 

[PATCH v2 0/7] Add audio driver base on rpmsg on i.MX platform
 2021-02-09  9:16 UTC  (10+ messages)
` [PATCH v2 1/7] ASoC: soc-component: Add snd_soc_pcm_component_ack
` [PATCH v2 2/7] ASoC: fsl_rpmsg: Add CPU DAI driver for audio base on rpmsg
` [PATCH v2 3/7] ASoC: dt-bindings: fsl_rpmsg: Add binding doc for rpmsg cpu dai driver
` [PATCH v2 4/7] ASoC: imx-audio-rpmsg: Add rpmsg_driver for audio channel
` [PATCH v2 5/7] ASoC: imx-pcm-rpmsg: Add platform driver for audio base on rpmsg
` [PATCH v2 6/7] ASoC: imx-rpmsg: Add machine "
` [PATCH v2 7/7] ASoC: dt-bindings: imx-rpmsg: Add binding doc for rpmsg machine driver

[PATCH v4 00/14] Restricted DMA
 2021-02-09  8:40 UTC  (16+ messages)
` [PATCH v4 01/14] swiotlb: Remove external access to io_tlb_start
` [PATCH v4 02/14] swiotlb: Move is_swiotlb_buffer() to swiotlb.c
` [PATCH v4 03/14] swiotlb: Add struct swiotlb
` [PATCH v4 04/14] swiotlb: Refactor swiotlb_late_init_with_tbl
` [PATCH v4 05/14] swiotlb: Add DMA_RESTRICTED_POOL
` [PATCH v4 06/14] swiotlb: Add restricted DMA pool
` [PATCH v4 07/14] swiotlb: Update swiotlb API to gain a struct device argument
` [PATCH v4 08/14] swiotlb: Use restricted DMA pool if available
` [PATCH v4 09/14] swiotlb: Refactor swiotlb_tbl_{map,unmap}_single
` [PATCH v4 10/14] dma-direct: Add a new wrapper __dma_direct_free_pages()
` [PATCH v4 11/14] swiotlb: Add is_dev_swiotlb_force()
` [PATCH v4 12/14] swiotlb: Add restricted DMA alloc/free support
` [PATCH v4 13/14] dt-bindings: of: Add restricted DMA pool
` [PATCH v4 14/14] of: Add plumbing for "

[PATCH v7 00/42] powerpc: interrupt wrappers
 2021-02-09  7:45 UTC  (19+ messages)
` [PATCH v7 07/42] powerpc/fsl_booke/32: CacheLockingException remove args
` [PATCH v7 28/42] powerpc: convert interrupt handlers to use wrappers
` [PATCH v7 32/42] powerpc/64: context tracking move to interrupt wrappers
` [PATCH v7 39/42] powerpc: move NMI entry/exit code into wrapper
` [PATCH v7 42/42] powerpc/64s: power4 nap fixup in C

[RFC PATCH v3 0/6] Restricted DMA
 2021-02-09  6:27 UTC  (11+ messages)

[PATCH v2 2/2] memblock: do not start bottom-up allocations with kernel_end
 2021-02-08 23:58 UTC  (4+ messages)

[PATCH v5 00/10] dt-bindings: usb: Harmonize xHCI/EHCI/OHCI/DWC3 nodes name
 2021-02-08 13:51 UTC  (2+ messages)
` [PATCH v5 05/10] powerpc: dts: akebono: Harmonize EHCI/OHCI DT "

[PATCH] ASoC: fsl: constify static snd_soc_dai_ops structs
 2021-02-08 18:38 UTC  (3+ messages)

[PATCH v4 00/23] powerpc/32: Implement C syscall entry/exit
 2021-02-08 17:47 UTC  (10+ messages)
` [PATCH v4 11/23] powerpc/syscall: Rename syscall_64.c into syscall.c
` [PATCH v4 14/23] powerpc/syscall: Save r3 in regs->orig_r3
` [PATCH v4 20/23] powerpc/syscall: Do not check unsupported scv vector on PPC32

[RFC PATCH 1/3] powerpc/lib: implement strlen() in assembly for PPC64
 2021-02-08 17:23 UTC  (2+ messages)

[PATCH 2/8] powerpc/signal: Add unsafe_copy_{vsx,fpr}_from_user()
 2021-02-08 17:18 UTC  (6+ messages)
` [PATCH 2/8] powerpc/signal: Add unsafe_copy_{vsx, fpr}_from_user()

[PATCH v2 1/1] powerpc/kvm: Save Timebase Offset to fix sched_clock() while running guest code
 2021-02-08 16:37 UTC  (5+ messages)

[PATCH 1/2] powerpc/uaccess: Simplify unsafe_put_user() implementation
 2021-02-08 13:57 UTC  (2+ messages)
` [PATCH 2/2] powerpc/uaccess: Move might_fault() into user_access_begin()

module loader dead code removal and cleanups v3
 2021-02-08 11:36 UTC  (2+ messages)

[PATCH v2] powerpc/uprobes: Validation for prefixed instruction
 2021-02-08 11:13 UTC  (10+ messages)

[PATCH] selftests/powerpc: remove unneeded semicolon
 2021-02-08 10:41 UTC 

[PATCH] crypto: sha: remove unneeded semicolon
 2021-02-08  9:10 UTC 

[powerpc][Oops] 5.11.0-rc6 boot failure on my lpar
 2021-02-08  9:05 UTC 

[PATCH] powerpc/32: Preserve cr1 in exception prolog stack check to fix build error
 2021-02-08  7:17 UTC 

[PATCH] powerpc/64s: Remove EXSLB interrupt save area
 2021-02-08  6:34 UTC 

[PATCH] powerpc/64s: syscall real mode entry use mtmsrd rather than rfid
 2021-02-08  6:33 UTC 

[RFC Qemu PATCH v2 0/2] spapr: nvdimm: Asynchronus flush hcall support
 2021-02-08  6:21 UTC  (6+ messages)
` [RFC Qemu PATCH v2 1/2] spapr: drc: Add support for async hcalls at the drc level

[PATCH v5 00/10] Improve signal performance on PPC64 with KUAP
 2021-02-08  4:44 UTC  (3+ messages)
` [PATCH v5 03/10] powerpc/signal64: Move non-inline functions out of setup_sigcontext()

[PATCH v16 00/12] Carry forward IMA measurement log on kexec on ARM64
 2021-02-08  4:12 UTC  (4+ messages)
` [PATCH v16 11/12] powerpc: Use OF alloc and free for FDT

[PATCH] ASoC: imx-hdmi: no need to set .owner when using module_platform_driver
 2021-02-08  3:51 UTC 

[PATCH v3 1/2] powerpc/64s: Fix pte update for kernel memory on radix
 2021-02-08  3:29 UTC  (2+ messages)
` [PATCH v3 2/2] selftests/powerpc: Test for spurious kernel memory faults "

[PATCH] mm/memtest: Add ARCH_USE_MEMTEST
 2021-02-08  3:17 UTC  (5+ messages)

swiotlb cleanups
 2021-02-07 16:09 UTC  (9+ messages)
` [PATCH 1/8] powerpc/svm: stop using io_tlb_start
` [PATCH 2/8] xen-swiotlb: use is_swiotlb_buffer in is_xen_swiotlb_buffer
` [PATCH 3/8] xen-swiotlb: use io_tlb_end in xen_swiotlb_dma_supported
` [PATCH 4/8] xen-swiotlb: remove xen_set_nslabs
` [PATCH 5/8] xen-swiotlb: remove xen_io_tlb_start and xen_io_tlb_nslabs
` [PATCH 6/8] swiotlb: lift the double initialization protection from xen-swiotlb
` [PATCH 7/8] xen-swiotlb: split xen_swiotlb_init
` [PATCH 8/8] xen-swiotlb: remove the unused size argument from xen_swiotlb_fixup

[PATCH RFC v1 0/6] swiotlb: 64-bit DMA buffer
 2021-02-07 15:56 UTC  (4+ messages)
` [PATCH RFC v1 5/6] xen-swiotlb: convert variables to arrays

[PATCH] powerpc/uaccess: Perform barrier_nospec() in KUAP allowance helpers
 2021-02-07 10:08 UTC 

[PATCH 0/7] Add audio driver base on rpmsg on i.MX platform
 2021-02-07  9:50 UTC  (10+ messages)
` [PATCH 2/7] ASoC: fsl_rpmsg: Add CPU DAI driver for audio base on rpmsg
` [PATCH 4/7] ASoC: imx-audio-rpmsg: Add rpmsg_driver for audio channel
` [PATCH 5/7] ASoC: imx-pcm-rpmsg: Add platform driver for audio base on rpmsg

[PATCH] powerpc/xive: Assign boolean values to a bool variable
 2021-02-07  6:43 UTC 

[GIT PULL] Please pull powerpc/linux.git powerpc-5.11-7 tag
 2021-02-06 23:21 UTC  (2+ messages)

[PATCH 1/3] powerpc/32s: Change mfsrin() into a static inline function
 2021-02-06 11:47 UTC  (2+ messages)
` [PATCH 2/3] powerpc/32s: mfsrin()/mtsrin() become mfsr()/mtsr()


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).