From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_SANE_2 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 00721ECE588 for ; Tue, 15 Oct 2019 13:04:03 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id D1D8621925 for ; Tue, 15 Oct 2019 13:04:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730208AbfJONEB (ORCPT ); Tue, 15 Oct 2019 09:04:01 -0400 Received: from mail.kernel.org ([198.145.29.99]:54994 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729752AbfJONEA (ORCPT ); Tue, 15 Oct 2019 09:04:00 -0400 Received: from gandalf.local.home (cpe-66-24-58-225.stny.res.rr.com [66.24.58.225]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 068862064B; Tue, 15 Oct 2019 13:03:59 +0000 (UTC) Date: Tue, 15 Oct 2019 09:03:58 -0400 From: Steven Rostedt To: Sami Tolvanen Cc: Kees Cook , Ingo Molnar , LKML Subject: Re: [PATCH] ftrace: fix function type mismatches Message-ID: <20191015090358.11ddda28@gandalf.local.home> In-Reply-To: <20191015090055.789a0aed@gandalf.local.home> References: <20191007214740.188547-1-samitolvanen@google.com> <201910101411.98362BA0@keescook> <20191011142650.36404713@gandalf.local.home> <20191015090055.789a0aed@gandalf.local.home> X-Mailer: Claws Mail 3.17.3 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 15 Oct 2019 09:00:55 -0400 Steven Rostedt wrote: > +++ b/include/asm-generic/vmlinux.lds.h > @@ -111,15 +111,22 @@ > > #ifdef CONFIG_FTRACE_MCOUNT_RECORD > #ifdef CC_USING_PATCHABLE_FUNCTION_ENTRY > +/* > + * Need to also make ftrace_graph_stub point to ftrace_stub > + * so that the same stub location may have different protocols > + * and not mess up with C verifiers. > + */ > diff --git a/kernel/trace/fgraph.c b/kernel/trace/fgraph.c > index 7950a0356042..fa3ce10d0405 100644 > --- a/kernel/trace/fgraph.c > +++ b/kernel/trace/fgraph.c > @@ -332,9 +332,14 @@ int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace) > return 0; > } > > +/* > + * Simply points to ftrace_stub, but with the proper protocol. > + * Defined by the linker script in linux/vmlinux.lds.h > + */ > +extern void ftrace_graph_stub(struct ftrace_graph_ret *); > + s/protocol/prototype/g Will update. -- Steve