Unique core name - test update

Signed-off-by: Robert Baldyga <robert.baldyga@intel.com>
This commit is contained in:
Robert Baldyga
2019-07-25 15:27:14 +02:00
parent 4f0735b503
commit b73b2857dd
4 changed files with 11 additions and 9 deletions

View File

@@ -56,7 +56,7 @@ class Core:
self,
device: Volume,
try_add: bool,
name: str = "",
name: str = "core",
core_id: int = DEFAULT_ID,
seq_cutoff_threshold: int = DEFAULT_SEQ_CUTOFF_THRESHOLD,
):
@@ -74,7 +74,7 @@ class Core:
_size=len(self.device_name) + 1,
),
_core_id=self.core_id,
_name=name.encode("ascii") if name else None,
_name=cast(create_string_buffer(name.encode("ascii")), c_char_p),
_volume_type=self.device.type_id,
_try_add=try_add,
_seq_cutoff_threshold=seq_cutoff_threshold,

View File

@@ -27,7 +27,9 @@ class OcfErrorCode(IntEnum):
OCF_ERR_NO_FREE_RAM = auto()
OCF_ERR_START_CACHE_FAIL = auto()
OCF_ERR_CACHE_NOT_EXIST = auto()
OCF_ERR_CORE_NOT_EXIST = auto()
OCF_ERR_CACHE_EXIST = auto()
OCF_ERR_CORE_EXIST = auto()
OCF_ERR_TOO_MANY_CORES = auto()
OCF_ERR_CORE_NOT_AVAIL = auto()
OCF_ERR_NOT_OPEN_EXC = auto()