summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2002-08-22match more serverworks "double bridges", based on discussions with nate andTheo de Raadt
brad
2002-08-22do not lose errnoTheo de Raadt
2002-08-22tweakTheo de Raadt
2002-08-22Change the vnode locking in exec to not keep the vnode locked almost allArtur Grabowski
the time. This could lead to problems when a process wants to do an exec on the same vnode it's being run from and needs to copy in arguments from an uncached page in the data segment. When that happens uvm detects a vnode deadlock and returns an error causing execve() return EFAULT. This fixes the regress test in regress/sys/kern/exec_self Also, initialize scriptvp early in exec_script because it could be used uninitialized in a failure case.
2002-08-22send signal name (not signal number) in "exit-signal" message; noticedMarkus Friedl
by galb@vandyke.com
2002-08-22auth_root_allowed() is handled by the monitor in the privsep case,Markus Friedl
so skip this for use_privsep, ok stevesk@, fixes bugzilla #387/325
2002-08-22shutdown(SHUT_RDWR) not needed before close here; ok markus@Kevin Steves
2002-08-22sshd_config(5) now; ok markus@Kevin Steves
2002-08-22syncTheo de Raadt
2002-08-22format with current EscapeChar; bugzilla #388 from wknox@mitre.org.Kevin Steves
ok markus@
2002-08-22use common close function; ok markus@Kevin Steves
2002-08-22simplify multicast setup on the 3c905 (pre-B/C, etc)Jason Wright
2002-08-22fix int overflow in statbf.st_size, from netbsd PR#17933Philipp Buehler
as by request from deraadt@
2002-08-22drop AAAA reply with IPv4 mapped address. sync w/kameJun-ichiro itojun Hagino
draft-itojun-v6ops-v4mapped-harmful-00.txt
2002-08-22Remove code, use common ether_crc32_le() routine.Dale Rahn
2002-08-22Configure the media in the initialization routine so that media/mediaoptDale Rahn
fields in hostname.bm0 will work correctly. This does not fix the 100MB receive problem, but allows media 10baseT in hostname.bm0 to set the speed to a working speed.
2002-08-21add missing CLEANFILES; ok miod@Wilbern Cobb
2002-08-21Recognize both VSIMM slots, and allow one cgfourteen to attach to eachMiod Vallat
of them.
2002-08-21RegenMiod Vallat
2002-08-21Correct tty0[0-3] device nodes generation.Miod Vallat
2002-08-21Correctly map the video memory, for proper operation.Miod Vallat
2002-08-21raise listen backlog; ok markus@Kevin Steves
2002-08-21change LoginGraceTime default to 1 minute; ok mouring@ markus@Kevin Steves
2002-08-21Get the boot device correctly if scsi id != 0 on 1[67]x boards.Miod Vallat
2002-08-21Attach one screen resource, by default, to every wsdisplay device,Miod Vallat
instead of zero, if the kernel configuration file does not override this setting. This enables X11 to work on multihead sparc{,64} configurations without the need for an explicit wsconscfg invocation first. If a non-default emulation is requested, the user can still delete this automatic resources and recreate it with wsconscfg. ok mickey@ jason@
2002-08-21suppress dump output on -q. sync w/kameJun-ichiro itojun Hagino
2002-08-21Working strip -x support.Marc Espie
Since we keep relocations, we need to ensure that: 1/ symbols used by relocations are actually kept, 2/ refs to ext symbols in relocations are correctly renumbered after killing some symbols. okay art@ (can't break things further than they were broken anyways). Thanks to Laurent Bercot (ska@quatramaran.ens.fr) for pointing out that strip -x was broken.
2002-08-21Postpone ftruncate after unmap. Works around a bug in non-ubc memoryMarc Espie
handling. Also, avoids dumping core on badly formed object. ok millert@, miod@, art@
2002-08-21Split out MD makefile parts into separate files and doArtur Grabowski
some other cleanup in the Makefile. drahn@ ok.
2002-08-21Fix Makefile for correct regress operation.Miod Vallat
2002-08-21oopsieMarc Espie
2002-08-21+mmap3Marc Espie
2002-08-21Regression test for non-ubc mmap/ftruncate interaction.Marc Espie
Noticed on strip, test prompted by art@. (turns out `normal' strip isn't affected because normal binaries are page-padded).
2002-08-21`RSA' updated to refer to `public key', where it matters.Marc Espie
okay markus@
2002-08-20print as unsigned for unsigned values, when printing out a map in ddb; art@ okMichael Shalayeff
2002-08-20set use_deprecated back to 1. sync w/kameJun-ichiro itojun Hagino
2002-08-20clean some more signal races, some cannot be fixedTheo de Raadt
2002-08-20more comment on bind(deprecated) handlingJun-ichiro itojun Hagino
2002-08-20ultra60 supportJason Wright
2002-08-20U60 works now.Miod Vallat
2002-08-20Two fixes from NetBSD (this allows my u60 to boot multiuser):Jason Wright
- Use paddr_t for avail_start and avail_end so we can handle machines with RAM above the 2GB mark. - Do not truncate the kernel pmap physical address to an `int' before sticking it in the context lookup table. Fixes a booting issue on Netra T1125s.
2002-08-20Fix error stringJason Wright
2002-08-20-n: disallow anon ftp even if ftp account existsTheo de Raadt
2002-08-20syncNathan Binkert
2002-08-20New intel gigE devices from Henric Jungheim <henric@henric.info>Nathan Binkert
2002-08-20wscons on sparc sets updatesMiod Vallat
2002-08-20Because of reversed use of the annul bit and delay slots copyin andArtur Grabowski
copyout could underflow by one byte and write a \0 where is doesn't belong. Don't try to micro-optimize the failure case of copyin and copyout. It's not worth the bugs. miod@ ok
2002-08-20Prevent possible races by moving .X11 fixups to before the systemHugh Graham
goes multiuser. In consultation with dynamo; cleared by millert.
2002-08-20Increase lineno on newlines inside multi-line macro definitions, otherwiseDaniel Hartmeier
errors on subsequent lines are reported with wrong line numbers. From Paul B. Henson.
2002-08-20Add a pseudo openfirmware console device for early debugging purposesDale Rahn
and to allow UKC to work properly. ok miod@