From owner-svn-src-head@FreeBSD.ORG Sun Jan 4 19:03:43 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 31A18106564A; Sun, 4 Jan 2009 19:03:43 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 201768FC08; Sun, 4 Jan 2009 19:03:43 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n04J3hxL071798; Sun, 4 Jan 2009 19:03:43 GMT (envelope-from rwatson@svn.freebsd.org) Received: (from rwatson@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n04J3hNs071797; Sun, 4 Jan 2009 19:03:43 GMT (envelope-from rwatson@svn.freebsd.org) Message-Id: <200901041903.n04J3hNs071797@svn.freebsd.org> From: Robert Watson Date: Sun, 4 Jan 2009 19:03:43 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r186745 - head/sys/sys X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2009 19:03:43 -0000 Author: rwatson Date: Sun Jan 4 19:03:42 2009 New Revision: 186745 URL: http://svn.freebsd.org/changeset/base/186745 Log: Remove now-unused pr_ousrreq from struct protosw. It may not have been used since the last millenia. Modified: head/sys/sys/protosw.h Modified: head/sys/sys/protosw.h ============================================================================== --- head/sys/sys/protosw.h Sun Jan 4 18:18:59 2009 (r186744) +++ head/sys/sys/protosw.h Sun Jan 4 19:03:42 2009 (r186745) @@ -89,8 +89,6 @@ struct protosw { pr_output_t *pr_output; /* output to protocol (from above) */ pr_ctlinput_t *pr_ctlinput; /* control input (from below) */ pr_ctloutput_t *pr_ctloutput; /* control output (from above) */ -/* user-protocol hook */ - pr_usrreq_t *pr_ousrreq; /* utility hooks */ pr_init_t *pr_init; pr_fasttimo_t *pr_fasttimo; /* fast timeout (200ms) */