Re: [PATCH v4 06/16] powerpc: Use a function for getting the instruction op code

2020-03-22 Thread Balamuruhan S
On Fri, 2020-03-20 at 16:17 +1100, Jordan Niethe wrote: > In preparation for using a data type for instructions that can not be > directly used with the '>>' operator use a function for getting the op > code of an instruction. we need to adopt this in sstep.c and vecemu.c -- Bala > > Signed-off-

Re: [PATCH v4 07/16] powerpc: Introduce functions for instruction nullity and equality

2020-03-22 Thread Nicholas Piggin
Jordan Niethe's on March 20, 2020 3:18 pm: > In preparation for an instruction data type that can not be directly > used with the '==' operator use functions for checking equality and > nullity. > > Signed-off-by: Jordan Niethe > --- > arch/powerpc/kernel/optprobes.c | 2 +- > arch/powerpc

Re: [PATCH v4 05/16] powerpc: Use a function for masking instructions

2020-03-22 Thread Nicholas Piggin
Jordan Niethe's on March 20, 2020 3:17 pm: > In preparation for using an instruction data type that can not be used > directly with the '&' operator, use a function to mask instructions. Hmm. ppc_inst_mask isn't such a good interface I think. It takes a ppc_inst and a mask, you would expect it to

Re: [PATCH v4 8/9] crypto/nx: Remove 'pid' in vas_tx_win_attr struct

2020-03-22 Thread Herbert Xu
On Sun, Mar 22, 2020 at 09:06:17PM -0700, Haren Myneni wrote: > > When window is opened, pid reference is taken for user space > windows. Not needed for kernel windows. So remove 'pid' in > vas_tx_win_attr struct. > > Signed-off-by: Haren Myneni > --- > arch/powerpc/include/asm/vas.h| 1

Re: [PATCH v4 7/9] crypto/nx: Enable and setup GZIP compression type

2020-03-22 Thread Herbert Xu
On Sun, Mar 22, 2020 at 09:05:37PM -0700, Haren Myneni wrote: > > Changes to probe GZIP device-tree nodes, open RX windows and setup > GZIP compression type. No plans to provide GZIP usage in kernel right > now, but this patch enables GZIP for user space usage. > > Signed-off-by: Haren Myneni >

Re: [PATCH v4 6/9] crypto/NX: Make enable code generic to add new GZIP compression type

2020-03-22 Thread Herbert Xu
On Sun, Mar 22, 2020 at 09:04:47PM -0700, Haren Myneni wrote: > > Make setup and enable code generic to support new GZIP compression type. > Changed nx842 reference to nx and moved some code to new functions. > Functionality is not changed except sparse warning fix - setting NULL > instead of 0 fo

Re: [PATCH v4 5/9] crypto/nx: Rename nx-842-powernv file name to nx-common-powernv

2020-03-22 Thread Herbert Xu
On Sun, Mar 22, 2020 at 09:03:50PM -0700, Haren Myneni wrote: > > Rename nx-842-powernv.c to nx-common-powernv.c to add code for setup > and enable new GZIP compression type. The actual functionality is not > changed in this patch. > > Signed-off-by: Haren Myneni > --- > drivers/crypto/nx/Makef

Re: [PATCH v4 4/9] crypto/nx: Initialize coproc entry with kzalloc

2020-03-22 Thread Herbert Xu
On Sun, Mar 22, 2020 at 09:03:00PM -0700, Haren Myneni wrote: > > coproc entry is initialized during NX probe on power9, but not on P8. > nx842_delete_coprocs() is used for both and frees receive window if it > is allocated. Getting crash for rmmod on P8 since coproc->vas.rxwin > is not initialize

Re: [PATCH v4 04/16] powerpc: Use a macro for creating instructions from u32s

2020-03-22 Thread Nicholas Piggin
Jordan Niethe's on March 20, 2020 3:17 pm: > In preparation for instructions having a more complex data type start > using a macro, PPC_INST(), for making an instruction out of a u32. > Currently this does nothing, but it will allow for creating a data type > that can represent prefixed instruction

Re: [PATCH v4 03/16] powerpc: Use a datatype for instructions

2020-03-22 Thread Nicholas Piggin
Jordan Niethe's on March 20, 2020 3:17 pm: > Currently unsigned ints are used to represent instructions on powerpc. > This has worked well as instructions have always been 4 byte words. > However, a future ISA version will introduce some changes to > instructions that mean this scheme will no longe

Re: [PATCH v4 02/16] xmon: Move out-of-line instructions to text section

2020-03-22 Thread Nicholas Piggin
Jordan Niethe's on March 20, 2020 3:17 pm: > To execute an instruction out of line after a breakpoint, the NIP is set > to the address of struct bpt::instr. Here a copy of the instruction that > was replaced with a breakpoint is kept, along with a trap so normal flow > can be resumed after XOLing.

Re: [PATCH v4 01/16] powerpc/xmon: Remove store_inst() for patch_instruction()

2020-03-22 Thread Nicholas Piggin
Jordan Niethe's on March 20, 2020 3:17 pm: > For modifying instructions in xmon, patch_instruction() can serve the > same role that store_inst() is performing with the advantage of not > being specific to xmon. In some places patch_instruction() is already > being using followed by store_inst(). In

Re: [PATCH v4 00/16] Initial Prefixed Instruction support

2020-03-22 Thread Nicholas Piggin
Jordan Niethe's on March 20, 2020 3:17 pm: > A future revision of the ISA will introduce prefixed instructions. A > prefixed instruction is composed of a 4-byte prefix followed by a > 4-byte suffix. > > All prefixes have the major opcode 1. A prefix will never be a valid > word instruction. A suff

[PATCH 2/2] Fix 2 "[v3, 28/32] powerpc/64s: interrupt implement exit logic in C"

2020-03-22 Thread Nicholas Piggin
This completes the move of the stray hunk. Also fixes an irq tracer bug, returning to irqs-disabled context should not trace_hardirqs_on(). Signed-off-by: Nicholas Piggin --- arch/powerpc/include/asm/asm-prototypes.h | 2 ++ arch/powerpc/kernel/syscall_64.c | 1 - 2 files changed, 2 ins

Re: [PATCH v4 03/16] powerpc: Use a datatype for instructions

2020-03-22 Thread Balamuruhan S
On Fri, 2020-03-20 at 16:17 +1100, Jordan Niethe wrote: > Currently unsigned ints are used to represent instructions on powerpc. > This has worked well as instructions have always been 4 byte words. > However, a future ISA version will introduce some changes to > instructions that mean this scheme

Re: [PATCH v4 02/16] xmon: Move out-of-line instructions to text section

2020-03-22 Thread Balamuruhan S
On Fri, 2020-03-20 at 16:17 +1100, Jordan Niethe wrote: > To execute an instruction out of line after a breakpoint, the NIP is > set > to the address of struct bpt::instr. Here a copy of the instruction > that > was replaced with a breakpoint is kept, along with a trap so normal > flow > can be res

Re: [PATCH v4 02/16] xmon: Move out-of-line instructions to text section

2020-03-22 Thread Balamuruhan S
On Fri, 2020-03-20 at 16:17 +1100, Jordan Niethe wrote: > To execute an instruction out of line after a breakpoint, the NIP is > set > to the address of struct bpt::instr. Here a copy of the instruction > that > was replaced with a breakpoint is kept, along with a trap so normal > flow > can be res

[PATCH 1/2] Fix "[v3, 25/32] powerpc/64: system call implement entry/exit logic in C"

2020-03-22 Thread Nicholas Piggin
Changes Christophe asked for to help ppc32 implementation, and move a stray hunk into a later patch. Signed-off-by: Nicholas Piggin --- arch/powerpc/include/asm/asm-prototypes.h | 4 --- arch/powerpc/include/asm/cputime.h| 38 +-- 2 files changed, 21 insertions(+), 2

[RFC PATCH 1/3] powerpc/mm: Introduce temporary mm

2020-03-22 Thread Christopher M. Riedl
x86 supports the notion of a temporary mm which restricts access to temporary PTEs to a single CPU. A temporary mm is useful for situations where a CPU needs to perform sensitive operations (such as patching a STRICT_KERNEL_RWX kernel) requiring temporary mappings without exposing said mappings to

[RFC PATCH 3/3] powerpc/lib: Use a temporary mm for code patching

2020-03-22 Thread Christopher M. Riedl
Currently, code patching a STRICT_KERNEL_RWX exposes the temporary mappings to other CPUs. These mappings should be kept local to the CPU doing the patching. Use the pre-initialized temporary mm and patching address for this purpose. Also add a check after patching to ensure the patch succeeded. B

[RFC PATCH 0/3] Use per-CPU temporary mappings for patching

2020-03-22 Thread Christopher M. Riedl
When compiled with CONFIG_STRICT_KERNEL_RWX, the kernel must create temporary mappings when patching itself. These mappings temporarily override the strict RWX text protections to permit a write. Currently, powerpc allocates a per-CPU VM area for patching. Patching occurs as follows: 1. Ma

