On 1/21/15 5:34 PM, Victor Kamensky wrote:
diff --git a/tools/perf/util/dso.c b/tools/perf/util/dso.c
index 45be944..ca8d8d5 100644
--- a/tools/perf/util/dso.c
+++ b/tools/perf/util/dso.c
@@ -45,13 +45,13 @@ int dso__read_binary_type_filename(const struct dso *dso,
      case DSO_BINARY_TYPE__DEBUGLINK: {
          char *debuglink;

-        strncpy(filename, dso->long_name, size);
-        debuglink = filename + dso->long_name_len;
+        len = __symbol__join_symfs(filename, size, dso->long_name);
+        debuglink = filename + len;
          while (debuglink != filename && *debuglink != '/')
              debuglink--;
          if (*debuglink == '/')
              debuglink++;
-        ret = filename__read_debuglink(dso->long_name, debuglink,
+        ret = filename__read_debuglink(filename, debuglink,
                             size - (debuglink - filename));
          }
          break;


I do not see any reason this will not work. Essentially after filename__read_debuglink filename contains symfs + dso path + debuglink read from .gnu_debuglink section which is what is wanted.

Thanks for the example. I used it with both a symfs and non-symfs example and both times this change worked properly -- the correct hang.debug file is read.

Arnaldo?

David
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to