All of lore.kernel.org
 help / color / mirror / Atom feed
From: wangnan0@huawei.com (Wang Nan)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v16 1/8] ARM: probes: move all probe code to dedicate directory
Date: Wed, 17 Dec 2014 13:36:37 +0800	[thread overview]
Message-ID: <54911665.3070601@huawei.com> (raw)
In-Reply-To: <548AC8BD.5090602@hitachi.com>

Hi Russell,

Could you please collect this patch and merge it into your repository first? Due
to this is a source tree layout modification, others may work on original files
and experiences unneed conflicts.

Thank you.

On 2014/12/12 18:51, Masami Hiramatsu wrote:
> (2014/12/11 19:04), Wang Nan wrote:
>> In discussion on LKML (https://lkml.org/lkml/2014/11/28/158), Russell
>> King suggests to move all probe related code to arch/arm/probes. This
>> patch does the work. Due to dependency on 'arch/arm/kernel/patch.h', this
>> patch also moves patch.h to 'arch/arm/include/asm/patch.h', and related
>> '#include' directives are also midified to '#include <asm/patch.h>'.
>>
>> Following is an overview of this patch:
>>
>>  ./arch/arm/kernel/               ./arch/arm/probes/
>>  |-- Makefile                     |-- Makefile
>>  |-- probes-arm.c          ==>    |-- decode-arm.c
>>  |-- probes-arm.h          ==>    |-- decode-arm.h
>>  |-- probes-thumb.c        ==>    |-- decode-thumb.c
>>  |-- probes-thumb.h        ==>    |-- decode-thumb.h
>>  |-- probes.c              ==>    |-- decode.c
>>  |-- probes.h              ==>    |-- decode.h
>>  |                                |-- kprobes
>>  |                                |   |-- Makefile
>>  |-- kprobes-arm.c         ==>    |   |-- actions-arm.c
>>  |-- kprobes-common.c      ==>    |   |-- actions-common.c
>>  |-- kprobes-thumb.c       ==>    |   |-- actions-thumb.c
>>  |-- kprobes.c             ==>    |   |-- core.c
>>  |-- kprobes.h             ==>    |   |-- core.h
>>  |-- kprobes-test-arm.c    ==>    |   |-- test-arm.c
>>  |-- kprobes-test.c        ==>    |   |-- test-core.c
>>  |-- kprobes-test.h        ==>    |   |-- test-core.h
>>  |-- kprobes-test-thumb.c  ==>    |   `-- test-thumb.c
>>  |                                `-- uprobes
>>  |                                    |-- Makefile
>>  |-- uprobes-arm.c         ==>        |-- actions-arm.c
>>  |-- uprobes.c             ==>        |-- core.c
>>  |-- uprobes.h             ==>        `-- core.h
>>  |
>>  `-- patch.h               ==>    arch/arm/include/asm/patch.h
>>
>> Signed-off-by: Wang Nan <wangnan0@huawei.com>
> 
> It looks good to me :)
> 
> Acked-by: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
> 
> Thanks!
> 

WARNING: multiple messages have this Message-ID (diff)
From: Wang Nan <wangnan0@huawei.com>
To: Russell King - ARM Linux <linux@arm.linux.org.uk>
Cc: <tixy@linaro.org>,
	Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>,
	<lizefan@huawei.com>, <linux-kernel@vger.kernel.org>,
	<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH v16 1/8] ARM: probes: move all probe code to dedicate directory
Date: Wed, 17 Dec 2014 13:36:37 +0800	[thread overview]
Message-ID: <54911665.3070601@huawei.com> (raw)
In-Reply-To: <548AC8BD.5090602@hitachi.com>

Hi Russell,

Could you please collect this patch and merge it into your repository first? Due
to this is a source tree layout modification, others may work on original files
and experiences unneed conflicts.

Thank you.

