예제 #1
0
static int __init register_perf_event_array_map(void)
{
    bpf_register_map_type(&perf_event_array_type);
    return 0;
}
예제 #2
0
파일: arraymap.c 프로젝트: robeat101/linux
static int __init register_cgroup_array_map(void)
{
    bpf_register_map_type(&cgroup_array_type);
    return 0;
}
예제 #3
0
static int __init register_prog_array_map(void)
{
    bpf_register_map_type(&prog_array_type);
    return 0;
}
예제 #4
0
파일: arraymap.c 프로젝트: robeat101/linux
static int __init register_array_map(void)
{
    bpf_register_map_type(&array_type);
    bpf_register_map_type(&percpu_array_type);
    return 0;
}
예제 #5
0
파일: arraymap.c 프로젝트: 383530895/linux
static int __init register_array_map(void)
{
	bpf_register_map_type(&tl);
	return 0;
}
예제 #6
0
파일: stackmap.c 프로젝트: 020gzh/linux
static int __init register_stack_map(void)
{
	bpf_register_map_type(&stack_map_type);
	return 0;
}
예제 #7
0
파일: bloomtab.c 프로젝트: tcolgate/test
static int __init register_bloom_map(void)
{
        printk("* In function %s *\n", __FUNCTION__);
	bpf_register_map_type(&bloom_type);
	return 0;
}
예제 #8
0
static int __init register_trie_map(void)
{
	bpf_register_map_type(&trie_type);
	return 0;
}