summaryrefslogtreecommitdiffstats
path: root/sys
Commit message (Collapse)AuthorAgeFilesLines
* Correct a mishap in phk's BIO_* changes.sos2000-03-261-1/+1
|
* rqe->b.b_flags |= B_READ; becamealfred2000-03-261-1/+1
| | | | | | rqe->b.b_iocmd == BIO_READ instead of rqe->b.b_iocmd = BIO_READ; fix it.
* Substantially cleanup of the pcvt kernel part. This cleanup doeshm2000-03-2610-3001/+407
| | | | | | | | | | | | | | | | | | | | | | | | | | not introduce (hopefully) any functional changes but gets rid of the #ifdef spaghetti pcvt suffered from more and more over the years. Several no more used parts of the source were removed, others which are used by default are now non-optional components: PCVT_NETBSD removed completety PCVT_FREEBSD removed option, code is now standard PCVT_KBD_FIFO removed option, code is now standard PCVT_EMU_MOUSE removed completety PCVT_SW0CNOUTP removed completety PCVT_PORTIO_DELAY obsolete, removed PCVT_KEYBDID removed option, code is now standard PCVT_SIGWINCH removed option, code is now standard PCVT_PALFLICKER removed completety PCVT_WAITRETRACE removed completety PCVT_NOFASTSCROLL removed option, code is now standard PCVT_USL_VT_COMPAT removed the "old" non-vt Xserver code completely, depending on XSERVER, this code is now standard. Pcvt userland cleanup will follow as well as newbusifying the kernel part.
* Minor changes to some of the interfaces.imp2000-03-264-8/+16
| | | | | | Remove RF_PCCARD_ATTR in anticipation of removing it from sys/rman.h Add interface for setting "attributes" of pccard/cardbus devices. Minor formatting nits.
* The REQUEST SENSE command is 6b not 16b. Use the struct scsi_sense ton_hibma2000-03-261-11/+13
| | | | | | indicate that we are working with that command. Some corrected/added comments.
* Fix floppy driver after my isadma changes.phk2000-03-252-14/+24
|
* Reword warning to make it clearer (I read it as "remove block devices createdkris2000-03-251-1/+1
| | | | before 2000-06-01" which is obviously not what was intended :-)
* More fully initialize cardbus bridges. We now call the new genericimp2000-03-254-56/+482
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | cardbus bridge init routine for all cardbuses. This routine attempts to compensate for BIOSes that do not setup the cardbus bridge into legacy mode. Since this is becoming more common, and cardbus pci cards have appeared on the market, this makes sense. Do some TI113x specific initialization. This came in as part of the patch. Report TI1[1234]XX specific config registers protected by bootverbose. Minor code cleanup while I'm here. I've also removed the unused code present in the original patches, and cleaned it up slightly in places as well. The original patches supported more than one card, but these patches support just one. We should likely revisit this in the future. This makes the Compaq card that Walnut Creek CD purchased for me work in my bouncer box. This is a MFC candidate. However, I'd like to get some airtime on these patches on as many laptops as possible before doing the MFC. It does change things somewhat. In theory, apart from the minor TI tweaks, this shouldn't change anything if the bridge is in legacy mode already. Submitted by: sanpei@sanpei.org (MIHIRA Yoshiro)
* Attempt to provide real values for meminfo.des2000-03-251-19/+52
|
* Two new chips found in Steve Passe's Protoge' laptop:imp2000-03-251-0/+8
| | | | | Lucent 56Flex DVS LTMOTEM (winmodem and unsupported) Cinemaster C 3.0 DVD Decoder
* Linux /proc filesystem.des2000-03-257-2/+1843
| | | | Submitted by: pb
* Regenimp2000-03-252-28/+362
|
* Merge 1.60 to 1.85 of NetBSD's pcmciadevs into our database.imp2000-03-251-13/+67
|
* More pnpids.imp2000-03-252-2/+8
|
* Make pcic module compile again for NEWCARD (not for old pccard).imp2000-03-251-1/+2
|
* Make this compile again and harmonize with GENERIC:imp2000-03-251-19/+27
| | | | | | | | | | | | o added gif, faith, wx, ida, amr, mlw, INET6 o many comment nits o Comment out all the compat shim devices, mostly so that I know what they are: amd, dpt, ncr, adv, tx, vx, fe, cs, lnc, o Leave the following commented out: ie, le NEWCARD now compiles again. Back to testing...
* Fix a problem that caused TCP fragments to be lost (among other things.)mdodd2000-03-241-1/+1
|
* Update sysinstall to use struct uc_device instead of struct isa_devicejhb2000-03-242-18/+74
| | | | | | for generating /boot/kernel.conf. Since this structure is shared, move its definition out to a header file, just as struct isa_device was defined in a header file. This fixes the sysinstall breakage in -current.
* Fix spelling, slingly -> singly.asmodai2000-03-241-1/+1
| | | | Submitted by: nrahlstr
* Add Mach64-LB graphics acceleratorbillf2000-03-241-0/+2
| | | | | Submitted by: Brandon Martus <bmartus@chc-chimes.com> (unwittingly) Obtained from: NetBSD (syssrc/sys/dev/pci/pcidevs)
* Fix the panic occuring on non-changer devices.sos2000-03-241-3/+3
|
* don't check extended features on codecs known to hang. should fix neomagiccg2000-03-241-16/+26
| | | | problems.
* Fix in-kernel infinite loop in pipe_write() when the reader goes awaydillon2000-03-241-3/+15
| | | | at just the wrong time.
* Remove unused file.bde2000-03-231-148/+0
|
* Fixed most disordering (almost all except for i4b and targets withbde2000-03-231-248/+248
| | | | complicated rules).
* Fixed most disordering (all except for targets with complicated rules).bde2000-03-231-21/+21
|
* Fix parens in m_pullup() line in arp handling code. The code wasdillon2000-03-231-1/+1
| | | | | | | improperly doing the equivalent of (m = (function() == NULL)) instead of ((m = function()) == NULL). This fixes a NULL pointer dereference panic with runt arp packets.
* Fixed my breakage of SPLASSERT() in rev.1.15. There was a stray semicolonbde2000-03-231-1/+1
| | | | after "if ()".
* Fix detection of the card-ready-for-command state. Use an ultimatemsmith2000-03-232-4/+9
| | | | | | | | | | timeout closer to the 1-second value that AMI use in their Linux driver, and mark the mailbox structures as volatile so that gcc doesn't over-optimise access to them. This should fix the "controller wedged" bug. Submitted by: Brian Dean <brdean@unx.sas.com>
* Document options HZ, place it in its own section `CLOCK OPTIONS' andasmodai2000-03-233-9/+60
| | | | | | add the undocumented CLK_* options to that section as well. Submitted by: Mike Tancsa <mike@sentex.ca> (partially)
* Fixed clean rule for font.h.bde2000-03-231-1/+1
|
* Switch to the new time counter code to follow the i386.obrien2000-03-231-3/+4
| | | | Assisted by: phk
* Merged from sys/i386/isa/clock.c and sys/isa/sio.c revisions 1.150 andkato2000-03-235-18/+23
| | | | 1.292, respectively.
* Removed B_READ and B_WRITE.kato2000-03-231-6/+6
|
* Disable fdctl_wr_foo. This feature is not supported by PC98.kato2000-03-232-2/+8
|
* Merged from sys/conf/files.i386 revision 1.310 (re-activate K6-2kato2000-03-231-1/+1
| | | | MTRR driver).
* Fix one place which knew that B_WRITE was zero.phk2000-03-221-1/+2
| | | | | | Fix a stylistic mistake of mine while here. Found by: Stephen Hocking <shocking@prth.pgs.com>
* Added the joy driver (commented out).nyan2000-03-222-0/+4
| | | | Submitted by: chi@bd.mbn.or.jp (Chiharu Shibata)
* in6_pcb.c:green2000-03-222-4/+4
| | | | | | | | | | | Remove a bogus (redundant, just weird, etc.) key_freeso(so). There are no consumers of it now, nor does it seem there ever will be. in6?_pcb.c: Add an if (inp->in6?p_sp != NULL) before the call to ipsec[46]_delete_pcbpolicy(inp). In low-memory conditions this can cause a crash because in6?_sp can be NULL...
* Whine at users who still have block devices in /dev, give them untilphk2000-03-211-0/+5
| | | | june 1st to fix their system.
* Include a space between hash ('#') and 'Berkeley packet filter' likedan2000-03-212-2/+2
| | | | all the other comments have.
* Regenerate usbdevs files.wpaul2000-03-215-3/+15
| | | | | | Also add device entry in if_kue.c for the LINKSYS USB10T adapter. Also add calls to bpfdetach() in detach routines.
* Add device ID for LinkSys USB10T ethernet adapter (0x2202).wpaul2000-03-211-0/+1
|
* For version 0.9 change DNET outputdmlb2000-03-211-1/+1
|
* Added user level updates and reading of parameters.dmlb2000-03-212-36/+266
|
* Typo.dmlb2000-03-211-2/+2
|
* Make ATAPI CD changer devices work, hopefully better than before.sos2000-03-216-58/+112
|
* Add sysctl kern.coredump to enable/disable core dumps system wide.ps2000-03-211-1/+5
|
* Call bpfdetach() before going away.archie2000-03-211-0/+1
|
* Bogusly returned zero always. Return 1 if we pass the checksum.imp2000-03-201-1/+1
|
OpenPOWER on IntegriCloud