summaryrefslogtreecommitdiffstats
path: root/sys
Commit message (Collapse)AuthorAgeFilesLines
* Cast return values to the appropriate fp_*_t. Note that the man pagedes1998-04-272-18/+18
| | | | | | | incorrectly refers to them as e.g. fp_except rather than fp_except_t. PR: misc/6310 Submitted by: Niall Smart
* Fixed spelling of "fictitious" in diagnostics and commentsdes1998-04-273-13/+13
| | | | PR: kern/6429
* Support more than 256 tun devices:brian1998-04-271-9/+13
| | | | | | | | $ ls -l /dev/tun25[4-7] crw------- 1 fax dialer 52, 254 Apr 27 02:27 /dev/tun254 crw------- 1 fax dialer 52, 255 Apr 27 02:27 /dev/tun255 crw------- 1 fax dialer 52, 0x00010000 Apr 27 02:31 /dev/tun256 crw------- 1 fax dialer 52, 0x00010001 Apr 27 02:31 /dev/tun257
* Add the PAT cpuid feature.dyson1998-04-262-4/+4
|
* Sync with sys/i386/isa/wd.c revision up to 1.163.kato1998-04-251-4/+6
|
* Correct copyright.dyson1998-04-252-12/+5
|
* Sync with sys/i386/isa/wd.c revision 1.161.kato1998-04-251-3/+9
|
* Sync with sys/i386/conf/GENERIC revision 1.108.kato1998-04-252-2/+4
|
* Oops- osreldate.h is not around like I thought it would be... hmmm.. quick ↵mjacob1998-04-241-2/+8
| | | | fix to get around this
* Discussed with: bdeobrien1998-04-241-1/+1
|
* Create virgin disklabels with 8 (MAXPARTITIONS) partitions rather thanobrien1998-04-241-4/+2
| | | | | three (RAW_PART + 1); This makes ``disklabel -Brw sdN auto'' do the Right Thing.
* At the request of Garrett, changed sysctl:dg1998-04-242-4/+4
| | | | net.inet.tcp.delack_enabled -> net.inet.tcp.delayed_ack
* Ensure that TCP_REXMTVAL doesn't return a value less than t_rttmin. Thisdg1998-04-242-14/+9
| | | | | | | | | | | is believed to have been broken with the Brakmo/Peterson srtt calculation changes. The result of this bug is that TCP connections could time out extremely quickly (in 12 seconds). Also backed out jdp's partial fix for this problem in rev 1.17 of tcp_timer.c as it is obsoleted by this commit. Bug was pointed out by Kevin Lehey <kml@roller.nas.nasa.gov>. PR: 6068
* slice_device.c: permissions changes for SLICE devicesjulian1998-04-243-8/+9
| | | | | | vn.c: change time of SYSINIT scheduling. wd.c don't revert to fully closed state. ( may require more) all in SLICE mode only.
* Added kern.ipc.nmbclustersdg1998-04-243-3/+6
|
* When calling the open function, specify either FREAD and/or FWRITEjulian1998-04-231-3/+3
| | | | as leaving them both 0 has the same effect as not openning the device at all.
* Oops forgot to include opt_bootp.hjulian1998-04-231-2/+4
| | | | Bootp works a lot better with devfs if this is present.
* Convert timespecclear() back to an expression (this time withouteivind1998-04-232-12/+6
| | | | sideeffects).
* Wrap timerclear in do { ... } while(0)eivind1998-04-232-4/+10
|
* Add devfs support.eivind1998-04-231-2/+32
| | | | Submitted by: somebody whose name escapes me :-(
* Mask the interrupt before setting the corresponding bit in ipending iftegge1998-04-224-20/+22
| | | | | | the interrupt is already active. Don't use lock prefix for operations on ipending. Always use lock prefix for operations on iactive.
* Bad144 support for the slice system (!)julian1998-04-225-27/+154
| | | | | | Submitted by: luoqi@watermarkgroup.com (Luoqi Chen) I'm amazed by this. Slice has only been checked in for 2 days..
* Add support for the Qlogic ISP SCSI && FC/AL Adaptersmjacob1998-04-226-6/+24
|
* Add support for the Qlogic ISP SCSI && FC/AL Adaptersmjacob1998-04-223-0/+1121
|
* Add support for the Qlogic ISP SCSI && FC/AL Adaptersmjacob1998-04-228-0/+8325
|
* Sync with sys/i386/conf/majors.i386 revision 1.39.kato1998-04-221-2/+3
|
* close() is no longer a SLICE method.julian1998-04-2213-80/+157
| | | | | Close is simply an open with no-read and no-write once internal to SLICE (it still exports a close to the rest of the kernel)
* Add a couple of missing symbols referred to in asm code.peter1998-04-221-1/+5
|
* Add a block device entry for the 'myx' driver too.msmith1998-04-222-2/+4
|
* Add 'myx' for Ulf Zimmerman's Mylex Raid driver (ulf@alameda.net>msmith1998-04-222-4/+4
|
* Don't allow an open to succeed if the device is invalidated during thejulian1998-04-221-1/+3
| | | | open process.
* - breakage of the warnings about pessimized i/o port types.brian1998-04-214-62/+24
| | | | | | | | | | - pessimized i/o port types. - other pessimized types. - Don't use DEBUG (causes LINT warnings). Use DGB_DEBUG instead. - commented out code. - cloned code that doesn't apply ("Smarts" is for the cy driver only). Submitted by: bde
* Correct the digiboard device names in agreementbrian1998-04-212-22/+32
| | | | with the man page (POLA).
* Remove the artificial limit on the size of the ipfw filter structure.julian1998-04-211-13/+40
| | | | This allows the addition of extra fields if we need them (I have plans).
* PC-98 does not supports DMA automode lager than 65535 bytes.kato1998-04-211-0/+4
|
* Supports PC-98 again.kato1998-04-211-0/+6
|
* o Move debug stuff down a bit so that it doesn't try tobrian1998-04-212-62/+76
| | | | | | | | dereference uninitialized pointers. o Fix DEVFS permissions o Fix DEVFS minor numbers o Add initial & lock devices for cua device. o Fix permissions in line with sio.
* The 'mountroot' option is obviously pointless for an LKMjulian1998-04-202-6/+18
| | | | | so allow LKM compilation to succeed by making it go away for that case. Saves needing to include opt_devfs.h which an LKM cannot rely on anyhow.
* Remove more LFS left-oversjulian1998-04-201-19/+1
|
* Remove an LFS clause, now that it is in the history,julian1998-04-202-38/+2
| | | | anyone who wants to see what was needed cto revive LFS can see it.
* Enable DEVFS usage of the device (include opt_devfs.h>sos1998-04-202-2/+4
|
* - Give up trying for a simple solution for correctly recognizing if a cardnate1998-04-202-1/+5
| | | | | | | | | | | was really removed, or simply 'faked' by a suspend/resume. Keep track of both current and previous state, and send that information to the userland programs. [ XXX - This breaks binary compatability with older pccardd programs, but they don't work reliably. :( ]
* - Only poll the PCIC controller for insertion/removal events if thenate1998-04-201-3/+4
| | | | controller hasn't been assigned an IRQ.
* Commented out ide_pci.c.kato1998-04-202-4/+4
| | | | | Reviewed by: kato Submitted by: Takahashi Yoshihiro <nyan@wyvern.cc.kogakuin.ac.jp>
* Sync with sys/i386/conf/options.i386 revision 1.77.kato1998-04-202-2/+8
|
* Sync with sys/i386/conf/files.i386 revision 1.197.kato1998-04-202-2/+4
|
* Sync with sys/i386/isa/wd.c revision up to 1.159.kato1998-04-201-8/+281
|
* Sync with sys/i386/isa/fd.c revision 1.109.kato1998-04-202-34/+538
|
* Sync with sys/i386/isa/npx.c revision 1.60.kato1998-04-201-30/+27
|
* fix typo in copyright.julian1998-04-201-2/+1
|
OpenPOWER on IntegriCloud