summaryrefslogtreecommitdiffstats
path: root/sys
Commit message (Collapse)AuthorAgeFilesLines
* Newer ciscos have become more picky, and will not accept the MULTICAST bitphk2000-03-171-1/+1
| | | | being set for unicast packets.
* Fixed header file path and added necessary file.nyan2000-03-176-6/+355
|
* Sync with sys/boot/i386/libi386/biosdisk.c revision 1.27 and 1.28.nyan2000-03-171-7/+8
| | | | Submitted by: Kaho Toshikazu <kaho@elam.kais.kyoto-u.ac.jp>
* Sync with sys/i386/i386/userconfig.c revision 1.175 and 1.176.nyan2000-03-171-156/+44
|
* Backed out ppc0 flags addtion. It isn't necessary without PPC_PROBE_CHIPSETnyan2000-03-172-2/+2
| | | | | | option. Pointed out by: peter
* Use 64-bit math to calculate if we have hit our freespace limit.mckusick2000-03-171-1/+2
| | | | Necessary for coherent results on filesystems bigger than 0.5Tb.
* Fixed to probe extended memory for over 256M or under 64M.nyan2000-03-164-217/+271
| | | | Submitted by: chi@bd.mbn.or.jp (Chiharu Shibata)
* Changed key assign for PC-98.nyan2000-03-161-5/+5
| | | | | | | | | | | | | shift+TAB : BackTab HELP : End STOP : ScrollLock shift+STOP : ScreenSaver GRPH +STOP : Suspend(susp) COPY : NextScreen(nscr) ctrl +COPY : Debug NFER : Meta Submitted by: chi@bd.mbn.or.jp (Chiharu Shibata)
* Fixed to support old parallel interface.nyan2000-03-162-4/+16
| | | | Submitted by: chi@bd.mbn.or.jp (Chiharu Shibata)
* Added 'flags 0x40' to ppc0.nyan2000-03-162-2/+2
|
* Changed sio1 flags to 0x12000010 to enable serial console.nyan2000-03-162-2/+2
| | | | Submitted by: IMAI Takeshi <take-i@ceres.dti.ne.jp>
* Instead of using the next unit available, use the first unit available.n_hibma2000-03-162-14/+21
| | | | | | | | | | This avoids the unit number from going up indefinitely when diconnecting and connecting 2 devices alternately. Noticed by: nsayer (quite a while ago) And stop calling DEVICE_NOMATCH at probe repeatedly. This stops the message on the PCI VGA board from being printed when loading a PCI driver.
* Please welcome the URio driver. Written byn_hibma2000-03-1611-1/+650
| | | | Iwasa Kazmi <kzmi\@ca2.so-net.ne.jp>
* Eliminate the undocumented, experimental, non-delivering and highlyphk2000-03-1614-174/+0
| | | | dangerous MAX_PERF option.
* Add the _POSIX_SEMAPHORES feature flag.jasone2000-03-161-0/+1
|
* Alpha 8200 port: Until we fix things better, determine which alpha CPUmjacob2000-03-152-18/+74
| | | | | | | platform we're running on so we know how many bits to reserve at the top end for the 'hose' value. It turns out that there's *just* enough room to support all possible hoses on TurboLaser. Reviewed by: gallatin@freebsd.org, dfr@free3bsd.org
* Add a quirk entry for Y-E Data USB floppy drive.n_hibma2000-03-151-0/+10
| | | | Driver follows in the next few days.
* Add the TD's to the hash when they are created not when they are used.n_hibma2000-03-152-16/+44
| | | | | | | | | | This makes it possible to handle the done queue even when the end of tail TD has ended up on the done queue as well (the xfer in this case is NULL but the next field is valid, so we simply skip that element. Make sure we mark all the handled transfers as handled. Stop using powerhooks. They are a NetBSD-ism.
* Add an ID for the SiS 5571.n_hibma2000-03-154-12/+24
| | | | Remove the unnecessary use of parent.
* powerhooks no longer usedn_hibma2000-03-151-0/+2
|
* Make the makefile work properly.n_hibma2000-03-151-1/+6
|
* Do not use the powerhooks at all, instead of abusing and empty #define.n_hibma2000-03-151-2/+4
|
* Spelling mistaken_hibma2000-03-151-1/+1
|
* Never stop the control pipen_hibma2000-03-151-3/+4
|
* Add urio (143)n_hibma2000-03-151-0/+1
|
* Regen.n_hibma2000-03-152-2/+18
|
* Remove stray pointers to wdc; it was removed a while back.peter2000-03-151-1/+0
|
* Remove left over pci_ide* after wd removal.peter2000-03-151-1876/+0
|
* Various typo's.n_hibma2000-03-155-6/+7
| | | | One minor nit. The speed was displayed wrong when below 1Mb/s.
* Remove left over files from wd; Since pc98 still uses some of them thosepeter2000-03-156-4552/+0
| | | | were copied. Some cleanup is still needed there, ie: unifdef -DPC98 etc.
* Move the files.* references to wdc files to the pc98 location after thepeter2000-03-151-3/+3
| | | | repo copy.
* Add Y-E Data floppy drive.n_hibma2000-03-151-0/+4
|
* Update the e-mail address to a valid one.n_hibma2000-03-151-1/+1
|
* Trim a couple of over-long stringsmsmith2000-03-151-2/+2
| | | | Submitted by: des
* roll platform versions to 5.0mjacob2000-03-151-2/+2
|
* Remove some extra spammage that made it into this commit. This will bejhb2000-03-151-47/+0
| | | | | | revisited later with a better fix, or at least one that compiles. :) Approved by: dcs
* Bug fixes for currently harmless bugs that could rise to bitemckusick2000-03-154-6/+6
| | | | | | | | | | | | | | | | | | | | | | the unwary if the code were called in slightly different ways. 1) In ufs_bmaparray() the code for calculating 'runb' will stop one block short of the first entry in an indirect block. i.e. if an indirect block contains N block numbers b[0]..b[N-1] then the code will never check if b[0] and b[1] are sequential. For reference, compare with the equivalent code that deals with direct blocks. 2) In ufs_lookup() there is an off-by-one error in the test that checks if dp->i_diroff is outside the range of the the current directory size. This is completely harmless, since the following while-loop condition 'dp->i_offset < endsearch' is never met, so the code immediately does a second pass starting at dp->i_offset = 0. 3) Again in ufs_lookup(), the condition in a sanity check is wrong for directories that are longer than one block. This bug means that the sanity check is only effective for small directories. Submitted by: Ian Dowse <iedowse@maths.tcd.ie>
* Use 64-bit math to decide if optimization needs to be changed.mckusick2000-03-151-30/+48
| | | | | | Necessary for coherent results on filesystems bigger than 0.5Tb. Submitted by: Paul Saab <ps@yahoo-inc.com>
* I _HATE_ crashes. The lptread() call needs to check LP_BYPASS, becausegreen2000-03-151-0/+5
| | | | | if one tries to use read() on an LP_BYPASS'd dev_t, the softc will be initialized mainly with NULLs, so...
* Pass an unit number to bcache_strategy, so it can flush the cache whendcs2000-03-151-7/+55
| | | | | | | | | | necessary. Pass an absolute block number too, instead of receiving a relative one in realstrategy(), as bcache_strategy() requires this. The fix is sligthly different from the one in the PR. PR: 17098 Submitted by: John Hood <jhood@sitaranetworks.com>
* bcache_strategy() now receives an unit number, and keep track of whatdcs2000-03-152-8/+25
| | | | | | | | | | was the last unit number received. If it changes, it flushes the cache. Add bcache_flash(). The actual fix is sligthly different from the one in the PR. PR: 17098 Submitted by: John Hood <jhood@sitaranetworks.com>
* Pass unit number to bcache_strategy(), so that the cache can bedcs2000-03-151-2/+3
| | | | | | | | | | flushed if the unit changes. Compute the absolute offset before bcache_strategy() instead of after. The actual fix is sligthly different for the one in the PR. PR: 17098 Submitted by: John Hood <jhood@sitaranetworks.com>
* Have MGETHDR() always initialize m->m_pkthdr.rcvif to NULL.archie2000-03-141-2/+1
| | | | | | | In the past, not doing this has caused several hard to find networking bugs, and the minor slowdown is deemed worthwhile. Reviewed by: wollman
* Remove further vestiges of wd.asmodai2000-03-141-4/+0
| | | | Submitted by: sos
* Get rid of wdc.asmodai2000-03-141-1/+0
| | | | Submitted by: Damieon Stark <visigoth@telemere.net>
* Fix the spelling, and some minor tweaks on the ata device...sos2000-03-143-6/+9
|
* Print "previous type" correctly when INVARIANTS is defined.kuriyama2000-03-141-1/+1
| | | | Reviewed by: current@FreeBSD.org
* Don't try so hard to make the lower 16 bits of fsids unique. It tendedbde2000-03-142-44/+26
| | | | | | | | to recycle full fsids after only 16 mount/unmount's. This is probably too often for exported fsids. Now we recycle the full fsids only after 2^16 mount/ umount's and only ensure uniqueness in the lower 16 bits if there have been <= 256 calls to vfs_getnewfsid() since the system started.
* Fix reporting of src and dst IP addresses for ICMP and generic IP packets.ru2000-03-141-5/+6
| | | | | PR: 17319 Submitted by: Mike Heffner <spock@techfour.net>
* Remove wd entries.asmodai2000-03-143-222/+0
| | | | | Reviewed by: sos Approved by: sos, phk, peter
OpenPOWER on IntegriCloud