Home
last modified time | relevance | path

Searched refs:completed (Results 1 – 13 of 13) sorted by relevance

/spdk/test/unit/lib/accel/accel.c/
H A Daccel_ut.c674 int *completed = cb_arg; in test_sequence_fill_copy()
676 (*completed)++; in test_sequence_fill_copy()
696 int rc, completed; in test_sequence_fill_copy()
704 completed = 0; in test_sequence_fill_copy()
706 ut_sequence_step_cb, &completed); in test_sequence_fill_copy()
708 CU_ASSERT_EQUAL(completed, 0); in test_sequence_fill_copy()
714 CU_ASSERT_EQUAL(completed, 1); in test_sequence_fill_copy()
723 completed = 0; in test_sequence_fill_copy()
733 ut_sequence_step_cb, &completed); in test_sequence_fill_copy()
740 CU_ASSERT_EQUAL(completed, in test_sequence_fill_copy()
657 int *completed = cb_arg; ut_sequence_step_cb() local
679 int rc, completed; test_sequence_fill_copy() local
871 int rc, completed; test_sequence_abort() local
1080 int i, rc, completed; test_sequence_completion_error() local
1216 int *completed = cb_arg; ut_compress_cb() local
1232 int rc, completed = 0; test_sequence_decompress() local
1358 int rc, completed = 0; test_sequence_reverse() local
1538 int i, rc, completed; test_sequence_copy_elision() local
2017 int i, rc, completed; test_sequence_accel_buffers() local
2496 int i, rc, completed; test_sequence_memory_domain() local
2871 int i, rc, completed; test_sequence_module_memory_domain() local
3006 int *completed = cb_arg; ut_encrypt_cb() local
3028 int rc, completed = 0; test_sequence_crypto() local
3296 int i, rc, completed = 0; test_sequence_driver() local
3744 int i, rc, completed = 0; test_sequence_same_iovs() local
3881 int i, rc, completed; test_sequence_crc32() local
[all...]
/spdk/test/unit/lib/bdev/raid/
H A Dcommon.c270 raid_bdev_io_complete_part(struct raid_bdev_io *raid_io, uint64_t completed, in raid_bdev_io_complete_part() argument
273 SPDK_CU_ASSERT_FATAL(raid_io->base_bdev_io_remaining >= completed); in raid_bdev_io_complete_part()
274 raid_io->base_bdev_io_remaining -= completed; in raid_bdev_io_complete_part()
/spdk/test/nvmf/
H A DREADME.md5 testing and then tear it back down again when the test is completed.
/spdk/test/app/fuzz/nvme_fuzz/
H A DREADME.md26 it is completed in the JSON format specified above.
30 NS: 0x200079262300 admin qp, Total commands completed: 462459, total successful commands: 1960, ran…
/spdk/test/nvme/overhead/
H A DREADME10 resulted in a completed I/O. Also use heuristics in the AIO
/spdk/test/external_code/accel/
H A Dapp_driver.c61 int rc = 0, completed = 0; in start_driver() local
/spdk/doc/
H A Dbdev_module.md113 request to make all previously completed writes durable. Many devices do not
121 until all I/O has been completed in some way.
136 block device. Once the I/O request is completed, the module must call
H A Dblob.md96 arguments, when the original call is completed. The callback will be made on the same thread that t…
99 is required before the IO is completed.
203 an asynchronous call until the callback has completed.
208 Therefore, xattrs are not persisted until a blob synchronization call is made and completed. Having…
490 then returned to the list when completed.
H A Dcompression.md236 Completion of the 20KB write does not occur until both operations have completed.
278 completed. Further optimizations are outside the scope of this document.
H A Dbdev_pg.md147 device will be completed prior to the reset completing.*
/spdk/module/bdev/raid/
H A Dbdev_raid.h100 /* Set to true when base bdev has completed the configuration process */
323 * the async operation has completed and the module is fully stopped
367 bool raid_bdev_io_complete_part(struct raid_bdev_io *raid_io, uint64_t completed,
H A Dbdev_raid.c676 * will decrement this counter by the value of the 'completed' parameter and in raid_bdev_io_complete_part()
678 * interpret the 'base_bdev_io_remaining' and 'completed' values as needed, in raid_bdev_io_complete_part()
682 * completed - the part of the raid_io that has been completed in raid_bdev_io_complete_part()
685 * true - if the raid_io is completed in raid_bdev_io_complete_part()
689 raid_bdev_io_complete_part(struct raid_bdev_io *raid_io, uint64_t completed,
692 assert(raid_io->base_bdev_io_remaining >= completed);
693 raid_io->base_bdev_io_remaining -= completed;
2900 SPDK_DEBUGLOG(bdev_raid, "process completed on %s\n", raid_bdev->bdev.name); in raid_bdev_channel_start_process()
669 raid_bdev_io_complete_part(struct raid_bdev_io * raid_io,uint64_t completed,enum spdk_bdev_io_status status) raid_bdev_io_complete_part() argument
/spdk/app/fio/nvme/
H A DREADME.md91 the fio_plugin since all I/O are submitted and completed on a single CPU core.