summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-03-31softintr_establish() takes IPL_xxx, not SI_xxx (harmless here since they turnedMiod Vallat
out to be the same value).
2012-03-31err(1, NULL) can drive people insane, so please avoid it.Theo de Raadt
ok guenther
2012-03-31Make fsck_msdos work with non-512-byte sector devices. Problem notedKenneth R Westerback
by and fixes tested by Alexey Vatchenko. Add a bunch of tests and error messages so whatever media/devices this breaks will be more easily fixed. Ignore invalid signatures since we have other checks and many media have missing signatures. Use character device to read disk even when called directly.
2012-03-31sync cvsignore patterns. ok sthen@Matthieu Herrb
2012-03-30Expand the panic to show the malloc type and size. Okay deraadt@.Paul Irofti
2012-03-30make the description of -c a little saner; ok nicmJason McIntyre
2012-03-30increase timeout to 5m when connecting to a remote mail server, as requiredCharles Longeau
by the RFC 5321 (section 4.5.3.2.1.) ok gilles@
2012-03-30* use -A with traceroute6 to print the AS number; OK deraadt@ dcoppa@ henning@Gleydson Soares
* while here tweak bgplg.head increasing the <div> width to 800px so that this support better the tracing output with long v6 address; (requested by sthen@)
2012-03-30actually store the result of the pmtu-route lookup. otherwise weMarkus Friedl
don't have a MTU to announce in the icmp need fragment packet. this fixes PMTU-discovery for TCP over IPsec; ok mpf@, fries@
2012-03-30If the MIDI UART is not ready for output, don't spin at IPL_CLOCK;Alexandre Ratchov
just return and make the midi(4) driver retry later. UART buffers are large enough for this, except eap(4) which uses interrupts for output. help from and ok jsg@
2012-03-30tweak FILES and HISTORY;Jason McIntyre
2012-03-30document ZZZ; ok deraadtJason McIntyre
2012-03-29Add PermitOpen none option based on patch from Loganaden VelvindronDarren Tucker
(bz #1949). ok djm@
2012-03-29there must be an even number of node names, not pairs;Jason McIntyre
from Jan Stary
2012-03-29Hook IP22 kernels to the build, and document how to boot the installationMiod Vallat
media on them. Try to be helpful and explain how things may fail on the older PROM and what to do about this.
2012-03-29Put more smarts into the limited bootblocks brain; they will now happilyMiod Vallat
recognize a kernel bootpath (when not autobooting) even if it does not start with a /, and will also recognize when this is a full path (e.g. bootp()mykernel), in which case OSLoadPartition does not need to be prepended to the constructed path. This will allow ELF kernels to be booted on ELF-unaware PROM with bootp()bootecoff bootp()kernel without doomed-to-fail tomfoolery to convert the 64-bit ELF kernel to a 32-bit ECOFF binary.
2012-03-29Link IP22 kernels at 8MB rather than 1MB, to prevent bsd.rd from overlappingMiod Vallat
the PROM data area.
2012-03-29Don't spin if accept() fails because it is out of file descriptors,Alexandre Ratchov
instead set a flag that skips the listening socket from the poll() event loop. The flag is cleared whenever a file descriptor is closed allowing accept() to be retried. Explained by deraadt@
2012-03-29avoid line wrap in EXAMPLES; from Thomas PfaffJason McIntyre
2012-03-29The gnome MODULE also modify CONFIGURE_ENV.Antoine Jacoutot
2012-03-29syncTheo de Raadt
2012-03-29tweak previous;Jason McIntyre
2012-03-29Missing #ifdef in previous diffMike Larkin
2012-03-29Prevent hibernation attempts on machines with unsupported disk controllers.Mike Larkin
The same check is also performed later in the hibernate sequence, but by then it's too late to cleanly unwind (presently). ok deraadt
2012-03-29Add ecoff as possible targets for the mips ports, to be able to muildMiod Vallat
ecoff moot blocks on sgi.
2012-03-29syncTheo de Raadt
2012-03-28guenther notes that s_pid must also move to matchTheo de Raadt
2012-03-28Default to -mfix-r4000 -mfix-r4400 when building in big endian mode. This isMiod Vallat
a lifesaver for R4000 and R4400 operation; without these, every int->long promotion occuring shortly after an integer multiplication (such as an array element access when the array item size is not a power of two) loses horribly, and panic^Whilarity ensues. This mostly causes assembly insns to be shuffled, but almost no code size growth and no noticeable performance hit on processors which do not need these insn placement workarounds.
2012-03-28regenMiod Vallat
2012-03-28Work in progress support for the SGI Indigo, Indigo 2 and Indy systemsMiod Vallat
(IP20, IP22, IP24) in 64-bit mode, adapated from NetBSD. Currently limited to headless operation, input and video drivers will get ported soon. Should work on all R4000, R4440 and R5000 based systems. L2 cache on R5000SC Indy not supported yet (coming soon), R4600 not supported yet either (coming soon as well). Tested to boot multiuser on: Indigo2 R4000SC, Indy R4000PC, Indy R4000SC, Indy R5000SC, Indigo2 R4400SC. There are still glitches in the Ethernet driver which are being looked at. Expansion support is limited to the GIO E++ board; GIO boards with PCI-GIO bridges not ported yet due to the lack of hardware, and this kind of driver does not port blindly. Most of this work comes from NetBSD, polishing and integration work, as well as putting as many ``R4x00 in 64-bit mode'' erratas as necessary, by yours truly. More work is coming, as well as trying to get some easy way to boot install kernels (as older PROM can only boot ECOFF binaries, which won't do for the kernel).
2012-03-28Allow dma map boundary smaller than the kernel page size to work inMiod Vallat
bus_dmamap_load*().
2012-03-28Yet another ioctl-related pid value. Should be the master of theTheo de Raadt
thread, aka. p_p->ps_pid. ok miod
2012-03-28pfkey needs some p_p->ps_pid too. OK deraadt@ guenther@Claudio Jeker
2012-03-28Another pid that needs to be the process pid and not the thread one.Claudio Jeker
OK deraadt@, guenther@
2012-03-28More p_pid to p_p->ps_pid updates. OK deraadt@, guenther@Claudio Jeker
2012-03-28Use p_p->ps_pid as pid in the route header instead of the thread pid. GiveClaudio Jeker
userland a chance to compare the value against getpid(). This unbreaks transmission for me. OK deraadt@, guenther@
2012-03-28Make the yelp section (a little) more understandable.Antoine Jacoutot
poor bentley@ probably burnt his eyes on this...
2012-03-28The Delete key should delete the character to the right of the cursor.lum
Posted to tech@ by Han Boetes from a bug report submitted to debian by Peter De Wachter (Bug#661732), via Trent W. Buck. No objections from tech@
2012-03-28Close an opendir(). From Igor Zinovik.lum
2012-03-28The kinfo_file2 structure's f_wbytes member was being filled with thePhilip Guenthe
read byte count instead of the written byte count. pointed out by paulm at tetrardus.net, ok dcoppa@
2012-03-28Take some additional steps needed to make the PHY on EC Ultra/8056Jonathan Gray
work correctly, based on similiar changes in FreeBSD. Originally from Brad Davis but changed quite a bit by claudio kettenis and myself since. ok kettenis@, earlier version ok claudio@
2012-03-28the sysctl is net.inet.ip.encdebug, not net.ipsec.encap.encdebugJason McIntyre
completes revision 1.57! from Visa Hankala
2012-03-28explain certificate extensions/crit split rationale. Mention requirementDamien Miller
that each appear at most once per cert.
2012-03-27Introduce "selected" as show rib attribute to only show selected routes.Claudio Jeker
Can be combined like: bgpctl show rib nei peer1 selected to only show the routes that are used from neighbor peer1. Requested by and OK deraadt@, OK henning@
2012-03-27Introduce F_CTL_ACTIVE a flag to only show selected pathes.Claudio Jeker
Requested and OK deraadt@, OK henning@
2012-03-27fix indentationTheo de Raadt
2012-03-27Do not try STARTTLS if the server does not advertise supportEric Faurot
for it (it apparently triggers very bizarre behaviour on some servers). Also make sure we are not using AUTH over a clear channel. ok gilles@
2012-03-27only attempt to calculate bus_clock if we can't get tables from acpiJonathan Gray
2012-03-27Make the bus_clock calculations happen later in the boot process soJonathan Gray
they can be conditionally called in future. This makes the i386 speedstep code closer to the amd64 code (though still with the added complications of VIA support and the *_update_cpuspeed callbacks)
2012-03-27Reverse the default of the -c flag from off to on to prevent the textNicholas Marriott
being displayed in the wrong place initially and then jumping when first redrawn (such as when searching). ok deraadt sthen