From owner-svn-src-stable-9@FreeBSD.ORG Sat Sep 22 12:35:23 2012 Return-Path: Delivered-To: svn-src-stable-9@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 49DEC106564A; Sat, 22 Sep 2012 12:35:23 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 34B3F8FC0C; Sat, 22 Sep 2012 12:35:23 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q8MCZNgm066911; Sat, 22 Sep 2012 12:35:23 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q8MCZNj8066908; Sat, 22 Sep 2012 12:35:23 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <201209221235.q8MCZNj8066908@svn.freebsd.org> From: Konstantin Belousov Date: Sat, 22 Sep 2012 12:35:23 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r240817 - stable/9/sys/sys X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Sep 2012 12:35:23 -0000 Author: kib Date: Sat Sep 22 12:35:22 2012 New Revision: 240817 URL: http://svn.freebsd.org/changeset/base/240817 Log: MFC r237476: Remove no longer needed forward declaration for struct sf_buf. Modified: stable/9/sys/sys/sysent.h Directory Properties: stable/9/sys/ (props changed) Modified: stable/9/sys/sys/sysent.h ============================================================================== --- stable/9/sys/sys/sysent.h Sat Sep 22 12:34:02 2012 (r240816) +++ stable/9/sys/sys/sysent.h Sat Sep 22 12:35:22 2012 (r240817) @@ -260,7 +260,6 @@ int lkmressys(struct thread *, struct no int syscall_thread_enter(struct thread *td, struct sysent *se); void syscall_thread_exit(struct thread *td, struct sysent *se); -struct sf_buf; int shared_page_alloc(int size, int align); int shared_page_fill(int size, int align, const void *data); void shared_page_write(int base, int size, const void *data);