Commit c78d4d0b authored by Daniel Verkamp's avatar Daniel Verkamp Committed by Benjamin Walker
Browse files

nvmf: move includes from nvmf.h where they're used



Most of the #include statements in nvmf.h aren't part of the public API.

Change-Id: I0d43dd542a28744a91a4fd0c4c806a991d1e194e
Signed-off-by: default avatarDaniel Verkamp <daniel.verkamp@intel.com>
parent db6d1079
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -31,6 +31,7 @@
 *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#include <stdlib.h>
#include <string.h>

#include "conf.h"
+3 −0
Original line number Diff line number Diff line
@@ -33,6 +33,9 @@

#include <arpa/inet.h>

#include <rte_config.h>
#include <rte_mempool.h>

#include "spdk/log.h"
#include "spdk/conf.h"
#include "nvmf.h"
+0 −7
Original line number Diff line number Diff line
@@ -36,13 +36,6 @@

#include <stdbool.h>
#include <stdint.h>
#include <pthread.h>

#include <rte_config.h>
#include <rte_mempool.h>

#include "spdk/nvmf_spec.h"
#include "spdk/nvme.h"

/**
 * \file
+3 −0
Original line number Diff line number Diff line
@@ -31,6 +31,9 @@
 *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#include <rte_config.h>
#include <rte_debug.h>

#include "conn.h"
#include "nvmf.h"
#include "rdma.h"
+1 −0
Original line number Diff line number Diff line
@@ -41,6 +41,7 @@
#include <rte_debug.h>
#include <rte_cycles.h>
#include <rte_timer.h>
#include <rte_mempool.h>

#include "conn.h"
#include "rdma.h"
Loading