2a0c503e7a
This is because calls with M_WAIT (now M_TRYWAIT) may not wait forever when nothing is available for allocation, and may end up returning NULL. Hopefully we now communicate more of the right thing to developers and make it very clear that it's necessary to check whether calls with M_(TRY)WAIT also resulted in a failed allocation. M_TRYWAIT basically means "try harder, block if necessary, but don't necessarily wait forever." The time spent blocking is tunable with the kern.ipc.mbuf_wait sysctl. M_WAIT is now deprecated but still defined for the next little while. * Fix a typo in a comment in mbuf.h * Fix some code that was actually passing the mbuf subsystem's M_WAIT to malloc(). Made it pass M_WAITOK instead. If we were ever to redefine the value of the M_WAIT flag, this could have became a big problem.
616 lines
14 KiB
C
616 lines
14 KiB
C
/*-
|
|
* Copyright (c) 1999, 2000 Boris Popov
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
#include "opt_inet.h"
|
|
#include "opt_ipx.h"
|
|
#include "opt_ef.h"
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/systm.h>
|
|
#include <sys/sockio.h>
|
|
#include <sys/malloc.h>
|
|
#include <sys/mbuf.h>
|
|
#include <sys/socket.h>
|
|
#include <sys/syslog.h>
|
|
#include <sys/kernel.h>
|
|
#include <sys/module.h>
|
|
|
|
#include <net/ethernet.h>
|
|
#include <net/if_llc.h>
|
|
#include <net/if.h>
|
|
#include <net/if_arp.h>
|
|
#include <net/if_dl.h>
|
|
#include <net/if_types.h>
|
|
#include <net/netisr.h>
|
|
#include <net/route.h>
|
|
#include <net/bpf.h>
|
|
|
|
#ifdef INET
|
|
#include <netinet/in.h>
|
|
#include <netinet/in_var.h>
|
|
#include <netinet/if_ether.h>
|
|
#endif
|
|
|
|
#ifdef IPX
|
|
#include <netipx/ipx.h>
|
|
#include <netipx/ipx_if.h>
|
|
#endif
|
|
|
|
/* internal frame types */
|
|
#define ETHER_FT_EII 0 /* Ethernet_II - default */
|
|
#define ETHER_FT_8023 1 /* 802.3 (Novell) */
|
|
#define ETHER_FT_8022 2 /* 802.2 */
|
|
#define ETHER_FT_SNAP 3 /* SNAP */
|
|
#define EF_NFT 4 /* total number of frame types */
|
|
|
|
#ifdef EF_DEBUG
|
|
#define EFDEBUG(format, args...) printf("%s: "format, __FUNCTION__ ,## args)
|
|
#else
|
|
#define EFDEBUG(format, args...)
|
|
#endif
|
|
|
|
#define EFERROR(format, args...) printf("%s: "format, __FUNCTION__ ,## args)
|
|
|
|
struct efnet {
|
|
struct arpcom ef_ac;
|
|
struct ifnet * ef_ifp;
|
|
};
|
|
|
|
struct ef_link {
|
|
SLIST_ENTRY(ef_link) el_next;
|
|
struct ifnet *el_ifp; /* raw device for this clones */
|
|
struct efnet *el_units[EF_NFT]; /* our clones */
|
|
};
|
|
|
|
static SLIST_HEAD(ef_link_head, ef_link) efdev = {NULL};
|
|
static int efcount;
|
|
|
|
extern int (*ef_inputp)(struct ifnet*, struct ether_header *eh, struct mbuf *m);
|
|
extern int (*ef_outputp)(struct ifnet *ifp, struct mbuf **mp,
|
|
struct sockaddr *dst, short *tp, int *hlen);
|
|
|
|
/*
|
|
static void ef_reset (struct ifnet *);
|
|
*/
|
|
static int ef_attach(struct efnet *sc);
|
|
static int ef_detach(struct efnet *sc);
|
|
static void ef_init(void *);
|
|
static int ef_ioctl(struct ifnet *, u_long, caddr_t);
|
|
static void ef_start(struct ifnet *);
|
|
static int ef_input(struct ifnet*, struct ether_header *, struct mbuf *);
|
|
static int ef_output(struct ifnet *ifp, struct mbuf **mp,
|
|
struct sockaddr *dst, short *tp, int *hlen);
|
|
|
|
static int ef_load(void);
|
|
static int ef_unload(void);
|
|
|
|
/*
|
|
* Install the interface, most of structure initialization done in ef_clone()
|
|
*/
|
|
static int
|
|
ef_attach(struct efnet *sc)
|
|
{
|
|
struct ifnet *ifp = (struct ifnet*)&sc->ef_ac.ac_if;
|
|
struct ifaddr *ifa1, *ifa2;
|
|
struct sockaddr_dl *sdl1, *sdl2;
|
|
|
|
ifp->if_output = ether_output;
|
|
ifp->if_start = ef_start;
|
|
ifp->if_watchdog = NULL;
|
|
ifp->if_init = ef_init;
|
|
ifp->if_snd.ifq_maxlen = IFQ_MAXLEN;
|
|
ifp->if_flags = (IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST);
|
|
/*
|
|
* Attach the interface
|
|
*/
|
|
ether_ifattach(ifp, ETHER_BPF_SUPPORTED);
|
|
|
|
ifp->if_resolvemulti = 0;
|
|
ifp->if_type = IFT_XETHER;
|
|
ifp->if_flags |= IFF_RUNNING;
|
|
|
|
ifa1 = ifnet_addrs[ifp->if_index - 1];
|
|
ifa2 = ifnet_addrs[sc->ef_ifp->if_index - 1];
|
|
sdl1 = (struct sockaddr_dl *)ifa1->ifa_addr;
|
|
sdl2 = (struct sockaddr_dl *)ifa2->ifa_addr;
|
|
sdl1->sdl_type = IFT_ETHER;
|
|
sdl1->sdl_alen = ETHER_ADDR_LEN;
|
|
bcopy(LLADDR(sdl2), LLADDR(sdl1), ETHER_ADDR_LEN);
|
|
bcopy(LLADDR(sdl2), sc->ef_ac.ac_enaddr, ETHER_ADDR_LEN);
|
|
|
|
EFDEBUG("%s%d: attached\n", ifp->if_name, ifp->if_unit);
|
|
return 1;
|
|
}
|
|
|
|
/*
|
|
* This is for _testing_only_, just removes interface from interfaces list
|
|
*/
|
|
static int
|
|
ef_detach(struct efnet *sc)
|
|
{
|
|
struct ifnet *ifp = (struct ifnet*)&sc->ef_ac.ac_if;
|
|
int s;
|
|
|
|
s = splimp();
|
|
|
|
if (ifp->if_flags & IFF_UP) {
|
|
if_down(ifp);
|
|
if (ifp->if_flags & IFF_RUNNING) {
|
|
/* find internet addresses and delete routes */
|
|
register struct ifaddr *ifa;
|
|
for (ifa = ifp->if_addrhead.tqh_first; ifa;
|
|
ifa = ifa->ifa_link.tqe_next) {
|
|
rtinit(ifa, (int)RTM_DELETE, 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
TAILQ_REMOVE(&ifnet, ifp, if_link);
|
|
splx(s);
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
ef_init(void *foo) {
|
|
return;
|
|
}
|
|
|
|
static int
|
|
ef_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
|
|
{
|
|
/* struct ef_link *sc = (struct ef_link*)ifp->if_softc;*/
|
|
struct ifaddr *ifa = (struct ifaddr*)data;
|
|
int s, error;
|
|
|
|
EFDEBUG("IOCTL %ld for %s%d\n", cmd, ifp->if_name, ifp->if_unit);
|
|
error = 0;
|
|
s = splimp();
|
|
switch (cmd) {
|
|
case SIOCSIFADDR:
|
|
if (ifp->if_unit == ETHER_FT_8023 &&
|
|
ifa->ifa_addr->sa_family != AF_IPX) {
|
|
error = EAFNOSUPPORT;
|
|
break;
|
|
}
|
|
ifp->if_flags |= IFF_UP;
|
|
/* FALL THROUGH */
|
|
case SIOCGIFADDR:
|
|
case SIOCSIFMTU:
|
|
error = ether_ioctl(ifp, cmd, data);
|
|
break;
|
|
case SIOCSIFFLAGS:
|
|
error = 0;
|
|
break;
|
|
default:
|
|
error = EINVAL;
|
|
}
|
|
splx(s);
|
|
return error;
|
|
}
|
|
|
|
/*
|
|
* Currently packet prepared in the ether_output(), but this can be a better
|
|
* place.
|
|
*/
|
|
static void
|
|
ef_start(struct ifnet *ifp)
|
|
{
|
|
struct efnet *sc = (struct efnet*)ifp->if_softc;
|
|
struct ifnet *p;
|
|
struct mbuf *m;
|
|
|
|
ifp->if_flags |= IFF_OACTIVE;
|
|
p = sc->ef_ifp;
|
|
|
|
EFDEBUG("\n");
|
|
for (;;) {
|
|
IF_DEQUEUE(&ifp->if_snd, m);
|
|
if (m == 0)
|
|
break;
|
|
if (ifp->if_bpf)
|
|
bpf_mtap(ifp, m);
|
|
if (! IF_HANDOFF(&p->if_snd, m, NULL)) {
|
|
ifp->if_oerrors++;
|
|
continue;
|
|
}
|
|
ifp->if_opackets++;
|
|
}
|
|
ifp->if_flags &= ~IFF_OACTIVE;
|
|
return;
|
|
}
|
|
|
|
/*
|
|
* Inline functions do not put additional overhead to procedure call or
|
|
* parameter passing but simplify the code
|
|
*/
|
|
static int __inline
|
|
ef_inputEII(struct mbuf *m, struct ether_header *eh, struct llc* l,
|
|
u_short ether_type, struct ifqueue **inq)
|
|
{
|
|
switch(ether_type) {
|
|
#ifdef IPX
|
|
case ETHERTYPE_IPX:
|
|
schednetisr(NETISR_IPX);
|
|
*inq = &ipxintrq;
|
|
break;
|
|
#endif
|
|
#ifdef INET
|
|
case ETHERTYPE_IP:
|
|
if (ipflow_fastforward(m))
|
|
return 1;
|
|
schednetisr(NETISR_IP);
|
|
*inq = &ipintrq;
|
|
break;
|
|
|
|
case ETHERTYPE_ARP:
|
|
schednetisr(NETISR_ARP);
|
|
*inq = &arpintrq;
|
|
break;
|
|
#endif
|
|
default:
|
|
return EPROTONOSUPPORT;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int __inline
|
|
ef_inputSNAP(struct mbuf *m, struct ether_header *eh, struct llc* l,
|
|
u_short ether_type, struct ifqueue **inq)
|
|
{
|
|
switch(ether_type) {
|
|
#ifdef IPX
|
|
case ETHERTYPE_IPX:
|
|
m_adj(m, 8);
|
|
schednetisr(NETISR_IPX);
|
|
*inq = &ipxintrq;
|
|
break;
|
|
#endif
|
|
default:
|
|
return EPROTONOSUPPORT;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int __inline
|
|
ef_input8022(struct mbuf *m, struct ether_header *eh, struct llc* l,
|
|
u_short ether_type, struct ifqueue **inq)
|
|
{
|
|
switch(ether_type) {
|
|
#ifdef IPX
|
|
case 0xe0:
|
|
m_adj(m, 3);
|
|
schednetisr(NETISR_IPX);
|
|
*inq = &ipxintrq;
|
|
break;
|
|
#endif
|
|
default:
|
|
return EPROTONOSUPPORT;
|
|
}
|
|
return 0;
|
|
}
|
|
/*
|
|
* Called from ether_input()
|
|
*/
|
|
static int
|
|
ef_input(struct ifnet *ifp, struct ether_header *eh, struct mbuf *m)
|
|
{
|
|
u_short ether_type;
|
|
int s, ft = -1;
|
|
struct ifqueue *inq;
|
|
struct efnet *efp;
|
|
struct ifnet *eifp;
|
|
struct llc *l;
|
|
struct ef_link *efl;
|
|
|
|
ether_type = ntohs(eh->ether_type);
|
|
if (ether_type < ETHERMTU) {
|
|
l = mtod(m, struct llc*);
|
|
if (l->llc_dsap == 0xff && l->llc_ssap == 0xff) {
|
|
/*
|
|
* Novell's "802.3" frame
|
|
*/
|
|
ft = ETHER_FT_8023;
|
|
} else if (l->llc_dsap == 0xaa && l->llc_ssap == 0xaa) {
|
|
/*
|
|
* 802.2/SNAP
|
|
*/
|
|
ft = ETHER_FT_SNAP;
|
|
ether_type = ntohs(l->llc_un.type_snap.ether_type);
|
|
} else if (l->llc_dsap == l->llc_ssap) {
|
|
/*
|
|
* 802.3/802.2
|
|
*/
|
|
ft = ETHER_FT_8022;
|
|
ether_type = l->llc_ssap;
|
|
}
|
|
} else
|
|
ft = ETHER_FT_EII;
|
|
|
|
if (ft == -1) {
|
|
EFDEBUG("Unrecognised ether_type %x\n", ether_type);
|
|
return EPROTONOSUPPORT;
|
|
}
|
|
|
|
/*
|
|
* Check if interface configured for the given frame
|
|
*/
|
|
efp = NULL;
|
|
SLIST_FOREACH(efl, &efdev, el_next) {
|
|
if (efl->el_ifp == ifp) {
|
|
efp = efl->el_units[ft];
|
|
break;
|
|
}
|
|
}
|
|
if (efp == NULL) {
|
|
EFDEBUG("Can't find if for %d\n", ft);
|
|
return EPROTONOSUPPORT;
|
|
}
|
|
eifp = &efp->ef_ac.ac_if;
|
|
if ((eifp->if_flags & IFF_UP) == 0)
|
|
return EPROTONOSUPPORT;
|
|
eifp->if_ibytes += m->m_pkthdr.len + sizeof (*eh);
|
|
m->m_pkthdr.rcvif = eifp;
|
|
|
|
if (eifp->if_bpf) {
|
|
struct mbuf m0;
|
|
m0.m_next = m;
|
|
m0.m_len = sizeof(struct ether_header);
|
|
m0.m_data = (char *)eh;
|
|
bpf_mtap(eifp, &m0);
|
|
}
|
|
/*
|
|
* Now we ready to adjust mbufs and pass them to protocol intr's
|
|
*/
|
|
inq = NULL;
|
|
switch(ft) {
|
|
case ETHER_FT_EII:
|
|
if (ef_inputEII(m, eh, l, ether_type, &inq) != 0)
|
|
return EPROTONOSUPPORT;
|
|
break;
|
|
#ifdef IPX
|
|
case ETHER_FT_8023: /* only IPX can be here */
|
|
schednetisr(NETISR_IPX);
|
|
inq = &ipxintrq;
|
|
break;
|
|
#endif
|
|
case ETHER_FT_SNAP:
|
|
if (ef_inputSNAP(m, eh, l, ether_type, &inq) != 0)
|
|
return EPROTONOSUPPORT;
|
|
break;
|
|
case ETHER_FT_8022:
|
|
if (ef_input8022(m, eh, l, ether_type, &inq) != 0)
|
|
return EPROTONOSUPPORT;
|
|
break;
|
|
}
|
|
|
|
if (inq == NULL) {
|
|
EFDEBUG("No support for frame %d and proto %04x\n",
|
|
ft, ether_type);
|
|
return EPROTONOSUPPORT;
|
|
}
|
|
(void) IF_HANDOFF(inq, m, NULL);
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
ef_output(struct ifnet *ifp, struct mbuf **mp, struct sockaddr *dst, short *tp,
|
|
int *hlen)
|
|
{
|
|
struct mbuf *m = *mp;
|
|
u_char *cp;
|
|
short type;
|
|
|
|
if (ifp->if_type != IFT_XETHER)
|
|
return ENETDOWN;
|
|
switch (ifp->if_unit) {
|
|
case ETHER_FT_EII:
|
|
#ifdef IPX
|
|
type = htons(ETHERTYPE_IPX);
|
|
#else
|
|
return EPFNOSUPPORT;
|
|
#endif
|
|
break;
|
|
case ETHER_FT_8023:
|
|
type = htons(m->m_pkthdr.len);
|
|
break;
|
|
case ETHER_FT_8022:
|
|
M_PREPEND(m, ETHER_HDR_LEN + 3, M_TRYWAIT);
|
|
if (m == NULL) {
|
|
*mp = NULL;
|
|
return ENOBUFS;
|
|
}
|
|
/*
|
|
* Ensure that ethernet header and next three bytes
|
|
* will fit into single mbuf
|
|
*/
|
|
m = m_pullup(m, ETHER_HDR_LEN + 3);
|
|
if (m == NULL) {
|
|
*mp = NULL;
|
|
return ENOBUFS;
|
|
}
|
|
m_adj(m, ETHER_HDR_LEN);
|
|
type = htons(m->m_pkthdr.len);
|
|
cp = mtod(m, u_char *);
|
|
*cp++ = 0xE0;
|
|
*cp++ = 0xE0;
|
|
*cp++ = 0x03;
|
|
*hlen += 3;
|
|
break;
|
|
case ETHER_FT_SNAP:
|
|
M_PREPEND(m, 8, M_TRYWAIT);
|
|
if (m == NULL) {
|
|
*mp = NULL;
|
|
return ENOBUFS;
|
|
}
|
|
type = htons(m->m_pkthdr.len);
|
|
cp = mtod(m, u_char *);
|
|
bcopy("\xAA\xAA\x03\x00\x00\x00\x81\x37", cp, 8);
|
|
*hlen += 8;
|
|
break;
|
|
default:
|
|
return EPFNOSUPPORT;
|
|
}
|
|
*mp = m;
|
|
*tp = type;
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Create clone from the given interface
|
|
*/
|
|
static int
|
|
ef_clone(struct ef_link *efl, int ft)
|
|
{
|
|
struct efnet *efp;
|
|
struct ifnet *eifp;
|
|
struct ifnet *ifp = efl->el_ifp;
|
|
char cbuf[IFNAMSIZ], *ifname;
|
|
int ifnlen;
|
|
|
|
efp = (struct efnet*)malloc(sizeof(struct efnet), M_IFADDR,
|
|
M_WAITOK | M_ZERO);
|
|
if (efp == NULL)
|
|
return ENOMEM;
|
|
efp->ef_ifp = ifp;
|
|
eifp = &efp->ef_ac.ac_if;
|
|
ifnlen = 1 + snprintf(cbuf, sizeof(cbuf), "%s%df", ifp->if_name,
|
|
ifp->if_unit);
|
|
ifname = (char*)malloc(ifnlen, M_IFADDR, M_WAITOK);
|
|
eifp->if_name = strcpy(ifname, cbuf);
|
|
eifp->if_unit = ft;
|
|
eifp->if_softc = efp;
|
|
if (ifp->if_ioctl)
|
|
eifp->if_ioctl = ef_ioctl;
|
|
efl->el_units[ft] = efp;
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
ef_load(void)
|
|
{
|
|
struct ifnet *ifp;
|
|
struct efnet *efp;
|
|
struct ef_link *efl = NULL;
|
|
int error = 0, d;
|
|
|
|
for (ifp = ifnet.tqh_first; ifp; ifp = ifp->if_link.tqe_next) {
|
|
if (ifp->if_type != IFT_ETHER) continue;
|
|
EFDEBUG("Found interface %s%d\n", ifp->if_name, ifp->if_unit);
|
|
efl = (struct ef_link*)malloc(sizeof(struct ef_link),
|
|
M_IFADDR, M_WAITOK);
|
|
if (efl == NULL) {
|
|
error = ENOMEM;
|
|
break;
|
|
}
|
|
bzero(efl, sizeof(*efl));
|
|
|
|
efl->el_ifp = ifp;
|
|
#ifdef ETHER_II
|
|
error = ef_clone(efl, ETHER_FT_EII);
|
|
if (error) break;
|
|
#endif
|
|
#ifdef ETHER_8023
|
|
error = ef_clone(efl, ETHER_FT_8023);
|
|
if (error) break;
|
|
#endif
|
|
#ifdef ETHER_8022
|
|
error = ef_clone(efl, ETHER_FT_8022);
|
|
if (error) break;
|
|
#endif
|
|
#ifdef ETHER_SNAP
|
|
error = ef_clone(efl, ETHER_FT_SNAP);
|
|
if (error) break;
|
|
#endif
|
|
efcount++;
|
|
SLIST_INSERT_HEAD(&efdev, efl, el_next);
|
|
}
|
|
if (error) {
|
|
if (efl)
|
|
SLIST_INSERT_HEAD(&efdev, efl, el_next);
|
|
SLIST_FOREACH(efl, &efdev, el_next) {
|
|
for (d = 0; d < EF_NFT; d++)
|
|
if (efl->el_units[d])
|
|
free(efl->el_units[d], M_IFADDR);
|
|
free(efl, M_IFADDR);
|
|
}
|
|
return error;
|
|
}
|
|
SLIST_FOREACH(efl, &efdev, el_next) {
|
|
for (d = 0; d < EF_NFT; d++) {
|
|
efp = efl->el_units[d];
|
|
if (efp)
|
|
ef_attach(efp);
|
|
}
|
|
}
|
|
ef_inputp = ef_input;
|
|
ef_outputp = ef_output;
|
|
EFDEBUG("Loaded\n");
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
ef_unload(void)
|
|
{
|
|
struct efnet *efp;
|
|
struct ef_link *efl;
|
|
int d;
|
|
|
|
ef_inputp = NULL;
|
|
ef_outputp = NULL;
|
|
SLIST_FOREACH(efl, &efdev, el_next) {
|
|
for (d = 0; d < EF_NFT; d++) {
|
|
efp = efl->el_units[d];
|
|
if (efp) {
|
|
ef_detach(efp);
|
|
}
|
|
}
|
|
}
|
|
EFDEBUG("Unloaded\n");
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
if_ef_modevent(module_t mod, int type, void *data)
|
|
{
|
|
switch ((modeventtype_t)type) {
|
|
case MOD_LOAD:
|
|
return ef_load();
|
|
case MOD_UNLOAD:
|
|
return ef_unload();
|
|
default:
|
|
break;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static moduledata_t if_ef_mod = {
|
|
"if_ef", if_ef_modevent, NULL
|
|
};
|
|
|
|
DECLARE_MODULE(if_ef, if_ef_mod, SI_SUB_PSEUDO, SI_ORDER_MIDDLE);
|