Skip to content

Commit

Permalink
Fix: tracing: use 'E' instead of 'X' for unsigned module tain flag
Browse files Browse the repository at this point in the history
In the following commit:

commit 57673c2
Author: Rusty Russell <[email protected]>
Date:   Mon Mar 31 14:39:57 2014 +1030

    Use 'E' instead of 'X' for unsigned module taint flag.

One site has been forgotten in trace events module.h.

Signed-off-by: Mathieu Desnoyers <[email protected]>
CC: Steven Rostedt <[email protected]>
CC: Rusty Russell <[email protected]>
Signed-off-by: Rusty Russell <[email protected]>
  • Loading branch information
compudj authored and rustyrussell committed Apr 23, 2014
1 parent 4d0fa8a commit 132e9a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/trace/events/module.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ struct module;
{ (1UL << TAINT_OOT_MODULE), "O" }, \
{ (1UL << TAINT_FORCED_MODULE), "F" }, \
{ (1UL << TAINT_CRAP), "C" }, \
{ (1UL << TAINT_UNSIGNED_MODULE), "X" })
{ (1UL << TAINT_UNSIGNED_MODULE), "E" })

TRACE_EVENT(module_load,

Expand Down

0 comments on commit 132e9a6

Please sign in to comment.