From mboxrd@z Thu Jan 1 00:00:00 1970 From: Oskar Andero Subject: [PATCH v2 0/4] kprobes: split blacklist into common and arch Date: Thu, 4 Apr 2013 14:51:25 +0200 Message-ID: <1365079889-21525-1-git-send-email-oskar.andero@sonymobile.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Return-path: Received: from seldrel01.sonyericsson.com ([212.209.106.2]:6456 "EHLO seldrel01.sonyericsson.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759905Ab3DDMwF convert rfc822-to-8bit (ORCPT ); Thu, 4 Apr 2013 08:52:05 -0400 Sender: linux-arch-owner@vger.kernel.org List-ID: To: linux-kernel@vger.kernel.org Cc: linux-arch@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, oskar.andero@sonymobile.com Hi, This is version 2 of the patch-set for splitting arch and common kprobe blackpoints. Changes since last version are: - Don't use double pointer for blacklist. - Add mutex around blacklist initialization code. - Use unlikely in if-statement around init_kprobe_blacklist() calls. I have also included linux-arch in Cc for this post. -Oskar Bj=C3=B6rn 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 | 152 ++++++++++++++++++++++++++-------= -------- 12 files changed, 133 insertions(+), 54 deletions(-) --=20 1.8.1.5