Date: Mon, 22 Oct 2018 09:49:24 -0600 From: Warner Losh <imp@bsdimp.com> To: "Rodney W. Grimes" <rgrimes@freebsd.org> Cc: Warner Losh <imp@freebsd.org>, src-committers <src-committers@freebsd.org>, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r339570 - in head: share/man/man4 sys/amd64/conf sys/conf sys/dev/ncv sys/i386/conf sys/modules sys/modules/ncv Message-ID: <CANCZdfoZ_1fOanO=fqVLpanNMAwP58qfZa=AqNaO3k5WsrfzWw@mail.gmail.com> In-Reply-To: <201810221545.w9MFjPDg010749@pdx.rh.CN85.dnsmgr.net> References: <201810220235.w9M2ZQ6w043947@repo.freebsd.org> <201810221545.w9MFjPDg010749@pdx.rh.CN85.dnsmgr.net>
next in thread | previous in thread | raw e-mail | index | archive | help
On Mon, Oct 22, 2018 at 9:45 AM Rodney W. Grimes < freebsd@pdx.rh.cn85.dnsmgr.net> wrote: > > Author: imp > > Date: Mon Oct 22 02:35:26 2018 > > New Revision: 339570 > > URL: https://svnweb.freebsd.org/changeset/base/339570 > > > > Log: > > Remove ncv(4) driver > > > > ncv(4) is marked as gone in 12. Remove it. There are no sightings of > > it in the nycbug dmesg database. It was for an obscure SCSI card that > > sold mostly in Japan, and was especially popilar among pc98 hackers in > > the 4.x time frame.. > > > > Relnote: Yes > > I would of liked to delay these until post 12.0 release production > incase there are any release cycle fixes that need to be MFC'ed to > fix the 12.0 release, but done is done and we shall just have to > deal with that by direct commit or other means. > I did these because they were marked as going away in 12, and this would allow us to MFC them if we wanted before 12.0R. Warner > > Deleted: > > head/share/man/man4/ncv.4 > > head/sys/dev/ncv/ncr53c500.c > > head/sys/dev/ncv/ncr53c500_pccard.c > > head/sys/dev/ncv/ncr53c500hw.h > > head/sys/dev/ncv/ncr53c500hwtab.h > > head/sys/dev/ncv/ncr53c500reg.h > > head/sys/dev/ncv/ncr53c500var.h > > head/sys/modules/ncv/Makefile > > Modified: > > head/share/man/man4/Makefile > > head/sys/amd64/conf/NOTES > > head/sys/conf/files > > head/sys/i386/conf/NOTES > > head/sys/modules/Makefile > > > > Modified: head/share/man/man4/Makefile > > > ============================================================================== > > --- head/share/man/man4/Makefile Mon Oct 22 02:35:12 2018 > (r339569) > > +++ head/share/man/man4/Makefile Mon Oct 22 02:35:26 2018 > (r339570) > > @@ -305,7 +305,6 @@ MAN= aac.4 \ > > nand.4 \ > > nandsim.4 \ > > ncr.4 \ > > - ncv.4 \ > > ${_ndis.4} \ > > net80211.4 \ > > netdump.4 \ > > > > Modified: head/sys/amd64/conf/NOTES > > > ============================================================================== > > --- head/sys/amd64/conf/NOTES Mon Oct 22 02:35:12 2018 (r339569) > > +++ head/sys/amd64/conf/NOTES Mon Oct 22 02:35:26 2018 (r339570) > > @@ -428,11 +428,9 @@ device twa # 3ware > 9000 series PATA/SATA RAID > > # > > # SCSI host adapters: > > # > > -# ncv: NCR 53C500 based SCSI host adapters. > > # nsp: Workbit Ninja SCSI-3 based PC Card SCSI host adapters. > > # stg: TMC 18C30, 18C50 based SCSI host adapters. > > > > -device ncv > > device nsp > > device stg > > > > > > Modified: head/sys/conf/files > > > ============================================================================== > > --- head/sys/conf/files Mon Oct 22 02:35:12 2018 (r339569) > > +++ head/sys/conf/files Mon Oct 22 02:35:26 2018 (r339570) > > @@ -113,7 +113,7 @@ cam/ctl/scsi_ctl.c optional ctl > > cam/mmc/mmc_xpt.c optional scbus mmccam > > cam/mmc/mmc_da.c optional scbus mmccam da > > cam/scsi/scsi_da.c optional da > > -cam/scsi/scsi_low.c optional ncv | nsp | stg > > +cam/scsi/scsi_low.c optional nsp | stg > > cam/scsi/scsi_pass.c optional pass > > cam/scsi/scsi_pt.c optional pt > > cam/scsi/scsi_sa.c optional sa > > @@ -2511,8 +2511,6 @@ dev/nand/nandsim_log.c optional nandsim > nand > > dev/nand/nandsim_swap.c optional nandsim nand > > dev/nand/nfc_if.m optional nand > > dev/ncr/ncr.c optional ncr pci > > -dev/ncv/ncr53c500.c optional ncv > > -dev/ncv/ncr53c500_pccard.c optional ncv pccard > > dev/netmap/if_ptnet.c optional netmap inet > > dev/netmap/netmap.c optional netmap > > dev/netmap/netmap_freebsd.c optional netmap > > > > Modified: head/sys/i386/conf/NOTES > > > ============================================================================== > > --- head/sys/i386/conf/NOTES Mon Oct 22 02:35:12 2018 (r339569) > > +++ head/sys/i386/conf/NOTES Mon Oct 22 02:35:26 2018 (r339570) > > @@ -659,11 +659,9 @@ device twa # 3ware > 9000 series PATA/SATA RAID > > # > > # SCSI host adapters: > > # > > -# ncv: NCR 53C500 based SCSI host adapters. > > # nsp: Workbit Ninja SCSI-3 based PC Card SCSI host adapters. > > # stg: TMC 18C30, 18C50 based SCSI host adapters. > > > > -device ncv > > device nsp > > device stg > > hint.stg.0.at="isa" > > > > Modified: head/sys/modules/Makefile > > > ============================================================================== > > --- head/sys/modules/Makefile Mon Oct 22 02:35:12 2018 (r339569) > > +++ head/sys/modules/Makefile Mon Oct 22 02:35:26 2018 (r339570) > > @@ -268,7 +268,6 @@ SUBDIR= \ > > ${_nandsim} \ > > ${_ncr} \ > > ${_nctgpio} \ > > - ${_ncv} \ > > ${_ndis} \ > > ${_netgraph} \ > > ${_nfe} \ > > @@ -757,7 +756,6 @@ _glxiic= glxiic > > _glxsb= glxsb > > #_ibcs2= ibcs2 > > _ncr= ncr > > -_ncv= ncv > > _nsp= nsp > > _pcfclock= pcfclock > > _pst= pst > > > > > > -- > Rod Grimes > rgrimes@freebsd.org >
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CANCZdfoZ_1fOanO=fqVLpanNMAwP58qfZa=AqNaO3k5WsrfzWw>