diff options
Diffstat (limited to 'drivers/md/persistent-data/dm-btree-spine.c')
| -rw-r--r-- | drivers/md/persistent-data/dm-btree-spine.c | 20 | 
1 files changed, 10 insertions, 10 deletions
diff --git a/drivers/md/persistent-data/dm-btree-spine.c b/drivers/md/persistent-data/dm-btree-spine.c index d9a7912ee8e..f199a0c4ed0 100644 --- a/drivers/md/persistent-data/dm-btree-spine.c +++ b/drivers/md/persistent-data/dm-btree-spine.c @@ -23,7 +23,7 @@ static void node_prepare_for_write(struct dm_block_validator *v,  				   struct dm_block *b,  				   size_t block_size)  { -	struct node *n = dm_block_data(b); +	struct btree_node *n = dm_block_data(b);  	struct node_header *h = &n->header;  	h->blocknr = cpu_to_le64(dm_block_location(b)); @@ -38,15 +38,15 @@ static int node_check(struct dm_block_validator *v,  		      struct dm_block *b,  		      size_t block_size)  { -	struct node *n = dm_block_data(b); +	struct btree_node *n = dm_block_data(b);  	struct node_header *h = &n->header;  	size_t value_size;  	__le32 csum_disk;  	uint32_t flags;  	if (dm_block_location(b) != le64_to_cpu(h->blocknr)) { -		DMERR("node_check failed blocknr %llu wanted %llu", -		      le64_to_cpu(h->blocknr), dm_block_location(b)); +		DMERR_LIMIT("node_check failed: blocknr %llu != wanted %llu", +			    le64_to_cpu(h->blocknr), dm_block_location(b));  		return -ENOTBLK;  	} @@ -54,8 +54,8 @@ static int node_check(struct dm_block_validator *v,  					       block_size - sizeof(__le32),  					       BTREE_CSUM_XOR));  	if (csum_disk != h->csum) { -		DMERR("node_check failed csum %u wanted %u", -		      le32_to_cpu(csum_disk), le32_to_cpu(h->csum)); +		DMERR_LIMIT("node_check failed: csum %u != wanted %u", +			    le32_to_cpu(csum_disk), le32_to_cpu(h->csum));  		return -EILSEQ;  	} @@ -63,12 +63,12 @@ static int node_check(struct dm_block_validator *v,  	if (sizeof(struct node_header) +  	    (sizeof(__le64) + value_size) * le32_to_cpu(h->max_entries) > block_size) { -		DMERR("node_check failed: max_entries too large"); +		DMERR_LIMIT("node_check failed: max_entries too large");  		return -EILSEQ;  	}  	if (le32_to_cpu(h->nr_entries) > le32_to_cpu(h->max_entries)) { -		DMERR("node_check failed, too many entries"); +		DMERR_LIMIT("node_check failed: too many entries");  		return -EILSEQ;  	} @@ -77,7 +77,7 @@ static int node_check(struct dm_block_validator *v,  	 */  	flags = le32_to_cpu(h->flags);  	if (!(flags & INTERNAL_NODE) && !(flags & LEAF_NODE)) { -		DMERR("node_check failed, node is neither INTERNAL or LEAF"); +		DMERR_LIMIT("node_check failed: node is neither INTERNAL or LEAF");  		return -EILSEQ;  	} @@ -164,7 +164,7 @@ int ro_step(struct ro_spine *s, dm_block_t new_child)  	return r;  } -struct node *ro_node(struct ro_spine *s) +struct btree_node *ro_node(struct ro_spine *s)  {  	struct dm_block *block;  |