[RFC PATCH 2/3] powerpc/lib: Initialize a temporary mm for code patching

2020-03-22 Thread Christopher M. Riedl
When code patching a STRICT_KERNEL_RWX kernel the page containing the address to be patched is temporarily mapped with permissive memory protections. Currently, a per-cpu vmalloc patch area is used for this purpose. While the patch area is per-cpu, the temporary page mapping is inserted into the ke

Re: [PATCH 2/2] KVM: PPC: Book3S HV: H_SVM_INIT_START must call UV_RETURN

2020-03-22 Thread Bharata B Rao
On Fri, Mar 20, 2020 at 03:36:05PM +0100, Laurent Dufour wrote: > Le 20/03/2020 à 12:24, Bharata B Rao a écrit : > > On Fri, Mar 20, 2020 at 11:26:43AM +0100, Laurent Dufour wrote: > > > When the call to UV_REGISTER_MEM_SLOT is failing, for instance because > > > there is not enough free secured me

Re: [PATCH] powerpc/64: ftrace don't trace real mode

2020-03-22 Thread Nicholas Piggin
Naveen N. Rao's on March 23, 2020 2:17 am: > Nicholas Piggin wrote: >> Naveen N. Rao's on March 21, 2020 4:39 am: >>> Hi Nick, >>> >>> Nicholas Piggin wrote: This warns and prevents tracing attempted in a real-mode context. >>> >>> Is this something you're seeing often? Last time we looked a

[PATCH v4 9/9] Documentation/powerpc: VAS API

2020-03-22 Thread Haren Myneni
Power9 introduced Virtual Accelerator Switchboard (VAS) which allows userspace to communicate with Nest Accelerator (NX) directly. But kernel has to establish channel to NX for userspace. This document describes user space API that application can use to establish communication channel. Signed-o

[PATCH v4 8/9] crypto/nx: Remove 'pid' in vas_tx_win_attr struct

2020-03-22 Thread Haren Myneni
When window is opened, pid reference is taken for user space windows. Not needed for kernel windows. So remove 'pid' in vas_tx_win_attr struct. Signed-off-by: Haren Myneni --- arch/powerpc/include/asm/vas.h| 1 - drivers/crypto/nx/nx-common-powernv.c | 1 - 2 files changed, 2 deletions

[PATCH v4 7/9] crypto/nx: Enable and setup GZIP compression type

2020-03-22 Thread Haren Myneni
Changes to probe GZIP device-tree nodes, open RX windows and setup GZIP compression type. No plans to provide GZIP usage in kernel right now, but this patch enables GZIP for user space usage. Signed-off-by: Haren Myneni --- drivers/crypto/nx/nx-common-powernv.c | 43 +++

[PATCH v4 6/9] crypto/NX: Make enable code generic to add new GZIP compression type

2020-03-22 Thread Haren Myneni
Make setup and enable code generic to support new GZIP compression type. Changed nx842 reference to nx and moved some code to new functions. Functionality is not changed except sparse warning fix - setting NULL instead of 0 for per_cpu send window in nx_delete_coprocs(). Signed-off-by: Haren Myn

[PATCH v4 5/9] crypto/nx: Rename nx-842-powernv file name to nx-common-powernv

2020-03-22 Thread Haren Myneni
Rename nx-842-powernv.c to nx-common-powernv.c to add code for setup and enable new GZIP compression type. The actual functionality is not changed in this patch. Signed-off-by: Haren Myneni --- drivers/crypto/nx/Makefile|2 +- drivers/crypto/nx/nx-842-powernv.c| 1062 --

[PATCH v4 4/9] crypto/nx: Initialize coproc entry with kzalloc

2020-03-22 Thread Haren Myneni
coproc entry is initialized during NX probe on power9, but not on P8. nx842_delete_coprocs() is used for both and frees receive window if it is allocated. Getting crash for rmmod on P8 since coproc->vas.rxwin is not initialized. This patch replaces kmalloc with kzalloc in nx842_powernv_probe()

[PATCH v4 3/9] powerpc/vas: Add VAS user space API

2020-03-22 Thread Haren Myneni
On power9, userspace can send GZIP compression requests directly to NX once kernel establishes NX channel / window with VAS. This patch provides user space API which allows user space to establish channel using open VAS_TX_WIN_OPEN ioctl, mmap and close operations. Each window corresponds to fil

