
WO cache mode should not repartition cachelines nor affect cacheline status in any way when servicing read. Reading data from the cache is just an internal optimization. Also WO cache mode is designed to be used with partitioning based on write life-time hints and read requests do not carry write lifetime hint by definition. Signed-off-by: Adam Rutkowski <adam.j.rutkowski@intel.com>
14 lines
276 B
C
14 lines
276 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);
|
|
|
|
void ocf_read_generic_submit_hit(struct ocf_request *req);
|
|
|
|
#endif /* ENGINE_RD_H_ */
|