Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'trace-tools-v6.7' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace

Pull tracing tools updates from Steven Rostedt:
"RTLA:

- In rtla/utils.c, initialize the 'found' variable to avoid garbage
when a mount point is not found.

Verification:

- Remove duplicated imports on dot2k python script"

* tag 'trace-tools-v6.7' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace:
rtla: Fix uninitialized variable found
verification/dot2k: Delete duplicate imports

+1 -3
+1 -1
tools/tracing/rtla/src/utils.c
··· 538 538 { 539 539 char mount_point[MAX_PATH]; 540 540 char type[100]; 541 - int found; 541 + int found = 0; 542 542 FILE *fp; 543 543 544 544 fp = fopen("/proc/mounts", "r");
-2
tools/verification/dot2/dot2k
··· 15 15 import os 16 16 import platform 17 17 import sys 18 - import sys 19 - import argparse 20 18 21 19 parser = argparse.ArgumentParser(description='transform .dot file into kernel rv monitor') 22 20 parser.add_argument('-d', "--dot", dest="dot_file", required=True)