[PATCH v4 2/9] powerpc/vas: Define VAS_TX_WIN_OPEN ioctl API

2020-03-22 Thread Haren Myneni
Define the VAS_TX_WIN_OPEN ioctl interface for NX GZIP access from user space. This interface is used to open GZIP send window and mmap region which can be used by userspace to send requests to NX directly with copy/paste instructions. Signed-off-by: Haren Myneni --- Documentation/userspace-ap

[PATCH v4 1/9] powerpc/vas: Initialize window attributes for GZIP coprocessor type

2020-03-22 Thread Haren Myneni
Initialize send and receive window attributes for GZIP high and normal priority types. Signed-off-by: Haren Myneni --- arch/powerpc/platforms/powernv/vas-window.c | 17 - 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/arch/powerpc/platforms/powernv/vas-window.c

[PATCH v4 0/9] crypto/nx: Enable GZIP engine and provide userpace API

2020-03-22 Thread Haren Myneni
Power9 processor supports Virtual Accelerator Switchboard (VAS) which allows kernel and userspace to send compression requests to Nest Accelerator (NX) directly. The NX unit comprises of 2 842 compression engines and 1 GZIP engine. Linux kernel already has 842 compression support on kernel. This

Re: [patch V3 13/20] Documentation: Add lock ordering and nesting documentation

2020-03-22 Thread Paul E. McKenney
On Sat, Mar 21, 2020 at 12:25:57PM +0100, Thomas Gleixner wrote: > From: Thomas Gleixner > > The kernel provides a variety of locking primitives. The nesting of these > lock types and the implications of them on RT enabled kernels is nowhere > documented. > > Add initial documentation. > > Sign

Re: [PATCH v8 12/14] powerpc/vas: Return credits after handling fault

2020-03-22 Thread Nicholas Piggin
Haren Myneni's on March 19, 2020 4:19 pm: > > NX expects OS to return credit for send window after processing each > fault. Also credit has to be returned even for fault window. And this should be merged in the fault handler function. > > Signed-off-by: Sukadev Bhattiprolu > Signed-off-by: Har

Re: [PATCH v8 11/14] powerpc/vas: Do not use default credits for receive window

2020-03-22 Thread Nicholas Piggin
Haren Myneni's on March 19, 2020 4:18 pm: > > System checkstops if RxFIFO overruns with more requests than the > maximum possible number of CRBs allowed in FIFO at any time. So > max credits value (rxattr.wcreds_max) is set and is passed to > vas_rx_win_open() by the the driver. This seems like i

Re: [PATCH v8 09/14] powerpc/vas: Update CSB and notify process for fault CRBs

2020-03-22 Thread Nicholas Piggin
Haren Myneni's on March 19, 2020 4:17 pm: > > For each fault CRB, update fault address in CRB (fault_storage_addr) > and translation error status in CSB so that user space can touch the > fault address and resend the request. If the user space passed invalid > CSB address send signal to process wi

Re: [PATCH v8 08/14] powerpc/vas: Take reference to PID and mm for user space windows

2020-03-22 Thread Nicholas Piggin
Haren Myneni's on March 19, 2020 4:16 pm: > > When process opens a window, its pid and tgid will be saved in vas_window > struct. This window will be closed when the process exits. Kernel handles > NX faults by updating CSB or send SEGV signal to pid if user space csb_addr > is invalid. Bit of a

Argh, can't find dcache properties !

2020-03-22 Thread Chris Packham
Hi All, Just booting up v5.5.11 on a Freescale T2080RDB and I'm seeing the following mesage. kern.warning linuxbox kernel: Argh, can't find dcache properties ! kern.warning linuxbox kernel: Argh, can't find icache properties ! This was changed from DBG() to pr_warn() in commit 3b9176e9a874 ("pow

Re: [PATCH v8 06/14] powerpc/vas: Setup thread IRQ handler per VAS instance

2020-03-22 Thread Nicholas Piggin
Haren Myneni's on March 19, 2020 4:15 pm: > > Setup thread IRQ handler per each VAS instance. When NX sees a fault > on CRB, kernel gets an interrupt and vas_fault_handler will be > executed to process fault CRBs. Read all valid CRBs from fault FIFO, > determine the corresponding send window from

Re: [PATCH v8 03/14] powerpc/vas: Define nx_fault_stamp in coprocessor_request_block

