mirror of
				https://git.proxmox.com/git/mirror_zfs.git
				synced 2025-10-26 18:05:04 +03:00 
			
		
		
		
	Remove single parent assertion from zio_nowait().
We only need to know if ZIO has any parent there. We do not care if it has more than one, but use of zio_unique_parent() == NULL asserts that. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Alexander Motin <mav@FreeBSD.org> Sponsored by: iXsystems, Inc. Closes #14823
This commit is contained in:
		
							parent
							
								
									b2ede77bf9
								
							
						
					
					
						commit
						a727848e05
					
				| @ -2287,7 +2287,7 @@ zio_nowait(zio_t *zio) | |||||||
| 	ASSERT3P(zio->io_executor, ==, NULL); | 	ASSERT3P(zio->io_executor, ==, NULL); | ||||||
| 
 | 
 | ||||||
| 	if (zio->io_child_type == ZIO_CHILD_LOGICAL && | 	if (zio->io_child_type == ZIO_CHILD_LOGICAL && | ||||||
| 	    zio_unique_parent(zio) == NULL) { | 	    list_is_empty(&zio->io_parent_list)) { | ||||||
| 		zio_t *pio; | 		zio_t *pio; | ||||||
| 
 | 
 | ||||||
| 		/*
 | 		/*
 | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Alexander Motin
						Alexander Motin