Merge pull request #696 from robertbaldyga/remove-spaces-from-vol-names

Remove space from names of internal volumes
This commit is contained in:
Robert Baldyga 2022-04-06 14:00:21 +02:00 committed by GitHub
commit bbaffd96a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -512,7 +512,7 @@ static ctx_data_t *ocf_cache_io_get_data(struct ocf_io *io)
} }
const struct ocf_volume_properties ocf_cache_volume_properties = { const struct ocf_volume_properties ocf_cache_volume_properties = {
.name = "OCF Cache", .name = "OCF_Cache",
.io_priv_size = sizeof(struct ocf_cache_volume_io_priv), .io_priv_size = sizeof(struct ocf_cache_volume_io_priv),
.volume_priv_size = sizeof(struct ocf_cache_volume), .volume_priv_size = sizeof(struct ocf_cache_volume),
.caps = { .caps = {

View File

@ -479,7 +479,7 @@ static ctx_data_t *ocf_core_io_get_data(struct ocf_io *io)
} }
const struct ocf_volume_properties ocf_core_volume_properties = { const struct ocf_volume_properties ocf_core_volume_properties = {
.name = "OCF Core", .name = "OCF_Core",
.io_priv_size = 0, /* Not used - custom allocator */ .io_priv_size = 0, /* Not used - custom allocator */
.volume_priv_size = sizeof(struct ocf_core_volume), .volume_priv_size = sizeof(struct ocf_core_volume),
.caps = { .caps = {