summaryrefslogtreecommitdiffstats
path: root/sys/netinet
diff options
context:
space:
mode:
authormlaier <mlaier@FreeBSD.org>2004-03-02 14:37:23 +0000
committermlaier <mlaier@FreeBSD.org>2004-03-02 14:37:23 +0000
commita32329ae33708bef4a7f935763e39fac7a6930e3 (patch)
treedaafcb55037777f58b65ec4798b5bab10b010c09 /sys/netinet
parentc2d12bfbee885e14b2c8f2bd309974c222232785 (diff)
downloadFreeBSD-src-a32329ae33708bef4a7f935763e39fac7a6930e3.zip
FreeBSD-src-a32329ae33708bef4a7f935763e39fac7a6930e3.tar.gz
Two minor follow-ups on the MT_TAG removal:
ifp is now passed explicitly to ether_demux; no need to look it up again. Make mtag a global var in ip_input. Noticed by: rwatson Approved by: bms(mentor)
Diffstat (limited to 'sys/netinet')
-rw-r--r--sys/netinet/ip_output.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/netinet/ip_output.c b/sys/netinet/ip_output.c
index abf570f..a83cfa9 100644
--- a/sys/netinet/ip_output.c
+++ b/sys/netinet/ip_output.c
@@ -144,12 +144,11 @@ ip_output(struct mbuf *m, struct mbuf *opt, struct route *ro,
int isbroadcast, sw_csum;
struct in_addr pkt_dst;
struct route iproute;
- struct m_tag *dummytag;
+ struct m_tag *mtag, *dummytag;
#ifdef IPSEC
struct secpolicy *sp = NULL;
#endif
#ifdef FAST_IPSEC
- struct m_tag *mtag;
struct secpolicy *sp = NULL;
struct tdb_ident *tdbi;
int s;
@@ -884,7 +883,7 @@ spd_done:
break;
}
if (ia) { /* tell ip_input "dont filter" */
- struct m_tag *mtag = m_tag_get(
+ mtag = m_tag_get(
PACKET_TAG_IPFORWARD,
sizeof(struct sockaddr_in *), M_NOWAIT);
if (mtag == NULL) {
OpenPOWER on IntegriCloud