Commit fd912e49 authored by Linus Torvalds's avatar Linus Torvalds

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
parents 2a80532c 696444a5
......@@ -538,7 +538,7 @@ static const int find_mount(const char *fs, char *mp, int sizeof_mp)
{
char mount_point[MAX_PATH];
char type[100];
int found;
int found = 0;
FILE *fp;
fp = fopen("/proc/mounts", "r");
......
......@@ -15,8 +15,6 @@ if __name__ == '__main__':
import os
import platform
import sys
import sys
import argparse
parser = argparse.ArgumentParser(description='transform .dot file into kernel rv monitor')
parser.add_argument('-d', "--dot", dest="dot_file", required=True)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment