Re: linux-next: Signed-off-by missing for commit in the csky tree

2020-11-04 Thread Guo Ren
Sorry, the patch is deprecated. I’ll remove it Best Regards Guo Ren > 在 2020年11月5日,上午4:22,Stephen Rothwell 写道: > > Hi all, > > Commit > > 6257c1904d00 ("drivers/net: Add dwmac-thead added.") > > is missing a Signed-off-by from its author. > > -- > Cheers, > Stephen Rothwell

Re: [PATCH] stop_machine: Mark functions as notrace

2020-11-05 Thread Guo Ren
On Tue, Nov 3, 2020 at 11:33 PM Atish Patra wrote: > > On Sat, Oct 31, 2020 at 12:42 AM Guo Ren wrote: > > > > On Sat, Oct 31, 2020 at 8:28 AM Steven Rostedt wrote: > > > > > > On Fri, 30 Oct 2020 14:47:56 -0700 > > > Atish Patra wrote: > > &

Re: [PATCH v4 1/9] RISC-V: Implement ptrace regs and stack API

2020-11-05 Thread Guo Ren
On Fri, Nov 6, 2020 at 9:03 AM Palmer Dabbelt wrote: > > On Sat, 17 Oct 2020 00:06:09 PDT (-0700), guo...@kernel.org wrote: > > From: Patrick Stählin > > > > Needed for kprobes support. Copied and adapted from arm64 code. > > > > Guo Ren fixup pt_regs type f

Re: [PATCH v4 5/9] riscv: Add kprobes supported

2020-11-05 Thread Guo Ren
On Fri, Nov 6, 2020 at 9:02 AM Palmer Dabbelt wrote: > > On Sat, 17 Oct 2020 00:06:13 PDT (-0700), guo...@kernel.org wrote: > > From: Guo Ren > > > > This patch enables "kprobe & kretprobe" to work with ftrace > > interface. It utilized soft

Re: [PATCH] csky: Fix build with upstream gcc

2020-07-21 Thread Guo Ren
Thx Joerg & Guenter, Cool work! Acked-by: Guo Ren Approve to next branch. On Tue, Jul 21, 2020 at 9:21 PM Guenter Roeck wrote: > > On Tue, Jul 21, 2020 at 01:23:14PM +0200, Joerg Roedel wrote: > > From: Joerg Roedel > > > > Building a kernel fo

Re: [PATCH v3 6/7] riscv: Add KPROBES_ON_FTRACE supported

2020-07-14 Thread Guo Ren
Thx Masami, On Tue, Jul 14, 2020 at 7:38 PM Masami Hiramatsu wrote: > > On Mon, 13 Jul 2020 23:39:21 + > guo...@kernel.org wrote: > > > From: Guo Ren > > > > This patch adds support for kprobes on ftrace call sites to avoids > > much of the overhead with

Re: [PATCH V1 0/5] riscv: Add k/uprobe supported

2020-07-14 Thread Guo Ren
#ifdef CONFIG_KPROBES if (kprobe_single_step_handler(regs)) return; if (kprobe_breakpoint_handler(regs)) return; #endif #ifdef CONFIG_UPROBES if (uprobe_single_step_handler(regs)) return; if (uprobe_breakpoint_handle

Re: [PATCH v3 0/7] riscv: Add k/uprobe supported

2020-07-14 Thread Guo Ren
On Tue, Jul 14, 2020 at 7:23 PM Masami Hiramatsu wrote: > > Hi Guo, > > On Mon, 13 Jul 2020 23:39:15 + > guo...@kernel.org wrote: > > > From: Guo Ren > > > > The patchset includes kprobe/uprobe support and some related fixups. > > Patrick provides

Re: [PATCH 06/24] csky: use asm-generic/mmu_context.h for no-op implementations

2020-07-27 Thread Guo Ren
Acked-by: Guo Ren On Tue, Jul 28, 2020 at 11:34 AM Nicholas Piggin wrote: > > Cc: Guo Ren > Cc: linux-c...@vger.kernel.org > Signed-off-by: Nicholas Piggin > --- > arch/csky/include/asm/mmu_context.h | 8 +++- > 1 file changed, 3 insertions(+), 5 deletions(-) >

Re: [PATCH] riscv: Add STACKPROTECTOR supported

