summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-10-28syncTheo de Raadt
2008-10-28make DRM_INFO() a bit less gross, though getting all the grossness out at ↵Theo de Raadt
once is impossible; ok oga
2008-10-28Do not keep retrying to send advertisements if there isMarco Pfatschbacher
no carpdev configured. I don't see how we can run into this at all, but let's leave this test for a a little extra safety. OK henning@
2008-10-28fix missing n in error messageAlexandre Ratchov
2008-10-28sio_initpar() is supposed to return void like the documentationJonathan Gray
says according to ratchov@. Make it so, and crank major. ok ratchov@
2008-10-28Always skip "urpf-failed" test for IPv6 link local addresses.Marco Pfatschbacher
We could re-embed the scope-id before we do the route lookup, but then we would just find the very interface we've received the packet on anyway. OK markus@, claudio@, henning@
2008-10-28#if NVLAN > 0 in one more spot.Brad Smith
2008-10-28Use -Werror unconditionnaly again.Miod Vallat
2008-10-28Remove extendsidi2 expansion for now. It works, but since it only fillsMiod Vallat
the two SImode subregs of the DImode destination operand, this confuses the register life analysis and causes gcc to emit wrong warning about values not being initialized. Unfortunately, the fallback logic infers a worse sequence (mov + cmp against zero + ext of the cmp signedness bit, instead of mov + ext of the sign bit), which wastes an instruction and a register. This is hopefully a temporary measure until a nonconfusing flavour of the fast expansion is devised (preferrably one which does not expose the optimize_reg_copy_3 big-endian bug as well).
2008-10-28Fix output when reporting on multivolume disk groups.Marco Peereboom
Reported by mitja@muzenic.net
2008-10-28Add the MacBookPro4,1 to the list of systems with GPIO quirks andBrad Smith
needs adjustment. Allows the integrated speakers to work. from Alexey Suslikov
2008-10-28Avoid infinite recursion in search_string_def() and search_pointer_def(),Miod Vallat
PR #5033; gcc 2.95 will need a similar fix (soon).
2008-10-28Do not leave pmap_cache_state pointing to freed memory if it was theDale Rahn
last process running.
2008-10-28NewUser and NewGroup are subclasses of NewAuthMarc Espie
2008-10-28mention the new pflow(4) features: bpf support and multiple interfacesJoerg Goltermann
OK: henning@
2008-10-28add support for multiple pflow(4) interfacesJoerg Goltermann
OK: claudio@ henning@
2008-10-28clarify usage of gcc3/gcc4 modules a bit more.Steven Mestdagh
ok ajacoutot@
2008-10-28Do the DNS resolution in a seperate process. A lot of code is copied from ntpd.aschrijver
This is necessary because DNS resolution is not possible from a chroot. Cleanup the aldap interface a bit.
2008-10-28#include sensorsMarco Peereboom
2008-10-28- reverse logic for the gcc MODULESAntoine Jacoutot
ok steven@
2008-10-28- document the fact that USE_GCC* is always set when the correspondingAntoine Jacoutot
MODULE is used "go ahead" robert@
2008-10-28Shut splassert upMarco Peereboom
Fix an undo error in previous commit
2008-10-28Be nicer waking up.Marco Peereboom
prompted and ok dlg
2008-10-28Major overhaul of bio.Marco Peereboom
Fix set hotspare that didn't always work. Fix several very subtle bugs because of firmware lies Fix disk size that sometimes was incorrect Only poke drives if something changed so it makes bio way faster on subsequent calls Tested by several folks, thanks Ok dlg
2008-10-28Pointer sizeof oopsMarco Peereboom
2008-10-28Add beginings of bio. Disabled for now.Marco Peereboom
dlg "go go go"
2008-10-28"destate" comments, let them know in which cwd they stand.Marc Espie
This is actually useful for update-plist...
2008-10-28Remove return at the end of a void function.Brad Smith
2008-10-28In trunk_media_status() mark the interface as active if any ports areBrad Smith
active rather than just the primary being UP. From FreeBSD Ok mpf@
2008-10-28In trunk_lb_start() port % count will never be greater thanBrad Smith
TRUNK_MAX_PORTS so nuke the test. From FreeBSD Ok mpf@
2008-10-28Feed IPv6 flow label to hash calculation.Brad Smith
From FreeBSD Ok mpf@
2008-10-28Show the ACTIVE flag in ifconfig for the single interface that isBrad Smith
actually active in failover mode rather than all interfaces with a link. This makes it clear if the master interface is in use or one of the backup links. From FreeBSD Tested by jmc@ Ok mpf@
2008-10-28Implement a workaround for stupid hw when using VLAN stripping. FramesBrad Smith
that are 64 bytes with a VLAN header appended like ARP frames or ICMP echos are flagged as runts when the tag is stripped. Issue mentioned by yongari@FreeBSD, info gleaned from the Linux driver.
2008-10-28Update for VLAN tag insertion and stripping support.Brad Smith
2008-10-28Update with current hw support.Brad Smith
2008-10-28Remove #if NVLAN.Brad Smith
2008-10-28Some tweaks for the usage of NVLAN > 0 checks in the code.Brad Smith
2008-10-28Fix up some of the code for VLAN tagging/stripping and checksum offloadBrad Smith
support.
2008-10-28Re-add support for RX VLAN tag stripping.Brad Smith
2008-10-28Don't need NVLAN > 0 checks around this code.Brad Smith
2008-10-28Re-add support TX VLAN tag insertion and RX VLAN tag stripping.Brad Smith
2008-10-28SiS 7012 uses different multichannel control bits (data from linux).Jacob Meuser
makes 4 channel output work for Anathae Townsend. thanks for testing. ok ratchov@
2008-10-28syncTheo de Raadt
2008-10-28regenBrad Smith
2008-10-28More MCP79 Host bridge PCI ids.Brad Smith
2008-10-28regenBrad Smith
2008-10-28Correct MCP79 SMBus PCI id and add missing MCP79 PCI ids.Brad Smith
2008-10-28Added mpls_output() used to output mpls packets originating from local host.Michele Marchetto
Strictly similar to mpls_input(). Input and OK claudio@, OK laurent@
2008-10-28Try to use ACPI a little bit harder. Skip it only if ncpu < 2 and theTheo de Raadt
SMBIOS version is < 2.4. This lets 40-series thinkpads continue to use apm. worked on with kettenis
2008-10-27disable dependency that would run autoheader with better makes.Marc Espie
okay kettenis@, miod@, otto@