diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:45:59 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:45:59 +0000 |
commit | 19fcec84d8d7d21e796c7624e521b60d28ee21ed (patch) | |
tree | 42d26aa27d1e3f7c0b8bd3fd14e7d7082f5008dc /src/spdk/lib/blobfs/spdk_blobfs.map | |
parent | Initial commit. (diff) | |
download | ceph-upstream/16.2.11+ds.tar.xz ceph-upstream/16.2.11+ds.zip |
Adding upstream version 16.2.11+ds.upstream/16.2.11+dsupstream
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: *; +}; |