blob: d8bdab0280bae4d0b88a7d4bcfd2553127854d2a [file] [log] [blame]
Martin KaFai Laueb3f5952018-04-18 15:55:58 -07001/* SPDX-License-Identifier: GPL-2.0 */
2/* Copyright (c) 2018 Facebook */
3
4#ifndef _LINUX_BTF_H
5#define _LINUX_BTF_H 1
6
7#include <linux/types.h>
8
9struct btf;
10struct btf_type;
11
12/* Figure out the size of a type_id. If type_id is a modifier
13 * (e.g. const), it will be resolved to find out the type with size.
14 *
15 * For example:
16 * In describing "const void *", type_id is "const" and "const"
17 * refers to "void *". The return type will be "void *".
18 *
19 * If type_id is a simple "int", then return type will be "int".
20 *
21 * @btf: struct btf object
22 * @type_id: Find out the size of type_id. The type_id of the return
23 * type is set to *type_id.
24 * @ret_size: It can be NULL. If not NULL, the size of the return
25 * type is set to *ret_size.
26 * Return: The btf_type (resolved to another type with size info if needed).
27 * NULL is returned if type_id itself does not have size info
28 * (e.g. void) or it cannot be resolved to another type that
29 * has size info.
30 * *type_id and *ret_size will not be changed in the
31 * NULL return case.
32 */
33const struct btf_type *btf_type_id_size(const struct btf *btf,
34 u32 *type_id,
35 u32 *ret_size);
Martin KaFai Laub00b8da2018-04-18 15:56:00 -070036void btf_type_seq_show(const struct btf *btf, u32 type_id, void *obj,
37 struct seq_file *m);
Martin KaFai Laueb3f5952018-04-18 15:55:58 -070038
39#endif