File tree
10 files changed
+1129
-9
lines changed- test/utils_tests/opencas-py-tests
- utils
10 files changed
+1129
-9
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
13 | 13 |
| |
14 | 14 |
| |
15 | 15 |
| |
| 16 | + | |
| 17 | + | |
| 18 | + |
- Makefile+13-13
- README.md-2
- doc/HOME.md+2-2
- example/simple/Makefile+1-1
- example/simple/src/ctx.c+3-12
- example/simple/src/main.c+24-142
- example/simple/src/volume.c+1-1
- inc/ocf_cache.h+21
- inc/ocf_ctx.h+7-17
- inc/ocf_def.h-12
- inc/ocf_mngt.h+70-116
- src/cleaning/acp.c-2
- src/cleaning/alru.c-3
- src/cleaning/cleaning.c-5
- src/cleaning/cleaning.h-2
- src/cleaning/nop.c+2-1
- src/engine/cache_engine.c+1-1
- src/engine/engine_bf.c+19-17
- src/engine/engine_common.c+14-10
- src/engine/engine_d2c.c+3-2
- src/engine/engine_discard.c+2-1
- src/engine/engine_fast.c+2-1
- src/engine/engine_inv.c+2-1
- src/engine/engine_ops.c+1-1
- src/engine/engine_pt.c+7-3
- src/engine/engine_rd.c+5-3
- src/engine/engine_wa.c+4-3
- src/engine/engine_wb.c+2-1
- src/engine/engine_wi.c+8-4
- src/engine/engine_wt.c+5-3
- src/engine/engine_zero.c+2-1
- src/eviction/eviction.c+5-5
- src/eviction/eviction.h+1-1
- src/eviction/lru.c+27-42
- src/eviction/lru.h+2-1
- src/eviction/ops.h+5-2
- src/metadata/metadata.c+40-23
- src/metadata/metadata_hash.c+57-26
- src/metadata/metadata_io.c+2-4
- src/metadata/metadata_raw.c+8-5
- src/metadata/metadata_raw_dynamic.c+10-7
- src/metadata/metadata_superblock.h+6
- src/mngt/ocf_mngt_cache.c+299-219
- src/mngt/ocf_mngt_common.c+13-9
- src/mngt/ocf_mngt_core.c+159-210
- src/mngt/ocf_mngt_core_pool.c+1
- src/mngt/ocf_mngt_core_pool_priv.h-15
- src/mngt/ocf_mngt_core_priv.h+3-3
- src/mngt/ocf_mngt_flush.c+66-34
- src/mngt/ocf_mngt_io_class.c+5-1
- src/ocf_cache.c+49-1
- src/ocf_cache_priv.h+15-12
- src/ocf_core.c+2-2
- src/ocf_ctx.c+11-20
- src/ocf_ctx_priv.h-6
- src/ocf_priv.h-5
- src/ocf_queue.c+12-14
- src/ocf_request.h+3-3
- src/ocf_trace_priv.h+13-13
- src/utils/utils_cache_line.c+4-4
- src/utils/utils_cache_line.h+5-5
- src/utils/utils_cleaner.c+1-50
- src/utils/utils_cleaner.h-38
- src/utils/utils_io.c+21-10
- src/utils/utils_part.c+4-5
- src/utils/utils_pipeline.h-19
- src/utils/utils_refcnt.c+5-14
- src/utils/utils_refcnt.h+6-9
- src/utils/utils_req.c+35-8
- src/utils/utils_req.h+9
- tests/build/Makefile+1-1
- tests/functional/Makefile+1-1
- tests/functional/pyocf/types/cache.py+29-50
- tests/functional/pyocf/types/cleaner.py+2-8
- tests/functional/pyocf/types/core.py+5-10
- tests/functional/pyocf/types/ctx.py+5-8
- tests/functional/pyocf/types/data.py+10-11
- tests/functional/pyocf/types/queue.py+5-4
- tests/functional/pyocf/types/volume.py+5-23
- tests/functional/pyocf/utils.py+20-21
- tests/functional/tests/basic/test_pyocf.py+2
- tests/functional/tests/management/test_change_mode.py+31
- tests/functional/tests/management/test_change_params.py-135
- tests/functional/tests/management/test_start_stop.py-469
- tests/unit/framework/run_unit_tests.py+4-32
- tests/unit/tests/mngt/ocf_mngt_cache.c/_cache_mng_set_cache_mode_test.c+1-12
- tests/unit/tests/mngt/ocf_mngt_cache.c/ocf_mngt_cache_set_fallback_pt_error_threshold.c+1-11
- tests/unit/tests/utils/utils_refcnt.c/utils_refcnt_dec.c-62
- tests/unit/tests/utils/utils_refcnt.c/utils_refcnt_freeze.c-116
- tests/unit/tests/utils/utils_refcnt.c/utils_refcnt_inc.c-51
- tests/unit/tests/utils/utils_refcnt.c/utils_refcnt_init.c-50
- tests/unit/tests/utils/utils_refcnt.c/utils_refcnt_register_zero_cb.c-100
- tests/unit/tests/utils/utils_refcnt.c/utils_refcnt_unfreeze.c-100
Whitespace-only changes.
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + |
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + |
0 commit comments