mirror of
				https://git.proxmox.com/git/mirror_zfs.git
				synced 2025-10-26 18:05:04 +03:00 
			
		
		
		
	Silence compile-time warning on unused variable
ASSERT3U() could be NOP which then leads to having unused pointer *spa. metaslab.c: In function 'metaslab_condense': metaslab.c:2075:9: warning: unused variable 'spa' [-Wunused-variable] spa_t *spa = msp->ms_group->mg_vd->vdev_spa; Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: George Melikov <mail@gmelikov.ru> Signed-off-by: Tomohiro Kusumi <kusumi.tomohiro@osnexus.com> Closes #7489
This commit is contained in:
		
							parent
							
								
									85ce3f4fd1
								
							
						
					
					
						commit
						d6133fc500
					
				| @ -2072,12 +2072,11 @@ metaslab_should_condense(metaslab_t *msp) | ||||
| static void | ||||
| metaslab_condense(metaslab_t *msp, uint64_t txg, dmu_tx_t *tx) | ||||
| { | ||||
| 	spa_t *spa = msp->ms_group->mg_vd->vdev_spa; | ||||
| 	range_tree_t *condense_tree; | ||||
| 	space_map_t *sm = msp->ms_sm; | ||||
| 
 | ||||
| 	ASSERT(MUTEX_HELD(&msp->ms_lock)); | ||||
| 	ASSERT3U(spa_sync_pass(spa), ==, 1); | ||||
| 	ASSERT3U(spa_sync_pass(msp->ms_group->mg_vd->vdev_spa), ==, 1); | ||||
| 	ASSERT(msp->ms_loaded); | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Tomohiro Kusumi
						Tomohiro Kusumi