summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-04-23double splx in error path.Artur Grabowski
2001-04-23Missing splx in error handling.Artur Grabowski
2001-04-23crank crypto lib version, just in caseTheo de Raadt
2001-04-23crank ssl lib version, just in caseTheo de Raadt
2001-04-23import DSA changes from 0.9.6a (Bleichenbacher attack), ok provos@/deraadt@Markus Friedl
2001-04-23when we take a pci interrupt, upgrade it to level. but always ignoreTheo de Raadt
changes which force to edge, because it appears that a lot of via bios do not contain a full list of level interrupts. when we set such an interrupt to edge, we spin and hang. i suggested this behaviour change, and this fix is by northpoint mickey.
2001-04-23fasion -> fashion; spotted by ericj@Aaron Campbell
2001-04-22document hostbased and other cleanupMarkus Friedl
2001-04-22CRT and DH+SSL fix from 0.9.6a, ok provos@/deraadt@Markus Friedl
2001-04-22Free fs->fs_contigdirs array only on successful rw->ro update. ThisGrigoriy Orlov
fixes "duplicated free" panic. Update file system from read-write to read-only freed memory but may fail later if file system busy. deraadt@ ok.
2001-04-22Fix spl handling in ipfilter ioctl interface. Work by aaron@ and me.Grigoriy Orlov
Problem was reported by DK <obsd@snti.com> as kernel panic loading ipa - "WARNING: SPL NOT LOWERED ON SYSCALL EXIT". deraadt@ ok.
2001-04-22Remove -march=i{56}86 optimization because of compiler bug. This bugGrigoriy Orlov
results in system lockup, which many people report for 2.8 and -current when they doing a big network transfer. This problem affect only custom kernels in which only one cpu type enabled (option I586_CPU or I686_CPU). When lockup occur I can't switch between virtual wscons terminals. System continue respond to pings and forward ip packets. It is possible to enter into ddb. DDB show that several processes in runnable state, but it seems that task switching not occur. More and more processes becomes runnable. Stack of curproc looks like: > _end(e99d8fac, e0101dcc, 4, e0635a00, e99d8f80) at 0xe99d8f78 > _end(e99d8fa0, e028a62e, e99d8fac, 0, 0) at 0xe99d8f78 > ddb> Sometimes 'boot sync' cleanly unmount all file systems. I reproduce this bug by transfering two big files from ftp simultaneously. It seems that at least one process must perform a network transfer and two or more processes must fight for the processor. The following PRs probably a result of this problem: 1504, 1716, 1751, 1771, 1780. deraadt@ ok.
2001-04-22permit compilation without I586_CPU or I686_CPU; armin@wolfermann.orgTheo de Raadt
2001-04-22In the verbiage for MNT_SOFTDEP add a reference to 'softdep' inKenneth R Westerback
mount(8). ok deraadt@
2001-04-22Update pdisk manpage to match formatting for other manpages, correctionsDale Rahn
appropriate for openbsd.
2001-04-22style, noted by stevesk; sort flags in usageMarkus Friedl
2001-04-22xref draft-ietf-secsh-*Markus Friedl
2001-04-22rename arguments -x -> -e (export key), -X -> -i (import key)Markus Friedl
xref draft-ietf-secsh-publickeyfile-01.txt
2001-04-22scp > 2GB; niles@scyld.com; ok deraadt@, djm@Markus Friedl
2001-04-22typos spotted by stevesk@; ok deraadt@Damien Miller
2001-04-22Update VAX installation notes:Miod Vallat
- sync supported hardware list with web page - use m4.common macros whenever possible - mention sets size (might need an update) - mention serial console is compulsory, and might need some hardware setup hugh@ ok, said more text to come soon, too.
2001-04-22Sync with mirror list.Miod Vallat
2001-04-21Do not use wsmux on alpha. Now I can start Xtga.Aaron Campbell
2001-04-21Add $OpenBSD$ tags.Aaron Campbell
2001-04-21syncTheo de Raadt
2001-04-21correct dmesgTheo de Raadt
2001-04-21Spellingmouring
2001-04-20typoMarc Espie
2001-04-20Instead of initializing the colormap to me black & white, initialize theNathan Binkert
colormap to use ansi colors. This makes alpha kernel messages come out in color during boot, and it allows console users to get ansi colors. ok deraadt@
2001-04-20update description of the -f option and reword the text about expire.Jakob Schlyter
submitted by Brian Poole <raj@cerias.purdue.edu>. ok deraadt@.
2001-04-20systat does not use /dev/drumTodd C. Miller
2001-04-20set non-privileged gid before uid; tholo@ and deraadt@Markus Friedl
2001-04-2010/100 not supported in the MAC on the current modelsTheo de Raadt
2001-04-20remove old information from ssh-1.2.12Markus Friedl
refer to http://www.openssh.com/portable.html and tell how to install OpenSSH on an OpenBSD system, ok deraadt@
2001-04-20Big upgrade of the pmap. Revised pagetable handling, more careful wiring,Artur Grabowski
more careful handling of pageability. From NetBSD.
2001-04-20Split out and improve escape character documentation, mention ~R inDamien Miller
~? help text; ok markus@
2001-04-20we support the copper varientsTheo de Raadt
2001-04-20Cleanup, new features, shrinkage.Kenneth R Westerback
Remove chunk of commented out, unused code. Add _didnet=1 to enable_network() so that ftp upgrade does not ask for network information it already has. Tell a user that selects the http installation method that the files will be downloaded via http. Suppress all 'softdep' options in fstab_shadow so there are no warnings when the filesystems are mounted. Suppress all non-ffs (including nfs, ufs) filesystems from fstab_shadow. Ufs was never used to install OpenBSD. Suppress all 'noauto' filesystems from fstab_shadow. Reword some comments and messages, esp. the one just before the offer to edit fstab. Punch up the fact that the fstab will not be saved, mention that non-ffs and noauto filesystems will be ignored. Move /usr/X11R6/lib/X11/{rstart,twm,xkb,xsm,xinit} directories to /usr/X11R6/lib/X11/XF3{rstart,twm,xkb,xsm,xinit} and replace with links. Links can be overwritten during upgrade. Directories can't. This enables the upgrade from XFree86 3.x to XFree86 4.x. ok deraadt@ millert@
2001-04-20Fix an incorrect memset() in __grow_type_table(); dk@homepage.ruTodd C. Miller
While I was there I noticed and fixed a bogus realloc(). We should really check malloc/realloc return values and deal sanely but that will have to be done later. Theo OK'd
2001-04-19dmesg printout tweaksTheo de Raadt
2001-04-19move away from -betaTheo de Raadt
2001-04-19typo; david@phobia.msTheo de Raadt
2001-04-19PF_KEY identity extensions are NUL-terminated. Do not forget neither toNiklas Hallqvist
allocate for the NUL, nor to actually transfer it.
2001-04-19Include NUL-termination in identity extension length computationNiklas Hallqvist
2001-04-19Remove redundant package name.Marc Espie
2001-04-19Cleanup dirpref and synhronize superblock with freebsd.Grigoriy Orlov
From FreeBSD with little changes. art@ ok.
2001-04-19undo change which breaks the alpha. I did not see this change and approve ↵Theo de Raadt
it during tree lock. Grrr
2001-04-19Remove extra arg; from Loic Tortay <loict@bougon.net> via aaron@.Federico G. Schwindt
deraadt@ ok.
2001-04-19When printing the address/size, use the correct value 32, not 16.Federico G. Schwindt
2001-04-19disable a few driversTheo de Raadt