PERFORCE change 41414 for review
Sam Leffler
sam at FreeBSD.org
Tue Nov 4 21:51:25 PST 2003
http://perforce.freebsd.org/chv.cgi?CH=41414
Change 41414 by sam at sam_ebb on 2003/11/04 21:51:21
GIANT_REQUIRED does not have a trailing ()
Affected files ...
.. //depot/projects/netperf/sys/netatalk/ddp_input.c#4 edit
.. //depot/projects/netperf/sys/netinet6/ip6_input.c#19 edit
.. //depot/projects/netperf/sys/netipx/ipx_input.c#7 edit
.. //depot/projects/netperf/sys/netnatm/natm.c#6 edit
Differences ...
==== //depot/projects/netperf/sys/netatalk/ddp_input.c#4 (text+ko) ====
@@ -39,7 +39,7 @@
void
at2intr(struct mbuf *m)
{
- GIANT_REQUIRED();
+ GIANT_REQUIRED;
/*
* Phase 2 packet handling
@@ -67,7 +67,7 @@
elhp = mtod(m, struct elaphdr *);
m_adj(m, SZ_ELAPHDR);
- GIANT_REQUIRED();
+ GIANT_REQUIRED;
if (elhp->el_type == ELAP_DDPEXTEND) {
ddp_input(m, m->m_pkthdr.rcvif, NULL, 1);
==== //depot/projects/netperf/sys/netinet6/ip6_input.c#19 (text+ko) ====
@@ -249,7 +249,7 @@
#endif
int srcrt = 0;
- GIANT_REQUIRED(); /* XXX for now */
+ GIANT_REQUIRED; /* XXX for now */
#ifdef IPSEC
/*
* should the inner packet be considered authentic?
==== //depot/projects/netperf/sys/netipx/ipx_input.c#7 (text+ko) ====
@@ -133,7 +133,7 @@
struct ipx_ifaddr *ia;
int len;
- GIANT_REQUIRED();
+ GIANT_REQUIRED;
/*
* If no IPX addresses have been set yet but the interfaces
==== //depot/projects/netperf/sys/netnatm/natm.c#6 (text+ko) ====
@@ -685,7 +685,7 @@
struct socket *so;
struct natmpcb *npcb;
- GIANT_REQUIRED();
+ GIANT_REQUIRED;
#ifdef DIAGNOSTIC
M_ASSERTPKTHDR(m);
More information about the p4-projects
mailing list