perf tools: Add missing headers needed by util/data.h
authorYang Jihong <yangjihong1@huawei.com>
Fri, 29 Apr 2022 09:05:39 +0000 (17:05 +0800)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Sat, 30 Apr 2022 15:30:16 +0000 (12:30 -0300)
commit4d27cf1d9de5becfa4d1efb2ea54dba1b9fc962a
treebde93403d6eecb4e6e99f449b2af1bff93e30ae7
parent3297e5547b32c1d95ccf5fa1a81902dc402ef876
perf tools: Add missing headers needed by util/data.h

'struct perf_data' in util/data.h uses the "u64" data type, which is
defined in "linux/types.h".

If we only include util/data.h, the following compilation error occurs:

  util/data.h:38:3: error: unknown type name ‘u64’
     u64    version;
     ^~~

Solution: include "linux/types.h." to add the needed type definitions.

Fixes: 258031c017c353e8 ("perf header: Add DIR_FORMAT feature to describe directory data")
Signed-off-by: Yang Jihong <yangjihong1@huawei.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: https://lore.kernel.org/r/20220429090539.212448-1-yangjihong1@huawei.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/data.h