Extract cache.flush() method from cache.stop()
Signed-off-by: Daniel Madej <daniel.madej@intel.com>
This commit is contained in:
parent
659a587d04
commit
1fa52e84a8
@ -386,17 +386,10 @@ class Cache:
|
|||||||
return self.io_queues[0]
|
return self.io_queues[0]
|
||||||
|
|
||||||
def stop(self, flush: bool = True):
|
def stop(self, flush: bool = True):
|
||||||
self.get_and_write_lock()
|
|
||||||
|
|
||||||
if flush:
|
if flush:
|
||||||
c = OcfCompletion(
|
self.flush()
|
||||||
[("cache", c_void_p), ("priv", c_void_p), ("error", c_int)]
|
|
||||||
)
|
self.get_and_write_lock()
|
||||||
self.owner.lib.ocf_mngt_cache_flush(self.cache_handle, False, c, None)
|
|
||||||
c.wait()
|
|
||||||
if c.results["error"]:
|
|
||||||
self.put_and_write_unlock()
|
|
||||||
raise OcfError("Couldn't flush cache", c.results["error"])
|
|
||||||
|
|
||||||
c = OcfCompletion(
|
c = OcfCompletion(
|
||||||
[("cache", c_void_p), ("priv", c_void_p), ("error", c_int)]
|
[("cache", c_void_p), ("priv", c_void_p), ("error", c_int)]
|
||||||
@ -412,6 +405,21 @@ class Cache:
|
|||||||
self.put_and_write_unlock()
|
self.put_and_write_unlock()
|
||||||
self.owner.caches.remove(self)
|
self.owner.caches.remove(self)
|
||||||
|
|
||||||
|
def flush(self):
|
||||||
|
self.get_and_write_lock()
|
||||||
|
|
||||||
|
c = OcfCompletion(
|
||||||
|
[("cache", c_void_p), ("priv", c_void_p), ("error", c_int)]
|
||||||
|
)
|
||||||
|
self.owner.lib.ocf_mngt_cache_flush(self.cache_handle, False, c, None)
|
||||||
|
c.wait()
|
||||||
|
if c.results["error"]:
|
||||||
|
self.put_and_write_unlock()
|
||||||
|
raise OcfError("Couldn't flush cache", c.results["error"])
|
||||||
|
|
||||||
|
self.put_and_write_unlock()
|
||||||
|
|
||||||
|
|
||||||
lib = OcfLib.getInstance()
|
lib = OcfLib.getInstance()
|
||||||
lib.ocf_mngt_cache_remove_core.argtypes = [c_void_p, c_void_p, c_void_p]
|
lib.ocf_mngt_cache_remove_core.argtypes = [c_void_p, c_void_p, c_void_p]
|
||||||
lib.ocf_mngt_cache_add_core.argtypes = [c_void_p, c_void_p, c_void_p, c_void_p]
|
lib.ocf_mngt_cache_add_core.argtypes = [c_void_p, c_void_p, c_void_p, c_void_p]
|
||||||
|
Loading…
Reference in New Issue
Block a user