diff options
-rw-r--r-- | tools/perf/util/header.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/perf/util/header.c b/tools/perf/util/header.c index 2143a32638c2..3724707425ea 100644 --- a/tools/perf/util/header.c +++ b/tools/perf/util/header.c | |||
@@ -1895,6 +1895,21 @@ static int perf_file_section__process(struct perf_file_section *section, | |||
1895 | if (perf_header__read_build_ids(ph, fd, section->offset, section->size)) | 1895 | if (perf_header__read_build_ids(ph, fd, section->offset, section->size)) |
1896 | pr_debug("Failed to read buildids, continuing...\n"); | 1896 | pr_debug("Failed to read buildids, continuing...\n"); |
1897 | break; | 1897 | break; |
1898 | |||
1899 | case HEADER_HOSTNAME: | ||
1900 | case HEADER_OSRELEASE: | ||
1901 | case HEADER_VERSION: | ||
1902 | case HEADER_ARCH: | ||
1903 | case HEADER_NRCPUS: | ||
1904 | case HEADER_CPUDESC: | ||
1905 | case HEADER_CPUID: | ||
1906 | case HEADER_TOTAL_MEM: | ||
1907 | case HEADER_CMDLINE: | ||
1908 | case HEADER_EVENT_DESC: | ||
1909 | case HEADER_CPU_TOPOLOGY: | ||
1910 | case HEADER_NUMA_TOPOLOGY: | ||
1911 | break; | ||
1912 | |||
1898 | default: | 1913 | default: |
1899 | pr_debug("unknown feature %d, continuing...\n", feat); | 1914 | pr_debug("unknown feature %d, continuing...\n", feat); |
1900 | } | 1915 | } |