1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef _LINUX_BUILDID_H 3 #define _LINUX_BUILDID_H 4 5 #include <linux/mm_types.h> 6 7 #define BUILD_ID_SIZE_MAX 20 8 9 int build_id_parse(struct vm_area_struct *vma, unsigned char *build_id, 10 __u32 *size); 11 12 #endif 13