summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Move <DT> to the endache2003-06-074-9/+11
|
* Add ru_RU.CP1251ache2003-06-074-0/+52
|
* Replace by links ru_RU.CP866 and ru_RU.ISO8859-5ache2003-06-073-27/+5
| | | | Add link to ru_RU.CP1251
* Add ru_RU.CP1251ache2003-06-072-0/+103
|
* Add ru_RU.CP1251ache2003-06-062-0/+45
|
* When single stepping, only leave ENBUSFREE enabledgibbs2003-06-062-4/+4
| | | | | | | | if it was already enabled. We don't want to set it when it shouldn't be set, we just don't want to inadvertantly turn it off. This should fix a recent report of the aic7xxx driver repeatedly complaining of "unexpected busfree while idle" in one configuration.
* Clear stale PCI errors during our test forgibbs2003-06-062-8/+27
| | | | | | | successfully mapping our registers. This avoids the disabling of memory mapped I/O just because some other driver probe happened to touch our registers.
* Work around SCSI spec violation by the Quantum Atlas 10K.gibbs2003-06-062-36/+70
| | | | | | | | | | | | | | | | | | | This drive delays going async after receiving a WDTR message. We now send an SDTR message after a WDTR even if our goal is to go async. This should work even for confused devices. If we get an unexpected busfree when attempting a WDTR or SDTR, only set the goal negotiation parameters we were trying to negotiate to off. This means that should a WDTR message fail, we will still try an SDTR if our goal is non-async. Fix a few more places where we were looking at goal.period instead of goal.offset for determining if we should be negotiating sync. This should not have any impact on our behavior, but the offset is more definitive and should be used.
* aic7770.c:gibbs2003-06-067-155/+58
| | | | | | | | | | | | | | | | | | | | | | | | | aic79xx.c: aic79xx.h: aic79xx_pci.c: aic7xxx.c: aic7xxx.h: aic7xxx_pci.c: Switch ah?_reset() to take an additional "reinit" argument. Use this instead of init_level to determin if the chip should be fully reinitialized after a chip reset. This is required so that ah?_shutdown() can reset the chip without side-effects. aic79xx.c: Implement ahd_suspend() and ahd_resume(). aic7xxx.c: Change ahc_loadseq() to *not* restart the sequencer. This brings the loadseq behavior in line with that of the 7902 driver and also simplifies the init routine. Correct the resume routine to enable interrupts and restart the sequencer.
* Use TRAPF_USERMODE() to replace an equivalent check in trap(). Whilemarcel2003-06-061-3/+2
| | | | here, amend the related comment.
* Add probe entry for the 284X with BIOS disabled.gibbs2003-06-061-3/+8
|
* Constify a string used in our EISA probe tables.gibbs2003-06-061-4/+4
| | | | Fix a few style nits.
* Have TRAPF_USERMODE() take into account that the gateway page is notmarcel2003-06-061-2/+8
| | | | | | always kernel space. It should be treated as user space when run with user privileges (which is the case for the signal trampolines). This fixes its only use in a KASSERT in subr_trap.c.
* Add ru_RU.CP1251ache2003-06-063-0/+11
|
* Attempt to crunch down the thread state info so that it is more likely tojulian2003-06-061-6/+15
| | | | | | | | | | | | fit on one line. Account for threads better. * No need to report that it is on a sleep queue if it is actually sleeping * "Normal" state is almost ubiquitous.. only report abnormal states. * increment the #lines count for each separate thread shown in threaded programs. makes it less likely that a threaded program will make all the data on a screen overflow off the top of the screen.
* When setting fragment queue pointers to NULL, or comparing them withrwatson2003-06-061-3/+3
| | | | NULL, use NULL rather than 0 to improve readability.
* - Rename nexus_pcib to legacy_pcib. I've been meaning to do this for ajhb2003-06-062-56/+61
| | | | | | | | | | | | | while after the legacy device was added since this driver hangs from legacy and not nexus. - Make several methods non-static so they can be reused in a mptable host -> pci bridge driver that will be added at a later date. - Let legacy_pcib() use pcibios_pcib_route_interrupt() directly instead of wrapping it in a private function. Originally, I thought I was going to have the nexus_pcib() driver make a runtime APIC vs. 8259A check and call the appropriate routing method (MPTable vs. PIR) that way, but it ended up being cleaner to make nexus_pcib() just work with PIR and have a separate host -> pci bridge driver for the mptable/apic case.
* - Use IDTVEC() to declare IPI handlers since they are also IDT vectors.jhb2003-06-063-60/+42
| | | | - Make handlers for IPI's used by SMP kernels #ifdef SMP.
* Use the secondary bus number instead of the number of the bus the PCI-PCIjhb2003-06-061-1/+5
| | | | | | bridge lives on (i.e., the parent bus) when probing the PIR table for a bus. This could cause the PCIBIOS PCI-PCI bridge driver to bogusly attach to bridges that weren't in the PIR but whose parent bus was in the PIR.
* - Document the thermal and performance counter LVT entries in the localjhb2003-06-063-9/+15
| | | | | | APIC. - Add a lvt_thermal member to the LAPIC struct. - Add constants for the SMI and INIT LVT delivery modes.
* Handle the TDS_INACTIVE state by printing '[INACTIVE]' instead ofjhb2003-06-061-1/+4
| | | | | panic'ing. Also, for unknown thread states, print out the value rather than panic. Panic'ing in the debugger is pointless at best.
* Whitespace nits.jhb2003-06-061-2/+3
|
* Compile our code as C99 w/GNU extensions by default.obrien2003-06-061-1/+2
| | | | We can't use straight "c99" due to the lack of alloca.S for non-i386 platforms.
* Add my birthday.osa2003-06-061-0/+1
| | | | Approved by: fjoe (mentor)
* Fix some minor bugs, namely:yar2003-06-061-3/+14
| | | | | | | | | | | | | | | | | | | | - Initialize "rval", which would be used uninitialized if al or pl options were set. - Don't pass an empty string to login(1) as a user name (this could be triggered by entering a name and then killing it with backspace or ^U.) - Don't loop endlessly if the al option specifies a bogus (i.e., not alphanumeric) auto-login name. - Don't pass a bogus user name to login(1) if a good name were entered and then killed with ^U. - Exit with status 0, not 1, on receiving an EOF character, since it's not a error condition. MFC after: 1 week
* Tweak make values and targets not to build kgzldr.o atkuriyama2003-06-061-4/+8
| | | | | | installation stage. Reviewed by: bde
* Usekuriyama2003-06-0613-13/+13
| | | | | | | | | cat ${.ALLSRC} > ${.TARGET} rather than ln -sf ${.ALLSRC} ${.TARGET} not to depends on absolute-path of symbolic links. Commented by: marcel, obrien, bde
* Remove a debugging aid the crept in during the last commit. It doesn'tmtm2003-06-061-1/+1
| | | | | | | really make much difference since this script is not used during startup and is due to be removed before RELENG_5. Submitted by: "Simon L. Nielsen" <simon@nitro.dk>
* Move my maintainership of parts of ipfilter back to Darren Reedguido2003-06-069-16/+16
|
* Regression tests for wctype(), iswctype(), wctrans(), towctrans().tjr2003-06-063-1/+191
|
* Correct the man section number in references to kldstat(8).yar2003-06-061-2/+2
|
* Since FreeBSD has never had a stock NNTP server, move the nntp lineyar2003-06-061-1/+5
| | | | | | | | | | | | | | | | down to the section of optional mail/news services. Change the nntpd location to /usr/local/libexec since it's an optional software. Henceforth, nntpd will be advised to run as "news", which is a standard user in the system, instead of "usenet", which has never existed in the default master.passwd(5). Note: It's not "news:news" since inetd(8) runs a service at the specified user's login group by default. Add a blank comment line above the uucpd line so the section looks uniform. Partly pointed out by: Alexey Neyman <alex.neyman at auriga.ru> MFC after: 1 week
* Warn if there is no newline at the end of the group file.roam2003-06-061-0/+4
| | | | | | | PR: 51256 Submitted by: Brian D Gallaway <bdg730@makserver0.usask.ca> Reviewed by: tjr, -audit Approved by: tjr
* Add macros for kernel debugging. These have been around for agrog2003-06-064-0/+1104
| | | | | | | while, and they will need some more tuning before they're really useful, but at the moment they're better than nothing. Indirectly reminded by: dwhite
* Add two of three workarounds for interrupt storms for o2micro parts asimp2003-06-063-14/+152
| | | | | | | | | obtained from o2micro. These should only be needed for 'older' o2micro bridges (anything before the 7xxx series of bridges), but will work with the new bridges. # I don't plan on porting it to oldcard, but will happily commit to # oldcard if someone else needs them.
* Use cat(1) instead of cp(1) so as not to break -DNOCLEAN buildsmarcel2003-06-061-2/+2
| | | | when the file permissions of source files don't allow writing.
* thread_signal_add now is called with ps_mtx held, unlock it beforedavidxu2003-06-062-6/+10
| | | | calling copyin.
* Fix NFS file swapping, I broke it 3 months ago it seems.phk2003-06-051-6/+6
|
* Report NODEV devices as <NFSfile>phk2003-06-051-2/+6
|
* Recognize the magic NODEV value.phk2003-06-051-3/+3
| | | | Format other unknown devices consistently in hex.
* Fixed cross references to pccbb(4), fixed spelling of "device cbb",ru2003-06-054-3/+4
| | | | | | and linked the pccbb(4) manpage to cbb(4). Reviewed by: imp
* - Extend the scope of the backing object's lock in vm_object_collapse().alc2003-06-051-2/+4
|
* Add support for Quad port adapterpdeuskar2003-06-055-374/+488
| | | | | | | | Add sysctl's to display statistics/debug_info Set WAIT_FOR_AUTONEG_DEFAULT to zero by default Increment packet in/out statistics inline instead of every two seconds. MFC after: 3 days
* Update hardware notes to reflect ahc and stg supported hardware.bmah2003-06-052-4/+16
| | | | | | | Based on PR submission. PR: 52426 Submitted by: Bob Bishop <rb@gid.co.uk>
* Document VOP_LISTEXTATTR(9).rwatson2003-06-055-3/+133
| | | | | Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories
* Mail out -STABLE tinderbox failures as well.des2003-06-051-1/+1
|
* ENOATTR is now used for error returns indicating an undefinedrwatson2003-06-052-4/+5
| | | | | | | | | | extended attribute. EINVAL can also reflect an invalid namespace for either a get or set operation on EAs. Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories
* Make the footer display "FreeBSD 5.1".ru2003-06-051-1/+1
|
* Rename local variables to not mask global names of same name. Thismarkm2003-06-053-28/+29
| | | | fixes lots of lint(1) warnings.
* Do not dribble zero bytes into the output, by replacing an obfuscated iffanf2003-06-051-4/+1
| | | | | | | | whose true and false clauses were equivalent with a check that we are not about to stumble off the end of the line. Reported by: peter Pointy hat to: fanf
OpenPOWER on IntegriCloud