Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 22 Nov 2012 20:23:46 +0000 (UTC)
From:      Andre Oppermann <andre@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r243413 - user/andre/tcp_workqueue/sys/net
Message-ID:  <201211222023.qAMKNkrA057353@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



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