├── .clang-format ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── MAINTAINERS.md ├── Makefile ├── README.md ├── python ├── pyudepot │ ├── __init__.py │ └── uDepot.py ├── test-pyudepot.py └── wrapper │ ├── pyudepot.cc │ └── pyudepot.hh ├── salsa └── src │ ├── frontends │ └── usalsa++ │ │ ├── Makefile │ │ ├── README │ │ ├── SalsaCtlr.cc │ │ ├── Scm.cc │ │ ├── allocator.c │ │ └── tests │ │ └── test.cc │ ├── gc │ ├── gc-base.c │ ├── gc-cm.c │ ├── gc-common.c │ └── gc-nbin.c │ ├── include │ ├── data-structures │ │ ├── cds-queue.h │ │ ├── hlist-hash.h │ │ └── list.h │ ├── frontends │ │ └── usalsa++ │ │ │ ├── SalsaCtlr.hh │ │ │ ├── SalsaMD.hh │ │ │ ├── Scm.hh │ │ │ └── allocator.h │ ├── gc │ │ ├── gc-io-work.h │ │ ├── gc-parameters.h │ │ ├── gc.h │ │ └── private │ │ │ ├── gc-common.h │ │ │ └── gc-queue.h │ ├── generic │ │ ├── common-defs.h │ │ └── compiler.h │ ├── libos │ │ ├── os-atomic.h │ │ ├── os-debug.h │ │ ├── os-lock.h │ │ ├── os-malloc.h │ │ ├── os-random.h │ │ ├── os-string.h │ │ ├── os-thread.h │ │ ├── os-time.h │ │ └── os-types.h │ ├── sto-ctlr │ │ ├── private │ │ │ ├── sto-capacity-mgr-common.h │ │ │ ├── sto-ctlr-common.h │ │ │ ├── sto-ctlr-stats.h │ │ │ └── sto-segment.h │ │ ├── scm-dev-addr.h │ │ ├── scm-dev-properties.h │ │ ├── scm-gfs-flags.h │ │ ├── scm-seg-alloc.h │ │ ├── scm-seg-queues.h │ │ ├── sto-capacity-mgr-parameters.h │ │ ├── sto-capacity-mgr.h │ │ ├── sto-ctlr-parameters.h │ │ └── sto-ctlr.h │ └── util │ │ ├── parse-storage-args.h │ │ └── scm_usr_helpers.h │ ├── libos │ └── os-thread.c │ ├── sto-ctlr │ ├── scm-dev-properties.c │ ├── scm-seg-alloc.c │ ├── scm-seg-queues.c │ ├── scm-throttler.c │ └── sto-capacity-mgr.c │ └── util │ ├── parse-storage-args.c │ └── scm_usr_helpers.c ├── scripts ├── benchmarking │ └── ubench-1core.sh ├── docker │ ├── Dockerfile │ └── start-udepot.sh ├── get_java_home.sh ├── perf-record-aio.sh ├── uDepotDirMapORTest-sdt.sh ├── udepot-net-ubench-sdt.sh └── udepot-test-sdt.sh ├── src ├── include │ ├── kv-mbuff.hh │ ├── kv.hh │ ├── uDepot │ │ ├── backend.hh │ │ ├── brlock.hh │ │ ├── hash-function.hh │ │ ├── io.hh │ │ ├── io │ │ │ ├── file-direct.hh │ │ │ ├── helpers.hh │ │ │ ├── spdk-common.hh │ │ │ ├── spdk.hh │ │ │ ├── trt-aio.hh │ │ │ ├── trt-spdk-array.hh │ │ │ ├── trt-spdk.hh │ │ │ └── trt-uring.hh │ │ ├── kv-conf-helpers.hh │ │ ├── kv-conf.hh │ │ ├── kv-factory.hh │ │ ├── kv-wire.hh │ │ ├── lsa │ │ │ ├── hash-entry.hh │ │ │ ├── metadata.hh │ │ │ ├── store.hh │ │ │ ├── type.hh │ │ │ ├── udepot-dir-map-or.hh │ │ │ ├── udepot-directory-map.hh │ │ │ └── udepot-map.hh │ │ ├── mbuff-alloc.hh │ │ ├── mbuff-cache.hh │ │ ├── mbuff.hh │ │ ├── net.hh │ │ ├── net │ │ │ ├── concepts.hh │ │ │ ├── connection.hh │ │ │ ├── helpers.hh │ │ │ ├── mc-helpers.hh │ │ │ ├── mc-timer.hh │ │ │ ├── memcache.hh │ │ │ ├── serve-kv-request.hh │ │ │ ├── socket.hh │ │ │ ├── trt-epoll.hh │ │ │ └── trt-memcache.hh │ │ ├── rwlock-pagefault-trt.hh │ │ ├── rwlock-pagefault.hh │ │ ├── rwlock.hh │ │ ├── sched.hh │ │ ├── stats.hh │ │ ├── stimer.hh │ │ ├── sync.hh │ │ ├── thread-id.hh │ │ ├── uDepot.hh │ │ └── udepot-lsa.hh │ └── util │ │ ├── debug.h │ │ ├── delay_histogram.hh │ │ ├── inline-cache.hh │ │ ├── profiling.hh │ │ ├── socket-peer-conf.hh │ │ ├── sys-helpers.hh │ │ ├── ticks.hh │ │ ├── types.h │ │ ├── wyhash.h │ │ └── xxhash.h └── uDepot │ ├── io │ ├── file-direct.cc │ ├── spdk.cc │ ├── trt-aio.cc │ ├── trt-spdk-array.cc │ ├── trt-spdk.cc │ └── trt-uring.cc │ ├── jni │ ├── .gitignore │ ├── uDepotJNI.cc │ └── uDepotJNI.java │ ├── kv-conf.cc │ ├── kv-factory.cc │ ├── lsa │ ├── metadata.cc │ ├── udepot-dir-map-or.cc │ ├── udepot-directory-map.cc │ └── udepot-map.cc │ ├── mbuff.cc │ ├── net.cc │ ├── net │ ├── connection.cc │ ├── helpers.cc │ ├── mc-helpers.cc │ ├── mc-timer.cc │ ├── memcache.cc │ ├── serve-kv-request.cc │ ├── socket.cc │ ├── trt-epoll.cc │ └── trt-memcache.cc │ ├── rwlock-pagefault-trt.cc │ ├── rwlock-pagefault.cc │ ├── socket-peer-conf.cc │ ├── stats.cc │ ├── thread_id.cc │ ├── udepot-lsa.cc │ └── udepot.cc ├── test ├── jni │ └── uDepotJNITest.java ├── misc │ └── inline_cache.cc └── uDepot │ ├── io-helpers.cc │ ├── memcache │ ├── udepot-memcache-server.cc │ ├── udepot-memcache-test.cc │ └── unit-test.sh │ ├── timer.h │ ├── uDepotDirMapORTest.cc │ ├── uDepotDirectoryMapTest.cc │ ├── uDepotMapTest.cc │ ├── udepot-net-ubench.cc │ ├── udepot-test.cc │ ├── udepot-utests.cc │ ├── udepot-utests.hh │ └── utests.cc ├── trt ├── .syntastic_cpp_config ├── Makefile ├── README.md ├── external │ ├── README.md │ ├── dpdk.patch │ └── spdk.patch ├── scripts │ ├── net_echo_client-sdt.sh │ ├── sdt_get.pl │ ├── sdt_reset.sh │ ├── spdk_queues_bench.sh │ └── trt-sdt-summary.sh └── src │ ├── benchs │ ├── aio_bench.cc │ ├── spdk_queues.cc │ ├── trt_aio_bench.cc │ ├── trt_spdk_ubench.cc │ ├── trt_ubench.cc │ └── trt_uring_bench.cc │ ├── jctx │ ├── jctx-asm.S │ ├── jctx-test-setjmp.c │ ├── jctx-test-simple.c │ ├── jctx-test.c │ ├── jctx.c │ ├── jctx.h │ ├── jctx_wr.cc │ └── jctx_wr.hh │ ├── tests │ ├── aio_preadv_pwritev.cc │ ├── net_echo_client.cc │ ├── spdk_test.cc │ ├── trt_cache_slot.cc │ ├── trt_epoll_echo.cc │ ├── trt_epoll_multi_threaded_server.cc │ ├── trt_hello_test.cc │ ├── trt_local_single.cc │ ├── trt_local_sync.cc │ ├── trt_rdma_echo.cc │ ├── trt_spawn_fib.cc │ ├── trt_spawn_test.cc │ ├── trt_spawn_test_detached.cc │ ├── trt_spawn_test_yield.cc │ ├── trt_spawn_test_yield2.cc │ ├── trt_spdk_preadv_pwritev.cc │ ├── trt_spdk_test.cc │ └── uring_test.cc │ ├── trt │ ├── async_obj.hh │ ├── common.hh │ ├── controller.cc │ ├── controller.hh │ ├── future.cc │ ├── future.hh │ ├── local_single_sync.hh │ ├── local_sync.cc │ ├── local_sync.hh │ ├── scheduler.cc │ ├── scheduler.hh │ ├── scheduler_cmd.hh │ ├── sync_base_types.hh │ ├── task.hh │ ├── task_alloc.hh │ ├── task_base.cc │ ├── task_base.hh │ ├── task_mem.hh │ ├── task_queue.hh │ ├── uapi │ │ ├── trt.cc │ │ ├── trt.hh │ │ └── trt_debug.h │ ├── waitset.cc │ └── waitset.hh │ ├── trt_backends │ ├── trt_aio.cc │ ├── trt_aio.hh │ ├── trt_epoll.cc │ ├── trt_epoll.hh │ ├── trt_rdma.cc │ ├── trt_rdma.hh │ ├── trt_spdk.cc │ ├── trt_spdk.hh │ ├── trt_uring.cc │ └── trt_uring.hh │ └── trt_util │ ├── aio.hh │ ├── arg_pool.hh │ ├── cpumask_utils.c │ ├── cpumask_utils.h │ ├── deque_mt.hh │ ├── io_ptr.hh │ ├── max_size.hh │ ├── misc.h │ ├── net_helpers.c │ ├── net_helpers.h │ ├── rte.hh │ ├── sdt.h │ ├── spdk.cc │ ├── spdk.hh │ ├── ticks.hh │ ├── timer.h │ └── uring.hh └── ycsb-binding └── udepot ├── pom.xml └── src └── main └── java └── com ├── ibm └── udepot │ └── uDepotJNI.java └── yahoo └── ycsb └── db ├── package-info.java └── uDepotClient.java /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | # MAINTAINERS 2 | 3 | Nikolas Ioannou - nio@zurich.ibm.com 4 | 5 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/README.md -------------------------------------------------------------------------------- /python/pyudepot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/python/pyudepot/__init__.py -------------------------------------------------------------------------------- /python/pyudepot/uDepot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/python/pyudepot/uDepot.py -------------------------------------------------------------------------------- /python/test-pyudepot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/python/test-pyudepot.py -------------------------------------------------------------------------------- /python/wrapper/pyudepot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/python/wrapper/pyudepot.cc -------------------------------------------------------------------------------- /python/wrapper/pyudepot.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/python/wrapper/pyudepot.hh -------------------------------------------------------------------------------- /salsa/src/frontends/usalsa++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/frontends/usalsa++/Makefile -------------------------------------------------------------------------------- /salsa/src/frontends/usalsa++/README: -------------------------------------------------------------------------------- 1 | User-space C++ salsa API 2 | -------------------------------------------------------------------------------- /salsa/src/frontends/usalsa++/SalsaCtlr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/frontends/usalsa++/SalsaCtlr.cc -------------------------------------------------------------------------------- /salsa/src/frontends/usalsa++/Scm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/frontends/usalsa++/Scm.cc -------------------------------------------------------------------------------- /salsa/src/frontends/usalsa++/allocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/frontends/usalsa++/allocator.c -------------------------------------------------------------------------------- /salsa/src/frontends/usalsa++/tests/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/frontends/usalsa++/tests/test.cc -------------------------------------------------------------------------------- /salsa/src/gc/gc-base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/gc/gc-base.c -------------------------------------------------------------------------------- /salsa/src/gc/gc-cm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/gc/gc-cm.c -------------------------------------------------------------------------------- /salsa/src/gc/gc-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/gc/gc-common.c -------------------------------------------------------------------------------- /salsa/src/gc/gc-nbin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/gc/gc-nbin.c -------------------------------------------------------------------------------- /salsa/src/include/data-structures/cds-queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/data-structures/cds-queue.h -------------------------------------------------------------------------------- /salsa/src/include/data-structures/hlist-hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/data-structures/hlist-hash.h -------------------------------------------------------------------------------- /salsa/src/include/data-structures/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/data-structures/list.h -------------------------------------------------------------------------------- /salsa/src/include/frontends/usalsa++/SalsaCtlr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/frontends/usalsa++/SalsaCtlr.hh -------------------------------------------------------------------------------- /salsa/src/include/frontends/usalsa++/SalsaMD.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/frontends/usalsa++/SalsaMD.hh -------------------------------------------------------------------------------- /salsa/src/include/frontends/usalsa++/Scm.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/frontends/usalsa++/Scm.hh -------------------------------------------------------------------------------- /salsa/src/include/frontends/usalsa++/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/frontends/usalsa++/allocator.h -------------------------------------------------------------------------------- /salsa/src/include/gc/gc-io-work.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/gc/gc-io-work.h -------------------------------------------------------------------------------- /salsa/src/include/gc/gc-parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/gc/gc-parameters.h -------------------------------------------------------------------------------- /salsa/src/include/gc/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/gc/gc.h -------------------------------------------------------------------------------- /salsa/src/include/gc/private/gc-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/gc/private/gc-common.h -------------------------------------------------------------------------------- /salsa/src/include/gc/private/gc-queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/gc/private/gc-queue.h -------------------------------------------------------------------------------- /salsa/src/include/generic/common-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/generic/common-defs.h -------------------------------------------------------------------------------- /salsa/src/include/generic/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/generic/compiler.h -------------------------------------------------------------------------------- /salsa/src/include/libos/os-atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/libos/os-atomic.h -------------------------------------------------------------------------------- /salsa/src/include/libos/os-debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/libos/os-debug.h -------------------------------------------------------------------------------- /salsa/src/include/libos/os-lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/libos/os-lock.h -------------------------------------------------------------------------------- /salsa/src/include/libos/os-malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/libos/os-malloc.h -------------------------------------------------------------------------------- /salsa/src/include/libos/os-random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/libos/os-random.h -------------------------------------------------------------------------------- /salsa/src/include/libos/os-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/libos/os-string.h -------------------------------------------------------------------------------- /salsa/src/include/libos/os-thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/libos/os-thread.h -------------------------------------------------------------------------------- /salsa/src/include/libos/os-time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/libos/os-time.h -------------------------------------------------------------------------------- /salsa/src/include/libos/os-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/libos/os-types.h -------------------------------------------------------------------------------- /salsa/src/include/sto-ctlr/private/sto-capacity-mgr-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/sto-ctlr/private/sto-capacity-mgr-common.h -------------------------------------------------------------------------------- /salsa/src/include/sto-ctlr/private/sto-ctlr-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/sto-ctlr/private/sto-ctlr-common.h -------------------------------------------------------------------------------- /salsa/src/include/sto-ctlr/private/sto-ctlr-stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/sto-ctlr/private/sto-ctlr-stats.h -------------------------------------------------------------------------------- /salsa/src/include/sto-ctlr/private/sto-segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/sto-ctlr/private/sto-segment.h -------------------------------------------------------------------------------- /salsa/src/include/sto-ctlr/scm-dev-addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/sto-ctlr/scm-dev-addr.h -------------------------------------------------------------------------------- /salsa/src/include/sto-ctlr/scm-dev-properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/sto-ctlr/scm-dev-properties.h -------------------------------------------------------------------------------- /salsa/src/include/sto-ctlr/scm-gfs-flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/sto-ctlr/scm-gfs-flags.h -------------------------------------------------------------------------------- /salsa/src/include/sto-ctlr/scm-seg-alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/sto-ctlr/scm-seg-alloc.h -------------------------------------------------------------------------------- /salsa/src/include/sto-ctlr/scm-seg-queues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/sto-ctlr/scm-seg-queues.h -------------------------------------------------------------------------------- /salsa/src/include/sto-ctlr/sto-capacity-mgr-parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/sto-ctlr/sto-capacity-mgr-parameters.h -------------------------------------------------------------------------------- /salsa/src/include/sto-ctlr/sto-capacity-mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/sto-ctlr/sto-capacity-mgr.h -------------------------------------------------------------------------------- /salsa/src/include/sto-ctlr/sto-ctlr-parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/sto-ctlr/sto-ctlr-parameters.h -------------------------------------------------------------------------------- /salsa/src/include/sto-ctlr/sto-ctlr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/sto-ctlr/sto-ctlr.h -------------------------------------------------------------------------------- /salsa/src/include/util/parse-storage-args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/util/parse-storage-args.h -------------------------------------------------------------------------------- /salsa/src/include/util/scm_usr_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/include/util/scm_usr_helpers.h -------------------------------------------------------------------------------- /salsa/src/libos/os-thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/libos/os-thread.c -------------------------------------------------------------------------------- /salsa/src/sto-ctlr/scm-dev-properties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/sto-ctlr/scm-dev-properties.c -------------------------------------------------------------------------------- /salsa/src/sto-ctlr/scm-seg-alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/sto-ctlr/scm-seg-alloc.c -------------------------------------------------------------------------------- /salsa/src/sto-ctlr/scm-seg-queues.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/sto-ctlr/scm-seg-queues.c -------------------------------------------------------------------------------- /salsa/src/sto-ctlr/scm-throttler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/sto-ctlr/scm-throttler.c -------------------------------------------------------------------------------- /salsa/src/sto-ctlr/sto-capacity-mgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/sto-ctlr/sto-capacity-mgr.c -------------------------------------------------------------------------------- /salsa/src/util/parse-storage-args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/util/parse-storage-args.c -------------------------------------------------------------------------------- /salsa/src/util/scm_usr_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/salsa/src/util/scm_usr_helpers.c -------------------------------------------------------------------------------- /scripts/benchmarking/ubench-1core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/scripts/benchmarking/ubench-1core.sh -------------------------------------------------------------------------------- /scripts/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/scripts/docker/Dockerfile -------------------------------------------------------------------------------- /scripts/docker/start-udepot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/scripts/docker/start-udepot.sh -------------------------------------------------------------------------------- /scripts/get_java_home.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/scripts/get_java_home.sh -------------------------------------------------------------------------------- /scripts/perf-record-aio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/scripts/perf-record-aio.sh -------------------------------------------------------------------------------- /scripts/uDepotDirMapORTest-sdt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/scripts/uDepotDirMapORTest-sdt.sh -------------------------------------------------------------------------------- /scripts/udepot-net-ubench-sdt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/scripts/udepot-net-ubench-sdt.sh -------------------------------------------------------------------------------- /scripts/udepot-test-sdt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/scripts/udepot-test-sdt.sh -------------------------------------------------------------------------------- /src/include/kv-mbuff.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/kv-mbuff.hh -------------------------------------------------------------------------------- /src/include/kv.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/kv.hh -------------------------------------------------------------------------------- /src/include/uDepot/backend.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/backend.hh -------------------------------------------------------------------------------- /src/include/uDepot/brlock.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/brlock.hh -------------------------------------------------------------------------------- /src/include/uDepot/hash-function.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/hash-function.hh -------------------------------------------------------------------------------- /src/include/uDepot/io.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/io.hh -------------------------------------------------------------------------------- /src/include/uDepot/io/file-direct.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/io/file-direct.hh -------------------------------------------------------------------------------- /src/include/uDepot/io/helpers.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/io/helpers.hh -------------------------------------------------------------------------------- /src/include/uDepot/io/spdk-common.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/io/spdk-common.hh -------------------------------------------------------------------------------- /src/include/uDepot/io/spdk.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/io/spdk.hh -------------------------------------------------------------------------------- /src/include/uDepot/io/trt-aio.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/io/trt-aio.hh -------------------------------------------------------------------------------- /src/include/uDepot/io/trt-spdk-array.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/io/trt-spdk-array.hh -------------------------------------------------------------------------------- /src/include/uDepot/io/trt-spdk.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/io/trt-spdk.hh -------------------------------------------------------------------------------- /src/include/uDepot/io/trt-uring.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/io/trt-uring.hh -------------------------------------------------------------------------------- /src/include/uDepot/kv-conf-helpers.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/kv-conf-helpers.hh -------------------------------------------------------------------------------- /src/include/uDepot/kv-conf.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/kv-conf.hh -------------------------------------------------------------------------------- /src/include/uDepot/kv-factory.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/kv-factory.hh -------------------------------------------------------------------------------- /src/include/uDepot/kv-wire.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/kv-wire.hh -------------------------------------------------------------------------------- /src/include/uDepot/lsa/hash-entry.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/lsa/hash-entry.hh -------------------------------------------------------------------------------- /src/include/uDepot/lsa/metadata.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/lsa/metadata.hh -------------------------------------------------------------------------------- /src/include/uDepot/lsa/store.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/lsa/store.hh -------------------------------------------------------------------------------- /src/include/uDepot/lsa/type.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/lsa/type.hh -------------------------------------------------------------------------------- /src/include/uDepot/lsa/udepot-dir-map-or.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/lsa/udepot-dir-map-or.hh -------------------------------------------------------------------------------- /src/include/uDepot/lsa/udepot-directory-map.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/lsa/udepot-directory-map.hh -------------------------------------------------------------------------------- /src/include/uDepot/lsa/udepot-map.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/lsa/udepot-map.hh -------------------------------------------------------------------------------- /src/include/uDepot/mbuff-alloc.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/mbuff-alloc.hh -------------------------------------------------------------------------------- /src/include/uDepot/mbuff-cache.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/mbuff-cache.hh -------------------------------------------------------------------------------- /src/include/uDepot/mbuff.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/mbuff.hh -------------------------------------------------------------------------------- /src/include/uDepot/net.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/net.hh -------------------------------------------------------------------------------- /src/include/uDepot/net/concepts.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/net/concepts.hh -------------------------------------------------------------------------------- /src/include/uDepot/net/connection.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/net/connection.hh -------------------------------------------------------------------------------- /src/include/uDepot/net/helpers.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/net/helpers.hh -------------------------------------------------------------------------------- /src/include/uDepot/net/mc-helpers.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/net/mc-helpers.hh -------------------------------------------------------------------------------- /src/include/uDepot/net/mc-timer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/net/mc-timer.hh -------------------------------------------------------------------------------- /src/include/uDepot/net/memcache.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/net/memcache.hh -------------------------------------------------------------------------------- /src/include/uDepot/net/serve-kv-request.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/net/serve-kv-request.hh -------------------------------------------------------------------------------- /src/include/uDepot/net/socket.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/net/socket.hh -------------------------------------------------------------------------------- /src/include/uDepot/net/trt-epoll.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/net/trt-epoll.hh -------------------------------------------------------------------------------- /src/include/uDepot/net/trt-memcache.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/net/trt-memcache.hh -------------------------------------------------------------------------------- /src/include/uDepot/rwlock-pagefault-trt.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/rwlock-pagefault-trt.hh -------------------------------------------------------------------------------- /src/include/uDepot/rwlock-pagefault.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/rwlock-pagefault.hh -------------------------------------------------------------------------------- /src/include/uDepot/rwlock.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/rwlock.hh -------------------------------------------------------------------------------- /src/include/uDepot/sched.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/sched.hh -------------------------------------------------------------------------------- /src/include/uDepot/stats.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/stats.hh -------------------------------------------------------------------------------- /src/include/uDepot/stimer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/stimer.hh -------------------------------------------------------------------------------- /src/include/uDepot/sync.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/sync.hh -------------------------------------------------------------------------------- /src/include/uDepot/thread-id.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/thread-id.hh -------------------------------------------------------------------------------- /src/include/uDepot/uDepot.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/uDepot.hh -------------------------------------------------------------------------------- /src/include/uDepot/udepot-lsa.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/uDepot/udepot-lsa.hh -------------------------------------------------------------------------------- /src/include/util/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/util/debug.h -------------------------------------------------------------------------------- /src/include/util/delay_histogram.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/util/delay_histogram.hh -------------------------------------------------------------------------------- /src/include/util/inline-cache.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/util/inline-cache.hh -------------------------------------------------------------------------------- /src/include/util/profiling.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/util/profiling.hh -------------------------------------------------------------------------------- /src/include/util/socket-peer-conf.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/util/socket-peer-conf.hh -------------------------------------------------------------------------------- /src/include/util/sys-helpers.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/util/sys-helpers.hh -------------------------------------------------------------------------------- /src/include/util/ticks.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/util/ticks.hh -------------------------------------------------------------------------------- /src/include/util/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/util/types.h -------------------------------------------------------------------------------- /src/include/util/wyhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/util/wyhash.h -------------------------------------------------------------------------------- /src/include/util/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/include/util/xxhash.h -------------------------------------------------------------------------------- /src/uDepot/io/file-direct.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/io/file-direct.cc -------------------------------------------------------------------------------- /src/uDepot/io/spdk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/io/spdk.cc -------------------------------------------------------------------------------- /src/uDepot/io/trt-aio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/io/trt-aio.cc -------------------------------------------------------------------------------- /src/uDepot/io/trt-spdk-array.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/io/trt-spdk-array.cc -------------------------------------------------------------------------------- /src/uDepot/io/trt-spdk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/io/trt-spdk.cc -------------------------------------------------------------------------------- /src/uDepot/io/trt-uring.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/io/trt-uring.cc -------------------------------------------------------------------------------- /src/uDepot/jni/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/jni/.gitignore -------------------------------------------------------------------------------- /src/uDepot/jni/uDepotJNI.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/jni/uDepotJNI.cc -------------------------------------------------------------------------------- /src/uDepot/jni/uDepotJNI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/jni/uDepotJNI.java -------------------------------------------------------------------------------- /src/uDepot/kv-conf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/kv-conf.cc -------------------------------------------------------------------------------- /src/uDepot/kv-factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/kv-factory.cc -------------------------------------------------------------------------------- /src/uDepot/lsa/metadata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/lsa/metadata.cc -------------------------------------------------------------------------------- /src/uDepot/lsa/udepot-dir-map-or.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/lsa/udepot-dir-map-or.cc -------------------------------------------------------------------------------- /src/uDepot/lsa/udepot-directory-map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/lsa/udepot-directory-map.cc -------------------------------------------------------------------------------- /src/uDepot/lsa/udepot-map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/lsa/udepot-map.cc -------------------------------------------------------------------------------- /src/uDepot/mbuff.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/mbuff.cc -------------------------------------------------------------------------------- /src/uDepot/net.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/net.cc -------------------------------------------------------------------------------- /src/uDepot/net/connection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/net/connection.cc -------------------------------------------------------------------------------- /src/uDepot/net/helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/net/helpers.cc -------------------------------------------------------------------------------- /src/uDepot/net/mc-helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/net/mc-helpers.cc -------------------------------------------------------------------------------- /src/uDepot/net/mc-timer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/net/mc-timer.cc -------------------------------------------------------------------------------- /src/uDepot/net/memcache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/net/memcache.cc -------------------------------------------------------------------------------- /src/uDepot/net/serve-kv-request.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/net/serve-kv-request.cc -------------------------------------------------------------------------------- /src/uDepot/net/socket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/net/socket.cc -------------------------------------------------------------------------------- /src/uDepot/net/trt-epoll.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/net/trt-epoll.cc -------------------------------------------------------------------------------- /src/uDepot/net/trt-memcache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/net/trt-memcache.cc -------------------------------------------------------------------------------- /src/uDepot/rwlock-pagefault-trt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/rwlock-pagefault-trt.cc -------------------------------------------------------------------------------- /src/uDepot/rwlock-pagefault.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/rwlock-pagefault.cc -------------------------------------------------------------------------------- /src/uDepot/socket-peer-conf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/socket-peer-conf.cc -------------------------------------------------------------------------------- /src/uDepot/stats.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/stats.cc -------------------------------------------------------------------------------- /src/uDepot/thread_id.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/thread_id.cc -------------------------------------------------------------------------------- /src/uDepot/udepot-lsa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/udepot-lsa.cc -------------------------------------------------------------------------------- /src/uDepot/udepot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/src/uDepot/udepot.cc -------------------------------------------------------------------------------- /test/jni/uDepotJNITest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/test/jni/uDepotJNITest.java -------------------------------------------------------------------------------- /test/misc/inline_cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/test/misc/inline_cache.cc -------------------------------------------------------------------------------- /test/uDepot/io-helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/test/uDepot/io-helpers.cc -------------------------------------------------------------------------------- /test/uDepot/memcache/udepot-memcache-server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/test/uDepot/memcache/udepot-memcache-server.cc -------------------------------------------------------------------------------- /test/uDepot/memcache/udepot-memcache-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/test/uDepot/memcache/udepot-memcache-test.cc -------------------------------------------------------------------------------- /test/uDepot/memcache/unit-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/test/uDepot/memcache/unit-test.sh -------------------------------------------------------------------------------- /test/uDepot/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/test/uDepot/timer.h -------------------------------------------------------------------------------- /test/uDepot/uDepotDirMapORTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/test/uDepot/uDepotDirMapORTest.cc -------------------------------------------------------------------------------- /test/uDepot/uDepotDirectoryMapTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/test/uDepot/uDepotDirectoryMapTest.cc -------------------------------------------------------------------------------- /test/uDepot/uDepotMapTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/test/uDepot/uDepotMapTest.cc -------------------------------------------------------------------------------- /test/uDepot/udepot-net-ubench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/test/uDepot/udepot-net-ubench.cc -------------------------------------------------------------------------------- /test/uDepot/udepot-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/test/uDepot/udepot-test.cc -------------------------------------------------------------------------------- /test/uDepot/udepot-utests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/test/uDepot/udepot-utests.cc -------------------------------------------------------------------------------- /test/uDepot/udepot-utests.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/test/uDepot/udepot-utests.hh -------------------------------------------------------------------------------- /test/uDepot/utests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/test/uDepot/utests.cc -------------------------------------------------------------------------------- /trt/.syntastic_cpp_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/.syntastic_cpp_config -------------------------------------------------------------------------------- /trt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/Makefile -------------------------------------------------------------------------------- /trt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/README.md -------------------------------------------------------------------------------- /trt/external/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/external/README.md -------------------------------------------------------------------------------- /trt/external/dpdk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/external/dpdk.patch -------------------------------------------------------------------------------- /trt/external/spdk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/external/spdk.patch -------------------------------------------------------------------------------- /trt/scripts/net_echo_client-sdt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/scripts/net_echo_client-sdt.sh -------------------------------------------------------------------------------- /trt/scripts/sdt_get.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/scripts/sdt_get.pl -------------------------------------------------------------------------------- /trt/scripts/sdt_reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/scripts/sdt_reset.sh -------------------------------------------------------------------------------- /trt/scripts/spdk_queues_bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/scripts/spdk_queues_bench.sh -------------------------------------------------------------------------------- /trt/scripts/trt-sdt-summary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/scripts/trt-sdt-summary.sh -------------------------------------------------------------------------------- /trt/src/benchs/aio_bench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/benchs/aio_bench.cc -------------------------------------------------------------------------------- /trt/src/benchs/spdk_queues.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/benchs/spdk_queues.cc -------------------------------------------------------------------------------- /trt/src/benchs/trt_aio_bench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/benchs/trt_aio_bench.cc -------------------------------------------------------------------------------- /trt/src/benchs/trt_spdk_ubench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/benchs/trt_spdk_ubench.cc -------------------------------------------------------------------------------- /trt/src/benchs/trt_ubench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/benchs/trt_ubench.cc -------------------------------------------------------------------------------- /trt/src/benchs/trt_uring_bench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/benchs/trt_uring_bench.cc -------------------------------------------------------------------------------- /trt/src/jctx/jctx-asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/jctx/jctx-asm.S -------------------------------------------------------------------------------- /trt/src/jctx/jctx-test-setjmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/jctx/jctx-test-setjmp.c -------------------------------------------------------------------------------- /trt/src/jctx/jctx-test-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/jctx/jctx-test-simple.c -------------------------------------------------------------------------------- /trt/src/jctx/jctx-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/jctx/jctx-test.c -------------------------------------------------------------------------------- /trt/src/jctx/jctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/jctx/jctx.c -------------------------------------------------------------------------------- /trt/src/jctx/jctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/jctx/jctx.h -------------------------------------------------------------------------------- /trt/src/jctx/jctx_wr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/jctx/jctx_wr.cc -------------------------------------------------------------------------------- /trt/src/jctx/jctx_wr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/jctx/jctx_wr.hh -------------------------------------------------------------------------------- /trt/src/tests/aio_preadv_pwritev.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/tests/aio_preadv_pwritev.cc -------------------------------------------------------------------------------- /trt/src/tests/net_echo_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/tests/net_echo_client.cc -------------------------------------------------------------------------------- /trt/src/tests/spdk_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/tests/spdk_test.cc -------------------------------------------------------------------------------- /trt/src/tests/trt_cache_slot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/tests/trt_cache_slot.cc -------------------------------------------------------------------------------- /trt/src/tests/trt_epoll_echo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/tests/trt_epoll_echo.cc -------------------------------------------------------------------------------- /trt/src/tests/trt_epoll_multi_threaded_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/tests/trt_epoll_multi_threaded_server.cc -------------------------------------------------------------------------------- /trt/src/tests/trt_hello_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/tests/trt_hello_test.cc -------------------------------------------------------------------------------- /trt/src/tests/trt_local_single.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/tests/trt_local_single.cc -------------------------------------------------------------------------------- /trt/src/tests/trt_local_sync.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/tests/trt_local_sync.cc -------------------------------------------------------------------------------- /trt/src/tests/trt_rdma_echo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/tests/trt_rdma_echo.cc -------------------------------------------------------------------------------- /trt/src/tests/trt_spawn_fib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/tests/trt_spawn_fib.cc -------------------------------------------------------------------------------- /trt/src/tests/trt_spawn_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/tests/trt_spawn_test.cc -------------------------------------------------------------------------------- /trt/src/tests/trt_spawn_test_detached.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/tests/trt_spawn_test_detached.cc -------------------------------------------------------------------------------- /trt/src/tests/trt_spawn_test_yield.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/tests/trt_spawn_test_yield.cc -------------------------------------------------------------------------------- /trt/src/tests/trt_spawn_test_yield2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/tests/trt_spawn_test_yield2.cc -------------------------------------------------------------------------------- /trt/src/tests/trt_spdk_preadv_pwritev.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/tests/trt_spdk_preadv_pwritev.cc -------------------------------------------------------------------------------- /trt/src/tests/trt_spdk_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/tests/trt_spdk_test.cc -------------------------------------------------------------------------------- /trt/src/tests/uring_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/tests/uring_test.cc -------------------------------------------------------------------------------- /trt/src/trt/async_obj.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt/async_obj.hh -------------------------------------------------------------------------------- /trt/src/trt/common.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt/common.hh -------------------------------------------------------------------------------- /trt/src/trt/controller.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt/controller.cc -------------------------------------------------------------------------------- /trt/src/trt/controller.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt/controller.hh -------------------------------------------------------------------------------- /trt/src/trt/future.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt/future.cc -------------------------------------------------------------------------------- /trt/src/trt/future.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt/future.hh -------------------------------------------------------------------------------- /trt/src/trt/local_single_sync.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt/local_single_sync.hh -------------------------------------------------------------------------------- /trt/src/trt/local_sync.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt/local_sync.cc -------------------------------------------------------------------------------- /trt/src/trt/local_sync.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt/local_sync.hh -------------------------------------------------------------------------------- /trt/src/trt/scheduler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt/scheduler.cc -------------------------------------------------------------------------------- /trt/src/trt/scheduler.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt/scheduler.hh -------------------------------------------------------------------------------- /trt/src/trt/scheduler_cmd.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt/scheduler_cmd.hh -------------------------------------------------------------------------------- /trt/src/trt/sync_base_types.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt/sync_base_types.hh -------------------------------------------------------------------------------- /trt/src/trt/task.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt/task.hh -------------------------------------------------------------------------------- /trt/src/trt/task_alloc.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt/task_alloc.hh -------------------------------------------------------------------------------- /trt/src/trt/task_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt/task_base.cc -------------------------------------------------------------------------------- /trt/src/trt/task_base.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt/task_base.hh -------------------------------------------------------------------------------- /trt/src/trt/task_mem.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt/task_mem.hh -------------------------------------------------------------------------------- /trt/src/trt/task_queue.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt/task_queue.hh -------------------------------------------------------------------------------- /trt/src/trt/uapi/trt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt/uapi/trt.cc -------------------------------------------------------------------------------- /trt/src/trt/uapi/trt.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt/uapi/trt.hh -------------------------------------------------------------------------------- /trt/src/trt/uapi/trt_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt/uapi/trt_debug.h -------------------------------------------------------------------------------- /trt/src/trt/waitset.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt/waitset.cc -------------------------------------------------------------------------------- /trt/src/trt/waitset.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt/waitset.hh -------------------------------------------------------------------------------- /trt/src/trt_backends/trt_aio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_backends/trt_aio.cc -------------------------------------------------------------------------------- /trt/src/trt_backends/trt_aio.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_backends/trt_aio.hh -------------------------------------------------------------------------------- /trt/src/trt_backends/trt_epoll.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_backends/trt_epoll.cc -------------------------------------------------------------------------------- /trt/src/trt_backends/trt_epoll.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_backends/trt_epoll.hh -------------------------------------------------------------------------------- /trt/src/trt_backends/trt_rdma.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_backends/trt_rdma.cc -------------------------------------------------------------------------------- /trt/src/trt_backends/trt_rdma.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_backends/trt_rdma.hh -------------------------------------------------------------------------------- /trt/src/trt_backends/trt_spdk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_backends/trt_spdk.cc -------------------------------------------------------------------------------- /trt/src/trt_backends/trt_spdk.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_backends/trt_spdk.hh -------------------------------------------------------------------------------- /trt/src/trt_backends/trt_uring.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_backends/trt_uring.cc -------------------------------------------------------------------------------- /trt/src/trt_backends/trt_uring.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_backends/trt_uring.hh -------------------------------------------------------------------------------- /trt/src/trt_util/aio.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_util/aio.hh -------------------------------------------------------------------------------- /trt/src/trt_util/arg_pool.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_util/arg_pool.hh -------------------------------------------------------------------------------- /trt/src/trt_util/cpumask_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_util/cpumask_utils.c -------------------------------------------------------------------------------- /trt/src/trt_util/cpumask_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_util/cpumask_utils.h -------------------------------------------------------------------------------- /trt/src/trt_util/deque_mt.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_util/deque_mt.hh -------------------------------------------------------------------------------- /trt/src/trt_util/io_ptr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_util/io_ptr.hh -------------------------------------------------------------------------------- /trt/src/trt_util/max_size.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_util/max_size.hh -------------------------------------------------------------------------------- /trt/src/trt_util/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_util/misc.h -------------------------------------------------------------------------------- /trt/src/trt_util/net_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_util/net_helpers.c -------------------------------------------------------------------------------- /trt/src/trt_util/net_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_util/net_helpers.h -------------------------------------------------------------------------------- /trt/src/trt_util/rte.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_util/rte.hh -------------------------------------------------------------------------------- /trt/src/trt_util/sdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_util/sdt.h -------------------------------------------------------------------------------- /trt/src/trt_util/spdk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_util/spdk.cc -------------------------------------------------------------------------------- /trt/src/trt_util/spdk.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_util/spdk.hh -------------------------------------------------------------------------------- /trt/src/trt_util/ticks.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_util/ticks.hh -------------------------------------------------------------------------------- /trt/src/trt_util/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_util/timer.h -------------------------------------------------------------------------------- /trt/src/trt_util/uring.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/trt/src/trt_util/uring.hh -------------------------------------------------------------------------------- /ycsb-binding/udepot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/ycsb-binding/udepot/pom.xml -------------------------------------------------------------------------------- /ycsb-binding/udepot/src/main/java/com/ibm/udepot/uDepotJNI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/ycsb-binding/udepot/src/main/java/com/ibm/udepot/uDepotJNI.java -------------------------------------------------------------------------------- /ycsb-binding/udepot/src/main/java/com/yahoo/ycsb/db/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/ycsb-binding/udepot/src/main/java/com/yahoo/ycsb/db/package-info.java -------------------------------------------------------------------------------- /ycsb-binding/udepot/src/main/java/com/yahoo/ycsb/db/uDepotClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/uDepot/HEAD/ycsb-binding/udepot/src/main/java/com/yahoo/ycsb/db/uDepotClient.java --------------------------------------------------------------------------------