Merge pull request #696 from robertbaldyga/remove-spaces-from-vol-names
Remove space from names of internal volumes
This commit is contained in:
commit
bbaffd96a3
@ -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 = {
|
||||||
|
@ -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 = {
|
||||||
|
Loading…
Reference in New Issue
Block a user