| 66 | } |
| 67 | |
| 68 | int |
| 69 | CacheVC::openReadFromWriterFailure(int event, Event *e) |
| 70 | { |
| 71 | od = nullptr; |
| 72 | vector.clear(false); |
| 73 | ts::Metrics::Counter::increment(cache_rsb.status[static_cast<int>(CacheOpType::Read)].failure); |
| 74 | ts::Metrics::Counter::increment(stripe->cache_vol->vol_rsb.status[static_cast<int>(CacheOpType::Read)].failure); |
| 75 | ts::Metrics::Counter::increment(cache_rsb.read_busy_failure); |
| 76 | ts::Metrics::Counter::increment(stripe->cache_vol->vol_rsb.read_busy_failure); |
| 77 | _action.continuation->handleEvent(event, e); |
| 78 | free_CacheVC(this); |
| 79 | return EVENT_DONE; |
| 80 | } |
| 81 | |
| 82 | int |
| 83 | CacheVC::openReadChooseWriter(int /* event ATS_UNUSED */, Event * /* e ATS_UNUSED */) |
nothing calls this directly
no test coverage detected