From owner-svn-src-head@freebsd.org Fri May 11 17:27:00 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2FEC7FAD670; Fri, 11 May 2018 17:27:00 +0000 (UTC) (envelope-from sbruno@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D43AE7E36B; Fri, 11 May 2018 17:26:59 +0000 (UTC) (envelope-from sbruno@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AEA7312985; Fri, 11 May 2018 17:26:59 +0000 (UTC) (envelope-from sbruno@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4BHQxZ2054984; Fri, 11 May 2018 17:26:59 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4BHQxhs054982; Fri, 11 May 2018 17:26:59 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201805111726.w4BHQxhs054982@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Fri, 11 May 2018 17:26:59 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r333499 - in head: share/man/man4 sys/dev/vxge X-SVN-Group: head X-SVN-Commit-Author: sbruno X-SVN-Commit-Paths: in head: share/man/man4 sys/dev/vxge X-SVN-Commit-Revision: 333499 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.25 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: Fri, 11 May 2018 17:27:00 -0000 Author: sbruno Date: Fri May 11 17:26:59 2018 New Revision: 333499 URL: https://svnweb.freebsd.org/changeset/base/333499 Log: vxge(4): deprecation notice This hardware isn't totally ancient, about equal to a mxge(4) or mlx4en(4), but the company was sold to Exar which then promptly exited the Ethernet business so the card was commercially available for under 2 years. On deep search, the only usage of these cards I found was by the importing of the driver. There are code quality issues identified by Brooks and Hiren and no visible use nor maintainership that warrant removal from FreeBSD 12.0. Submitted by: kbowling Reviewed by: gnn brooks Sponsored by: Limelight Networks Differential Revision: https://reviews.freebsd.org/D15363 Modified: head/share/man/man4/vxge.4 head/sys/dev/vxge/vxge.c Modified: head/share/man/man4/vxge.4 ============================================================================== --- head/share/man/man4/vxge.4 Fri May 11 17:24:04 2018 (r333498) +++ head/share/man/man4/vxge.4 Fri May 11 17:26:59 2018 (r333499) @@ -44,6 +44,12 @@ module at boot time, place the following line in .Bd -literal -offset indent if_vxge_load="YES" .Ed +.Sh DEPRECATION NOTICE +The +.Nm +driver is not present in +.Fx 12.0 +and later. .Sh DESCRIPTION The .Nm Modified: head/sys/dev/vxge/vxge.c ============================================================================== --- head/sys/dev/vxge/vxge.c Fri May 11 17:24:04 2018 (r333498) +++ head/sys/dev/vxge/vxge.c Fri May 11 17:26:59 2018 (r333499) @@ -236,6 +236,7 @@ _exit0: err = ENXIO; } + gone_in_dev(ndev, 12, "vxge(4) driver"); return (err); }