
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>
12 lines
206 B
C
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_ */
|