svn commit: r243413 - user/andre/tcp_workqueue/sys/net

Andre Oppermann andre at FreeBSD.org
Thu Nov 22 20:23:47 UTC 2012


Author: andre
Date: Thu Nov 22 20:23:46 2012
New Revision: 243413
URL: http://svnweb.freebsd.org/changeset/base/243413

Log:
  Convert another function prototype to use the pfil hook callback
  that got overlooked in r243411.
  
  The typedef name will be re-considered again later.

Modified:
  user/andre/tcp_workqueue/sys/net/pfil.c

Modified: user/andre/tcp_workqueue/sys/net/pfil.c
==============================================================================
--- user/andre/tcp_workqueue/sys/net/pfil.c	Thu Nov 22 17:32:10 2012	(r243412)
+++ user/andre/tcp_workqueue/sys/net/pfil.c	Thu Nov 22 20:23:46 2012	(r243413)
@@ -52,10 +52,7 @@ MTX_SYSINIT(pfil_global_lock, &pfil_glob
 
 static int pfil_list_add(pfil_list_t *, struct packet_filter_hook *, int,
     uint8_t);
-
-static int pfil_list_remove(pfil_list_t *,
-    int (*)(void *, struct mbuf **, struct ifnet *, int, struct inpcb *),
-    void *);
+static int pfil_list_remove(pfil_list_t *, pfil_func_t, void *);
 
 LIST_HEAD(pfilheadhead, pfil_head);
 VNET_DEFINE(struct pfilheadhead, pfil_head_list);


More information about the svn-src-user mailing list