Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 4 Nov 2003 21:51:23 -0800 (PST)
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 41414 for review
Message-ID:  <200311050551.hA55pNPW023095@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=41414

Change 41414 by sam@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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200311050551.hA55pNPW023095>