1 { 2 global: 3 4 # public functions 5 spdk_fs_opts_init; 6 spdk_fs_init; 7 spdk_fs_load; 8 spdk_fs_unload; 9 spdk_fs_alloc_io_channel; 10 spdk_fs_free_io_channel; 11 spdk_fs_alloc_thread_ctx; 12 spdk_fs_free_thread_ctx; 13 spdk_fs_file_stat; 14 spdk_fs_create_file; 15 spdk_fs_open_file; 16 spdk_file_close; 17 spdk_fs_rename_file; 18 spdk_fs_delete_file; 19 spdk_fs_iter_first; 20 spdk_fs_iter_next; 21 spdk_file_truncate; 22 spdk_file_get_name; 23 spdk_file_get_length; 24 spdk_file_write; 25 spdk_file_read; 26 spdk_fs_set_cache_size; 27 spdk_fs_get_cache_size; 28 spdk_file_set_priority; 29 spdk_file_sync; 30 spdk_file_get_id; 31 spdk_file_readv_async; 32 spdk_file_writev_async; 33 spdk_fs_file_stat_async; 34 spdk_fs_create_file_async; 35 spdk_fs_open_file_async; 36 spdk_file_close_async; 37 spdk_fs_rename_file_async; 38 spdk_fs_delete_file_async; 39 spdk_file_truncate_async; 40 spdk_file_write_async; 41 spdk_file_read_async; 42 spdk_file_sync_async; 43 44 local: *; 45 }; 46