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 162531B59D; Tue, 30 Jan 2024 00:35:40 +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=1706574941; cv=none; b=eZ7stavw9S/BZRjX3cWCHgM/gW3MWu3Z9EUBkhAXR/dbQKb1q3Wi+qDocUVdnhJlRtWjONrWH8uJYdgAN9j6DE2oRFBOdNsBrpt0xtjyXrfaIUJUsh7CzCUTZjyczLr76E0tLQj8I8pP/AmhcLZbXGARj1ivXHGlmmtE1o7qytg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1706574941; c=relaxed/simple; bh=JS9b4dljgl7LjUP6KCTkMBXE0p22YQkNx+HEl5sDoVQ=; h=Date:From:To:Cc:Subject:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=nCncRp+lCNiZ9NhfZWY0Zq7bcx0KcI8dC9q3W2cFfzKEPahIMUyYgSdHAbn7pL0DOvboPGo0+s2ywYHs46zv1W2sMQI5i7ETEjiSuveS98aEPB5m7iFHJ0uWyt86Gi1i4Z3uFzbjVnDK6iPleRCdRvzKWetSXzFxUnMnE7RCxeY= 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 520E3C433C7; Tue, 30 Jan 2024 00:35:39 +0000 (UTC) Date: Mon, 29 Jan 2024 19:35:49 -0500 From: Steven Rostedt To: Linus Torvalds Cc: kernel test robot , oe-lkp@lists.linux.dev, lkp@intel.com, linux-kernel@vger.kernel.org, Masami Hiramatsu , Mark Rutland , Mathieu Desnoyers , Christian Brauner , Al Viro , Ajay Kaher , linux-trace-kernel@vger.kernel.org Subject: Re: [linus:master] [eventfs] 852e46e239: BUG:unable_to_handle_page_fault_for_address Message-ID: <20240129193549.265f32c8@gandalf.local.home> In-Reply-To: References: <202401291043.e62e89dc-oliver.sang@intel.com> <20240129120125.605e97af@gandalf.local.home> <20240129152600.7587d1aa@gandalf.local.home> <20240129172200.1725f01b@gandalf.local.home> <20240129174950.5a17a86c@gandalf.local.home> X-Mailer: Claws Mail 3.19.1 (GTK+ 2.24.33; x86_64-pc-linux-gnu) Precedence: bulk X-Mailing-List: linux-trace-kernel@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 Mon, 29 Jan 2024 16:01:25 -0800 Linus Torvalds wrote: > I'll go see what's up with the "create it again" case - I don't > immediately see what's wrong. Interesting. I added a printk in the lookup, and just did this: # cd /sys/kernel/tracing # ls events/kprobes And it showed that it tried to see if "kprobes" existed in the lookup. Which it did not because I haven't created any kprobes yet. Then I did: # echo 'p:sched schedule' >> /sys/kernel/tracing/kprobe_events # ls -l events/kprobes/ ls: cannot access 'events/kprobes/': No such file or directory Where it should now exist but doesn't. But the lookup code never triggered. If the lookup fails, does it cache the result? -- Steve