2021-01-14 16:40:42 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef _LINUX_BUILDID_H
|
|
|
|
#define _LINUX_BUILDID_H
|
|
|
|
|
|
|
|
#include <linux/mm_types.h>
|
|
|
|
|
|
|
|
#define BUILD_ID_SIZE_MAX 20
|
|
|
|
|
2021-01-14 16:40:43 +03:00
|
|
|
int build_id_parse(struct vm_area_struct *vma, unsigned char *build_id,
|
|
|
|
__u32 *size);
|
2021-01-14 16:40:42 +03:00
|
|
|
|
|
|
|
#endif
|