From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 5E44D1C3F34; Thu, 10 Oct 2024 15:58:37 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728575917; cv=none; b=UPJgtVmCop9HK4Nd/yHtg4DxJD89Gz86X06s4gLrG4O9pUNWRrtFnDprX1EinE83b/nCLOEOJ153GhaxDdDbAaRGAulTAniBk9n0ef8m5HCxKYJjfRPMWx1w01yg2oC9xaU/ILua8GfuzV5jcRZZl09pg0eCWXyQVBzN/vdJaMk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728575917; c=relaxed/simple; bh=nO7VrT+8nacqrv17+CKsB4nctbzE1rUmTbt/t6YSbkM=; h=Date:From:To:Cc:Subject:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=KsCRcvJHuU/6VHsWg9qE2EgBKlWvO4WAXBJn46xRNxwQU59rBz6hu50ZfsCThTyiQQflwgrENKGn5N0WC2ziQjyWqsJMcelorw5d8kB69lm+ZaZAieZ67ZYTRoVUisdhU8buKSsI+nX5gunt52YilhsRa517qh89nShesAuHsUU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 Received: by smtp.kernel.org (Postfix) with ESMTPSA id 57ABEC4CED1; Thu, 10 Oct 2024 15:58:36 +0000 (UTC) Date: Thu, 10 Oct 2024 11:58:43 -0400 From: Steven Rostedt To: Donglin Peng Cc: Stephen Rothwell , Masami Hiramatsu , Zheng Yejian , Donglin Peng , Linux Kernel Mailing List , Linux Next Mailing List Subject: Re: linux-next: build failure after merge of the ftrace tree Message-ID: <20241010115843.02b6c696@gandalf.local.home> In-Reply-To: References: <20241010134649.43ed357c@canb.auug.org.au> <20241010092755.21874a9f@gandalf.local.home> X-Mailer: Claws Mail 3.20.0git84 (GTK+ 2.24.33; x86_64-pc-linux-gnu) Precedence: bulk X-Mailing-List: linux-next@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Thu, 10 Oct 2024 22:08:04 +0800 Donglin Peng wrote: > > Hmm, strange. This went through my tests that also does an allmodconfig build. > > > > I'll go investigate. Thanks for the report. > > I suspect that the configuration CONFIG_FUNCTION_GRAPH_RETADDR may be > disabled during testing. If this configuration is indeed disabled, > the function > __trace_graph_retaddr_entry will not invoke call_filter_check_discard. I see what happened. The removal of the call_filter_check_discard() happened in my "trace" topic branch. This was added to my "ftrace" topic branch. The two topic branches build fine separately, but merging them together breaks the build. Luckily, that function is unused and I can apply your fix for it in the "ftrace" topic branch. It's not really a fix, because your commit still works in that topic branch, but that function is not needed and can safely be removed. I'll apply your fix, test it, and hopefully if nothing goes wrong, will push it up to linux-next by tonight. -- Steve