summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Make osendsig global. It's used by the Linuxulator.marcel2000-12-051-1/+3
|
* Update Makefile to follow acpica-1115 import.takawata2000-12-052-2/+2
|
* Fixed manpage building.ru2000-12-051-3/+3
|
* Only call ISP_UNLOCK/ISP_LOCK if isp->isp_osinfo.intsok in USEC_SLEEP.mjacob2000-12-051-6/+10
| | | | | | Add a test against isp->isp_osinfo.islocked prior to trying to see whether --isp->isp_osinfo.islocked is zero to cause us to unlock (non-SMPLOCK case).
* Replace some more printfs with isp_prt's. Use isp_prt/ISP_LOGDEBUG0mjacob2000-12-051-31/+31
| | | | for rate setting/getting printouts.
* Remove more printfs and use either isp_prt or device_printf. Remembermjacob2000-12-052-68/+74
| | | | to set ISP_LOGINFO if bootverbose is set.
* Remove call to bzero after MALLOC and instead add M_ZEROmarcel2000-12-051-2/+1
| | | | to MALLOC.
* Start to make code more generic so it can be used by the pccbb driverimp2000-12-052-22/+19
| | | | | | | | | | in the future: o Remove pcic_softc from pcic_handle and replace it with a void * o Reduce dependence on accessing softc via a pcic_handle Minor cleanups: o Define a macro to count the size of an array and use it. o Minor whitespace alignment o make no slots found a printf not a panic.
* Update for OpenSSH 2.3.0.green2000-12-053-6/+15
|
* Update to OpenSSH 2.3.0 with FreeBSD modifications. OpenSSH 2.3.0green2000-12-0534-861/+2289
| | | | | | | | | | | | | | | | | new features description elided in favor of checking out their website. Important new FreeBSD-version stuff: PAM support has been worked in, partially from the "Unix" OpenSSH version, and a lot due to the work of Eivind Eklend, too. This requires at least the following in pam.conf: sshd auth sufficient pam_skey.so sshd auth required pam_unix.so try_first_pass sshd session required pam_permit.so Parts by: Eivind Eklend <eivind@FreeBSD.org>
* Forgot to remove the old line in the last commit.green2000-12-052-2/+0
|
* This commit was generated by cvs2svn to compensate for changes in r69587,green2000-12-0545-648/+2407
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import of OpenSSH 2.3.0 (virgin OpenBSD source release).green2000-12-0572-1442/+3643
| |
* | Remove the last of the MD netisr code. It is now all MI. Removejake2000-12-0513-142/+32
| | | | | | | | | | | | | | | | spending, which was unused now that all software interrupts have their own thread. Make the legacy schednetisr use an atomic op for setting bits in the netisr mask. Reviewed by: jhb
* | ACPI HID's aren't limited to 7 characters. Don't check the length of themsmith2000-12-051-2/+2
| | | | | | | | | | | | | | HID passed in as an argument at all; callers are typically going to be sending us static strings anyway. Submitted by: Munehiro Matsuda <haro@tk.kubota.co.jp>
* | Remove duplicate linebrian2000-12-041-1/+0
| | | | | | | | Not responded to by: kris, then green
* | Initialize/grab the mutex earlier in the attach phase, so thatwpaul2000-12-0417-43/+50
| | | | | | | | | | bailing out to the fail: label where we release/destroy the mutex will work without exploding.
* | Drop out of our main loop due to a signal rather than handling things in thebrian2000-12-041-24/+28
| | | | | | | | | | | | | | | | | | signal handler. Fix a spelling error. Subtley pointed out by: bde Make some stuff static
* | Cleanup some leftover lint from the old interrupt system.peter2000-12-0430-728/+176
| | | | | | | | | | | | | | | | Also, while here, run up to 32 interrupt sources on APIC systems. Normalize INTREN/INTRDIS so they are the same on both UP and SMP systems rather than sometimes a macro, and sometimes a function. Reviewed by: jhb, jakeb
* | Turn off the load_eject bit in cdstartunit(). It causes an `Invalidjoerg2000-12-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | field in CDB' error when attempting to start a caddy-type CD drive, since those drives apparently in general refuse to load a medium. Since we never advertised the feature to load the medium upon calling cdstartunit() (i. e. upon receipt of a CDIOCSTART ioctl command), nobody should have relied on it. Besides, nobody noticed so far at all that this command is failing for caddy-type drives... Only few applications seem to use it at all (among them is workman, which made me notice it). Reviewed by: ken
* | Wait DAD complete after ifconfig up.ume2000-12-042-2/+14
| |
* | - __ivaliduser_sa() was introduced for forthcoming IPv6 support to lpdume2000-12-041-102/+170
| | | | | | | | | | | | | | | | | | | | | | | | | | - iruserok_sa() and __ivaliduser_af() were re-organized to use __ivaliduser_sa() - __icheckhost() was re-written to use getaddrinfo() instead of getipnodebyname() - better handling of multiple destination addresses in rcmd() These changes were basically taken from KAME and changed to fit our rcmd.c. Obtained from: KAME
* | Fix for vanilla PC164 systems to use a slightly different PALcode magicmjacob2000-12-042-2/+39
| | | | | | | | | | | | | | | | tweak to enable/disable interrupt sources. Seems to work. It is unclear how many of the PC164 models actually might needs this, and whether or not there are other hidden issues. Obtained from:Bernd Walter <ticso@cicely8.cicely.de>
* | test strdup() failures.ume2000-12-041-5/+7
| | | | | | | | | | | | from: Chris Faulhaber <jedgar@fxp.org> Obtained from: KAME
* | (1) Allow a stray lock prefix to be compiled out with thejake2000-12-042-32/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | MPLOCKED macro (2) Use decimal 12 rather than hex 0xc in an addl (3) Implement MTX_ENTER for the I386_CPU case (4) Use semi-colons between instructions to allow MTX_ENTER and MTX_ENTER_WITH_RECURSION to be assembled (5) Use incl instead of incw to increment the recusion count (6) 10 is not a valid label, use 7, 8 and 9 rather than 8, 9 and 10 (7) Sort numeric labels Submitted by: bde (2, 4, and 5)
* | Whitespace. Fix indentation, align comments.jake2000-12-041-17/+17
| |
* | Whitespace. Fix an overly long line.jake2000-12-041-2/+2
| |
* | Remove if defined(tahoe) cobwebs.jake2000-12-041-4/+0
| |
* | remove struct mount from useland visibilityalfred2000-12-042-1/+5
| |
* | mdoc(7) police: fix formatting errors in rev 1.27.ru2000-12-041-13/+27
| |
* | Added termcap entry for multilingual sysinstallhosokawa2000-12-041-0/+11
| |
* | When recording the original arguments, stop short if we encounterjdp2000-12-041-0/+10
| | | | | | | | | | | | | | | | a NULL argument. Some programs change the contents of the argv array, typically to remove some special arguments. They shorten argv by storing a NULL where an argument pointer used to be. Such programs core dumped if they called setproctitle(), because it would try to apply strlen() to a NULL pointer.
* | Comment out debug printfs about enable/disable ints.mjacob2000-12-041-2/+2
| | | | | | | | Current now appears to work at least fitfully on one Rawhide.
* | When recording the original arguments, don't (ab)use "nargc" forjdp2000-12-041-3/+4
| | | | | | | | | | iterating over the arguments. Doing so wipes out the value which is about to be stored into the ps_strings structure.
* | More M_ZERO patches.dwmalone2000-12-032-25/+20
| | | | | | | | | | | | Submitted by: josh@zipperup.org Submitted by: Robert Drehmel <robd@gmx.net> Approved by: mjacob
* | Fix cross-building once again.marcel2000-12-031-1/+1
| | | | | | | | Forgotten by: ache
* | Add warning on file-fragmentation issues related to MAP_NOSYNCdillon2000-12-031-0/+15
| |
* | Add the NS DP83815 to the list of supported chips by the sis driver.alex2000-12-032-4/+8
| | | | | | | | Inspired by: Oliver Fromme
* | We now have the ability to assign the correct IRQ when PNP-OS is turnednsayer2000-12-034-40/+0
| | | | | | | | | | | | | | | | on. So stop failing the attach if the IRQ is unassigned. With this patch, I can now boot with PNP-OS YES in my BIOS no differently than PNP-OS NO (which is a good thing since Windows hangs with PNP-OS NO). Obtained from: msmith
* | Remove register keyword usage with prejudice.asmodai2000-12-034-16/+16
| | | | | | | | | | Modern compilers are smarter when it comes to allocating register usage.
* | Remove ${DESTDIR} from _PATH_TCSHELL, it is call path, not install pathache2000-12-031-1/+3
| | | | | | | | Add gethost to build-tools to help cross-building
* | Add controller number to unknown incoming call log message.hm2000-12-031-3/+3
| |
* | Bugfix: enable interrupt sharing for ELSA Microlink ISDN PCIhm2000-12-031-2/+2
| |
* | Use M_ZERO.dwmalone2000-12-031-22/+12
| | | | | | | | | | | | Submitted by: josh@zipperup.org Submitted by: Robert Drehmel <robd@gmx.net> Approved by: mark_salyzyn@adaptec.com
* | Check return value of malloc correctly and use M_ZERO.dwmalone2000-12-031-7/+6
| |
* | Tidy up some prototypes:dwmalone2000-12-033-7/+10
| | | | | | | | | | | | | | make sure there is exactly one prototype for each function, use K&R style definitions everywhere to match dominant style, make flag_signal take an int to avoid problems if we have ANSI prototypes and K&R definitions.
* | Update SCSI info for PC164wilko2000-12-031-5/+9
| | | | | | | | Obtained from: discussions on netbsd-alpha
* | - add support for crashdumps (courtesy of ps and Y!)msmith2000-12-033-185/+273
| | | | | | | | | | | | | | - standardise error reporting for commands - simplify the driver-to-controller bio transfer - add bio in/out accounting - correctly preserve the command ID in twe_ioctl (thanks to joel@3ware)
* | Fix up a whitespace glitch in PHOLD() and fix it to use do { ... } while(0)jhb2000-12-031-3/+3
| | | | | | | | instead of { ... }.
* | Include machine/cpu.h for cpu_getstack().marcel2000-12-031-0/+2
| | | | | | | | Spotted by: jake
OpenPOWER on IntegriCloud