Commit bcff4c89 authored by Ben Walker's avatar Ben Walker Committed by Jim Harris
Browse files

bdev: Rename spdk_internal/bdev.h to spdk/bdev_module.h



This will become the public interface for implementing
bdev modules. Right now the file exposes too much of
the guts of the bdev layer to modules, so it needs
to be stripped down.

Change-Id: Ie8b8c3271d51fdb8d0c24a80244b3f3e510c8790
Signed-off-by: default avatarBen Walker <benjamin.walker@intel.com>
Reviewed-on: https://review.gerrithub.io/412297


Tested-by: default avatarSPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: default avatarJim Harris <james.r.harris@intel.com>
Reviewed-by: default avatarDaniel Verkamp <daniel.verkamp@intel.com>
Reviewed-by: default avatarShuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
parent 9a7d4d53
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@
#include "spdk/event.h"
#include "spdk/log.h"
#include "spdk/string.h"
#include "spdk_internal/bdev.h"
#include "spdk/bdev_module.h"

static char *g_bdev_name = "Malloc0";

+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@
#include "spdk/blob.h"
#include "spdk/lvol.h"
#include "spdk/uuid.h"
#include "spdk_internal/bdev.h"
#include "spdk/bdev_module.h"

/* Default size of blobstore cluster */
#define SPDK_LVS_OPTS_CLUSTER_SZ (4 * 1024 * 1024)
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@
#include "spdk/queue.h"
#include "spdk/bdev.h"

#include "spdk_internal/bdev.h"
#include "spdk/bdev_module.h"

struct bdev_aio_task {
	struct iocb			iocb;
+1 −1
Original line number Diff line number Diff line
@@ -46,7 +46,7 @@
#include "spdk/scsi_spec.h"
#include "spdk/util.h"

#include "spdk_internal/bdev.h"
#include "spdk/bdev_module.h"
#include "spdk_internal/log.h"
#include "spdk/string.h"

Loading