linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] tracing: Test the 'Do not trace this pid' case in create event
@ 2021-11-28 16:03 Steven Rostedt
  2021-11-28 17:54 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Steven Rostedt @ 2021-11-28 16:03 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: LKML, Ingo Molnar, Andrew Morton, Masami Hiramatsu, Tom Zanussi,
	Tzvetomir Stoyanov



Linus,

tracing: Fix the fix of pid filtering

- The setting of the pid filtering flag tested the "trace only this
  pid" case twice, and ignored the "trace everything but this pid" case.

  Note, the 5.15 kernel does things a little differently due to the new
  sparse pid mask introduced in 5.16, and as the bug was discovered
  running the 5.15 kernel, and the first fix was initially done for
  that kernel, that fix handled both cases (only pid and all but pid),
  but the forward port to 5.16 created this bug.

  This is because my presentation I'm writing is using the 5.15 kernel.


Please pull the latest trace-v5.16-rc2-3 tree, which can be found at:


  git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
trace-v5.16-rc2-3

Tag SHA1: 587a9f8832c97f3b0f94c2f85a3954204b560e23
Head SHA1: 27ff768fa21ca3286fcc87c3f38ac67d1a2cbe2d


Steven Rostedt (VMware) (1):
      tracing: Test the 'Do not trace this pid' case in create event

----
 kernel/trace/trace_events.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---------------------------
commit 27ff768fa21ca3286fcc87c3f38ac67d1a2cbe2d
Author: Steven Rostedt (VMware) <rostedt@goodmis.org>
Date:   Sat Nov 27 16:45:26 2021 -0500

    tracing: Test the 'Do not trace this pid' case in create event
    
    When creating a new event (via a module, kprobe, eprobe, etc), the
    descriptors that are created must add flags for pid filtering if an
    instance has pid filtering enabled, as the flags are used at the time the
    event is executed to know if pid filtering should be done or not.
    
    The "Only trace this pid" case was added, but a cut and paste error made
    that case checked twice, instead of checking the "Trace all but this pid"
    case.
    
    Link: https://lore.kernel.org/all/202111280401.qC0z99JB-lkp@intel.com/
    
    Fixes: 6cb206508b62 ("tracing: Check pid filtering when creating events")
    Reported-by: kernel test robot <lkp@intel.com>
    Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>

diff --git a/kernel/trace/trace_events.c b/kernel/trace/trace_events.c
index f8965fd50d3b..92be9cb1d7d4 100644
--- a/kernel/trace/trace_events.c
+++ b/kernel/trace/trace_events.c
@@ -2693,7 +2693,7 @@ trace_create_new_event(struct trace_event_call *call,
 					     lockdep_is_held(&event_mutex));
 
 	if (!trace_pid_list_first(pid_list, &first) ||
-	    !trace_pid_list_first(pid_list, &first))
+	    !trace_pid_list_first(no_pid_list, &first))
 		file->flags |= EVENT_FILE_FL_PID_FILTER;
 
 	file->event_call = call;

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [GIT PULL] tracing: Test the 'Do not trace this pid' case in create event
  2021-11-28 16:03 [GIT PULL] tracing: Test the 'Do not trace this pid' case in create event Steven Rostedt
@ 2021-11-28 17:54 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2021-11-28 17:54 UTC (permalink / raw)
  To: Steven Rostedt
  Cc: Linus Torvalds, LKML, Ingo Molnar, Andrew Morton,
	Masami Hiramatsu, Tom Zanussi, Tzvetomir Stoyanov

The pull request you sent on Sun, 28 Nov 2021 11:03:17 -0500:

> git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git trace-v5.16-rc2-3

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/f8132d62a2deedca1b7558028cfe72f93ad5ba2d

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-11-28 17:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-28 16:03 [GIT PULL] tracing: Test the 'Do not trace this pid' case in create event Steven Rostedt
2021-11-28 17:54 ` pr-tracker-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).