mirror of
				https://git.proxmox.com/git/mirror_zfs
				synced 2025-11-04 12:11:35 +00:00 
			
		
		
		
	This first phase brings over the ZFS SLM module, zfs_mod.c, to handle auto operations in response to disk events. Disk event monitoring is provided from libudev and generates the expected payload schema for zfs_mod. This work leverages the recently added devid and phys_path strings in the vdev label. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Don Brady <don.brady@intel.com> Signed-off-by: Tony Hutter <hutter2@llnl.gov> Closes #4673
		
			
				
	
	
		
			20 lines
		
	
	
		
			408 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			408 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
COMMON_H = \
 | 
						|
	$(top_srcdir)/include/sys/sysevent/eventdefs.h \
 | 
						|
	$(top_srcdir)/include/sys/sysevent/dev.h
 | 
						|
 | 
						|
KERNEL_H =
 | 
						|
 | 
						|
USER_H =
 | 
						|
 | 
						|
EXTRA_DIST = $(COMMON_H) $(KERNEL_H) $(USER_H)
 | 
						|
 | 
						|
if CONFIG_USER
 | 
						|
libzfsdir = $(includedir)/libzfs/sys/sysevent
 | 
						|
libzfs_HEADERS = $(COMMON_H) $(USER_H)
 | 
						|
endif
 | 
						|
 | 
						|
if CONFIG_KERNEL
 | 
						|
kerneldir = @prefix@/src/zfs-$(VERSION)/include/sys/sysevent
 | 
						|
kernel_HEADERS = $(COMMON_H) $(KERNEL_H)
 | 
						|
endif
 |