Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 6 May 1998 12:16:45 -0700 (PDT)
From:      "Justin T. Gibbs" <gibbs@FreeBSD.ORG>
To:        cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG
Subject:   cvs commit: src/sys/dev/dpt dpt.h dpt_scsi.c src/sys/i386/conf files.i386 src/sys/i386/eisa 3c5x9.c aha1742.c aic7770.c bt74x.c eisaconf.c eisaconf.h if_vx_eisa.c src/sys/i386/i386 busdma_machdep.c autoconf.c machdep.c trap.c userconfig.c ...
Message-ID:  <199805061916.MAA09625@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
gibbs       1998/05/06 12:16:44 PDT

  Modified files:        (Branch: RELENG_2_2)
    sys/dev/dpt          dpt.h dpt_scsi.c 
  Log:
  Switch to using the CAM SWI interface.
  
  Revision  Changes    Path
  1.1.2.4   +1 -5      src/sys/dev/dpt/Attic/dpt.h
  1.4.2.3   +1 -14     src/sys/dev/dpt/dpt_scsi.c

  Modified files:        (Branch: RELENG_2_2)
    sys/i386/conf        files.i386 
  Log:
  Add busdma interfaces to -stable.
  
  Revision  Changes    Path
  1.141.2.21 +2 -1      src/sys/i386/conf/files.i386

  Modified files:        (Branch: RELENG_2_2)
    sys/i386/eisa        3c5x9.c aha1742.c aic7770.c bt74x.c 
                         eisaconf.c eisaconf.h if_vx_eisa.c 
  Log:
  MFC - Eisaconf interface changes.
  
  Interrupt specification and attach changed to allow shared interrupts.
  Shared EISA interrupts don't work in -stable though because we need the
  new interrupt code from current.
  
  Match routines now deal with const strings.
  
  Revision  Changes    Path
  1.7.2.1   +8 -4      src/sys/i386/eisa/3c5x9.c
  1.55.2.1  +9 -4      src/sys/i386/eisa/aha1742.c
  1.34.2.7  +9 -4      src/sys/i386/eisa/aic7770.c
  1.7.2.1   +9 -4      src/sys/i386/eisa/bt74x.c
  1.23.2.3  +111 -85   src/sys/i386/eisa/eisaconf.c
  1.12.2.3  +15 -5     src/sys/i386/eisa/eisaconf.h
  1.2.2.1   +11 -8     src/sys/i386/eisa/if_vx_eisa.c

  Modified files:        (Branch: RELENG_2_2)
    sys/i386/i386        autoconf.c machdep.c trap.c userconfig.c 
                         vm_machdep.c 
  Added files:           (Branch: RELENG_2_2)
    sys/i386/i386        busdma_machdep.c 
  Log:
  MFC
  autoconf.c:
  	Add interrupt driven config hook mechanism.
  	Split out mountroot and dumpconf code so it occurs after
  	config hooks run.
  
  machdep.c:
  	Clean out old DPT SWI mechanism.
  
  trap.c:
  	Add CAM SWI mechanism, remove DPT SWI mechanism.
  
  userconfig.c:
  	Remove DPTOPT.  The dpt driver is now standard.
  
  vm_machdep.c:
  	Add the VM SWI with hooks to call the bus dma code.
  
  busdma_machdep.c:
  	Add bus dma functionality.
  
  Interrupt specification and attach changed to allow shared interrupts.
  Shared EISA interrupts don't work in -stable though because we need the
  new interrupt code from current.
  
  Match routines now deal with const strings.
  
  Revision  Changes    Path
  1.56.2.14 +49 -11    src/sys/i386/i386/autoconf.c
  1.209.2.23 +1 -41     src/sys/i386/i386/machdep.c
  1.83.2.7  +3 -5      src/sys/i386/i386/trap.c
  1.63.2.26 +2 -4      src/sys/i386/i386/userconfig.c
  1.71.2.5  +11 -1     src/sys/i386/i386/vm_machdep.c

  Modified files:        (Branch: RELENG_2_2)
    sys/i386/include     cpufunc.h md_var.h spl.h 
  Added files:           (Branch: RELENG_2_2)
    sys/i386/include     bus.h bus_memio.h bus_pio.h 
  Log:
  MFC
  cpufunc.h:
  	const poisening.
  
  md_var.h:
  	Add definitions of busdma_swi() and swi_vm().
  	Remove DPT SWI code.
  
  trap.c:
  	Add CAM SWI mechanism, remove DPT SWI mechanism.
  
  spl.h:
  	Remove DPT SWI mechanism - add cam SWI mechanism.
  
  bus.h:
  bus_memeio.h:
  bus_pio.h:
  	Add bus space and bus dma code.
  
  Revision  Changes    Path
  1.59.2.2  +4 -4      src/sys/i386/include/cpufunc.h
  1.10.2.4  +4 -4      src/sys/i386/include/md_var.h
  1.15.2.2  +25 -27    src/sys/i386/include/Attic/spl.h

  Modified files:        (Branch: RELENG_2_2)
    sys/i386/isa         fd.c icu.s isa.c isa_device.h mcd.c 
                         pcibus.c scd.c sio.c vector.s wcd.c wd.c 
                         wfd.c 
  Log:
  MFC
  fd.c:
  mcd.c:
  scd.c:
  wcd.c:
  wd.c:
  wfd.c:
  	Convert to using new buf queue fucntions.
  
  icu.s:
  isa.c:
  isa_device.h:
  vector.s:
  	Remove DPT SWI code.  Add CAM SWI code.
  
  sio.c:
  	Remove bogus DPTOPT code.
  
  pcibus.c:
  	Add functions for extracting the bus, device, and function
  	from old style pcici_ts.
  
  Revision  Changes    Path
  1.92.2.6  +8 -8      src/sys/i386/isa/fd.c
  1.26.2.3  +9 -45     src/sys/i386/isa/Attic/icu.s
  1.74.2.6  +14 -1     src/sys/i386/isa/isa.c
  1.33.2.2  +2 -1      src/sys/i386/isa/isa_device.h
  1.83.2.1  +5 -5      src/sys/i386/isa/mcd.c
  1.27.2.2  +65 -1     src/sys/i386/isa/pcibus.c
  1.25.2.1  +5 -5      src/sys/i386/isa/scd.c
  1.147.2.15 +1 -5      src/sys/i386/isa/sio.c
  1.21.2.4  +9 -15     src/sys/i386/isa/vector.s
  1.39.2.1  +5 -3      src/sys/i386/isa/wcd.c
  1.119.2.12 +13 -13    src/sys/i386/isa/wd.c
  1.1.2.6   +7 -6      src/sys/i386/isa/wfd.c

  Modified files:        (Branch: RELENG_2_2)
    sys/i386/isa/matcd   matcd.c 
  Log:
  MFC - Convert to using new buf queue fucntions.
  
  Revision  Changes    Path
  1.20.2.2  +5 -5      src/sys/i386/isa/matcd/matcd.c

  Modified files:        (Branch: RELENG_2_2)
    sys/kern             init_main.c kern_shutdown.c 
                         subr_autoconf.c vfs_bio.c 
  Log:
  init_main.c:
  kern_shutdown.c:
  subr_autoconf.c:
  	MFC - Add interrupt driven config hook mechanism and split out
  	      mountroot and dumpconf.
  
  vfs_bio.c:
  	Cleanup B_ORDERED buffer handling.
  
  Revision  Changes    Path
  1.51.2.7  +12 -2     src/sys/kern/init_main.c
  1.10.2.2  +11 -1     src/sys/kern/kern_shutdown.c
  1.2.12.1  +81 -1     src/sys/kern/subr_autoconf.c
  1.104.2.9 +5 -41     src/sys/kern/vfs_bio.c

  Modified files:        (Branch: RELENG_2_2)
    sys/pc98/i386        machdep.c trap.c userconfig.c 
  Log:
  	Remove DPT SWI code.  unifdef DPTOPT.
  
  Revision  Changes    Path
  1.11.2.25 +1 -41     src/sys/pc98/i386/machdep.c
  1.8.2.8   +3 -5      src/sys/pc98/i386/trap.c
  1.10.2.20 +2 -5      src/sys/pc98/i386/userconfig.c

  Modified files:        (Branch: RELENG_2_2)
    sys/pc98/pc98        sio.c 
  Log:
  Remove bogus DPTOPT code.
  
  Revision  Changes    Path
  1.8.2.18  +1 -5      src/sys/pc98/pc98/sio.c

  Modified files:        (Branch: RELENG_2_2)
    sys/pci              pci.c pcibus.h pcivar.h 
  Log:
  Add support for extracting the bus, device, and function from a pcici_t.
  
  Revision  Changes    Path
  1.57.2.8  +39 -1     src/sys/pci/pci.c
  1.4.4.2   +4 -1      src/sys/pci/Attic/pcibus.h
  1.13.2.1  +7 -1      src/sys/pci/pcivar.h

  Modified files:        (Branch: RELENG_2_2)
    sys/scsi             cd.c od.c sd.c st.c 
  Log:
  Convert to new buf queue routines.
  
  Revision  Changes    Path
  1.73.2.6  +5 -5      src/sys/scsi/cd.c
  1.22.2.3  +5 -5      src/sys/scsi/od.c
  1.95.2.9  +6 -6      src/sys/scsi/sd.c
  1.73.2.2  +5 -5      src/sys/scsi/st.c

  Modified files:        (Branch: RELENG_2_2)
    sys/sys              buf.h device.h disklabel.h kernel.h 
                         param.h queue.h systm.h 
  Log:
  buf.h:
  	MFC - Add new buf queue routines.
  
  device.h:
  kernel.h:
  param.h:
  systm.h:
  	MFC - Interrupt driven config hook support.
  
  disklabel.h
  	MFC - bufqdisksort replaces tqdisksort.
  
  queue.h:
  	MFC.
  
  Revision  Changes    Path
  1.34.2.2  +55 -3     src/sys/sys/buf.h
  1.4.4.1   +10 -1     src/sys/sys/device.h
  1.24.2.3  +2 -2      src/sys/sys/disklabel.h
  1.22.2.1  +5 -2      src/sys/sys/kernel.h
  1.15.2.3  +2 -1      src/sys/sys/param.h
  1.10.2.2  +120 -57   src/sys/sys/queue.h
  1.47.2.3  +3 -1      src/sys/sys/systm.h

  Modified files:        (Branch: RELENG_2_2)
    sys/ufs/ufs          ufs_disksubr.c 
  Log:
  MFC - bufqdisksort replaces tqdisksort.
  
  Revision  Changes    Path
  1.26.2.1  +61 -84    src/sys/ufs/ufs/ufs_disksubr.c

  Modified files:        (Branch: RELENG_2_2)
    sys/vm               vm_object.c 
  Log:
  Small change in DDB function code to deal with new definition of TAILQ_PREV.
  
  Revision  Changes    Path
  1.82.2.2  +3 -2      src/sys/vm/vm_object.c

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199805061916.MAA09625>