summaryrefslogtreecommitdiff
path: root/sys/dev
AgeCommit message (Collapse)Author
1997-02-06Changes to ramdisk driver to support disklabels. Work done by Theo.Dale S. Rahn
This will require changes for each machine type. changes to MAKEDEV, suggest treating rd like sd --- sd*|vnd*|ccd*|rd*) ... rd*) name=rd; blk=17; chr=17;; --- Make certain that majors and minors are correct conf.c add a entry in cdevsw for rd (previously was only in bdev) --- cdev_decl(rd); ... struct cdevsw cdevsw[] = { ... cdev_disk_init(NRD,rd), /* 17 ram disk driver*/ --- other changes to how rdconfig is called may be appropriate, it must now be configured using the "raw" parition typically 'c'.
1997-02-04Make sure arc4random gets initialized eventually.dm
1997-02-01put an harmless waring behind an DIAGNOSTICThomas Graichen
1997-01-31off-by-one in partition indexing, netbsd pr#3161, kleink@layla.inka.deTheo de Raadt
1997-01-31if error, b_resid = b_bcountTheo de Raadt
1997-01-29Export comdefaultrateNiklas Hallqvist
1997-01-29Match com changes.Jason Downs
1997-01-26Some more KNFNiklas Hallqvist
1997-01-26Fixed a busification bug (some may well remain), as well as some KNF issuesNiklas Hallqvist
1997-01-24bug fix:chuck
- if aal5 frame has a CRC error then the length field in the aal5 trailer may not be valid, so we can not use it [and we must dump the frame] [Yuhang Sun <sunyh@dworkin.wustl.edu> & chuck@ccrc.wustl.edu]
1997-01-24Sync with NetBSD 961207Niklas Hallqvist
1997-01-24Sync with NetBSD 960123Niklas Hallqvist
1997-01-23changed aicprint() to scsiprint()flipk
1997-01-22back out bounce buffer fixes until i get them working 100%Theo de Raadt
1997-01-22only go into wide scsi mode if the card supports itTheo de Raadt
1997-01-17add tagkstailey
1997-01-17ncr_print() -> scsiprint()kstailey
1997-01-16ahaprint() & btprint() -> scsiprint()kstailey
1997-01-15getopt(3) returns -1 when out of args, not EOF, whee!Todd C. Miller
1997-01-15moved init of ret in randomioctl() to better locationkstailey
1997-01-15added prototypes, made some functions static, removed unused variableskstailey
now compiles with -Werror -Wall -Wstrict-prototypes
1997-01-15extra braces to prevent warning about missing braceskstailey
1997-01-15sc_link.adapter_buswidth, set to 16 if wide scsi. if 0 it gets convertedTheo de Raadt
to 8 internally so that drivers do not need to init it for regular scsi :-)
1997-01-15more missing prototypes and other warnings fixedkstailey
1997-01-15prevent this warning:kstailey
rnd.c:823: warning: `ret' might be used uninitialized in this function when compiling with -Wall
1997-01-15added prototypeskstailey
1997-01-13small changes to get it compiled on the pmax (does'nt affect anything else)Thomas Graichen
1997-01-05Remove lots of timer_state structs as they just ate memory and only a few wasNiklas Hallqvist
ever used. Now a single state is kept for net, tty and disk events resp. Also, call the randomness from disk_unbusy instead of biodone, as biodone gets a lot of virtual events (from virtual filesystems etc), and as a bonus: feed xfer time and size into the entropy pool too.
1997-01-05absent pcmcia cards do not interruptTheo de Raadt
1997-01-04Add XXX comment about the delay portNiklas Hallqvist
1997-01-04readdisklabel() with correct dev_tTheo de Raadt
1997-01-03make bounce buffer awareTheo de Raadt
1997-01-03end of pesky log message, thanks to Go Watanabe <go@cclub.tutcc.tut.ac.jp>kstailey
1997-01-01remove unneded space in printf (only cosmetic)Thomas Graichen
1997-01-01don't count on MFS in add_blkdev_randomnessMichael Shalayeff
1996-12-28Fix prerequisite test, still need to check why NODEV bufs comes here.Niklas Hallqvist
1996-12-24deal with the 2340 lie in the right place, i thinkTheo de Raadt
1996-12-23Import of Openfirmware device drivers for PowerPC port.Dale S. Rahn
From NetBSD, with modification to get current time in kernel.
1996-12-21add disklabel supportTheo de Raadt
1996-12-19netbsd fix to problem found by m4@nts.umn.eduTheo de Raadt
1996-12-19do SIOCGIFADDR in ether_ioctlMichael Shalayeff
1996-12-16add "return (0)" to end of zsstop() since it's not a void function anymorekstailey
1996-12-12note lpt chipMichael Shalayeff
1996-12-12Revert to non-bus.h versions for the time beingNiklas Hallqvist
1996-12-11Slight optimizationsNiklas Hallqvist
1996-12-11b_resid cleanups, pointed out by minoura@kw.netlaputa.or.jp in netbsd pr#3007Theo de Raadt
1996-12-11isadma belongs in files.isaNiklas Hallqvist
1996-12-11Do not allocate all of ports 0x80 - 0x8f for isadma (hint: delay)Niklas Hallqvist
1996-12-10the real changes by niklas... I did not merge correctlyTheo de Raadt
1996-12-10clr TS_WOPEN if bailing on cua opensTheo de Raadt
As well, at this point I've also done fancy cvs repository mangling to ensure that the com* files in sys/dev/ic maintain the history we had before. (Yes, I cleaned up the 2.0 tags too..)