diff options
Diffstat (limited to 'fs/ocfs2/localalloc.c')
| -rw-r--r-- | fs/ocfs2/localalloc.c | 9 | 
1 files changed, 4 insertions, 5 deletions
diff --git a/fs/ocfs2/localalloc.c b/fs/ocfs2/localalloc.c index fe0d1f9571bb..7642b6712c39 100644 --- a/fs/ocfs2/localalloc.c +++ b/fs/ocfs2/localalloc.c @@ -663,11 +663,10 @@ int ocfs2_reserve_local_alloc_bits(struct ocfs2_super *osb,  #ifdef CONFIG_OCFS2_DEBUG_FS  	if (le32_to_cpu(alloc->id1.bitmap1.i_used) !=  	    ocfs2_local_alloc_count_bits(alloc)) { -		ocfs2_error(osb->sb, "local alloc inode %llu says it has %u used bits, but a count shows %u\n", -			    (unsigned long long)le64_to_cpu(alloc->i_blkno), -			    le32_to_cpu(alloc->id1.bitmap1.i_used), -			    ocfs2_local_alloc_count_bits(alloc)); -		status = -EIO; +		status = ocfs2_error(osb->sb, "local alloc inode %llu says it has %u used bits, but a count shows %u\n", +				(unsigned long long)le64_to_cpu(alloc->i_blkno), +				le32_to_cpu(alloc->id1.bitmap1.i_used), +				ocfs2_local_alloc_count_bits(alloc));  		goto bail;  	}  #endif  |