doc: Fix issues reported by newer Doxygen versions
Issues in question: include/spdk/bdev.h:919: warning: argument 'md' of command @param is not found in the argument list of spdk_bdev_readv_blocks_ext(...) include/spdk/bdev.h:1122: warning: argument 'md' of command @param is not found in the argument list of spdk_bdev_writev_blocks_ext(...) include/spdk/bdev.h:211: warning: Found unknown command '\erf' Signed-off-by: Michal Berger <michalx.berger@intel.com> Change-Id: I9322bde021460f4bef8e41050b9cfc6492a14a2c Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/9541 Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Aleksey Marchuk <alexeymar@mellanox.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Reviewed-by: Karol Latecki <karol.latecki@intel.com>
This commit is contained in:
parent
91a4e9160a
commit
f105046fe3
@ -208,7 +208,7 @@ struct spdk_bdev_ext_io_opts {
|
||||
/** Size of this structure in bytes */
|
||||
size_t size;
|
||||
/** Memory domain which describes payload in this IO request. bdev must support DMA device type that
|
||||
* can access this memory domain, refer to \ref spdk_bdev_get_memory_domains and \erf spdk_memory_domain_get_dma_device_type
|
||||
* can access this memory domain, refer to \ref spdk_bdev_get_memory_domains and \ref spdk_memory_domain_get_dma_device_type
|
||||
* If set, that means that data buffers can't be accessed directly and the memory domain must
|
||||
* be used to fetch data to local buffers or to translate data to another memory domain */
|
||||
struct spdk_memory_domain *memory_domain;
|
||||
@ -929,7 +929,6 @@ int spdk_bdev_readv_blocks_with_md(struct spdk_bdev_desc *desc, struct spdk_io_c
|
||||
* \param ch I/O channel. Obtained by calling spdk_bdev_get_io_channel().
|
||||
* \param iov A scatter gather list of buffers to be read into.
|
||||
* \param iovcnt The number of elements in iov.
|
||||
* \param md Metadata buffer, optional.
|
||||
* \param offset_blocks The offset, in blocks, from the start of the block device.
|
||||
* \param num_blocks The number of blocks to read.
|
||||
* \param cb Called when the request is complete.
|
||||
@ -1132,7 +1131,6 @@ int spdk_bdev_writev_blocks_with_md(struct spdk_bdev_desc *desc, struct spdk_io_
|
||||
* \param ch I/O channel. Obtained by calling spdk_bdev_get_io_channel().
|
||||
* \param iov A scatter gather list of buffers to be written from.
|
||||
* \param iovcnt The number of elements in iov.
|
||||
* \param md Metadata buffer, optional.
|
||||
* \param offset_blocks The offset, in blocks, from the start of the block device.
|
||||
* \param num_blocks The number of blocks to write.
|
||||
* \param cb Called when the request is complete.
|
||||
|
@ -31,6 +31,10 @@
|
||||
*/
|
||||
|
||||
|
||||
/** \file
|
||||
* SPDK DMA device framework
|
||||
*/
|
||||
|
||||
#ifndef SPDK_DMA_H
|
||||
#define SPDK_DMA_H
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user