2020-07-05 Thread Guo Ren
Hi Kees, On Sun, Jul 5, 2020 at 2:53 PM Kees Cook wrote: > > On Sun, Jul 05, 2020 at 06:24:15AM +, guo...@kernel.org wrote: > > From: Guo Ren > > > > The -fstack-protector & -fstack-protector-strong features are from > > gcc. The patch only add basic

Re: [PATCH] riscv: Add STACKPROTECTOR supported

2020-07-05 Thread Guo Ren
On Mon, Jul 6, 2020 at 4:31 AM Kees Cook wrote: > > On Sun, Jul 05, 2020 at 10:16:14PM +0800, Guo Ren wrote: > > On Sun, Jul 5, 2020 at 2:53 PM Kees Cook wrote: > > > On Sun, Jul 05, 2020 at 06:24:15AM +, guo...@kernel.org wrote: > > > > +static __always_i

Re: [RFC PATCH] riscv: enable per-task stack canaries

2020-07-05 Thread Guo Ren
On Mon, Jul 6, 2020 at 4:40 AM Kees Cook wrote: > > On Sun, Jul 05, 2020 at 02:13:17PM +, guo...@kernel.org wrote: > > From: Guo Ren > > > > After compare arm64 and x86 implementations, seems arm64's is more > > flexible and readable. The key

Re: [RFC PATCH] riscv: enable per-task stack canaries

2020-07-05 Thread Guo Ren
On Mon, Jul 6, 2020 at 9:21 AM Kees Cook wrote: > > On Mon, Jul 06, 2020 at 09:01:51AM +0800, Guo Ren wrote: > > Yeah! :) I just want to show you, how about the format: use tp in gpr > > to do that. The format is similar to arm64. > > > > tp is the task_struct poin

Re: [PATCH V1 4/5] riscv: Add kprobes supported

2020-07-07 Thread Guo Ren
On Tue, Jul 7, 2020 at 4:26 PM Zong Li wrote: > > On Mon, Jul 6, 2020 at 6:12 PM Masami Hiramatsu wrote: > > > > Hi Guo, > > > > On Sat, 4 Jul 2020 03:34:18 + > > guo...@kernel.org wrote: > > > > > From: Guo Ren > > > >

Re: [PATCH v3 6/7] riscv: Add KPROBES_ON_FTRACE supported

2020-07-22 Thread Guo Ren
Hi Masami, On Tue, Jul 21, 2020 at 9:27 PM Masami Hiramatsu wrote: > > On Wed, 15 Jul 2020 00:24:54 +0800 > Guo Ren wrote: > > > Thx Masami, > > > > On Tue, Jul 14, 2020 at 7:38 PM Masami Hiramatsu > > wrote: > > > > > > On Mon, 13

Re: [PATCH v3 6/7] riscv: Add KPROBES_ON_FTRACE supported

2020-07-22 Thread Guo Ren
ems it just avoid using scripts/recordmcount.pl script and directly generate nops for _mcount. It's different from -fpatchable-function-entry=2 which generating nops before function prologue in arm64, isn't it? On Tue, Jul 21, 2020 at 9:27 PM Masami Hiramatsu wrote: > > On W

Re: [PATCH v2 6/6] riscv: Add KPROBES_ON_FTRACE supported

2020-07-10 Thread Guo Ren
ror injection depends on > this behevior, so could you consider to support it in the "ftrace" > implementation at first? (And if it is enabled, you can enable the > livepatch on RISCV too) Great message! But can you show me codes that bpf and err-jnject using the behavior? Thx I'll try to fix up it :) -- Best Regards Guo Ren ML: https://lore.kernel.org/linux-csky/

Re: [PATCH v3 2/2] riscv: Enable per-task stack canaries

2020-07-12 Thread Guo Ren
Hi Kees, On Mon, Jul 13, 2020 at 10:40 AM Kees Cook wrote: > > On Fri, Jul 10, 2020 at 04:19:58PM +, guo...@kernel.org wrote: > > From: Guo Ren > > > > This enables the use of per-task stack canary values if GCC has > > support for emitting the stack ca

Re: [PATCH] arm64: Make TSK_STACK_CANARY more accurate defined

2020-07-16 Thread Guo Ren
hes/2020-July/549910.html On Tue, Jul 14, 2020 at 4:37 PM Will Deacon wrote: > > On Mon, Jul 13, 2020 at 04:03:33AM +, guo...@kernel.org wrote: > > From: Guo Ren > > > > TSK_STACK_CANARY only used in arm64/Makefile with > > CONFIG_STACKPROTECTOR_PER_TAS

Re: [PATCH V2 1/3] riscv: Fixup static_obj() fail

2020-09-11 Thread Guo Ren
t; On 2020-06-27 13:57, guo...@kernel.org wrote: > > From: Guo Ren > > > > When enable LOCKDEP, static_obj() will cause error. Because some > > __initdata static variables is before _stext: > > > > static int static_obj(const void *obj) > > { > > u

Re: [PATCH V2 1/3] riscv: Fixup static_obj() fail

2020-09-24 Thread Guo Ren
dreas. > > -- > Andreas Schwab, sch...@linux-m68k.org > GPG Key fingerprint = 7578 EB47 D4E5 4D69 2510 2552 DF73 E780 A9DA AEC1 > "And now for something completely different." -- Best Regards Guo Ren ML: https://lore.kernel.org/linux-csky/

Re: [PATCH] csky: Fix a size determination in gpr_get()

2020-09-24 Thread Guo Ren
On Wed, Sep 23, 2020 at 12:52 PM Al Viro wrote: > > On Wed, Sep 23, 2020 at 10:37:31AM +0800, Guo Ren wrote: > > > > What's going on there? The mapping is really weird - assuming > > > you had v0..v31 in the first 32 elements of regs->vr[], you > > >

Re: [PATCH] csky: Fix a size determination in gpr_get()

2020-09-22 Thread Guo Ren
Thx Duan, Acked-by: Guo Ren Hi AI, I found the broken commit still has a question: > commit dcad7854fcce6a2d49b6a3ead5bbefeff047e559 > Author: Al Viro > Date: Tue Jun 16 15:28:29 2020 -0400 >csky: switch to ->regset_get() >NB: WTF "- what the fuck :("

Re: [patch RFC 06/15] csky/mm/highmem: Switch to generic kmap atomic

2020-09-22 Thread Guo Ren
Acked-by: Guo Ren On Sat, Sep 19, 2020 at 5:50 PM Thomas Gleixner wrote: > > Signed-off-by: Thomas Gleixner > Cc: Guo Ren > Cc: linux-c...@vger.kernel.org > --- > Note: Completely untested > --- > arch/csky/Kconfig |1 > arch/csky/include/asm/

Re: [PATCH] csky: Fix a size determination in gpr_get()

2020-09-22 Thread Guo Ren
On Wed, Sep 23, 2020 at 8:23 AM Al Viro wrote: > > On Wed, Sep 23, 2020 at 08:03:20AM +0800, Guo Ren wrote: > > Thx Duan, > > > > Acked-by: Guo Ren > > > > Hi AI, > > > > I found the broken commit still has a question: > > > > > c

Re: [PATCH v4 06/26] mm/csky: Use general page fault accounting

2020-06-30 Thread Guo Ren
Acked-by: Guo Ren On Wed, Jul 1, 2020 at 4:45 AM Peter Xu wrote: > > Use the general page fault accounting by passing regs into handle_mm_fault(). > It naturally solve the issue of multiple page fault accounting when page fault > retry happened. > > CC: Guo Ren > CC: linux

Re: [PATCH V4 3/4] irqchip/irq-csky-mpintc: Support auto irq deliver to all cpus

2019-06-04 Thread Guo Ren
Hello Marc, On Tue, Jun 4, 2019 at 7:54 PM Marc Zyngier wrote: > > On 04/06/2019 12:05, guo...@kernel.org wrote: > > From: Guo Ren > > > > The csky,mpintc could deliver a external irq to one cpu or all cpus, but > > it couldn't deliver a external irq to a gro

Re: [PATCH] csky: remove unsued thread_saved_pc and *_segments functions/macros

2019-06-13 Thread Guo Ren
Acked-by: Guo Ren thread_saved_pc should be used in unwind stack and I'll give another patch to optimize the unwind flow for csky. On Wed, Jun 12, 2019 at 7:22 PM Tobias Klauser wrote: > > These are used nowhere in the tree (except for some architectures which > define them for

Re: [PATCH RESEND 2/7] csky: entry: Remove unneeded need_resched() loop

2019-05-28 Thread Guo Ren
Thx Valentin, You are right, Approved. Best Regards Guo Ren On Tue, May 28, 2019 at 11:48:43AM +0100, Valentin Schneider wrote: > Since the enabling and disabling of IRQs within preempt_schedule_irq() > is contained in a need_resched() loop, we don't need the outer arch

Re: [PATCH V2 2/4] csky: Add new asid lib code from arm

2019-06-21 Thread Guo Ren
Sorry, I forgot delete arm's. It's mistake, no change arm64 file. On Fri, Jun 21, 2019 at 6:10 PM Julien Grall wrote: > > Hi, > > On 21/06/2019 10:39, guo...@kernel.org wrote: > > Signed-off-by: Guo Ren > > Cc: Arnd Bergmann > > Cc: Julien Gr

Re: [PATCH V3 2/6] csky: Add reg-io-width property for csky pmu

2019-06-03 Thread Guo Ren
ret = init_fn(&csky_pmu); > } > > + if (!of_property_read_u32(node, "reg-io-width", &cnt_width)) { > + csky_pmu.sign_extend = 64 - cnt_width; 63? Please use count_width, see above. > + } else { > + csky_pmu.sign_extend = 16; Please define a macro for define DEFAULT_COUNT_WIDTH 48 and change the format like this: if (of_property_read_u32(node, "count-width", &csky_pmu.count_width)) csky_pmu.count_width = DEFAULT_COUNT_WIDTH; Best Regards Guo Ren

Re: [PATCH V4 2/6] csky: Add count-width property for csky pmu

2019-06-03 Thread Guo Ren
t; be extend to 64 bits to avoid this, the extension bits base on the > count-width property from dts. > > Signed-off-by: Mao Han > Cc: Guo Ren > --- > arch/csky/kernel/perf_event.c | 14 +- > 1 file changed, 13 insertions(+), 1 deletion(-) > > diff --git a

Re: [PATCH V4 4/6] dt-bindings: csky: Add csky PMU bindings

2019-06-03 Thread Guo Ren
Reviewed-by: Guo Ren On Tue, Jun 4, 2019 at 10:25 AM Mao Han wrote: > > This patch adds the documentation to describe that how to add pmu node in > dts. > > Signed-off-by: Mao Han > Cc: Rob Herring > Cc: Guo Ren > --- > Documentation/devicetree

Re: [PATCH V4 1/6] csky: Init pmu as a device

2019-06-03 Thread Guo Ren
Hello Mao, On Tue, Jun 4, 2019 at 10:25 AM Mao Han wrote: > > This patch change the csky pmu initialization from arch init to > device init. The pmu can be configued with information from > device tree(pmu device name, irq number and etc.). > > Signed-off-by: Mao

Re: [PATCH V4 3/6] csky: Add pmu interrupt support

2019-06-03 Thread Guo Ren
Hello Mao, Nice job and see my comment below. On Tue, Jun 4, 2019 at 10:25 AM Mao Han wrote: > > This patch add interrupt request and handler for csky pmu. > perf can record on hardware event with this patch applied. > > Signed-off-by: Mao Han > Cc: Guo Ren > --

Re: [PATCH V4 6/6] csky: Fix perf record in kernel/user space

2019-06-03 Thread Guo Ren
er kernel > space or user space, csky_pmu_event_init is called twice with no > attr specified. Configuration will be overwritten with sampling in > both kernel space and user space. --all-kernel/--all-user is > useless without this patch applied. > > Signed-off-by: Mao Han

Re: [PATCH v4 2/3] csky: Add support for perf registers sampling

2019-04-14 Thread Guo Ren
> and the registers/user stack dump support. > > CC: Guo Ren > > Signed-off-by: Mao Han > --- > arch/csky/Kconfig | 2 ++ > arch/csky/include/uapi/asm/perf_regs.h | 51 > ++ > arch/csky/kernel/Makefile

Re: [PATCH v4 3/3] csky: Add support for libdw

2019-04-14 Thread Guo Ren
egs8", "%regs9", "%sp", > + "%lr", > + /* r16 ~ r23 */ > + "%exregs0", "%exregs1", "%exregs2", "%exregs3", "%exregs4", > + "%exregs5", "%exregs6", "%exregs7", > + /* r24 ~ r31 */ > + "%exregs8", "%exregs9", "%exregs10", "%exregs11", "%exregs12", > + "%exregs13", "%exregs14", "%tls", > + "%pc", "%cc", "%hi", "%lo", NULL, NULL, NULL, NULL, > + NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, > + NULL, NULL, NULL, NULL, "%vr0", "%vr1", "%vr2", "%vr3", > + "%vr4", "%vr5", "%vr6", "%vr7", "%vr8", "%vr9", "%vr10", "%vr11", > + "%vr12", "%vr13", "%vr14", "%vr15", NULL, NULL, "%epc", Remove vr0-vr15 first. > +}; > +#else > +#define CSKY_MAX_REGS 70 > +const char *csky_dwarf_regs_table[CSKY_MAX_REGS] = { > + /* r0 ~ r8 */ > + "%sp", "%regs9", "%a0", "%a1", "%a2", "%a3", "%regs0", "%regs1", > + /* r9 ~ r15 */ > + "%regs2", "%regs3", "%regs4", "%regs5", "%regs6", "%regs7", "%regs8", > + "%lr", > + NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, > + NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, > + "%vap", "%cc", "%vfp", "%epc", "%hi", "%lo", "%fr0", "%fr1", > + "%fr2", "%fr3", "%fr4", "%fr5", "%fr6", "%fr7", "%fr8", "%fr9", > + "%fr10", "%fr11", "%fr12", "%fr13", "%fr14", "%fr15", "%fr16", "%fr17", > + "%fr18", "%fr19", "%fr20", "%fr21", "%fr22", "%fr23", "%fr24", "%fr25", > + "%fr26", "%fr27", "%fr28", "%fr29", "%fr30", "%fr31" Please remove vap cc vfp hi lo fr0~fr31, current abiv1 linux couldn't suppport them. Best Regards Guo Ren

Re: [PATCH v4 2/3] csky: Add support for perf registers sampling

2019-04-15 Thread Guo Ren
th unwind library > and the registers/user stack dump support. > + return ((long *)regs)[idx]; return (u64)*((u32 *)regs + idx); Best Regards Guo Ren

Re: [PATCH] csky: remove unusued thread_saved_pc and *_segments functions/macros

2020-06-16 Thread Guo Ren
I can do it. On Mon, Jun 15, 2020 at 4:43 PM Tobias Klauser wrote: > > On 2020-06-13 at 10:42:07 +0200, Guo Ren wrote: > > Acked-by: Guo Ren > > Thanks for the Ack. Are you taking this patch through your own tree or > should I directly submit to someone else? > > &

Re: [PATCH 07/25] mm/csky: Use mm_fault_accounting()

2020-06-17 Thread Guo Ren
Hi Peter, On Tue, Jun 16, 2020 at 6:16 AM Peter Xu wrote: > > Use the new mm_fault_accounting() helper for page fault accounting. > Also, move the accounting to be after release of mmap_sem. > > CC: Guo Ren > CC: linux-c...@vger.kernel.org > Signed-off-by: Peter Xu

Re: [PATCH] riscv: Fixup compile error BUILD_BUG_ON failed

2020-06-27 Thread Guo Ren
On Sun, Jun 28, 2020 at 10:59 AM Masami Hiramatsu wrote: > > On Sat, 27 Jun 2020 16:20:02 + > guo...@kernel.org wrote: > > > From: Guo Ren > > > > Unfortunately, the current code couldn't be compiled, because > > BUILD_BUG_ON needs a static defined

Re: [PATCH] riscv: Fixup compile error BUILD_BUG_ON failed

2020-06-28 Thread Guo Ren
On Sun, Jun 28, 2020 at 10:52 PM Masami Hiramatsu wrote: > > On Sun, 28 Jun 2020 14:12:07 +0800 > Guo Ren wrote: > > > On Sun, Jun 28, 2020 at 10:59 AM Masami Hiramatsu > > wrote: > > > > > > On Sat, 27 Jun 2020 16:20:02 + > > > g

Re: [PATCH 06/26] mm/csky: Use general page fault accounting

2020-06-19 Thread Guo Ren
On Sat, Jun 20, 2020 at 12:05 AM Peter Xu wrote: > > Use the general page fault accounting by passing regs into handle_mm_fault(). > It naturally solve the issue of multiple page fault accounting when page fault > retry happened. > > CC: Guo Ren > CC: linux-c...@vger.kerne

Re: [PATCH] uprobes: ensure that uprobe->offset and ->ref_ctr_offset are properly aligned

2020-06-09 Thread Guo Ren
aligned to UPROBE_SWBP_INSN_SIZE. > > Not sure if it would have been possible to try to create a uprobe on an > odd address. If yes, then the new IS_ALIGNED check certainly makes this > better for s390, so the patch looks sane. Adding Vasily and Sven to double > check. Also good to csky. -- Best Regards Guo Ren ML: https://lore.kernel.org/linux-csky/

Re: [PATCH] uprobes: ensure that uprobe->offset and ->ref_ctr_offset are properly aligned

2020-06-09 Thread Guo Ren
UPROBE_SWBP_INSN_SIZE))) > + return -EINVAL; > + > pagefault_disable(); > result = __get_user(opcode, (uprobe_opcode_t __user *)vaddr); > pagefault_enable(); > -- > 2.25.1.362.g51ebf55 > > Looks good to me, thx. Reviewed-by: Guo Ren -- Best Regards Guo Ren ML: https://lore.kernel.org/linux-csky/

Re: [PATCH v3 07/33] nds32: MMU initialization

2017-12-18 Thread Guo Ren
1 = kmap(page1) // Mostly vaddr1 = vaddr0 val = vaddr1; //No tlb-miss and it will get page0's val not page1, because last expired vaddr0's entry is left in CPU-MMU-tlb. Best Regards Guo Ren

Re: [PATCH v3 07/33] nds32: MMU initialization

2017-12-18 Thread Guo Ren
On Mon, Dec 18, 2017 at 07:21:30PM +0800, Greentime Hu wrote: > Hi, Guo Ren: > > 2017-12-18 17:08 GMT+08:00 Guo Ren : > > Hi Greentime, > > > > On Fri, Dec 08, 2017 at 05:11:50PM +0800, Greentime Hu wrote: > > [...] > >> > >> diff --git

Re: [PATCH v3 09/33] nds32: Cache and TLB routines

2017-12-12 Thread Guo Ren
t; and "tlbop_rwr" and a update_mmu_cache() is invoked again, then an error page mapping is set up in your tlb-buffer when tlbop_rwr is excuted from interrupt. Because it's another addr in NDS32_SR_TLB_VPN. It seems that tlb-hardrefill can help build tlb-buffer mapping, why you update it in this software way? Guo Ren

Re: [PATCH v3 09/33] nds32: Cache and TLB routines

