From owner-svn-src-all@freebsd.org Sat Aug 20 14:52:24 2016 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B615BBC0D44; Sat, 20 Aug 2016 14:52:24 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [IPv6:2001:470:1f11:75::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 924C415B2; Sat, 20 Aug 2016 14:52:24 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from ralph.baldwin.cx (c-73-231-226-104.hsd1.ca.comcast.net [73.231.226.104]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 6F86CB9B3; Sat, 20 Aug 2016 10:52:21 -0400 (EDT) From: John Baldwin To: src-committers@freebsd.org Cc: svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r304513 - in head: . share/man/man4/man4.i386 sys/conf sys/dev/ie sys/i386/conf sys/modules sys/modules/ie sys/pc98/conf Date: Sat, 20 Aug 2016 07:51:55 -0700 Message-ID: <1699917.hhfoKyASTk@ralph.baldwin.cx> User-Agent: KMail/4.14.3 (FreeBSD/10.3-STABLE; KDE/4.14.3; amd64; ; ) In-Reply-To: <201608200049.u7K0nUYd084685@repo.freebsd.org> References: <201608200049.u7K0nUYd084685@repo.freebsd.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Sat, 20 Aug 2016 10:52:21 -0400 (EDT) X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Aug 2016 14:52:24 -0000 On Saturday, August 20, 2016 12:49:30 AM John Baldwin wrote: > Author: jhb > Date: Sat Aug 20 00:49:29 2016 > New Revision: 304513 > URL: https://svnweb.freebsd.org/changeset/base/304513 > > Log: > Remove the ie(4) driver for Intel 82586 ISA Ethernet adapters. > > This driver only supports 10Mb Ethernet using PIO (the hardware supports > DMA, but the driver only does PIO). There are not any PCCard adapters > supported by this driver, only ISA cards. In addition, it does not use > bus_space but instead uses bcopy with volatile pointers triggering a > host of warnings. (if_ie.c is one of 3 files always built with > -Wno-error) > > Relnotes: yes This concludes the list of older drivers I had from earlier after working on the timeout(9) -> callout(9) changes (almost finished with that, just a few things left to test changes for, one of them being fail points before we can remove timeout()/untimeout() entirely). I do not have plans for removing any other drivers, though am open to suggestions. Some possibilities include: - tty drivers that haven't been updated to new tty and have been disconnected from the build since 8.0 including digi(4) and cy(4). I know Bruce has patches for sio(4) that I just haven't merged, so I'm inclined to leave sio(4), but the other disconnected drivers are candidates I think. - Older storage adapters: - aha (ISA) - ahb (EISA) - adv (ISA / EISA / PCI) - adw (PCI)? - bt (ISA / EISA / PCI) - aic (ISA / PCCard) - ct (ISA / CBUS) - dpt (ISA / EISA / PCI) - ncv (PCCard / PCI) - nsp (PCCard) - stg (ISA / PCCard / PCI) (Note: some of these are PC-98 related and might remove too much of the PC-98 ecosystem if removed?) - mse(4) (ISA-only non-PS-2, non-serial mouse) - joy(4) (ISA-only, was on various Sound Cards, etc., but I haven't seen a "game port" on a modern box in a long while) -- John Baldwin