svn commit: r193663 - user/kmacy/releng_7_2_fcs/sys/netinet

Kip Macy kmacy at FreeBSD.org
Sun Jun 7 22:55:49 UTC 2009


Author: kmacy
Date: Sun Jun  7 22:55:48 2009
New Revision: 193663
URL: http://svn.freebsd.org/changeset/base/193663

Log:
  PCPU_INC only takes 1 argument

Modified:
  user/kmacy/releng_7_2_fcs/sys/netinet/ip_output.c

Modified: user/kmacy/releng_7_2_fcs/sys/netinet/ip_output.c
==============================================================================
--- user/kmacy/releng_7_2_fcs/sys/netinet/ip_output.c	Sun Jun  7 22:52:48 2009	(r193662)
+++ user/kmacy/releng_7_2_fcs/sys/netinet/ip_output.c	Sun Jun  7 22:55:48 2009	(r193663)
@@ -195,7 +195,7 @@ ip_output(struct mbuf *m, struct mbuf *o
 		V_ipstat.ips_localout++;
 #else
 		ip->ip_id = PCPU_GET(ipid);
-		PCPU_INC(ipid, 1);
+		PCPU_INC(ipid);
 #endif
 	} else {
 		hlen = ip->ip_hl << 2;


More information about the svn-src-user mailing list