Commit ce3d90a8 authored by Linus Torvalds's avatar Linus Torvalds
Browse files
Pull tracing tool update from Steven Rostedt:

 - Make dot2c generate monitor's automata definition static

* tag 'trace-tools-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace:
  rv/dot2c: Make automaton definition static
parents 4f1e0c18 21a1994b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -111,7 +111,7 @@ class Dot2c(Automata):

    def format_aut_init_header(self):
        buff = []
        buff.append("struct %s %s = {" % (self.struct_automaton_def, self.var_automaton_def))
        buff.append("static struct %s %s = {" % (self.struct_automaton_def, self.var_automaton_def))
        return buff

    def __get_string_vector_per_line_content(self, buff):