hyperv/hn: Function renaming; no functional changes.

MFC after:	1 week
Sponsored by:	Microsoft
Differential Revision:	https://reviews.freebsd.org/D8908
This commit is contained in:
Sepherosa Ziehau 2016-12-28 04:35:52 +00:00
parent 5120d21c63
commit c08f7b2c28

View File

@ -333,7 +333,7 @@ static void hn_link_status(struct hn_softc *);
static int hn_create_rx_data(struct hn_softc *, int);
static void hn_destroy_rx_data(struct hn_softc *);
static int hn_check_iplen(const struct mbuf *, int);
static int hn_set_rxfilter(struct hn_softc *);
static int hn_rxfilter_config(struct hn_softc *);
#ifndef RSS
static int hn_rss_reconfig(struct hn_softc *);
#endif
@ -684,7 +684,7 @@ do { \
#endif /* INET6 || INET */
static int
hn_set_rxfilter(struct hn_softc *sc)
hn_rxfilter_config(struct hn_softc *sc)
{
struct ifnet *ifp = sc->hn_ifp;
uint32_t filter;
@ -2431,7 +2431,7 @@ hn_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
* reply.
*/
HN_NO_SLEEPING(sc);
hn_set_rxfilter(sc);
hn_rxfilter_config(sc);
HN_SLEEPING_OK(sc);
} else {
hn_init_locked(sc);
@ -2508,7 +2508,7 @@ hn_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
* the RNDIS reply.
*/
HN_NO_SLEEPING(sc);
hn_set_rxfilter(sc);
hn_rxfilter_config(sc);
HN_SLEEPING_OK(sc);
}
@ -2566,7 +2566,7 @@ hn_init_locked(struct hn_softc *sc)
return;
/* Configure RX filter */
hn_set_rxfilter(sc);
hn_rxfilter_config(sc);
/* Clear OACTIVE bit. */
atomic_clear_int(&ifp->if_drv_flags, IFF_DRV_OACTIVE);
@ -4925,7 +4925,7 @@ hn_resume_data(struct hn_softc *sc)
/*
* Re-enable RX.
*/
hn_set_rxfilter(sc);
hn_rxfilter_config(sc);
/*
* Make sure to clear suspend status on "all" TX rings,