Commit 2f8a8112 authored by Jim Harris's avatar Jim Harris
Browse files

blob: convert spdk_bs_opts comments to Doxygen format



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

Reviewed-on: https://review.gerrithub.io/400163


Reviewed-by: default avatarDaniel Verkamp <daniel.verkamp@intel.com>
Tested-by: default avatarSPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: default avatarTomasz Zawadzki <tomasz.zawadzki@intel.com>
parent a66e4300
Loading
Loading
Loading
Loading
+14 −5
Original line number Diff line number Diff line
@@ -149,11 +149,20 @@ struct spdk_bs_type {
};

struct spdk_bs_opts {
	uint32_t cluster_sz; /* In bytes. Must be multiple of page size. */
	uint32_t num_md_pages; /* Count of the number of pages reserved for metadata */
	uint32_t max_md_ops; /* Maximum simultaneous metadata operations */
	uint32_t max_channel_ops; /* Maximum simultaneous operations per channel */
	struct spdk_bs_type bstype; /* Blobstore type */
	/** Size of cluster in bytes. Must be multiple of 4KiB page size. */
	uint32_t cluster_sz;

	/** Count of the number of pages reserved for metadata */
	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. */