Commit 80d30bf9 authored by Daniel Verkamp's avatar Daniel Verkamp
Browse files

app/nvmf_tgt: rename conf.h to nvmf_tgt.h



This header will be used as the general NVMe over Fabrics target app
include file.

Change-Id: Ia26ff6d97fb3fd3f2c55b43c15abbb0e58998e30
Signed-off-by: default avatarDaniel Verkamp <daniel.verkamp@intel.com>
parent 467ea9e0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@
#include <rte_config.h>
#include <rte_lcore.h>

#include "conf.h"
#include "nvmf_tgt.h"
#include "nvmf/subsystem.h"
#include "nvmf/transport.h"
#include "spdk/conf.h"
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@
#include <rte_memzone.h>
#include <rte_mempool.h>

#include "conf.h"
#include "nvmf_tgt.h"

#include "spdk/event.h"

+3 −4
Original line number Diff line number Diff line
@@ -31,8 +31,8 @@
 *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#ifndef NVMF_CONF_H
#define NVMF_CONF_H
#ifndef NVMF_TGT_H
#define NVMF_TGT_H

struct spdk_nvmf_tgt_conf {
	uint32_t acceptor_lcore;
@@ -40,7 +40,6 @@ struct spdk_nvmf_tgt_conf {

extern struct spdk_nvmf_tgt_conf g_spdk_nvmf_tgt_conf;

int
spdk_nvmf_parse_conf(void);
int spdk_nvmf_parse_conf(void);

#endif