From owner-svn-src-user@FreeBSD.ORG Thu Nov 22 20:23:47 2012 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 30105CEC; Thu, 22 Nov 2012 20:23:47 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 166758FC08; Thu, 22 Nov 2012 20:23:47 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAMKNk4Y057354; Thu, 22 Nov 2012 20:23:46 GMT (envelope-from andre@svn.freebsd.org) Received: (from andre@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAMKNkrA057353; Thu, 22 Nov 2012 20:23:46 GMT (envelope-from andre@svn.freebsd.org) Message-Id: <201211222023.qAMKNkrA057353@svn.freebsd.org> From: Andre Oppermann Date: Thu, 22 Nov 2012 20:23:46 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r243413 - user/andre/tcp_workqueue/sys/net X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Nov 2012 20:23:47 -0000 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);