65 lines
1.9 KiB
C
65 lines
1.9 KiB
C
|
/* SPDX-License-Identifier: BSD-3-Clause
|
||
|
* Copyright (c) Intel Corporation.
|
||
|
* All rights reserved.
|
||
|
*/
|
||
|
|
||
|
#ifndef FTL_NV_CACHE_IO_H
|
||
|
#define FTL_NV_CACHE_IO_H
|
||
|
|
||
|
#include "spdk/bdev.h"
|
||
|
#include "ftl_core.h"
|
||
|
|
||
|
static inline int
|
||
|
ftl_nv_cache_bdev_readv_blocks_with_md(struct spdk_ftl_dev *dev,
|
||
|
struct spdk_bdev_desc *desc,
|
||
|
struct spdk_io_channel *ch,
|
||
|
struct iovec *iov, int iovcnt, void *md,
|
||
|
uint64_t offset_blocks, uint64_t num_blocks,
|
||
|
spdk_bdev_io_completion_cb cb, void *cb_arg)
|
||
|
{
|
||
|
return spdk_bdev_readv_blocks_with_md(desc, ch, iov, iovcnt, md,
|
||
|
offset_blocks, num_blocks,
|
||
|
cb, cb_arg);
|
||
|
}
|
||
|
|
||
|
static inline int
|
||
|
ftl_nv_cache_bdev_writev_blocks_with_md(struct spdk_ftl_dev *dev,
|
||
|
struct spdk_bdev_desc *desc,
|
||
|
struct spdk_io_channel *ch,
|
||
|
struct iovec *iov, int iovcnt, void *md_buf,
|
||
|
uint64_t offset_blocks, uint64_t num_blocks,
|
||
|
spdk_bdev_io_completion_cb cb, void *cb_arg)
|
||
|
{
|
||
|
return spdk_bdev_writev_blocks_with_md(desc, ch, iov, iovcnt, md_buf,
|
||
|
offset_blocks, num_blocks, cb,
|
||
|
cb_arg);
|
||
|
}
|
||
|
|
||
|
static inline int
|
||
|
ftl_nv_cache_bdev_read_blocks_with_md(struct spdk_ftl_dev *dev,
|
||
|
struct spdk_bdev_desc *desc,
|
||
|
struct spdk_io_channel *ch,
|
||
|
void *buf, void *md,
|
||
|
uint64_t offset_blocks, uint64_t num_blocks,
|
||
|
spdk_bdev_io_completion_cb cb, void *cb_arg)
|
||
|
{
|
||
|
return spdk_bdev_read_blocks_with_md(desc, ch, buf, md,
|
||
|
offset_blocks, num_blocks,
|
||
|
cb, cb_arg);
|
||
|
}
|
||
|
|
||
|
static inline int
|
||
|
ftl_nv_cache_bdev_write_blocks_with_md(struct spdk_ftl_dev *dev,
|
||
|
struct spdk_bdev_desc *desc,
|
||
|
struct spdk_io_channel *ch,
|
||
|
void *buf, void *md,
|
||
|
uint64_t offset_blocks, uint64_t num_blocks,
|
||
|
spdk_bdev_io_completion_cb cb, void *cb_arg)
|
||
|
{
|
||
|
return spdk_bdev_write_blocks_with_md(desc, ch, buf, md,
|
||
|
offset_blocks, num_blocks,
|
||
|
cb, cb_arg);
|
||
|
}
|
||
|
|
||
|
#endif /* FTL_NV_CACHE_IO_H */
|