Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Aug 2015 07:53:59 +0000 (UTC)
From:      "Alexander V. Chernikov" <melifaro@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r287195 - head/sys/netpfil/ipfw
Message-ID:  <201508270753.t7R7rxjn021733@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: melifaro
Date: Thu Aug 27 07:53:58 2015
New Revision: 287195
URL: https://svnweb.freebsd.org/changeset/base/287195

Log:
  Fix packets/bytes accounting on i386.
  
  Spotted by:	julian

Modified:
  head/sys/netpfil/ipfw/ip_fw_private.h

Modified: head/sys/netpfil/ipfw/ip_fw_private.h
==============================================================================
--- head/sys/netpfil/ipfw/ip_fw_private.h	Thu Aug 27 07:43:29 2015	(r287194)
+++ head/sys/netpfil/ipfw/ip_fw_private.h	Thu Aug 27 07:53:58 2015	(r287195)
@@ -256,7 +256,7 @@ struct ip_fw {
 	ipfw_insn	cmd[1];		/* storage for commands		*/
 };
 
-#define	IPFW_RULE_CNTR_SIZE	(2 * sizeof(counter_u64_t))
+#define	IPFW_RULE_CNTR_SIZE	(2 * sizeof(uint64_t))
 
 #endif
 



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