It is undesirable for the bonding driver to be poking into higher level protocols, and notifiers provide a way to avoid that. This does mean removing the ability to configure reptitition of gratuitous ARPs and unsolicited NAs. Signed-off-by: Ben Hutchings <bhutchings@solarflare.com> Signed-off-by: David S. Miller <davem@davemloft.net>
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			230 B
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			230 B
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# Makefile for the Ethernet Bonding driver
 | 
						|
#
 | 
						|
 | 
						|
obj-$(CONFIG_BONDING) += bonding.o
 | 
						|
 | 
						|
bonding-objs := bond_main.o bond_3ad.o bond_alb.o bond_sysfs.o bond_debugfs.o
 | 
						|
 | 
						|
proc-$(CONFIG_PROC_FS) += bond_procfs.o
 | 
						|
bonding-objs += $(proc-y)
 | 
						|
 |