2017-12-13 Thread Guo Ren
On Wed, Dec 13, 2017 at 01:45:02PM +0800, Greentime Hu wrote: > I think it should be fine if an interruption between mtsr_dsb and > tlbop_rwr because this is a optimization by sw. Fine? When there is an unexpected vaddr in SR_TLB_VPN, tlbop_rwr(*pte) will break that vaddr's pfn in the CPU tlb-bu

Re: [PATCH v3 09/33] nds32: Cache and TLB routines

2017-12-13 Thread Guo Ren
On Wed, Dec 13, 2017 at 04:30:41PM +0800, Greentime Hu wrote: > 2017-12-13 16:19 GMT+08:00 Guo Ren : > > On Wed, Dec 13, 2017 at 01:45:02PM +0800, Greentime Hu wrote: > > > >> I think it should be fine if an interruption between mtsr_dsb and > >> tlbop_rwr bec

Re: [PATCH v3 09/33] nds32: Cache and TLB routines

2017-12-13 Thread Guo Ren
s in a invalid state, no operation happen on tlbop_rwr. Then they are atomic safe ,no spin_lock_irq need. :) Guo Ren

[irqchip: irq/irqchip-next] irqchip/csky-mpintc: Prevent selection on unsupported platforms

2021-02-04 Thread irqchip-bot for Guo Ren
The following commit has been merged into the irq/irqchip-next branch of irqchip: Commit-ID: be1abc5ba4d2082df6749ab95ec6f87c4d3dbb23 Gitweb: https://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms/be1abc5ba4d2082df6749ab95ec6f87c4d3dbb23 Author:Guo Ren AuthorDate

[tip: timers/urgent] clocksource/drivers/timer-gx6605s: Fixup counter reload

2020-09-27 Thread tip-bot2 for Guo Ren
The following commit has been merged into the timers/urgent branch of tip: Commit-ID: bc6717d55d07110d8f3c6d31ec2af50c11b07091 Gitweb: https://git.kernel.org/tip/bc6717d55d07110d8f3c6d31ec2af50c11b07091 Author:Guo Ren AuthorDate:Tue, 18 Aug 2020 07:31:17 Committer

<    3   4   5   6   7   8