From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751746AbcF0CzA (ORCPT ); Sun, 26 Jun 2016 22:55:00 -0400 Received: from mail-qt0-f182.google.com ([209.85.216.182]:32991 "EHLO mail-qt0-f182.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751629AbcF0Cy7 (ORCPT ); Sun, 26 Jun 2016 22:54:59 -0400 Subject: Re: [PATCH v13 10/10] kprobes: Add arm64 case in kprobe example module To: Huang Shijie References: <1464924384-15269-1-git-send-email-dave.long@linaro.org> <1464924384-15269-11-git-send-email-dave.long@linaro.org> <20160608054903.GA8198@sha-win-210.asiapac.arm.com> Cc: Catalin Marinas , James Morse , Marc Zyngier , Pratyush Anand , Sandeepa Prabhu , Will Deacon , William Cohen , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Steve Capper , Masami Hiramatsu , Li Bin , Adam Buchbinder , =?UTF-8?Q?Alex_Benn=c3=a9e?= , Andrew Morton , Andrey Ryabinin , Ard Biesheuvel , Christoffer Dall , Daniel Thompson , Dave P Martin , Jens Wiklander , Jisheng Zhang , John Blackwood , Mark Rutland , Petr Mladek , Robin Murphy , Suzuki K Poulose , Vladimir Murzin , Yang Shi , Zi Shen Lim , yalin wang , Mark Brown , nd@arm.com From: David Long Message-ID: <5770957B.4090104@linaro.org> Date: Sun, 26 Jun 2016 22:54:51 -0400 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <20160608054903.GA8198@sha-win-210.asiapac.arm.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 06/08/2016 01:49 AM, Huang Shijie wrote: > On Thu, Jun 02, 2016 at 11:26:24PM -0400, David Long wrote: >> From: Sandeepa Prabhu >> >> Add info prints in sample kprobe handlers for ARM64 >> >> Signed-off-by: Sandeepa Prabhu >> --- >> samples/kprobes/kprobe_example.c | 8 ++++++++ >> 1 file changed, 8 insertions(+) >> >> diff --git a/samples/kprobes/kprobe_example.c b/samples/kprobes/kprobe_example.c >> index ed0ca0c..aad8e6f 100644 >> --- a/samples/kprobes/kprobe_example.c >> +++ b/samples/kprobes/kprobe_example.c >> @@ -46,6 +46,10 @@ static int handler_pre(struct kprobe *p, struct pt_regs *regs) >> " ex1 = 0x%lx\n", >> p->symbol_name, p->addr, regs->pc, regs->ex1); >> #endif >> +#ifdef CONFIG_ARM64 >> + pr_info("pre_handler: p->addr = 0x%p, pc = 0x%lx\n", >> + p->addr, (long)regs->pc); > Please add the "p->symbol_name" for the log, just as the above line. > The v14 patch set will have changes that align more closely to how this works on other architectures. >> +#endif >> >> /* A dump_stack() here will give a stack backtrace */ >> return 0; >> @@ -71,6 +75,10 @@ static void handler_post(struct kprobe *p, struct pt_regs *regs, >> printk(KERN_INFO "<%s> post_handler: p->addr = 0x%p, ex1 = 0x%lx\n", >> p->symbol_name, p->addr, regs->ex1); >> #endif >> +#ifdef CONFIG_ARM64 >> + pr_info("post_handler: p->addr = 0x%p, pc = 0x%lx\n", >> + p->addr, (long)regs->pc); >> +#endif >> } > Ditto. > > thanks > Huang Shijie > Thanks, -dl