mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-03 18:20:25 +02:00 
			
		
		
		
	dpll: move xa_erase() call in to match dpll_pin_alloc() error path order
This is cosmetics. Move the call of xa_erase() in dpll_pin_put() so the order of cleanup calls matches the error path of dpll_pin_alloc(). Signed-off-by: Jiri Pirko <jiri@nvidia.com> Reviewed-by: Vadim Fedorenko <vadim.fedorenko@linux.dev> Link: https://lore.kernel.org/r/20240130155814.268622-1-jiri@resnulli.us Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
		
							parent
							
								
									5264ab612e
								
							
						
					
					
						commit
						e7f8df0e81
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -560,9 +560,9 @@ void dpll_pin_put(struct dpll_pin *pin)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	mutex_lock(&dpll_lock);
 | 
						mutex_lock(&dpll_lock);
 | 
				
			||||||
	if (refcount_dec_and_test(&pin->refcount)) {
 | 
						if (refcount_dec_and_test(&pin->refcount)) {
 | 
				
			||||||
 | 
							xa_erase(&dpll_pin_xa, pin->id);
 | 
				
			||||||
		xa_destroy(&pin->dpll_refs);
 | 
							xa_destroy(&pin->dpll_refs);
 | 
				
			||||||
		xa_destroy(&pin->parent_refs);
 | 
							xa_destroy(&pin->parent_refs);
 | 
				
			||||||
		xa_erase(&dpll_pin_xa, pin->id);
 | 
					 | 
				
			||||||
		dpll_pin_prop_free(&pin->prop);
 | 
							dpll_pin_prop_free(&pin->prop);
 | 
				
			||||||
		kfree(pin);
 | 
							kfree(pin);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue