mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	bpf: Fix build in minimal configurations
Some kconfigs can have BPF enabled without a single valid program type. In such configurations the build will fail with: ./kernel/bpf/btf.c:3466:1: error: empty enum is invalid Fix it by adding unused value to the enum. Reported-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Alexei Starovoitov <ast@kernel.org> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Acked-by: Randy Dunlap <rdunlap@infradead.org> # build-tested Link: https://lore.kernel.org/bpf/20191128043508.2346723-1-ast@kernel.org
This commit is contained in:
		
							parent
							
								
									7c3977d1e8
								
							
						
					
					
						commit
						ce27709b81
					
				
					 1 changed files with 1 additions and 0 deletions
				
			
		| 
						 | 
					@ -3463,6 +3463,7 @@ enum {
 | 
				
			||||||
	__ctx_convert##_id,
 | 
						__ctx_convert##_id,
 | 
				
			||||||
#include <linux/bpf_types.h>
 | 
					#include <linux/bpf_types.h>
 | 
				
			||||||
#undef BPF_PROG_TYPE
 | 
					#undef BPF_PROG_TYPE
 | 
				
			||||||
 | 
						__ctx_convert_unused, /* to avoid empty enum in extreme .config */
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
static u8 bpf_ctx_convert_map[] = {
 | 
					static u8 bpf_ctx_convert_map[] = {
 | 
				
			||||||
#define BPF_PROG_TYPE(_id, _name, prog_ctx_type, kern_ctx_type) \
 | 
					#define BPF_PROG_TYPE(_id, _name, prog_ctx_type, kern_ctx_type) \
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue