Thu Jan 19 13:13:48 2012 UTC ()
Remove ipf_start from ipf struct


(liamjfoy)
diff -r1.59 -r1.60 src/sys/netinet/ip_flow.c

cvs diff -r1.59 -r1.60 src/sys/netinet/ip_flow.c (expand / switch to context diff)
--- src/sys/netinet/ip_flow.c 2010/04/01 00:24:41 1.59
+++ src/sys/netinet/ip_flow.c 2012/01/19 13:13:48 1.60
@@ -1,4 +1,4 @@
-/*	$NetBSD: ip_flow.c,v 1.59 2010/04/01 00:24:41 tls Exp $	*/
+/*	$NetBSD: ip_flow.c,v 1.60 2012/01/19 13:13:48 liamjfoy Exp $	*/
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ip_flow.c,v 1.59 2010/04/01 00:24:41 tls Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ip_flow.c,v 1.60 2012/01/19 13:13:48 liamjfoy Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -75,7 +75,6 @@
 	u_long ipf_dropped;		/* ENOBUFS retured by if_output */
 	u_long ipf_errors;		/* other errors returned by if_output */
 	u_int ipf_timer;		/* lifetime timer */
-	time_t ipf_start;		/* creation time */
 };
 
 #define	IPFLOW_HASHBITS		6	/* should not be a multiple of 8 */
@@ -481,7 +480,7 @@
 	ipf->ipf_src = ip->ip_src;
 	ipf->ipf_tos = ip->ip_tos;
 	PRT_SLOW_ARM(ipf->ipf_timer, IPFLOW_TIMER);
-	ipf->ipf_start = time_uptime;
+
 	/*
 	 * Insert into the approriate bucket of the flow table.
 	 */