diff options
author | 2020-01-31 17:42:33 -0800 | |
---|---|---|
committer | 2020-01-31 17:42:33 -0800 | |
commit | b19efcabb587e5470a423ef778905f47e5a47f1a (patch) | |
tree | 8863c2233ed8a30d55c4e4029a98c3d7faf359a8 /tools/perf/util/llvm-utils.c | |
parent | Input: pm8xxx-vib - fix handling of separate enable register (diff) | |
parent | Input: synaptics-rmi4 - switch to reduced reporting mode (diff) | |
download | linux-dev-b19efcabb587e5470a423ef778905f47e5a47f1a.tar.xz linux-dev-b19efcabb587e5470a423ef778905f47e5a47f1a.zip |
Merge branch 'next' into for-linus
Prepare input updates for 5.6 merge window.
Diffstat (limited to 'tools/perf/util/llvm-utils.c')
-rw-r--r-- | tools/perf/util/llvm-utils.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/perf/util/llvm-utils.c b/tools/perf/util/llvm-utils.c index 8b14e4a7f1dc..eae47c2509eb 100644 --- a/tools/perf/util/llvm-utils.c +++ b/tools/perf/util/llvm-utils.c @@ -418,10 +418,9 @@ void llvm__dump_obj(const char *path, void *obj_buf, size_t size) goto out; } - pr_info("LLVM: dumping %s\n", obj_path); + pr_debug("LLVM: dumping %s\n", obj_path); if (fwrite(obj_buf, size, 1, fp) != 1) - pr_warning("WARNING: failed to write to file '%s': %s, skip object dumping\n", - obj_path, strerror(errno)); + pr_debug("WARNING: failed to write to file '%s': %s, skip object dumping\n", obj_path, strerror(errno)); fclose(fp); out: free(obj_path); |