/* * Copyright(c) 2012-2022 Intel Corporation * Copyright(c) 2024 Huawei Technologies * SPDX-License-Identifier: BSD-3-Clause */ #include "ocf/ocf.h" #include "../ocf_cache_priv.h" #include "engine_fast.h" #include "engine_common.h" #include "engine_io.h" #include "engine_pt.h" #include "engine_wb.h" #include "../ocf_request.h" #include "../utils/utils_user_part.h" #include "../concurrency/ocf_concurrency.h" #include "../metadata/metadata.h" #define OCF_ENGINE_DEBUG 0 #define OCF_ENGINE_DEBUG_IO_NAME "fast" #include "engine_debug.h" /* _____ _ ______ _ _____ _ _ * | __ \ | | | ____| | | | __ \ | | | | * | |__) |___ __ _ __| | | |__ __ _ ___| |_ | |__) |_ _| |_| |__ * | _ // _ \/ _` |/ _` | | __/ _` / __| __| | ___/ _` | __| '_ \ * | | \ \ __/ (_| | (_| | | | | (_| \__ \ |_ | | | (_| | |_| | | | * |_| \_\___|\__,_|\__,_| |_| \__,_|___/\__| |_| \__,_|\__|_| |_| */ static void _ocf_read_fast_complete(struct ocf_request *req, int error) { OCF_DEBUG_RQ(req, "HIT completion"); if (error) { ocf_core_stats_cache_error_update(req->core, OCF_READ); OCF_DEBUG_RQ(req, "ERROR"); ocf_queue_push_req_pt(req); } else { ocf_req_unlock(ocf_cache_line_concurrency(req->cache), req); /* Complete request */ req->complete(req, error); /* Free the request at the last point of the completion path */ ocf_req_put(req); } } static int _ocf_read_fast_do(struct ocf_request *req) { if (ocf_engine_is_miss(req)) { /* It seams that after resume, now request is MISS, do PT */ OCF_DEBUG_RQ(req, "Switching to read PT"); ocf_read_pt_do(req); return 0; } /* Get OCF request - increase reference counter */ ocf_req_get(req); if (ocf_engine_needs_repart(req)) { OCF_DEBUG_RQ(req, "Re-Part"); ocf_hb_req_prot_lock_wr(req); /* Probably some cache lines are assigned into wrong * partition. Need to move it to new one */ ocf_user_part_move(req); ocf_hb_req_prot_unlock_wr(req); } /* Submit IO */ OCF_DEBUG_RQ(req, "Submit"); ocf_engine_forward_cache_io_req(req, OCF_READ, _ocf_read_fast_complete); /* Update statistics */ ocf_engine_update_request_stats(req); ocf_engine_update_block_stats(req); /* Put OCF request - decrease reference counter */ ocf_req_put(req); return 0; } int ocf_read_fast(struct ocf_request *req) { bool hit; int lock = OCF_LOCK_NOT_ACQUIRED; bool part_has_space; /* Get OCF request - increase reference counter */ ocf_req_get(req); /* Set resume handler */ req->engine_handler = _ocf_read_fast_do; /*- Metadata RD access -----------------------------------------------*/ ocf_req_hash(req); ocf_hb_req_prot_lock_rd(req); /* Traverse request to cache if there is hit */ ocf_engine_traverse(req); hit = ocf_engine_is_hit(req); part_has_space = ocf_user_part_has_space(req); if (hit && part_has_space) { lock = ocf_req_async_lock_rd( ocf_cache_line_concurrency(req->cache), req, ocf_engine_on_resume); } ocf_hb_req_prot_unlock_rd(req); if (hit && part_has_space) { OCF_DEBUG_RQ(req, "Fast path success"); if (lock >= 0) { if (lock != OCF_LOCK_ACQUIRED) { /* Lock was not acquired, need to wait for resume */ OCF_DEBUG_RQ(req, "NO LOCK"); } else { /* Lock was acquired can perform IO */ _ocf_read_fast_do(req); } } else { OCF_DEBUG_RQ(req, "LOCK ERROR"); req->complete(req, lock); ocf_req_put(req); } } else { OCF_DEBUG_RQ(req, "Fast path failure"); } /* Put OCF request - decrease reference counter */ ocf_req_put(req); return (hit && part_has_space) ? OCF_FAST_PATH_YES : OCF_FAST_PATH_NO; } /* __ __ _ _ ______ _ _____ _ _ * \ \ / / (_) | | ____| | | | __ \ | | | | * \ \ /\ / / __ _| |_ ___ | |__ __ _ ___| |_ | |__) |_ _| |_| |__ * \ \/ \/ / '__| | __/ _ \ | __/ _` / __| __| | ___/ _` | __| '_ \ * \ /\ /| | | | || __/ | | | (_| \__ \ |_ | | | (_| | |_| | | | * \/ \/ |_| |_|\__\___| |_| \__,_|___/\__| |_| \__,_|\__|_| |_| */ int ocf_write_fast(struct ocf_request *req) { bool mapped; int lock = OCF_LOCK_NOT_ACQUIRED; int part_has_space = false; /* Get OCF request - increase reference counter */ ocf_req_get(req); /* Set resume handler */ req->engine_handler = ocf_write_wb_do; /*- Metadata RD access -----------------------------------------------*/ ocf_req_hash(req); ocf_hb_req_prot_lock_rd(req); /* Traverse request to cache if there is hit */ ocf_engine_traverse(req); mapped = ocf_engine_is_mapped(req); part_has_space = ocf_user_part_has_space(req); if (mapped && part_has_space) { lock = ocf_req_async_lock_wr( ocf_cache_line_concurrency(req->cache), req, ocf_engine_on_resume); } ocf_hb_req_prot_unlock_rd(req); if (mapped && part_has_space) { if (lock >= 0) { OCF_DEBUG_RQ(req, "Fast path success"); if (lock != OCF_LOCK_ACQUIRED) { /* Lock was not acquired, need to wait for resume */ OCF_DEBUG_RQ(req, "NO LOCK"); } else { /* Lock was acquired can perform IO */ ocf_write_wb_do(req); } } else { OCF_DEBUG_RQ(req, "Fast path lock failure"); req->complete(req, lock); ocf_req_put(req); } } else { OCF_DEBUG_RQ(req, "Fast path failure"); } /* Put OCF request - decrease reference counter */ ocf_req_put(req); return (mapped && part_has_space) ? OCF_FAST_PATH_YES : OCF_FAST_PATH_NO; }