lib/vhost: remove spdk prefix from static functions in rte_vhost_compat.c
Signed-off-by: Seth Howell <seth.howell@intel.com> Change-Id: I66ec9330b18e222a3a523a55f5f61f3c20610cae Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/2306 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com> Reviewed-by: Aleksey Marchuk <alexeymar@mellanox.com>
This commit is contained in:
parent
dd81d57565
commit
ba5c5cc344
@ -151,7 +151,7 @@ static const struct vhost_device_ops g_spdk_vhost_ops = {
|
|||||||
#ifndef SPDK_CONFIG_VHOST_INTERNAL_LIB
|
#ifndef SPDK_CONFIG_VHOST_INTERNAL_LIB
|
||||||
|
|
||||||
static enum rte_vhost_msg_result
|
static enum rte_vhost_msg_result
|
||||||
spdk_extern_vhost_pre_msg_handler(int vid, void *_msg)
|
extern_vhost_pre_msg_handler(int vid, void *_msg)
|
||||||
{
|
{
|
||||||
struct vhost_user_msg *msg = _msg;
|
struct vhost_user_msg *msg = _msg;
|
||||||
struct spdk_vhost_session *vsession;
|
struct spdk_vhost_session *vsession;
|
||||||
@ -245,7 +245,7 @@ spdk_extern_vhost_pre_msg_handler(int vid, void *_msg)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static enum rte_vhost_msg_result
|
static enum rte_vhost_msg_result
|
||||||
spdk_extern_vhost_post_msg_handler(int vid, void *_msg)
|
extern_vhost_post_msg_handler(int vid, void *_msg)
|
||||||
{
|
{
|
||||||
struct vhost_user_msg *msg = _msg;
|
struct vhost_user_msg *msg = _msg;
|
||||||
struct spdk_vhost_session *vsession;
|
struct spdk_vhost_session *vsession;
|
||||||
@ -297,8 +297,8 @@ spdk_extern_vhost_post_msg_handler(int vid, void *_msg)
|
|||||||
}
|
}
|
||||||
|
|
||||||
struct rte_vhost_user_extern_ops g_spdk_extern_vhost_ops = {
|
struct rte_vhost_user_extern_ops g_spdk_extern_vhost_ops = {
|
||||||
.pre_msg_handle = spdk_extern_vhost_pre_msg_handler,
|
.pre_msg_handle = extern_vhost_pre_msg_handler,
|
||||||
.post_msg_handle = spdk_extern_vhost_post_msg_handler,
|
.post_msg_handle = extern_vhost_post_msg_handler,
|
||||||
};
|
};
|
||||||
|
|
||||||
void
|
void
|
||||||
|
Loading…
Reference in New Issue
Block a user