On 2014/12/12 18:51, Masami Hiramatsu wrote:
> (2014/12/11 19:04), Wang Nan wrote:
>> In discussion on LKML (https://lkml.org/lkml/2014/11/28/158), Russell
>> King suggests to move all probe related code to arch/arm/probes. This
>> patch does the work. Due to dependency on 'arch/arm/kernel/patch.h', this
>> patch also moves patch.h to 'arch/arm/include/asm/patch.h', and related
>> '#include' directives are also midified to '#include <asm/patch.h>'.
>>
>> Following is an overview of this patch:
>>
>>  ./arch/arm/kernel/               ./arch/arm/probes/
>>  |-- Makefile                     |-- Makefile
>>  |-- probes-arm.c          ==>    |-- decode-arm.c
>>  |-- probes-arm.h          ==>    |-- decode-arm.h
>>  |-- probes-thumb.c        ==>    |-- decode-thumb.c
>>  |-- probes-thumb.h        ==>    |-- decode-thumb.h
>>  |-- probes.c              ==>    |-- decode.c
>>  |-- probes.h              ==>    |-- decode.h
>>  |                                |-- kprobes
>>  |                                |   |-- Makefile
>>  |-- kprobes-arm.c         ==>    |   |-- actions-arm.c
>>  |-- kprobes-common.c      ==>    |   |-- actions-common.c
>>  |-- kprobes-thumb.c       ==>    |   |-- actions-thumb.c
>>  |-- kprobes.c             ==>    |   |-- core.c
>>  |-- kprobes.h             ==>    |   |-- core.h
>>  |-- kprobes-test-arm.c    ==>    |   |-- test-arm.c
>>  |-- kprobes-test.c        ==>    |   |-- test-core.c
>>  |-- kprobes-test.h        ==>    |   |-- test-core.h
>>  |-- kprobes-test-thumb.c  ==>    |   `-- test-thumb.c
>>  |                                `-- uprobes
>>  |                                    |-- Makefile
>>  |-- uprobes-arm.c         ==>        |-- actions-arm.c
>>  |-- uprobes.c             ==>        |-- core.c
>>  |-- uprobes.h             ==>        `-- core.h
>>  |
>>  `-- patch.h               ==>    arch/arm/include/asm/patch.h
>>
>> Signed-off-by: Wang Nan <wangnan0@huawei.com>
> 
> It looks good to me :)
> 
> Acked-by: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
> 
> Thanks!
> 






  reply	other threads:[~2014-12-17  5:36 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-11 10:04 [PATCH v16 0/8] ARM: kprobes: OPTPROBES and other improvements Wang Nan
2014-12-11 10:04 ` Wang Nan
2014-12-11 10:04 ` [PATCH v16 1/8] ARM: probes: move all probe code to dedicate directory Wang Nan
2014-12-11 10:04   ` Wang Nan
2014-12-12 10:51   ` Masami Hiramatsu
2014-12-12 10:51     ` Masami Hiramatsu
2014-12-17  5:36     ` Wang Nan [this message]
2014-12-17  5:36       ` Wang Nan
2014-12-11 10:04 ` [PATCH v16 2/8] ARM: kprobes: introduces checker Wang Nan
2014-12-11 10:04   ` Wang Nan
2014-12-11 10:04 ` [PATCH v16 3/8] ARM: kprobes: collects stack consumption for store instructions Wang Nan
2014-12-11 10:04   ` Wang Nan
2014-12-11 10:04 ` [PATCH v16 4/8] ARM: kprobes: disallow probing stack consuming instructions Wang Nan
2014-12-11 10:04   ` Wang Nan
2014-12-11 10:04 ` [PATCH v16 5/8] ARM: kprobes: Add test cases for " Wang Nan
2014-12-11 10:04   ` Wang Nan
2014-12-11 10:04 ` [PATCH v16 6/8] kprobes: Pass the original kprobe for preparing optimized kprobe Wang Nan
2014-12-11 10:04   ` Wang Nan
2014-12-11 10:04 ` [PATCH v16 7/8] ARM: kprobes: enable OPTPROBES for ARM 32 Wang Nan
2014-12-11 10:04   ` Wang Nan
2014-12-11 10:04 ` [PATCH v16 8/8] ARM: kprobes: Fix unreliable MRS instruction tests Wang Nan
2014-12-11 10:04   ` Wang Nan
  -- strict thread matches above, loose matches on Subject: below --
2014-12-11 10:03 [PATCH v16 0/8] ARM: kprobes: OPTPROBES and other improvements Wang Nan
2014-12-11 10:03 ` [PATCH v16 1/8] ARM: probes: move all probe code to dedicate directory Wang Nan
2014-12-11 10:03   ` Wang Nan

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=54911665.3070601@huawei.com \
    --to=wangnan0@huawei.com \
    --cc=linux-arm-kernel@lists.infradead.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: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.