2020-03-22 Thread Nicholas Piggin
Haren Myneni's on March 23, 2020 10:57 am: > On Mon, 2020-03-23 at 10:30 +1000, Nicholas Piggin wrote: >> Haren Myneni's on March 19, 2020 4:13 pm: >> > >> > Kernel sets fault address and status in CRB for NX page fault on user >> > space address after processing page fault. User space gets the si

Re: [PATCH 1/2] dma-mapping: add a dma_ops_bypass flag to struct device

2020-03-22 Thread Alexey Kardashevskiy
On 21/03/2020 01:16, Christoph Hellwig wrote: > Several IOMMU drivers have a bypass mode where they can use a direct > mapping if the devices DMA mask is large enough. Add generic support > to the core dma-mapping code to do that to switch those drivers to > a common solution. > > Signed-off-b

Re: [PATCH v8 04/14] powerpc/vas: Alloc and setup IRQ and trigger port address

2020-03-22 Thread Nicholas Piggin
Haren Myneni's on March 19, 2020 4:14 pm: > > Alloc IRQ and get trigger port address for each VAS instance. Kernel > register this IRQ per VAS instance and sets this port for each send > window. NX interrupts the kernel when it sees page fault. Again, should cc Cedric and Greg for XIVE / interrup

Re: [PATCH V7 09/14] powerpc/vas: Update CSB and notify process for fault CRBs

2020-03-22 Thread Haren Myneni
On Mon, 2020-03-23 at 10:06 +1000, Nicholas Piggin wrote: > Haren Myneni's on March 18, 2020 5:27 am: > > On Tue, 2020-03-17 at 16:28 +1100, Michael Ellerman wrote: > >> Haren Myneni writes: > >> > For each fault CRB, update fault address in CRB (fault_storage_addr) > >> > and translation error st

Re: [PATCH v8 03/14] powerpc/vas: Define nx_fault_stamp in coprocessor_request_block

2020-03-22 Thread Haren Myneni
On Mon, 2020-03-23 at 10:30 +1000, Nicholas Piggin wrote: > Haren Myneni's on March 19, 2020 4:13 pm: > > > > Kernel sets fault address and status in CRB for NX page fault on user > > space address after processing page fault. User space gets the signal > > and handles the fault mentioned in CRB b

Re: [PATCH v3 9/9] Documentation/powerpc: VAS API

2020-03-22 Thread Haren Myneni
On Fri, 2020-03-20 at 23:24 +1100, Daniel Axtens wrote: > Hi Haren, > > This is good documentation. > > > Power9 introduced Virtual Accelerator Switchboard (VAS) which allows > > userspace to communicate with Nest Accelerator (NX) directly. But > > kernel has to establish channel to NX for usersp

Re: [PATCH v8 03/14] powerpc/vas: Define nx_fault_stamp in coprocessor_request_block

2020-03-22 Thread Nicholas Piggin
Haren Myneni's on March 19, 2020 4:13 pm: > > Kernel sets fault address and status in CRB for NX page fault on user > space address after processing page fault. User space gets the signal > and handles the fault mentioned in CRB by bringing the page in to > memory and send NX request again. > > S

Re: [PATCH v8 01/14] powerpc/xive: Define xive_native_alloc_irq_on_chip()

2020-03-22 Thread Nicholas Piggin
Haren Myneni's on March 19, 2020 4:12 pm: > > This function allocates IRQ on a specific chip. VAS needs per chip > IRQ allocation and will have IRQ handler per VAS instance. Can't see a problem, but don't really know the XIVE code. Cédric seems like an obvious omission from CC here. Thanks, Nic

Re: [PATCH V7 09/14] powerpc/vas: Update CSB and notify process for fault CRBs

2020-03-22 Thread Nicholas Piggin
Haren Myneni's on March 18, 2020 5:27 am: > On Tue, 2020-03-17 at 16:28 +1100, Michael Ellerman wrote: >> Haren Myneni writes: >> > For each fault CRB, update fault address in CRB (fault_storage_addr) >> > and translation error status in CSB so that user space can touch the >> > fault address and

Re: [PATCH 18/15] kvm: Replace vcpu->swait with rcuwait

