diff options
Diffstat (limited to 'fs/btrfs/print-tree.c')
| -rw-r--r-- | fs/btrfs/print-tree.c | 12 | 
1 files changed, 7 insertions, 5 deletions
| diff --git a/fs/btrfs/print-tree.c b/fs/btrfs/print-tree.c index 61f44e78e3c9..80567c11ec12 100644 --- a/fs/btrfs/print-tree.c +++ b/fs/btrfs/print-tree.c @@ -95,9 +95,10 @@ static void print_extent_item(struct extent_buffer *eb, int slot, int type)  			 * offset is supposed to be a tree block which  			 * must be aligned to nodesize.  			 */ -			if (!IS_ALIGNED(offset, eb->fs_info->nodesize)) -				pr_info("\t\t\t(parent %llu is NOT ALIGNED to nodesize %llu)\n", -					offset, (unsigned long long)eb->fs_info->nodesize); +			if (!IS_ALIGNED(offset, eb->fs_info->sectorsize)) +				pr_info( +			"\t\t\t(parent %llu not aligned to sectorsize %u)\n", +					offset, eb->fs_info->sectorsize);  			break;  		case BTRFS_EXTENT_DATA_REF_KEY:  			dref = (struct btrfs_extent_data_ref *)(&iref->offset); @@ -112,8 +113,9 @@ static void print_extent_item(struct extent_buffer *eb, int slot, int type)  			 * must be aligned to nodesize.  			 */  			if (!IS_ALIGNED(offset, eb->fs_info->nodesize)) -				pr_info("\t\t\t(parent %llu is NOT ALIGNED to nodesize %llu)\n", -				     offset, (unsigned long long)eb->fs_info->nodesize); +				pr_info( +			"\t\t\t(parent %llu not aligned to sectorsize %u)\n", +				     offset, eb->fs_info->sectorsize);  			break;  		default:  			pr_cont("(extent %llu has INVALID ref type %d)\n", |