mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	ext4: standardize error message in ext4_protect_reserved_inode()
We use __ext4_error() when ext4_protect_reserved_inode() finds filesystem corruption. However EXT4_ERROR_INODE_ERR() is perfectly capable of reporting all the needed information. So just use that. Signed-off-by: Jan Kara <jack@suse.cz> Reviewed-by: Andreas Dilger <adilger@dilger.ca> Link: https://lore.kernel.org/r/20201127113405.26867-4-jack@suse.cz Signed-off-by: Theodore Ts'o <tytso@mit.edu>
This commit is contained in:
		
							parent
							
								
									81414b4dd4
								
							
						
					
					
						commit
						93c20bc3ea
					
				
					 1 changed files with 4 additions and 6 deletions
				
			
		| 
						 | 
				
			
			@ -176,12 +176,10 @@ static int ext4_protect_reserved_inode(struct super_block *sb,
 | 
			
		|||
			err = add_system_zone(system_blks, map.m_pblk, n, ino);
 | 
			
		||||
			if (err < 0) {
 | 
			
		||||
				if (err == -EFSCORRUPTED) {
 | 
			
		||||
					__ext4_error(sb, __func__, __LINE__,
 | 
			
		||||
						     -err, map.m_pblk,
 | 
			
		||||
						     "blocks %llu-%llu from inode %u overlap system zone",
 | 
			
		||||
						     map.m_pblk,
 | 
			
		||||
						     map.m_pblk + map.m_len - 1,
 | 
			
		||||
						     ino);
 | 
			
		||||
					EXT4_ERROR_INODE_ERR(inode, -err,
 | 
			
		||||
						"blocks %llu-%llu from inode overlap system zone",
 | 
			
		||||
						map.m_pblk,
 | 
			
		||||
						map.m_pblk + map.m_len - 1);
 | 
			
		||||
				}
 | 
			
		||||
				break;
 | 
			
		||||
			}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue