ocf/src/engine/engine_wo.h
Adam Rutkowski 82e8c55f4a Write-only cache mode
Write-only cache mode is similar to writeback, however read
operations do not promote data to cache. Reads are mostly serviced
by the core device, only dirty sectors are fetched from the cache.

Signed-off-by: Adam Rutkowski <adam.j.rutkowski@intel.com>
2019-06-12 12:07:02 -04:00

12 lines
206 B
C

/*
* Copyright(c) 2019 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause-Clear
*/
#ifndef ENGINE_WO_H_
#define ENGINE_WO_H_
int ocf_read_wo(struct ocf_request *req);
#endif /* ENGINE_WO_H_ */