
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>
14 lines
267 B
C
14 lines
267 B
C
/*
|
|
* Copyright(c) 2012-2018 Intel Corporation
|
|
* SPDX-License-Identifier: BSD-3-Clause-Clear
|
|
*/
|
|
|
|
#ifndef ENGINE_RD_H_
|
|
#define ENGINE_RD_H_
|
|
|
|
int ocf_read_generic(struct ocf_request *req);
|
|
|
|
int ocf_read_generic_do(struct ocf_request *req);
|
|
|
|
#endif /* ENGINE_RD_H_ */
|