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: Daniel Verkamp <daniel.verkamp@intel.com>
This commit is contained in:
Daniel Verkamp 2016-08-23 09:46:41 -07:00
parent 467ea9e0a8
commit 80d30bf903
3 changed files with 5 additions and 6 deletions

View File

@ -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"

View File

@ -42,7 +42,7 @@
#include <rte_memzone.h>
#include <rte_mempool.h>
#include "conf.h"
#include "nvmf_tgt.h"
#include "spdk/event.h"

View File

@ -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