mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	debugfs: change parameter check in debugfs_remove() functions
The dentry parameter in debugfs_remove() and debugfs_remove_recursive() is checked being a NULL pointer. To make cleanup by callers easier this check is extended using the IS_ERR_OR_NULL macro instead because the debugfs_create_... functions can return a ERR_PTR() value. Signed-off-by: Arend van Spriel <arend@broadcom.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
		
							parent
							
								
									0998d06310
								
							
						
					
					
						commit
						a59d6293e5
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -498,7 +498,7 @@ void debugfs_remove(struct dentry *dentry)
 | 
			
		|||
	struct dentry *parent;
 | 
			
		||||
	int ret;
 | 
			
		||||
 | 
			
		||||
	if (!dentry)
 | 
			
		||||
	if (IS_ERR_OR_NULL(dentry))
 | 
			
		||||
		return;
 | 
			
		||||
 | 
			
		||||
	parent = dentry->d_parent;
 | 
			
		||||
| 
						 | 
				
			
			@ -530,7 +530,7 @@ void debugfs_remove_recursive(struct dentry *dentry)
 | 
			
		|||
	struct dentry *child;
 | 
			
		||||
	struct dentry *parent;
 | 
			
		||||
 | 
			
		||||
	if (!dentry)
 | 
			
		||||
	if (IS_ERR_OR_NULL(dentry))
 | 
			
		||||
		return;
 | 
			
		||||
 | 
			
		||||
	parent = dentry->d_parent;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue