summaryrefslogtreecommitdiffstats
path: root/sys/scsi/pt.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove devconf, it never grew up to be of any use.phk1996-09-061-7/+1
|
* Turn SCSIDEBUG into a new-style option.joerg1996-07-141-1/+2
|
* Fixed name of pt device (it has a unit number). devfs still only createsbde1996-03-271-7/+14
| | | | | | one. Added control device.
* Fixed some missing int32 -> int32_tdg1996-03-101-2/+2
|
* Cleanse the SCSI subsystem of its internally defined typesgibbs1996-03-101-5/+5
| | | | | u_int32, u_int16, u_int8, int32, int16, int8. Use the system defined *_t types instead.
* Convert BOUNCE_BUFFERS and BOUNCEPAGES to new option scheme.wollman1996-01-051-1/+3
|
* Moved prototypes to better places.bde1995-12-141-6/+5
| | | | Fixed indentation of some function headers.
* Another mega commit to staticize things.phk1995-12-141-9/+9
|
* Julian forgot to make the *devsw structures static.phk1995-12-081-2/+2
|
* Pass 3 of the great devsw changesjulian1995-12-081-18/+20
| | | | | | | | | | | | | | | | | | | | | | | most devsw referenced functions are now static, as they are in the same file as their devsw structure. I've also added DEVFS support for nearly every device in the system, however many of the devices have 'incorrect' names under DEVFS because I couldn't quickly work out the correct naming conventions. (but devfs won't be coming on line for a month or so anyhow so that doesn't matter) If you "OWN" a device which would normally have an entry in /dev then search for the devfs_add_devsw() entries and munge to make them right.. check out similar devices to see what I might have done in them in you can't see what's going on.. for a laugh compare conf.c conf.h defore and after... :) I have not doen DEVFS entries for any DISKSLICE devices yet as that will be a much more complicated job.. (pass 5 :) pass 4 will be to make the devsw tables of type (cdevsw * ) rather than (cdevsw) seems to work here.. complaints to the usual places.. :)
* If you're going to mechanically replicate something in 50 filesjulian1995-11-291-2/+2
| | | | it's best to not have a (compiles cleanly) typo in it! (sigh)
* OK, that's it..julian1995-11-291-1/+43
| | | | | | | | | | | | | | | | | | | | | | | | That's EVERY SINGLE driver that has an entry in conf.c.. my next trick will be to define cdevsw[] and bdevsw[] as empty arrays and remove all those DAMNED defines as well.. Each of these drivers has a SYSINIT linker set entry that comes in very early.. and asks teh driver to add it's own entry to the two devsw[] tables. some slight reworking of the commits from yesterday (added the SYSINIT stuff and some usually wrong but token DEVFS entries to all these devices. BTW does anyone know where the 'ata' entries in conf.c actually reside? seems we don't actually have a 'ataopen() etc... If you want to add a new device in conf.c please make sure I know so I can keep it up to date too.. as before, this is all dependent on #if defined(JREMOD) (and #ifdef DEVFS in parts)
* First set of changes to eliminate the ad-hoc device buffer queues,dyson1995-11-191-11/+8
| | | | | | replacing them with TAILQ's as appropriate. The SCSI code is the first to be changed -- until the changes are complete, both b_act and b_actf will be in the buf structure. b_actf will eventually be removed.
* Remove trailing whitespace.rgrimes1995-05-301-6/+6
|
* Moved unit definitions out of scsiconf.h;dufault1995-05-031-2/+2
| | | | | | Added CONTROL device that only does user-ioctl and nothing else; Added protection so user-ioctl requires write access; Clean up scsiconf.h a little. It needs more work.
* Set SCSI_NOSLEEP only when we really need to. This requires an additionalgibbs1995-04-231-8/+8
| | | | | | | | flags parameter to all xxstart routines so that the correct information can be passed down into the device specific routines. This is needed to ensure that ccb/scb allocation routines don't hang. Submitted by: John Dyson
* Added "scsi target" device that can act as a target for scsi transfersdufault1995-04-141-6/+46
| | | | | | | | from an initiator Added Julian's support for residuals. Added Julian's fixes to the tape driver Made compile cleanly with -Wall Reduce boot up output
* 1. Change driver signatures to full signature for slice support.dufault1995-03-041-0/+214
2. Add "pt" (processor type) driver. 3. Add "worm" (Write Once) driver for Jordan.
OpenPOWER on IntegriCloud