2020-03-22 Thread Peter Zijlstra
On Sun, Mar 22, 2020 at 09:33:17AM -0700, Davidlohr Bueso wrote: > On Fri, 20 Mar 2020, Peter Zijlstra wrote: > > > On Fri, Mar 20, 2020 at 01:55:26AM -0700, Davidlohr Bueso wrote: > > > - swait_event_interruptible_exclusive(*wq, ((!vcpu->arch.power_off) && > > > -(

Re: [PATCH v3 3/9] powerpc/vas: Add VAS user space API

2020-03-22 Thread Haren Myneni
On Fri, 2020-03-20 at 23:18 +1100, Daniel Axtens wrote: > Haren Myneni writes: > > > On power9, userspace can send GZIP compression requests directly to NX > > once kernel establishes NX channel / window with VAS. This patch provides > > user space API which allows user space to establish channel

Re: [PATCH 18/15] kvm: Replace vcpu->swait with rcuwait

2020-03-22 Thread Davidlohr Bueso
On Fri, 20 Mar 2020, Peter Zijlstra wrote: On Fri, Mar 20, 2020 at 01:55:26AM -0700, Davidlohr Bueso wrote: - swait_event_interruptible_exclusive(*wq, ((!vcpu->arch.power_off) && - (!vcpu->arch.pause))); + rcuwait_wait_event(*wait, +

Re: [PATCH v3] powerpc/kprobes: Ignore traps that happened in real mode

2020-03-22 Thread Naveen N. Rao
Christophe Leroy wrote: ping Le 18/02/2020 à 20:38, Christophe Leroy a écrit : When a program check exception happens while MMU translation is disabled, following Oops happens in kprobe_handler() in the following code: Michael, we have several traps in assembly while MMU is still disabled (

Re: [PATCH] powerpc/64: ftrace don't trace real mode

2020-03-22 Thread Naveen N. Rao
Nicholas Piggin wrote: Naveen N. Rao's on March 21, 2020 4:39 am: Hi Nick, Nicholas Piggin wrote: This warns and prevents tracing attempted in a real-mode context. Is this something you're seeing often? Last time we looked at this, KVM was the biggest offender and we introduced paca->ftrace

[PATCH v3] powerpc/pseries: Handle UE event for memcpy_mcsafe

2020-03-22 Thread Ganesh Goudar
If we hit UE at an instruction with a fixup entry, flag to ignore the event and set nip to continue execution at the fixup entry. For powernv these changes are already made by commit 895e3dceeb97 ("powerpc/mce: Handle UE event for memcpy_mcsafe") Reviewed-by: Mahesh Salgaonkar Reviewed-by: Santos

Re: [patch V3 04/20] orinoco_usb: Use the regular completion interfaces

2020-03-22 Thread Kalle Valo
Thomas Gleixner writes: > From: Thomas Gleixner > > The completion usage in this driver is interesting: > > - it uses a magic complete function which according to the comment was > implemented by invoking complete() four times in a row because > complete_all() was not exported at that

Re: [PATCH v5 1/7] ASoC: dt-bindings: fsl_asrc: Add new property fsl, asrc-format

2020-03-22 Thread Shengjiu Wang
On Sat, Mar 21, 2020 at 1:34 AM Rob Herring wrote: > > On Mon, Mar 09, 2020 at 02:19:44PM -0700, Nicolin Chen wrote: > > On Mon, Mar 09, 2020 at 11:58:28AM +0800, Shengjiu Wang wrote: > > > In order to support new EASRC and simplify the code structure, > > > We decide to share the common structure

Re: [PATCH v3] powerpc/kprobes: Ignore traps that happened in real mode

2020-03-22 Thread Christophe Leroy
ping Le 18/02/2020 à 20:38, Christophe Leroy a écrit : When a program check exception happens while MMU translation is disabled, following Oops happens in kprobe_handler() in the following code: Michael, we have several traps in assembly while MMU is still disabled (TRACE_IRQFLAGS, KUAP DEBU

Re: [PATCH v5 6/7] ASoC: dt-bindings: fsl_easrc: Add document for EASRC

2020-03-22 Thread Shengjiu Wang
On Sat, Mar 21, 2020 at 1:50 AM Rob Herring wrote: > > On Mon, Mar 09, 2020 at 11:58:33AM +0800, Shengjiu Wang wrote: > > EASRC (Enhanced Asynchronous Sample Rate Converter) is a new > > IP module found on i.MX8MN. > > > > Signed-off-by: Shengjiu Wang > > --- > > .../devicetree/bindings/sound/fs

Re: [patch V3 05/20] acpi: Remove header dependency

2020-03-22 Thread Rafael J. Wysocki
On Sat, Mar 21, 2020 at 12:35 PM Thomas Gleixner wrote: > > From: Peter Zijlstra > > In order to avoid future header hell, remove the inclusion of > proc_fs.h from acpi_bus.h. All it needs is a forward declaration of a > struct. > > Signed-off-by: Peter Zijlstra (Intel) > Signed-off-by: Thomas G