mirror of
				https://git.proxmox.com/git/mirror_zfs.git
				synced 2025-10-26 18:05:04 +03:00 
			
		
		
		
	Verify parent_dev before calling udev_device_get_sysattr_value
Not all udev devices have parent devices. Calling udev_device_get_ functions yield an assertion error if called with a NULL pointer. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Alexander Motin <mav@FreeBSD.org> Signed-off-by: Sietse <sietse@wizdom.nu> Co-authored-by: Sietse <sietse@wizdom.nu> Closes #16705 Closes #16717
This commit is contained in:
		
							parent
							
								
									b16e096198
								
							
						
					
					
						commit
						c8aed9f973
					
				@ -139,7 +139,8 @@ dev_event_nvlist(struct udev_device *dev)
 | 
			
		||||
		 * is /dev/sda.
 | 
			
		||||
		 */
 | 
			
		||||
		struct udev_device *parent_dev = udev_device_get_parent(dev);
 | 
			
		||||
		if ((value = udev_device_get_sysattr_value(parent_dev, "size"))
 | 
			
		||||
		if (parent_dev != NULL &&
 | 
			
		||||
		    (value = udev_device_get_sysattr_value(parent_dev, "size"))
 | 
			
		||||
		    != NULL) {
 | 
			
		||||
			uint64_t numval = DEV_BSIZE;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user