diff options
author | wpaul <wpaul@FreeBSD.org> | 2004-06-20 19:22:22 +0000 |
---|---|---|
committer | wpaul <wpaul@FreeBSD.org> | 2004-06-20 19:22:22 +0000 |
commit | 8bb422459538c6d19abef5bf32a64fd48d9e40d3 (patch) | |
tree | 4a1beab3c757af26010af2fc70e61dc89a48c23a /sys | |
parent | c457f5e534ff8842f00525bcc3284b96c07554fa (diff) | |
download | FreeBSD-src-8bb422459538c6d19abef5bf32a64fd48d9e40d3.zip FreeBSD-src-8bb422459538c6d19abef5bf32a64fd48d9e40d3.tar.gz |
Stash our node context pointer somewhere else within struct ifnet of
underlying interfaces rather than using ac_netgraph in struct arpcom.
The latter is meant only for use by ng_ether, and using it breaks
interoperability with the rest of netgraph.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netgraph/ng_fec.c | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/sys/netgraph/ng_fec.c b/sys/netgraph/ng_fec.c index 5118b62..31b0d9d 100644 --- a/sys/netgraph/ng_fec.c +++ b/sys/netgraph/ng_fec.c @@ -125,7 +125,15 @@ #include <netgraph/ng_parse.h> #include <netgraph/ng_fec.h> -#define IFP2NG(ifp) ((struct ng_node *)((struct arpcom *)(ifp))->ac_netgraph) +/* + * We need a way to stash a pointer to our netgraph node in the + * ifnet structure so that receive handling works. As far as I can + * tell, although there is an AF_NETGRAPH address family, it's only + * used to identify sockaddr_ng structures: there is no netgraph address + * family domain. This means the AF_NETGRAPH entry in ifp->if_afdata[] + * should be unused, so we can (ab)use it to hold our node context. + */ +#define IFP2NG(ifp) (struct ng_node *)(ifp->if_afdata[AF_NETGRAPH]) #define FEC_INC(x, y) (x) = (x + 1) % y /* @@ -361,7 +369,10 @@ ng_fec_addport(struct ng_fec_private *priv, char *iface) return(ENOMEM); ac = (struct arpcom *)bifp; - ac->ac_netgraph = priv->node; + + IF_AFDATA_LOCK(bifp); + bifp->if_afdata[AF_NETGRAPH] = priv->node; + IF_AFDATA_UNLOCK(bifp); /* * If this is the first interface added to the bundle, @@ -453,6 +464,11 @@ ng_fec_delport(struct ng_fec_private *priv, char *iface) /* Restore input vector */ bifp->if_input = p->fec_if_input; + /* Remove our node context pointer. */ + IF_AFDATA_LOCK(bifp); + bifp->if_afdata[AF_NETGRAPH] = NULL; + IF_AFDATA_UNLOCK(bifp); + /* Delete port */ TAILQ_REMOVE(&b->ng_fec_ports, p, fec_list); FREE(p, M_NETGRAPH); |