vfio: generalize process synchronization
The module eal_pci_vfio_mp_sync is quite generic so it shouldn't contain the "pci" string in its name. The internal functions don't need the pci_* prefix. Signed-off-by: Jan Viktorin <viktorin@rehivetech.com>
This commit is contained in:
parent
5d258d732d
commit
122b30aa04
@ -67,10 +67,10 @@ endif
|
||||
SRCS-$(CONFIG_RTE_EXEC_ENV_LINUXAPP) += eal_thread.c
|
||||
SRCS-$(CONFIG_RTE_EXEC_ENV_LINUXAPP) += eal_log.c
|
||||
SRCS-$(CONFIG_RTE_EXEC_ENV_LINUXAPP) += eal_vfio.c
|
||||
SRCS-$(CONFIG_RTE_EXEC_ENV_LINUXAPP) += eal_vfio_mp_sync.c
|
||||
SRCS-$(CONFIG_RTE_EXEC_ENV_LINUXAPP) += eal_pci.c
|
||||
SRCS-$(CONFIG_RTE_EXEC_ENV_LINUXAPP) += eal_pci_uio.c
|
||||
SRCS-$(CONFIG_RTE_EXEC_ENV_LINUXAPP) += eal_pci_vfio.c
|
||||
SRCS-$(CONFIG_RTE_EXEC_ENV_LINUXAPP) += eal_pci_vfio_mp_sync.c
|
||||
SRCS-$(CONFIG_RTE_EXEC_ENV_LINUXAPP) += eal_debug.c
|
||||
SRCS-$(CONFIG_RTE_EXEC_ENV_LINUXAPP) += eal_lcore.c
|
||||
SRCS-$(CONFIG_RTE_EXEC_ENV_LINUXAPP) += eal_timer.c
|
||||
@ -111,7 +111,7 @@ CFLAGS_eal_common_cpuflags.o := $(CPUFLAGS_LIST)
|
||||
|
||||
CFLAGS_eal.o := -D_GNU_SOURCE
|
||||
CFLAGS_eal_interrupts.o := -D_GNU_SOURCE
|
||||
CFLAGS_eal_pci_vfio_mp_sync.o := -D_GNU_SOURCE
|
||||
CFLAGS_eal_vfio_mp_sync.o := -D_GNU_SOURCE
|
||||
CFLAGS_eal_timer.o := -D_GNU_SOURCE
|
||||
CFLAGS_eal_lcore.o := -D_GNU_SOURCE
|
||||
CFLAGS_eal_thread.o := -D_GNU_SOURCE
|
||||
|
@ -766,7 +766,7 @@ rte_eal_pci_init(void)
|
||||
* VFIO container.
|
||||
*/
|
||||
if (internal_config.process_type == RTE_PROC_PRIMARY &&
|
||||
pci_vfio_mp_sync_setup() < 0)
|
||||
vfio_mp_sync_setup() < 0)
|
||||
return -1;
|
||||
}
|
||||
#endif
|
||||
|
@ -76,7 +76,6 @@ int pci_uio_ioport_unmap(struct rte_pci_ioport *p);
|
||||
|
||||
int pci_vfio_enable(void);
|
||||
int pci_vfio_is_enabled(void);
|
||||
int pci_vfio_mp_sync_setup(void);
|
||||
|
||||
/* access config space */
|
||||
int pci_vfio_read_config(const struct rte_intr_handle *intr_handle,
|
||||
|
@ -143,6 +143,7 @@ int vfio_setup_device(const char *sysfs_base, const char *dev_addr,
|
||||
int vfio_enable(const char *modname);
|
||||
int vfio_is_enabled(const char *modname);
|
||||
|
||||
int vfio_mp_sync_setup(void);
|
||||
|
||||
#define SOCKET_REQ_CONTAINER 0x100
|
||||
#define SOCKET_REQ_GROUP 0x200
|
||||
|
@ -265,7 +265,7 @@ vfio_mp_sync_connect_to_primary(void)
|
||||
* socket listening thread for primary process
|
||||
*/
|
||||
static __attribute__((noreturn)) void *
|
||||
pci_vfio_mp_sync_thread(void __rte_unused * arg)
|
||||
vfio_mp_sync_thread(void __rte_unused * arg)
|
||||
{
|
||||
int ret, fd, vfio_group_no;
|
||||
|
||||
@ -376,7 +376,7 @@ vfio_mp_sync_socket_setup(void)
|
||||
* set up a local socket and tell it to listen for incoming connections
|
||||
*/
|
||||
int
|
||||
pci_vfio_mp_sync_setup(void)
|
||||
vfio_mp_sync_setup(void)
|
||||
{
|
||||
int ret;
|
||||
char thread_name[RTE_MAX_THREAD_NAME_LEN];
|
||||
@ -387,7 +387,7 @@ pci_vfio_mp_sync_setup(void)
|
||||
}
|
||||
|
||||
ret = pthread_create(&socket_thread, NULL,
|
||||
pci_vfio_mp_sync_thread, NULL);
|
||||
vfio_mp_sync_thread, NULL);
|
||||
if (ret) {
|
||||
RTE_LOG(ERR, EAL,
|
||||
"Failed to create thread for communication with secondary processes!\n");
|
||||
@ -396,7 +396,7 @@ pci_vfio_mp_sync_setup(void)
|
||||
}
|
||||
|
||||
/* Set thread_name for aid in debugging. */
|
||||
snprintf(thread_name, RTE_MAX_THREAD_NAME_LEN, "pci-vfio-sync");
|
||||
snprintf(thread_name, RTE_MAX_THREAD_NAME_LEN, "vfio-sync");
|
||||
ret = rte_thread_setname(socket_thread, thread_name);
|
||||
if (ret)
|
||||
RTE_LOG(DEBUG, EAL,
|
Loading…
x
Reference in New Issue
Block a user