bdev: Use the reset enum type instead of an int
Change-Id: Ia1b6503b707d71d6e2687800e750f3c07634f8f3 Signed-off-by: Ben Walker <benjamin.walker@intel.com>
This commit is contained in:
parent
9272088d93
commit
0ea0a4e646
@ -282,7 +282,7 @@ struct spdk_bdev_io {
|
|||||||
uint64_t length;
|
uint64_t length;
|
||||||
} flush;
|
} flush;
|
||||||
struct {
|
struct {
|
||||||
int32_t type;
|
enum spdk_bdev_reset_type type;
|
||||||
} reset;
|
} reset;
|
||||||
} u;
|
} u;
|
||||||
|
|
||||||
@ -393,7 +393,7 @@ struct spdk_bdev_io *spdk_bdev_flush(struct spdk_bdev *bdev,
|
|||||||
spdk_bdev_io_completion_cb cb, void *cb_arg);
|
spdk_bdev_io_completion_cb cb, void *cb_arg);
|
||||||
int spdk_bdev_io_submit(struct spdk_bdev_io *bdev_io);
|
int spdk_bdev_io_submit(struct spdk_bdev_io *bdev_io);
|
||||||
void spdk_bdev_do_work(void *ctx);
|
void spdk_bdev_do_work(void *ctx);
|
||||||
int spdk_bdev_reset(struct spdk_bdev *bdev, int reset_type,
|
int spdk_bdev_reset(struct spdk_bdev *bdev, enum spdk_bdev_reset_type reset_type,
|
||||||
spdk_bdev_io_completion_cb cb, void *cb_arg);
|
spdk_bdev_io_completion_cb cb, void *cb_arg);
|
||||||
|
|
||||||
/* The remaining functions are intended to be called from within
|
/* The remaining functions are intended to be called from within
|
||||||
|
@ -719,7 +719,7 @@ spdk_bdev_flush(struct spdk_bdev *bdev,
|
|||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
spdk_bdev_reset(struct spdk_bdev *bdev, int reset_type,
|
spdk_bdev_reset(struct spdk_bdev *bdev, enum spdk_bdev_reset_type reset_type,
|
||||||
spdk_bdev_io_completion_cb cb, void *cb_arg)
|
spdk_bdev_io_completion_cb cb, void *cb_arg)
|
||||||
{
|
{
|
||||||
struct spdk_bdev_io *bdev_io;
|
struct spdk_bdev_io *bdev_io;
|
||||||
|
@ -158,7 +158,7 @@ spdk_bdev_unmap(struct spdk_bdev *bdev,
|
|||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
spdk_bdev_reset(struct spdk_bdev *bdev, int reset_type,
|
spdk_bdev_reset(struct spdk_bdev *bdev, enum spdk_bdev_reset_type reset_type,
|
||||||
spdk_bdev_io_completion_cb cb, void *cb_arg)
|
spdk_bdev_io_completion_cb cb, void *cb_arg)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user