diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:54:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:54:28 +0000 |
commit | e6918187568dbd01842d8d1d2c808ce16a894239 (patch) | |
tree | 64f88b554b444a49f656b6c656111a145cbbaa28 /src/spdk/lib/blobfs/spdk_blobfs.map | |
parent | Initial commit. (diff) | |
download | ceph-e6918187568dbd01842d8d1d2c808ce16a894239.tar.xz ceph-e6918187568dbd01842d8d1d2c808ce16a894239.zip |
Adding upstream version 18.2.2.upstream/18.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/spdk/lib/blobfs/spdk_blobfs.map')
-rw-r--r-- | src/spdk/lib/blobfs/spdk_blobfs.map | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/spdk/lib/blobfs/spdk_blobfs.map b/src/spdk/lib/blobfs/spdk_blobfs.map new file mode 100644 index 000000000..91c02f61e --- /dev/null +++ b/src/spdk/lib/blobfs/spdk_blobfs.map @@ -0,0 +1,45 @@ +{ + global: + + # public functions + spdk_fs_opts_init; + spdk_fs_init; + spdk_fs_load; + spdk_fs_unload; + spdk_fs_alloc_io_channel; + spdk_fs_free_io_channel; + spdk_fs_alloc_thread_ctx; + spdk_fs_free_thread_ctx; + spdk_fs_file_stat; + spdk_fs_create_file; + spdk_fs_open_file; + spdk_file_close; + spdk_fs_rename_file; + spdk_fs_delete_file; + spdk_fs_iter_first; + spdk_fs_iter_next; + spdk_file_truncate; + spdk_file_get_name; + spdk_file_get_length; + spdk_file_write; + spdk_file_read; + spdk_fs_set_cache_size; + spdk_fs_get_cache_size; + spdk_file_set_priority; + spdk_file_sync; + spdk_file_get_id; + spdk_file_readv_async; + spdk_file_writev_async; + spdk_fs_file_stat_async; + spdk_fs_create_file_async; + spdk_fs_open_file_async; + spdk_file_close_async; + spdk_fs_rename_file_async; + spdk_fs_delete_file_async; + spdk_file_truncate_async; + spdk_file_write_async; + spdk_file_read_async; + spdk_file_sync_async; + + local: *; +}; |