From owner-svn-ports-head@FreeBSD.ORG Thu Oct 30 18:31:46 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4097B615; Thu, 30 Oct 2014 18:31:46 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2CC28FFE; Thu, 30 Oct 2014 18:31:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9UIVkJE075687; Thu, 30 Oct 2014 18:31:46 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9UIVj2e075682; Thu, 30 Oct 2014 18:31:45 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201410301831.s9UIVj2e075682@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Thu, 30 Oct 2014 18:31:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r371768 - in head/net/iet: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Oct 2014 18:31:46 -0000 Author: delphij Date: Thu Oct 30 18:31:45 2014 New Revision: 371768 URL: https://svnweb.freebsd.org/changeset/ports/371768 QAT: https://qat.redports.org/buildarchive/r371768/ Log: s/soo_ioctl/fo_ioctl/. The former should not be called directly. Added: head/net/iet/files/patch-soo_ioctl (contents, props changed) Modified: head/net/iet/Makefile Modified: head/net/iet/Makefile ============================================================================== --- head/net/iet/Makefile Thu Oct 30 18:17:51 2014 (r371767) +++ head/net/iet/Makefile Thu Oct 30 18:31:45 2014 (r371768) @@ -3,7 +3,7 @@ PORTNAME= iet PORTVERSION= 1.4.20.2 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= net kld MASTER_SITES= SF/iscsitarget/iscsitarget/${PORTVERSION}/ DISTNAME= iscsitarget-${PORTVERSION} Added: head/net/iet/files/patch-soo_ioctl ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/iet/files/patch-soo_ioctl Thu Oct 30 18:31:45 2014 (r371768) @@ -0,0 +1,20 @@ +--- kernel/nthread.c.orig 2014-10-30 11:29:21.000000000 -0700 ++++ kernel/nthread.c 2014-10-30 11:30:14.000000000 -0700 +@@ -91,7 +91,7 @@ + return 0; + #endif + +- error = soo_ioctl(&filetmp, FIONREAD, &avail, NULL, curthread); ++ error = fo_ioctl(&filetmp, FIONREAD, &avail, NULL, curthread); + if (error) + return 0; + +@@ -350,7 +350,7 @@ + filetmp.f_data = conn->sock; + filetmp.f_cred = NULL; + +- error = soo_ioctl(&filetmp, FIONSPACE, &avail, NULL, curthread); ++ error = fo_ioctl(&filetmp, FIONSPACE, &avail, NULL, curthread); + if (error) + return 0; +