bdev: shuffle spdk_bdev_io members for packing

Change-Id: Ia4264615b004d2dbfc9d6238cdacf6e987f2a207
Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
This commit is contained in:
Daniel Verkamp 2016-10-05 14:18:51 -07:00
parent c7e0de8d21
commit 3e8487f88e

View File

@ -171,15 +171,15 @@ struct spdk_bdev_io {
/** Pointer to scratch area reserved for use by the driver consuming this spdk_bdev_io. */
void *ctx;
/** Generation value for each I/O. */
uint32_t gencnt;
/** The block device that this I/O belongs to. */
struct spdk_bdev *bdev;
/** The I/O channel to submit this I/O on. */
struct spdk_io_channel *ch;
/** Generation value for each I/O. */
uint32_t gencnt;
/** Enumerated value representing the I/O type. */
enum spdk_bdev_io_type type;