1{ 2 global: 3 4 # Public functions in fsdev.h 5 spdk_fsdev_initialize; 6 spdk_fsdev_finish; 7 spdk_fsdev_subsystem_config_json; 8 spdk_fsdev_get_by_name; 9 spdk_fsdev_get_module_name; 10 spdk_fsdev_open; 11 spdk_fsdev_close; 12 spdk_fsdev_get_name; 13 spdk_fsdev_desc_get_fsdev; 14 spdk_fsdev_get_io_channel; 15 spdk_fsdev_submit_fuse_request; 16 spdk_fsdev_free_io; 17 spdk_fsdev_set_opts; 18 spdk_fsdev_get_opts; 19 spdk_fsdev_set_instance_opts; 20 spdk_fsdev_get_instance_opts; 21 spdk_fsdev_get_memory_domains; 22 spdk_fsdev_init; 23 spdk_fsdev_cleanup; 24 spdk_fsdev_mount; 25 spdk_fsdev_umount; 26 spdk_fsdev_lookup; 27 spdk_fsdev_forget; 28 spdk_fsdev_getattr; 29 spdk_fsdev_setattr; 30 spdk_fsdev_readlink; 31 spdk_fsdev_symlink; 32 spdk_fsdev_mknod; 33 spdk_fsdev_mkdir; 34 spdk_fsdev_unlink; 35 spdk_fsdev_rmdir; 36 spdk_fsdev_rename; 37 spdk_fsdev_link; 38 spdk_fsdev_fopen; 39 spdk_fsdev_read; 40 spdk_fsdev_write; 41 spdk_fsdev_statfs; 42 spdk_fsdev_release; 43 spdk_fsdev_fsync; 44 spdk_fsdev_setxattr; 45 spdk_fsdev_getxattr; 46 spdk_fsdev_listxattr; 47 spdk_fsdev_removexattr; 48 spdk_fsdev_flush; 49 spdk_fsdev_opendir; 50 spdk_fsdev_readdir; 51 spdk_fsdev_releasedir; 52 spdk_fsdev_fsyncdir; 53 spdk_fsdev_flock; 54 spdk_fsdev_create; 55 spdk_fsdev_abort; 56 spdk_fsdev_fallocate; 57 spdk_fsdev_copy_file_range; 58 59 # Public functions in fsdev_module.h 60 spdk_fsdev_register; 61 spdk_fsdev_unregister; 62 spdk_fsdev_unregister_by_name; 63 spdk_fsdev_destruct_done; 64 spdk_fsdev_module_init_done; 65 spdk_fsdev_io_complete; 66 spdk_fsdev_io_get_thread; 67 spdk_fsdev_io_get_io_channel; 68 spdk_fsdev_module_list_add; 69 spdk_fsdev_module_list_find; 70 71 # Everything else 72 local: *; 73}; 74