Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753542AbZJYPSi (ORCPT ); Sun, 25 Oct 2009 11:18:38 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753481AbZJYPSg (ORCPT ); Sun, 25 Oct 2009 11:18:36 -0400 Received: from mail-px0-f179.google.com ([209.85.216.179]:52969 "EHLO mail-px0-f179.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752357AbZJYPSU (ORCPT ); Sun, 25 Oct 2009 11:18:20 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=J117MHTf4gfMZtfKbE+1XF8l2n87k9LiM7aV/lS3VVunExWTTFHfMiMwspEppCrl3o UN1TZGbvsYHNCseovVd6c0flqCVGWzLMAp3qy2M52S/QssckQKaD8106JPh7eoxTQFF5 P9tFSls/vp7spNw+9vU99LoZTDD/gqkOGDG/8= From: Wu Zhangjin To: linux-mips@linux-mips.org, linux-kernel@vger.kernel.org Cc: Wu Zhangjin , rostedt@goodmis.org, Thomas Gleixner , Ralf Baechle , Nicholas Mc Guire , Richard Sandiford , David Daney , Adam Nemet , Patrik Kluba Subject: [PATCH -v5 09/11] tracing: add IRQENTRY_EXIT for MIPS Date: Sun, 25 Oct 2009 23:17:00 +0800 Message-Id: <6ad82af0c2ec8ef7b9f536b0a97bf65d385c3945.1256483735.git.wuzhangjin@gmail.com> X-Mailer: git-send-email 1.6.2.1 In-Reply-To: <49b3c441a57f4db423732f81432a3450ccb3240e.1256483735.git.wuzhangjin@gmail.com> References: <028867b99ec532b84963a35e7d552becc783cafc.1256483735.git.wuzhangjin@gmail.com> <2f73eae542c47ac5bbb9f7280e6c0271d193e90d.1256483735.git.wuzhangjin@gmail.com> <3e0c2d7d8b8f196a8153beb41ea7f3cbf42b3d84.1256483735.git.wuzhangjin@gmail.com> <54c417629e91f40b2bbb4e08cda2a4e6527824c0.1256483735.git.wuzhangjin@gmail.com> <29bccff04932e993ecd9f516d8b6dcf84e2ceecf.1256483735.git.wuzhangjin@gmail.com> <72f2270f7b6e01ca7a4cdf4ac8c21778e5d9652f.1256483735.git.wuzhangjin@gmail.com> <6140dd8f4e1783e5ac30977cf008bb98e4698322.1256483735.git.wuzhangjin@gmail.com> <49b3c441a57f4db423732f81432a3450ccb3240e.1256483735.git.wuzhangjin@gmail.com> In-Reply-To: References: Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1246 Lines: 35 This patch fix the following error with FUNCTION_GRAPH_TRACER=y: kernel/built-in.o: In function `print_graph_irq': trace_functions_graph.c:(.text+0x6dba0): undefined reference to `__irqentry_text_start' trace_functions_graph.c:(.text+0x6dba8): undefined reference to `__irqentry_text_start' trace_functions_graph.c:(.text+0x6dbd0): undefined reference to `__irqentry_text_end' trace_functions_graph.c:(.text+0x6dbd4): undefined reference to `__irqentry_text_end' (This patch is need to support function graph tracer of MIPS) Signed-off-by: Wu Zhangjin --- arch/mips/kernel/vmlinux.lds.S | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/mips/kernel/vmlinux.lds.S b/arch/mips/kernel/vmlinux.lds.S index 162b299..f25df73 100644 --- a/arch/mips/kernel/vmlinux.lds.S +++ b/arch/mips/kernel/vmlinux.lds.S @@ -46,6 +46,7 @@ SECTIONS SCHED_TEXT LOCK_TEXT KPROBES_TEXT + IRQENTRY_TEXT *(.text.*) *(.fixup) *(.gnu.warning) -- 1.6.2.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/