https://github.com/torvalds/linux
Raw File
Tip revision: 009c9aa5be652675a06d5211e1640e02bbb1c33d authored by Linus Torvalds on 13 June 2021, 21:43:10 UTC
Linux 5.13-rc6
Tip revision: 009c9aa
buildid.h
/* 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

int build_id_parse(struct vm_area_struct *vma, unsigned char *build_id,
		   __u32 *size);

#endif
back to top