net/failsafe: use prefix for function

All other visible functions in failsafe driver have 'failsafe_'
prefix.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Acked-by: Gaetan Rivet <gaetan.rivet@6wind.com>
This commit is contained in:
Stephen Hemminger 2018-10-08 15:31:40 -07:00 committed by Ferruh Yigit
parent 8287597059
commit 86123c2dfb
3 changed files with 4 additions and 4 deletions

View File

@ -570,7 +570,7 @@ failsafe_eth_rmv_event_callback(uint16_t port_id __rte_unused,
/* Switch as soon as possible tx_dev. */
fs_switch_dev(sdev->fs_dev, sdev);
/* Use safe bursts in any case. */
set_burst_fn(sdev->fs_dev, 1);
failsafe_set_burst_fn(sdev->fs_dev, 1);
/*
* Async removal, the sub-PMD will try to unregister
* the callback at the source of the current thread context.

View File

@ -193,7 +193,7 @@ int failsafe_hotplug_alarm_cancel(struct rte_eth_dev *dev);
/* RX / TX */
void set_burst_fn(struct rte_eth_dev *dev, int force_safe);
void failsafe_set_burst_fn(struct rte_eth_dev *dev, int force_safe);
uint16_t failsafe_rx_burst(void *rxq,
struct rte_mbuf **rx_pkts, uint16_t nb_pkts);
@ -473,7 +473,7 @@ fs_switch_dev(struct rte_eth_dev *dev,
} else {
return;
}
set_burst_fn(dev, 0);
failsafe_set_burst_fn(dev, 0);
rte_wmb();
}

View File

@ -29,7 +29,7 @@ fs_tx_unsafe(struct sub_device *sdev)
}
void
set_burst_fn(struct rte_eth_dev *dev, int force_safe)
failsafe_set_burst_fn(struct rte_eth_dev *dev, int force_safe)
{
struct sub_device *sdev;
uint8_t i;