forked from mirrors/linux
		
	bpfilter: fix a build err
gcc-7.3.0 report following err:
  HOSTCC  net/bpfilter/main.o
In file included from net/bpfilter/main.c:9:0:
./include/uapi/linux/bpf.h:12:10: fatal error: linux/bpf_common.h: No such file or directory
 #include <linux/bpf_common.h>
remove it by adding a include path.
Fixes: d2ba09c17a ("net: add skeleton of bpfilter kernel module")
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
			
			
This commit is contained in:
		
							parent
							
								
									2d68c0745a
								
							
						
					
					
						commit
						ae40832e53
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -5,7 +5,7 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
hostprogs-y := bpfilter_umh
 | 
					hostprogs-y := bpfilter_umh
 | 
				
			||||||
bpfilter_umh-objs := main.o
 | 
					bpfilter_umh-objs := main.o
 | 
				
			||||||
HOSTCFLAGS += -I. -Itools/include/
 | 
					HOSTCFLAGS += -I. -Itools/include/ -Itools/include/uapi
 | 
				
			||||||
ifeq ($(CONFIG_BPFILTER_UMH), y)
 | 
					ifeq ($(CONFIG_BPFILTER_UMH), y)
 | 
				
			||||||
# builtin bpfilter_umh should be compiled with -static
 | 
					# builtin bpfilter_umh should be compiled with -static
 | 
				
			||||||
# since rootfs isn't mounted at the time of __init
 | 
					# since rootfs isn't mounted at the time of __init
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue