summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
1996-07-18make pcvt recognize most S3 adapters up to dateshawn
1996-07-18ipfilter 3.1.0dm
1996-07-18Up NetBSD date for ipfilter and possibly more.dm
1996-07-17nextbsd pr#2637 (and 2638): add cirrus gd5434.Jason Downs
1996-07-17fixes/update:chuck
- adjust txhiwat and mindma params a bit - fixed a couple of incorrectly labeled panic calls - the "location" was being calculated incorrectly in some cases (forgot to subtract off MID_RAMBASE). this only caused problem when trying to change the size of the tx/rx buffers (e.g. to 64KB). - fixed possible non-aligned DMA burst in the starting byte burst case. (e.g. if we could DMA 3 bytes, but only have 2 it is not legal for us to use MIDDMA_BYTE2 mode). - opt: on tx: try and avoid flushing the internal buffer by padding out the length of the last mbuf a bit (if possible)
1996-07-16midway fixes + new stuff:chuck
- alpha changes from cgd - merged multiple DRQ/DTQ ADD macros into a single DRQ and a single DTQ macro with a uniform interface to make the code simpler and easier to read. - en_start: only update atm_flags if EN_MBUF_OPT is enabled (which it should be) - for alburst: make sure we don't DMA more bytes than we need (on both tx and rx). if the alburst is larger than we need, drop to MIDDMA_WORD mode. - major change: enable the use of byte and 2 byte DMA on the trasmit side. this allows us to DMA from non-word sized/aligned mbufs directly. [the old code would always call en_mfix which would copy (or move) the data in order to ensure proper alignment... it turns out TCP gives us non-word sized/aligned mbufs when it is retransmitting, so we needed to handle this case more efficiently.] the following functions were changed to make this work: - en_dqneed: add an arg to let us know if we are transmitting or not. if we are TX, then we must take into account byte DMAs when estimating the number of DTQs we will need for a buffer - en_start: only mfix mbufs if DMA is disabled - en_txdma: only set launch.nodma if we have en_mfix'd the mbuf chain also, we may need a DTQ to flush the chip's internal byte buffer - en_txlaunch: only attempt a copy if we have the proper alignment. add byte dma code for the front and end of the buffer. make sure the internal dma buffer is flushed out. - en_dump: keep track of how many times we have to use byte sized DMA midwayreg: - add byte/2byte DMA defines midwayvar: - add new stat counter to monitor less-than-word lengthed DMA
1996-07-16pcvt/pccons too fast for some kbds; netbsd pr#2631; mike.long@analog.comTheo de Raadt
1996-07-16Rename some 'pica' names to 'mips'.Per Fogelstrom
1996-07-15add rnd device.Michael Shalayeff
1996-07-15add rnd driverMichael Shalayeff
1996-07-15add scanner scsi device.Michael Shalayeff
1996-07-15add uk device macro.Michael Shalayeff
1996-07-15add "unknown SCSI"Michael Shalayeff
1996-07-15add extern dynamic_gdt decl.Michael Shalayeff
it does not even compile w/o that!
1996-07-15kill some more FreeBSD-isms, bring back some Lite-isms.Jason Downs
1996-07-14kill off some unneeded(?) codeJason Downs
1996-07-14use VT_EXT2FSJason Downs
1996-07-14document v_tag correctlyJason Downs
1996-07-14enable and sync ext2_mountroot with FFSJason Downs
1996-07-14fix the silly printfJason Downs
1996-07-14fix bugs and sync with FFS.Jason Downs
1996-07-14vnode_pager initializations, changes to vnode/inode initializations.Jason Downs
1996-07-14Proper ext2_fsync, ext2_reclaim, memory type.Jason Downs
1996-07-14add M_EXT2FSNODEJason Downs
1996-07-13add BOOT_CONFIGJason Downs
1996-07-13cleanupJason Downs
1996-07-13syncJason Downs
1996-07-13a. new way of doing inline bit operations.Jason Downs
b. add support for alpha and m68k from linux; more to come.
1996-07-12Replaced by lpr.c (name change to avoid collision with isa).Per Fogelstrom
1996-07-12Fixed wrong type of argument passing for SCIOCREASSIGN.Per Fogelstrom
(thanks Theo).
1996-07-12refresh to the latest bpf code release.Michael Shalayeff
1996-07-11fix:chuck
- en_mfix shouldn't touch M_EXT mbufs. change to avoid this [at the expense of allocating a new cluster mbuf to copy to]. XXX: en_mfix is getting called more often than I hoped it would (seems to happen when TCP retransmits... we get all sorts of odd sized, odd lengthed data mbufs, yuck). i may revise the xmit DMA code to use non-word sized dma.
1996-07-11Make use of existing SCSI block reassign code.Per Fogelstrom
1996-07-11some MUSTEKs fill with 0xff instead of 0x20; netbsd pr#2617; is@beverly.rhein.deTheo de Raadt
1996-07-11do not lose setuid flagTheo de Raadt
1996-07-11fixes:chuck
- don't try and add a PDU trailer (or TBD for that matter) to an M_EXT mbuf. when M_EXT is set, the data area of the mbuf can be shared with other mbufs (see m_copym()), and writing to one M_EXT mbuf may invalidate another M_EXT mbuf (saw this with PDU trailers). - be sure to validate the length value from the PDU trailer so that it doesn't throw us out of sync with the chip (fixes yet another source of the dread "en_service: id mismatch" panic). - on recv, don't bother allocating an mbuf if mlen is zero since we are only going to toss the data anyway.
1996-07-07do multi-include protection.Michael Shalayeff
1996-07-07email address of an authorityTheo de Raadt
1996-07-07Add pccom to files.i386. SPARE-PARTS is an i386-dx40, which runsJason Downs
with zero fifo overruns or dropped characters at 115200bps with pccom.
1996-07-07Integrate the i386 specific com driver from Onno van der Linden,Jason Downs
<onno@simplex.nl>, as a seperate driver. This is the OpenBSD com.c, with his changes integrated and the functions renamed. This driver should work with pcmcia, but hasn't been tested. It will not work the multiport boards. Simply switch 'com' to 'pccom' in your conf and change the major number of your devices in order to use this.
1996-07-06add pccom, character device 46.Jason Downs
1996-07-05release temporary binding if M_PREPEND fails; netbsd pr#2605; ↵Theo de Raadt
tegge@idt.unit.no; improved by me
1996-07-05overly pedantic indentation fix from theo who had a few beerTheo de Raadt
1996-07-05Add NCPfs constants.Michael Shalayeff
1996-07-05fix swapJason Downs
1996-07-05com2 and ed0 move to spare-partsJason Downs
1996-07-04fix recording; from jabaker@grail.cba.csuohio.eduTheo de Raadt
1996-07-03ported to FreeBSD 2.2-960612-SNAP.chuck
1996-07-03ported to FreeBSD 2.2-960612-SNAP.chuck
1996-07-03ported to FreeBSD 2.2-960612-SNAP.chuck