From: Vineet Gupta <Vineet.Gupta1@synopsys.com>
To: oskar.andero@sonymobile.com
Cc: linux-kernel@vger.kernel.org, masami.hiramatsu.pt@hitachi.com,
davem@davemloft.net, anil.s.keshavamurthy@intel.com,
ananth@in.ibm.com, radovan.lekanovic@sonymobile.com,
bjorn.davidsson@sonymobile.com,
"linux-arch@vger.kernel.org" <linux-arch@vger.kernel.org>
Subject: Re: [PATCH 0/4] kprobes: split blacklist into common and arch
Date: Thu, 4 Apr 2013 17:02:22 +0530 [thread overview]
Message-ID: <515D64C6.9050903@synopsys.com> (raw)
In-Reply-To: <1364977734-32267-1-git-send-email-oskar.andero@sonymobile.com>
Hi Oskar,
On 04/03/2013 01:58 PM, oskar.andero@sonymobile.com wrote:
> Hi,
>
> This is a slight rework of the following patches which I posted earlier:
> [PATCH] Kprobes blacklist: Conditionally add x86-specific symbols
> [PATCH] delay blacklist symbol lookup until we actually need it
>
> This serie includes a patch that moves the architecture dependent black points
> to the arch/ directory and the x86 patch was modified to follow that patch.
>
> -Oskar
>
> Björn Davidsson (1):
> kprobes: move x86-specific blacklist symbols to arch directory
>
> Oskar Andero (2):
> kprobes: split blacklist into common and arch
> kprobes: replace printk with pr_-functions
>
> Toby Collett (1):
> kprobes: delay blacklist symbol lookup until we actually need it
>
> arch/arc/kernel/kprobes.c | 3 +
> arch/arm/kernel/kprobes.c | 2 +
> arch/avr32/kernel/kprobes.c | 3 +
> arch/ia64/kernel/kprobes.c | 3 +
> arch/mips/kernel/kprobes.c | 3 +
> arch/mn10300/kernel/kprobes.c | 2 +
> arch/powerpc/kernel/kprobes.c | 3 +
> arch/s390/kernel/kprobes.c | 3 +
> arch/sh/kernel/kprobes.c | 3 +
> arch/sparc/kernel/kprobes.c | 3 +
> arch/x86/kernel/kprobes/core.c | 7 ++
> kernel/kprobes.c | 149 ++++++++++++++++++++++++++---------------
> 12 files changed, 130 insertions(+), 54 deletions(-)
>
For any arch changes, however trivial they might be, you need to CC the respective
maintainers, or atleast post the patches on linux-arch so we know what's going on !
Thx,
-Vineet
WARNING: multiple messages have this Message-ID (diff)
From: Vineet Gupta <Vineet.Gupta1@synopsys.com>
To: <oskar.andero@sonymobile.com>
Cc: <linux-kernel@vger.kernel.org>, <masami.hiramatsu.pt@hitachi.com>,
<davem@davemloft.net>, <anil.s.keshavamurthy@intel.com>,
<ananth@in.ibm.com>, <radovan.lekanovic@sonymobile.com>,
<bjorn.davidsson@sonymobile.com>,
"linux-arch@vger.kernel.org" <linux-arch@vger.kernel.org>
Subject: Re: [PATCH 0/4] kprobes: split blacklist into common and arch
Date: Thu, 4 Apr 2013 17:02:22 +0530 [thread overview]
Message-ID: <515D64C6.9050903@synopsys.com> (raw)
In-Reply-To: <1364977734-32267-1-git-send-email-oskar.andero@sonymobile.com>
Hi Oskar,
On 04/03/2013 01:58 PM, oskar.andero@sonymobile.com wrote:
> Hi,
>
> This is a slight rework of the following patches which I posted earlier:
> [PATCH] Kprobes blacklist: Conditionally add x86-specific symbols
> [PATCH] delay blacklist symbol lookup until we actually need it
>
> This serie includes a patch that moves the architecture dependent black points
> to the arch/ directory and the x86 patch was modified to follow that patch.
>
> -Oskar
>
> Björn Davidsson (1):
> kprobes: move x86-specific blacklist symbols to arch directory
>
> Oskar Andero (2):
> kprobes: split blacklist into common and arch
> kprobes: replace printk with pr_-functions
>
> Toby Collett (1):
> kprobes: delay blacklist symbol lookup until we actually need it
>
> arch/arc/kernel/kprobes.c | 3 +
> arch/arm/kernel/kprobes.c | 2 +
> arch/avr32/kernel/kprobes.c | 3 +
> arch/ia64/kernel/kprobes.c | 3 +
> arch/mips/kernel/kprobes.c | 3 +
> arch/mn10300/kernel/kprobes.c | 2 +
> arch/powerpc/kernel/kprobes.c | 3 +
> arch/s390/kernel/kprobes.c | 3 +
> arch/sh/kernel/kprobes.c | 3 +
> arch/sparc/kernel/kprobes.c | 3 +
> arch/x86/kernel/kprobes/core.c | 7 ++
> kernel/kprobes.c | 149 ++++++++++++++++++++++++++---------------
> 12 files changed, 130 insertions(+), 54 deletions(-)
>
For any arch changes, however trivial they might be, you need to CC the respective
maintainers, or atleast post the patches on linux-arch so we know what's going on !
Thx,
-Vineet
next prev parent reply other threads:[~2013-04-04 11:32 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-03 8:28 [PATCH 0/4] kprobes: split blacklist into common and arch oskar.andero
2013-04-03 8:28 ` [PATCH 1/4] kprobes: delay blacklist symbol lookup until we actually need it oskar.andero
2013-04-04 6:44 ` Masami Hiramatsu
2013-04-04 7:57 ` Oskar Andero
2013-04-03 8:28 ` [PATCH 2/4] kprobes: split blacklist into common and arch oskar.andero
2013-04-04 6:17 ` Masami Hiramatsu
2013-04-04 11:49 ` Oskar Andero
2013-04-03 8:28 ` [PATCH 3/4] kprobes: move x86-specific blacklist symbols to arch directory oskar.andero
2013-04-03 8:28 ` [PATCH 4/4] kprobes: replace printk with pr_-functions oskar.andero
2013-04-04 6:19 ` Masami Hiramatsu
2013-04-04 11:32 ` Vineet Gupta [this message]
2013-04-04 11:32 ` [PATCH 0/4] kprobes: split blacklist into common and arch Vineet Gupta
2013-04-04 11:41 ` Oskar Andero
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=515D64C6.9050903@synopsys.com \
--to=vineet.gupta1@synopsys.com \
--cc=ananth@in.ibm.com \
--cc=anil.s.keshavamurthy@intel.com \
--cc=bjorn.davidsson@sonymobile.com \
--cc=davem@davemloft.net \
--cc=linux-arch@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=masami.hiramatsu.pt@hitachi.com \
--cc=oskar.andero@sonymobile.com \
--cc=radovan.lekanovic@sonymobile.com \
/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.