summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* typoderaadt2012-07-131-2/+2
|
* In -man -Tascii, support .sp with negative argument.schwarze2012-07-1313-115/+142
| | | | | In -mdoc -Tman, improve the framework to control vertical spacing. Use both to support .Bl -compact (surprisingly hard to get right).
* Make amd64 like i386 for hibernate support in acpi_sleep_machdepmlarkin2012-07-131-1/+9
| | | | ok deraadt@
* properly report EAI_SERVICE when the given servname is not defined foreric2012-07-131-2/+4
| | | | the given protocol.
* tidbitespie2012-07-131-10/+8
|
* minor cleanupespie2012-07-132-9/+8
|
* Try to avoid using the same wchan name twice.deraadt2012-07-131-2/+2
|
* Add support compose LED on a usb keyboardshadchin2012-07-133-4/+10
| | | | ok mpi@, from Alexander Polakov <polachok at gmail dot com>
* { ...; } is more proper than ( ... ) since the latter spawns a subshellhalex2012-07-131-3/+3
| | | | | | while the former does not pointed out by and ok naddy@
* move stuff around some more, do not load link parts unless we are actuallyespie2012-07-138-385/+412
| | | | | | | | | linking. (and always load basic linker class when we're actually linking) Start making a proper "library stash class".
* Disable acpivideo(4) on ASUS laptops.pirofti2012-07-132-5/+9
| | | | | | | | There are some models that panic whenever an event is received. Some cope, some don't. In order to get this right acpiec(4) requires major rework. Until then let machines boot. Discussed with deraadt@.
* Fix wireless scanning on slow systems with a high RX rate and interfacestsp2012-07-131-32/+69
| | | | | | | | | | | | | | | | | | | | in debug mode. If the interface is in debug mode ieee80211_input() will print messages about received frames to the console. On slow systems, printf() calls can take so long that the next RX interrupt will be serviced immediately, if the RX rate is sufficiently high. This effectively locks the system at IPL_NET. If a concurrent scan is running, the scan will never finish because it relies on a timeout at IPL_SOFTCLOCK to hop channels every 200msec. This timeout never runs in the above situation, leaving the wireless interface in 'scan' state forever. To give the timeout a chance to run, perform the printf() call from a work queue (idea from guenther@). This allows edd's slow soekris AP to recover from 'ifconfig ral0 debug down up' in noisy RF environments. With input from guenther, kettenis, blambert and deraadt. ok deraadt
* remove confuzzling commenthenning2012-07-131-4/+1
| | | | | :dlg: the xxx can go ...and this time commit to the real repo and not the one on my laptop
* Move all the macros defined here into the _KERNEL block since userlandclaudio2012-07-131-11/+10
| | | | has no use for those. OK bluhm@ guenther@
* Make the ACPI EC aware of the AML global lock.pirofti2012-07-132-3/+13
| | | | | | Comments from kettenis@ and matthew@. Okay deraadt@, kettenis@.
* More foundation goo for amd64 hibernatemlarkin2012-07-131-1/+2
|
* Starting point for amd64 hibernate ... some goo copied from i386.mlarkin2012-07-133-0/+403
| | | | | This does not yet work for amd64 - getting the structure into the tree so others can help.
* allow destination/prefixlen syntax for ipv6 routes.benno2012-07-132-18/+54
| | | | | | from Florian Obser, florian -AT- narrans -DOT- de ok sthen@
* Use NULL instead of 0 for pointersshadchin2012-07-131-4/+4
| | | | ok gilles@, guenther@
* Keep separate OACTIVE flags to mark full management/data tx queues,stsp2012-07-134-13/+42
| | | | | | | | | | | | | | | | and set the interface's IFF_OACTIVE flag if either queue is full and clear it only if both queues have free slots. Before this change both queues were setting/clearing the same flag with no regard for the other queue's state. Also, don't reset the tx watchdog counter if either queue still has frames queued when we exit the frame-processing loop in the per-queue interrupt handlers. Both changes originally from sephe@dragonfly. Tested by myself and edd on a slow busy soekris which before this change required occasional 'ifconfig ral0 down up' to recover.
* Tweak node cache eviction strategy when the cache is full: kick off new nodesstsp2012-07-131-4/+12
| | | | | | | | in AUTH state that weren't active during the cache wait interval rather than keeping them for the entire cache timeout interval. Fixes association failures in noisy RF environments. Tested by edd and myself with a slow soekris suffering from RF noise with about of 50 interrupts per second on ral0. ok deraadt
* Use same (lame) verbiage to explain ifa_dstaddr as is used forkrw2012-07-131-3/+4
| | | | | | | | ifa_broadaddr. i.e. make it make clear that this field is only valid for P2P. (Hint: one's a field, and one's a #define giving a new name to said field) ok guenther@
* back out stuff that snuck into the last commithalex2012-07-131-3/+2
|
* fix logic flaw in md_installboot()halex2012-07-131-8/+9
| | | | ok deraadt@ otto@
* fixed testespie2012-07-131-4/+5
|
* fix shared library lookup...espie2012-07-131-27/+44
|
* wrong library orderingespie2012-07-131-2/+9
|
* after connect() returns EINPROGRESS the connection can still fail,benno2012-07-131-1/+12
| | | | | | so check with getsockopt if the socket is open. ok mikeb@
* temporary option until I come up with a nicer way: if -DNOINSTALLPATHespie2012-07-131-1/+3
| | | | don't even look in pkg.conf for the installpath.
* Init the baseband processor before selecting antennas since selecting antennasstsp2012-07-131-3/+14
| | | | | | | involves tweaking of BBP registers. Wait for BBP to stop being busy before reading from it. Originally from sephe@dragonfly. ok kettenis sthen
* Add a queue of notifys and a way to turn them off and on (we do not wantnicm2012-07-133-14/+149
| | | | | notifys to happen during some commands). Based on code from George Nachman.
* put back the Key-Arg field - sess_id still prints it;jmc2012-07-131-2/+5
|
* make the compat for -XXX to -s XXX simpler. sometimes you dont need to usedlg2012-07-131-21/+8
| | | | | | goto. ok nicm@
* zap trailing whitespace; no binary changegsoares2012-07-131-7/+7
| | | | ok dlg
* handle long comments in config files better. bz#2025, ok markusdtucker2012-07-131-2/+6
|
* remove (hopefully) all traces of sslv2; ok sthenjmc2012-07-121-55/+23
|
* Skip printing another SSLv2-only command in s_client's usage text.sthen2012-07-121-0/+2
| | | | jmc@ noticed this in the manpage while updating it, but it applies here too.
* add missing HISTORY sectionsjasper2012-07-1218-36/+126
| | | | ok jmc@
* common code for deducing libraries.espie2012-07-123-19/+22
| | | | Still fucks up order somehow...
* add -B to usage();jmc2012-07-121-2/+2
|
* okay, now the parser module is totally part of Mode/Link.pm, no reasonespie2012-07-123-322/+298
| | | | for a separate file
* Add -B option to pass down LD_BIND_NOW to suppress ld.so blatherguenther2012-07-122-5/+16
| | | | ok pirofti@ deraadt@
* Be way more careful when accessing a possibly cached route in_selectsrc()claudio2012-07-121-9/+8
| | | | | since it may already been gone. Fixes panic seen by stsp@ when unplugging a used USB interface. Tested and OK stsp@
* regression tests related to mdoc_validate rev. 1.105schwarze2012-07-129-2/+76
|
* The post_nm() validation function crashed when the first .Nm child nodeschwarze2012-07-123-17/+22
| | | | | | | | | was a non-text node. Fix this by rewriting post_nm() to always set the meta name to UNKNOWN when the name is missing or unusable. While here, make MANDOCERR_NONAME an ERROR, as it usually renders the page content unintelligible. Bug reported by Maxim <Belooussov at gmail dot com>, thanks.
* Use S_ISFIFO and S_ISSOCK instead of lseek() to determine whethermillert2012-07-121-3/+3
| | | | an fd is a socket, pipe or named pipe. OK deraadt@ matthew@
* Set CLOCAL in remove c_cflag or line noise is likely to make cu exit asnicm2012-07-121-2/+2
| | | | discovered by naddy.
* Add handler for SIGHUP.nicm2012-07-121-1/+4
|
* Describe ~X as "send" not "transfer" to be clearer.nicm2012-07-121-3/+3
|
* Nuke unused variable from Thomas Adam.nicm2012-07-121-3/+1
|