Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.13-rc3 12 lines 248 B view raw
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 9int build_id_parse(struct vm_area_struct *vma, unsigned char *build_id, 10 __u32 *size); 11 12#endif