blob: convert spdk_bs_opts comments to Doxygen format

Signed-off-by: Jim Harris <james.r.harris@intel.com>
Change-Id: I69167825f054b58daf37840212289d6b99c8bb6a

Reviewed-on: https://review.gerrithub.io/400163
Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com>
Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
This commit is contained in:
Jim Harris 2018-02-15 13:51:38 -07:00
parent a66e4300c7
commit 2f8a811208

View File

@ -149,11 +149,20 @@ struct spdk_bs_type {
}; };
struct spdk_bs_opts { struct spdk_bs_opts {
uint32_t cluster_sz; /* In bytes. Must be multiple of page size. */ /** Size of cluster in bytes. Must be multiple of 4KiB page size. */
uint32_t num_md_pages; /* Count of the number of pages reserved for metadata */ uint32_t cluster_sz;
uint32_t max_md_ops; /* Maximum simultaneous metadata operations */
uint32_t max_channel_ops; /* Maximum simultaneous operations per channel */ /** Count of the number of pages reserved for metadata */
struct spdk_bs_type bstype; /* Blobstore type */ uint32_t num_md_pages;
/** Maximum simultaneous metadata operations */
uint32_t max_md_ops;
/** Maximum simultaneous operations per channel */
uint32_t max_channel_ops;
/** Blobstore type */
struct spdk_bs_type bstype;
}; };
/* Initialize an spdk_bs_opts structure to the default blobstore option values. */ /* Initialize an spdk_bs_opts structure to the default blobstore option values. */