From: Arnd Bergmann <arnd-r2nGTMty4D4@public.gmane.org> To: Greentime Hu <green.hu-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> Cc: Greentime <greentime-MUIXKm3Oiri1Z/+hSey0Gg@public.gmane.org>, Linux Kernel Mailing List <linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>, linux-arch <linux-arch-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>, Thomas Gleixner <tglx-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org>, Jason Cooper <jason-NLaQJdtUoK4Be96aLqz0jA@public.gmane.org>, Marc Zyngier <marc.zyngier-5wv7dgnIgG8@public.gmane.org>, Rob Herring <robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>, Networking <netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>, Vincent Chen <deanbo422-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>, DTML <devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>, Al Viro <viro-RmSDqhL/yNMiFSDQTTA3OLVCufUGDwFn@public.gmane.org>, David Howells <dhowells-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>, Will Deacon <will.deacon-5wv7dgnIgG8@public.gmane.org>, Daniel Lezcano <daniel.lezcano-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>, linux-serial-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Geert Uytterhoeven <geert.uytterhoeven-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>, Linus Walleij <linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>, Mark Rutland <mark.rutland-5wv7dgnIgG8@public.gmane.org>, Greg KH <greg-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>, Guo Ren <ren_guo-Y+KPrCd2zL4@public.gmane.org> Subject: Re: [PATCH v6 22/36] nds32: Debugging support Date: Thu, 18 Jan 2018 11:37:02 +0100 [thread overview] Message-ID: <CAK8P3a2HKWHxmkcx5Lf3VFT6yErppXY+brmGr7k2KBLeXgvuFw@mail.gmail.com> (raw) In-Reply-To: <65ae3b5b7eabe8680857b1821c72127f611c950b.1515766253.git.green.hu-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> On Mon, Jan 15, 2018 at 6:53 AM, Greentime Hu <green.hu-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > From: Greentime Hu <greentime-MUIXKm3Oiri1Z/+hSey0Gg@public.gmane.org> > > This patch adds ptrace support. > > Signed-off-by: Vincent Chen <vincentc-MUIXKm3Oiri1Z/+hSey0Gg@public.gmane.org> > Signed-off-by: Greentime Hu <greentime-MUIXKm3Oiri1Z/+hSey0Gg@public.gmane.org> I must have missed this patch earlier, unfortunately I don't think this is ready: > +long arch_ptrace(struct task_struct *child, long request, unsigned long addr, > + unsigned long data) > +{ > + int ret; > + > + switch (request) { > + case PTRACE_PEEKUSR: > + ret = > + ptrace_read_user(child, addr, (unsigned long __user *)data); > + break; > + > + case PTRACE_POKEUSR: > + ret = ptrace_write_user(child, addr, data); > + break; > + > + case PTRACE_GETREGS: > + ret = ptrace_getregs(child, (void __user *)data); > + break; > + > + case PTRACE_SETREGS: > + ret = ptrace_setregs(child, (void __user *)data); > + break; > + > + case PTRACE_GETFPREGS: > + ret = ptrace_getfpregs(child, (void __user *)data); > + break; > + > + case PTRACE_SETFPREGS: > + ret = ptrace_setfpregs(child, (void __user *)data); > + break; > + > + default: > + ret = ptrace_request(child, request, addr, data); > + break; > + } > + > + return ret; > +} It appears that you are implementing the old-style ptrace handling with architecture specific commands. Please have a look at how this is done in risc-v or arm64. If this takes more too much time to address, I'd suggest using an empty stub function for sys_ptrace and adding it back at a later point, but not send the current version upstream. Arnd -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html
WARNING: multiple messages have this Message-ID (diff)
From: Arnd Bergmann <arnd@arndb.de> To: Greentime Hu <green.hu@gmail.com> Cc: Greentime <greentime@andestech.com>, Linux Kernel Mailing List <linux-kernel@vger.kernel.org>, linux-arch <linux-arch@vger.kernel.org>, Thomas Gleixner <tglx@linutronix.de>, Jason Cooper <jason@lakedaemon.net>, Marc Zyngier <marc.zyngier@arm.com>, Rob Herring <robh+dt@kernel.org>, Networking <netdev@vger.kernel.org>, Vincent Chen <deanbo422@gmail.com>, DTML <devicetree@vger.kernel.org>, Al Viro <viro@zeniv.linux.org.uk>, David Howells <dhowells@redhat.com>, Will Deacon <will.deacon@arm.com>, Daniel Lezcano <daniel.lezcano@linaro.org>, linux-serial@vger.kernel.org, Geert Uytterhoeven <geert.uytterhoeven@gmail.com>, Linus Walleij <linus.walleij@linaro.org>, Mark Rutland <mark.rutland@arm.com>, Greg KH <greg@kroah.com>, Guo Ren <ren_guo@c-sky.com>, Randy Dunlap <rdunlap@infradead.org>, David Miller <davem@davemloft.net>, Jonas Bonn <jonas@southpole.se>, Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>, Stafford Horne <shorne@gmail.com>, Vincent Chen <vincentc@andestech.com> Subject: Re: [PATCH v6 22/36] nds32: Debugging support Date: Thu, 18 Jan 2018 11:37:02 +0100 [thread overview] Message-ID: <CAK8P3a2HKWHxmkcx5Lf3VFT6yErppXY+brmGr7k2KBLeXgvuFw@mail.gmail.com> (raw) Message-ID: <20180118103702.2Fl-b-p4nEMFEkVgk2u2x-xVqPhM0fcJtcghU39siWg@z> (raw) In-Reply-To: <65ae3b5b7eabe8680857b1821c72127f611c950b.1515766253.git.green.hu@gmail.com> On Mon, Jan 15, 2018 at 6:53 AM, Greentime Hu <green.hu@gmail.com> wrote: > From: Greentime Hu <greentime@andestech.com> > > This patch adds ptrace support. > > Signed-off-by: Vincent Chen <vincentc@andestech.com> > Signed-off-by: Greentime Hu <greentime@andestech.com> I must have missed this patch earlier, unfortunately I don't think this is ready: > +long arch_ptrace(struct task_struct *child, long request, unsigned long addr, > + unsigned long data) > +{ > + int ret; > + > + switch (request) { > + case PTRACE_PEEKUSR: > + ret = > + ptrace_read_user(child, addr, (unsigned long __user *)data); > + break; > + > + case PTRACE_POKEUSR: > + ret = ptrace_write_user(child, addr, data); > + break; > + > + case PTRACE_GETREGS: > + ret = ptrace_getregs(child, (void __user *)data); > + break; > + > + case PTRACE_SETREGS: > + ret = ptrace_setregs(child, (void __user *)data); > + break; > + > + case PTRACE_GETFPREGS: > + ret = ptrace_getfpregs(child, (void __user *)data); > + break; > + > + case PTRACE_SETFPREGS: > + ret = ptrace_setfpregs(child, (void __user *)data); > + break; > + > + default: > + ret = ptrace_request(child, request, addr, data); > + break; > + } > + > + return ret; > +} It appears that you are implementing the old-style ptrace handling with architecture specific commands. Please have a look at how this is done in risc-v or arm64. If this takes more too much time to address, I'd suggest using an empty stub function for sys_ptrace and adding it back at a later point, but not send the current version upstream. Arnd
next prev parent reply other threads:[~2018-01-18 10:37 UTC|newest] Thread overview: 216+ messages / expand[flat|nested] mbox.gz Atom feed top 2018-01-15 5:53 [PATCH v6 00/36] Andes(nds32) Linux Kernel Port Greentime Hu 2018-01-15 5:53 ` [PATCH v6 01/36] asm-generic/io.h: move ioremap_nocache/ioremap_uc/ioremap_wc/ioremap_wt out of ifndef CONFIG_MMU Greentime Hu 2018-01-15 5:53 ` Greentime Hu 2018-01-15 5:53 ` [PATCH v6 02/36] openrisc: add ioremap_nocache declaration before include asm-generic/io.h and sync ioremap prototype with it Greentime Hu 2018-01-15 5:53 ` Greentime Hu 2018-01-15 13:07 ` Stafford Horne 2018-01-15 13:07 ` Stafford Horne 2018-01-15 13:28 ` Greentime Hu 2018-01-15 13:28 ` Greentime Hu 2018-01-15 5:53 ` [PATCH v6 03/36] sparc: io: To use the define of ioremap_[nocache|wc|wb] in asm-generic/io.h Greentime Hu [not found] ` <790e05e9b9675b3f6ef41693a794d1f09795c151.1515766253.git.green.hu-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2018-01-18 9:56 ` Arnd Bergmann 2018-01-18 9:56 ` Arnd Bergmann [not found] ` <CAK8P3a2qx5pZmE-=QM5Bwrsib4XcfVac7RQr-QMzEseQ_oBPEA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2018-01-19 12:50 ` Greentime Hu 2018-01-19 12:50 ` Greentime Hu 2018-01-15 5:53 ` [PATCH v6 04/36] earlycon: add reg-offset to physical address before mapping Greentime Hu 2018-01-15 5:53 ` Greentime Hu 2018-01-18 10:00 ` Arnd Bergmann 2018-01-18 10:00 ` Arnd Bergmann 2018-01-15 5:53 ` [PATCH v6 05/36] nds32: Assembly macros and definitions Greentime Hu 2018-01-15 5:53 ` Greentime Hu [not found] ` <d36e188c167392994a84c8f52ef0dab90b93ed8d.1515766253.git.green.hu-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2018-01-18 10:01 ` Arnd Bergmann 2018-01-18 10:01 ` Arnd Bergmann 2018-01-15 5:53 ` [PATCH v6 06/36] nds32: Kernel booting and initialization Greentime Hu 2018-01-15 5:53 ` Greentime Hu 2018-01-18 10:11 ` Arnd Bergmann 2018-01-18 10:11 ` Arnd Bergmann [not found] ` <CAK8P3a143yQ72+QGZSxpiFc7p8Hb7PXuCybJBFoLRSBaZ2uw4g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2018-01-19 16:34 ` Greentime Hu 2018-01-19 16:34 ` Greentime Hu 2018-01-19 16:41 ` Arnd Bergmann 2018-01-19 16:41 ` Arnd Bergmann [not found] ` <CAK8P3a3UCrMbTn1JMOGKCSV4WRw9T9tU+pey1t6Fzitf2V0Bvw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2018-01-22 9:49 ` Greentime Hu 2018-01-22 9:49 ` Greentime Hu 2018-01-22 9:53 ` Arnd Bergmann 2018-01-22 9:53 ` Arnd Bergmann 2018-01-15 5:53 ` [PATCH v6 07/36] nds32: Exception handling Greentime Hu 2018-01-15 5:53 ` Greentime Hu 2018-01-18 10:14 ` Arnd Bergmann 2018-01-18 10:14 ` Arnd Bergmann [not found] ` <CAK8P3a1ZZsB7MVZ8sEPzkVcNUJh3-MB_ApmPi+DUF1rc9h8pXg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2018-01-24 10:53 ` Vincent Chen 2018-01-24 10:53 ` Vincent Chen 2018-01-24 11:09 ` Arnd Bergmann 2018-01-24 11:09 ` Arnd Bergmann 2018-01-24 11:10 ` Arnd Bergmann 2018-01-24 11:10 ` Arnd Bergmann 2018-01-30 10:01 ` Vincent Chen 2018-01-30 10:01 ` Vincent Chen 2018-01-30 13:33 ` Arnd Bergmann 2018-01-30 13:33 ` Arnd Bergmann 2018-01-30 14:49 ` Greentime Hu 2018-01-30 14:49 ` Greentime Hu 2018-01-30 15:27 ` Arnd Bergmann 2018-01-30 15:27 ` Arnd Bergmann [not found] ` <cover.1515766253.git.green.hu-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2018-01-15 5:53 ` [PATCH v6 08/36] nds32: MMU definitions Greentime Hu 2018-01-15 5:53 ` Greentime Hu 2018-01-18 10:14 ` Arnd Bergmann 2018-01-18 10:14 ` Arnd Bergmann 2018-01-15 5:53 ` [PATCH v6 12/36] nds32: Process management Greentime Hu 2018-01-15 5:53 ` Greentime Hu 2018-01-18 10:22 ` Arnd Bergmann 2018-01-18 10:22 ` Arnd Bergmann 2018-01-15 5:53 ` [PATCH v6 13/36] nds32: IRQ handling Greentime Hu 2018-01-15 5:53 ` Greentime Hu 2018-01-18 10:22 ` Arnd Bergmann 2018-01-18 10:22 ` Arnd Bergmann 2018-01-15 5:53 ` [PATCH v6 18/36] nds32: System calls handling Greentime Hu 2018-01-15 5:53 ` Greentime Hu [not found] ` <933f69aa93645513e06c6e87cc2dd48bc998343d.1515766253.git.green.hu-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2018-01-18 10:27 ` Arnd Bergmann 2018-01-18 10:27 ` Arnd Bergmann 2018-01-15 5:53 ` [PATCH v6 35/36] irqchip: Andestech Internal Vector Interrupt Controller driver Greentime Hu 2018-01-15 5:53 ` Greentime Hu 2018-01-15 5:53 ` [PATCH v6 09/36] nds32: MMU initialization Greentime Hu 2018-01-15 5:53 ` Greentime Hu 2018-01-18 10:16 ` Arnd Bergmann 2018-01-18 10:16 ` Arnd Bergmann 2018-01-15 5:53 ` [PATCH v6 10/36] nds32: MMU fault handling and page table management Greentime Hu 2018-01-18 10:16 ` Arnd Bergmann 2018-01-18 10:16 ` Arnd Bergmann 2018-01-15 5:53 ` [PATCH v6 11/36] nds32: Cache and TLB routines Greentime Hu 2018-01-15 5:53 ` Greentime Hu [not found] ` <e1f55cfd5a5384967f1c4691bc766edbd06fee1d.1515766253.git.green.hu-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2018-01-18 10:17 ` Arnd Bergmann 2018-01-18 10:17 ` Arnd Bergmann 2018-01-15 5:53 ` [PATCH v6 14/36] nds32: Atomic operations Greentime Hu 2018-01-15 5:53 ` Greentime Hu 2018-01-18 10:23 ` Arnd Bergmann 2018-01-18 10:23 ` Arnd Bergmann 2018-01-15 5:53 ` [PATCH v6 15/36] nds32: Device specific operations Greentime Hu 2018-01-15 5:53 ` Greentime Hu 2018-01-18 10:25 ` Arnd Bergmann 2018-01-18 10:25 ` Arnd Bergmann 2018-01-15 5:53 ` [PATCH v6 16/36] nds32: DMA mapping API Greentime Hu 2018-01-15 5:53 ` Greentime Hu 2018-01-18 10:26 ` Arnd Bergmann 2018-01-18 10:26 ` Arnd Bergmann 2018-01-23 8:23 ` Greentime Hu 2018-01-23 8:23 ` Greentime Hu [not found] ` <CAEbi=3cYynvFS2GDzj5Oav_5LtHPdBfBWh9c=mFT0PxeOLX9sQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2018-01-23 11:52 ` Greentime Hu 2018-01-23 11:52 ` Greentime Hu [not found] ` <CAEbi=3d46tXacnnU+RJGMw+KR1O=NaVjO+NW3cxUjAN==V51iw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2018-01-24 11:36 ` Arnd Bergmann 2018-01-24 11:36 ` Arnd Bergmann 2018-01-25 3:45 ` Greentime Hu 2018-01-25 3:45 ` Greentime Hu 2018-01-25 10:42 ` Arnd Bergmann 2018-01-25 10:42 ` Arnd Bergmann [not found] ` <CAK8P3a0YrwAXH8n83wf=34zmN44KgJu-JVXfQWhuquNxVmZ8Sw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2018-01-25 13:48 ` Greentime Hu 2018-01-25 13:48 ` Greentime Hu 2018-01-15 5:53 ` [PATCH v6 17/36] nds32: ELF definitions Greentime Hu 2018-01-15 5:53 ` Greentime Hu 2018-01-18 10:27 ` Arnd Bergmann 2018-01-18 10:27 ` Arnd Bergmann 2018-01-15 5:53 ` [PATCH v6 19/36] nds32: VDSO support Greentime Hu [not found] ` <4a602db0a58cc858515c3c669d5ac34c567b061c.1515766253.git.green.hu-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2018-01-18 10:28 ` Arnd Bergmann 2018-01-18 10:28 ` Arnd Bergmann 2018-02-06 7:41 ` Vincent Chen 2018-02-06 7:41 ` Vincent Chen 2018-02-06 8:48 ` Arnd Bergmann 2018-02-06 8:48 ` Arnd Bergmann 2018-01-15 5:53 ` [PATCH v6 20/36] nds32: Signal handling support Greentime Hu 2018-01-15 5:53 ` Greentime Hu 2018-01-18 10:30 ` Arnd Bergmann 2018-01-18 10:30 ` Arnd Bergmann [not found] ` <CAK8P3a2HR6be9Fm+o1Oq-V5p51xEiuhbyqkgVWprD5BxuU29xQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2018-01-24 0:56 ` Vincent Chen 2018-01-24 0:56 ` Vincent Chen [not found] ` <CAJsyPhyGpJVQegd7ns9oZOjM=XsGVixCQaH9nT_jOQsSpyRs+g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2018-01-24 11:13 ` Arnd Bergmann 2018-01-24 11:13 ` Arnd Bergmann 2018-02-06 6:39 ` Vincent Chen 2018-02-06 6:39 ` Vincent Chen 2018-01-15 5:53 ` [PATCH v6 21/36] nds32: Library functions Greentime Hu 2018-01-15 5:53 ` Greentime Hu [not found] ` <6e8431d52d635f077ca49b2f1f7dd905bdf27a3c.1515766253.git.green.hu-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2018-01-18 10:31 ` Arnd Bergmann 2018-01-18 10:31 ` Arnd Bergmann 2018-01-15 5:53 ` [PATCH v6 22/36] nds32: Debugging support Greentime Hu 2018-01-15 5:53 ` Greentime Hu [not found] ` <65ae3b5b7eabe8680857b1821c72127f611c950b.1515766253.git.green.hu-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2018-01-18 10:37 ` Arnd Bergmann [this message] 2018-01-18 10:37 ` Arnd Bergmann [not found] ` <CAK8P3a2HKWHxmkcx5Lf3VFT6yErppXY+brmGr7k2KBLeXgvuFw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2018-01-23 7:28 ` Vincent Chen 2018-01-23 7:28 ` Vincent Chen 2018-01-23 8:21 ` Arnd Bergmann 2018-01-23 8:21 ` Arnd Bergmann 2018-01-15 5:53 ` [PATCH v6 23/36] nds32: L2 cache support Greentime Hu 2018-01-18 10:37 ` Arnd Bergmann 2018-01-18 10:37 ` Arnd Bergmann 2018-01-15 5:53 ` [PATCH v6 24/36] nds32: Loadable modules Greentime Hu 2018-01-15 5:53 ` Greentime Hu 2018-01-18 10:41 ` Arnd Bergmann 2018-01-18 10:41 ` Arnd Bergmann [not found] ` <CAK8P3a3pQSxM+gJ+dJsyeo5YnuOOyFYVoJdCVmnoHR0Numya5g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2018-01-19 14:26 ` Greentime Hu 2018-01-19 14:26 ` Greentime Hu 2018-01-15 5:53 ` [PATCH v6 25/36] nds32: Generic timers support Greentime Hu 2018-01-15 5:53 ` Greentime Hu [not found] ` <ff6346e073ae38aa96a031420f57aad3d1057ddf.1515766253.git.green.hu-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2018-01-18 10:41 ` Arnd Bergmann 2018-01-18 10:41 ` Arnd Bergmann 2018-01-15 5:53 ` [PATCH v6 26/36] nds32: Device tree support Greentime Hu 2018-01-15 5:53 ` Greentime Hu [not found] ` <623edb96d0a59433c25d71e5f6bb24a17804e960.1515766253.git.green.hu-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2018-01-18 10:43 ` Arnd Bergmann 2018-01-18 10:43 ` Arnd Bergmann 2018-01-15 5:53 ` [PATCH v6 27/36] nds32: Miscellaneous header files Greentime Hu 2018-01-15 5:53 ` Greentime Hu [not found] ` <38d9dce03a1421378a94d3d528bb0c4741e2bf7b.1515766253.git.green.hu-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2018-01-18 10:46 ` Arnd Bergmann 2018-01-18 10:46 ` Arnd Bergmann 2018-01-15 5:53 ` [PATCH v6 28/36] nds32: defconfig Greentime Hu 2018-01-15 5:53 ` Greentime Hu 2018-01-18 10:44 ` Arnd Bergmann 2018-01-18 10:44 ` Arnd Bergmann 2018-01-15 5:53 ` [PATCH v6 29/36] nds32: Build infrastructure Greentime Hu 2018-01-15 5:53 ` Greentime Hu 2018-01-18 11:00 ` Arnd Bergmann 2018-01-18 11:00 ` Arnd Bergmann 2018-01-22 15:20 ` Greentime Hu 2018-01-22 15:20 ` Greentime Hu 2018-01-22 15:38 ` Arnd Bergmann 2018-01-22 15:38 ` Arnd Bergmann 2018-01-22 16:00 ` Greentime Hu 2018-01-22 16:00 ` Greentime Hu 2018-01-15 5:53 ` [PATCH v6 30/36] MAINTAINERS: Add nds32 Greentime Hu 2018-01-15 5:53 ` Greentime Hu 2018-01-18 10:45 ` Arnd Bergmann 2018-01-18 10:45 ` Arnd Bergmann 2018-01-15 5:53 ` [PATCH v6 31/36] dt-bindings: nds32 CPU Bindings Greentime Hu 2018-01-18 11:02 ` Arnd Bergmann 2018-01-18 11:02 ` Arnd Bergmann 2018-01-19 14:32 ` Greentime Hu 2018-01-19 14:32 ` Greentime Hu [not found] ` <CAEbi=3ef8JHf_Jpru1B2L3+Xz-Oz4p_t84Lh=5kuTFo0YEz=5A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2018-01-19 14:52 ` Arnd Bergmann 2018-01-19 14:52 ` Arnd Bergmann [not found] ` <CAK8P3a38hCHULZt=fGXJebcoiEGCwA0fre_kixA7sUpPP2xf5g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2018-01-19 15:18 ` Greentime Hu 2018-01-19 15:18 ` Greentime Hu [not found] ` <CAEbi=3eexCyrVhFZB8wmK1fT=QONzc63y6=dGNgj_H+Rt4zo_g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2018-01-19 15:29 ` Geert Uytterhoeven 2018-01-19 15:29 ` Geert Uytterhoeven 2018-01-19 15:35 ` Greentime Hu 2018-01-19 15:35 ` Greentime Hu [not found] ` <CAEbi=3fKp5tj32hoH=ZTo6kqpCE+Zv1LopnpVujusSfMkeaJKg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2018-01-19 15:37 ` Geert Uytterhoeven 2018-01-19 15:37 ` Geert Uytterhoeven 2018-01-22 9:53 ` Greentime Hu 2018-01-22 9:53 ` Greentime Hu 2018-01-22 11:15 ` Arnd Bergmann 2018-01-22 11:15 ` Arnd Bergmann 2018-01-22 13:55 ` Greentime Hu 2018-01-22 13:55 ` Greentime Hu 2018-01-15 5:53 ` [PATCH v6 32/36] dt-bindings: nds32 L2 cache controller Bindings Greentime Hu 2018-01-15 5:53 ` Greentime Hu 2018-01-18 10:45 ` Arnd Bergmann 2018-01-18 10:45 ` Arnd Bergmann 2018-01-15 5:53 ` [PATCH v6 33/36] dt-bindings: nds32 SoC Bindings Greentime Hu 2018-01-15 5:53 ` Greentime Hu [not found] ` <b497b9429d9bc5208334b4c1abbaeb47d3eedf95.1515766253.git.green.hu-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2018-01-18 11:03 ` Arnd Bergmann 2018-01-18 11:03 ` Arnd Bergmann 2018-01-15 5:53 ` [PATCH v6 34/36] dt-bindings: interrupt-controller: Andestech Internal Vector Interrupt Controller Greentime Hu 2018-01-15 5:53 ` Greentime Hu [not found] ` <2cd18fba6e2ab78fc0eb50dd8d1216012f90c6d8.1515766253.git.green.hu-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2018-01-18 10:46 ` Arnd Bergmann 2018-01-18 10:46 ` Arnd Bergmann 2018-01-15 5:53 ` [PATCH v6 36/36] net: faraday add nds32 support Greentime Hu 2018-01-15 5:53 ` Greentime Hu 2018-01-18 11:02 ` Arnd Bergmann 2018-01-18 11:02 ` Arnd Bergmann 2018-01-18 9:49 ` [PATCH v6 00/36] Andes(nds32) Linux Kernel Port Arnd Bergmann 2018-01-18 9:49 ` Arnd Bergmann
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=CAK8P3a2HKWHxmkcx5Lf3VFT6yErppXY+brmGr7k2KBLeXgvuFw@mail.gmail.com \ --to=arnd-r2ngtmty4d4@public.gmane.org \ --cc=daniel.lezcano-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \ --cc=deanbo422-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \ --cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \ --cc=dhowells-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \ --cc=geert.uytterhoeven-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \ --cc=green.hu-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \ --cc=greentime-MUIXKm3Oiri1Z/+hSey0Gg@public.gmane.org \ --cc=greg-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org \ --cc=jason-NLaQJdtUoK4Be96aLqz0jA@public.gmane.org \ --cc=linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \ --cc=linux-arch-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \ --cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \ --cc=linux-serial-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \ --cc=marc.zyngier-5wv7dgnIgG8@public.gmane.org \ --cc=mark.rutland-5wv7dgnIgG8@public.gmane.org \ --cc=netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \ --cc=ren_guo-Y+KPrCd2zL4@public.gmane.org \ --cc=robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \ --cc=tglx-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org \ --cc=viro-RmSDqhL/yNMiFSDQTTA3OLVCufUGDwFn@public.gmane.org \ --cc=will.deacon-5wv7dgnIgG8@public.gmane.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
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).