瀏覽代碼

dm space map metadata: limit errors in sm_metadata_new_block

The "unable to allocate new metadata block" error can be a particularly
verbose error if there is a systemic issue with the metadata device.

Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Acked-by: Joe Thornber <ejt@redhat.com>
Mike Snitzer 11 年之前
父節點
當前提交
c46985e211
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      drivers/md/persistent-data/dm-space-map-metadata.c

+ 2 - 2
drivers/md/persistent-data/dm-space-map-metadata.c

@@ -385,13 +385,13 @@ static int sm_metadata_new_block(struct dm_space_map *sm, dm_block_t *b)
 
 
 	int r = sm_metadata_new_block_(sm, b);
 	int r = sm_metadata_new_block_(sm, b);
 	if (r) {
 	if (r) {
-		DMERR("unable to allocate new metadata block");
+		DMERR_LIMIT("unable to allocate new metadata block");
 		return r;
 		return r;
 	}
 	}
 
 
 	r = sm_metadata_get_nr_free(sm, &count);
 	r = sm_metadata_get_nr_free(sm, &count);
 	if (r) {
 	if (r) {
-		DMERR("couldn't get free block count");
+		DMERR_LIMIT("couldn't get free block count");
 		return r;
 		return r;
 	}
 	}