summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-06-21Add a choose-buffer command for easier use of the paste buffer stack.Nicholas Marriott
2010-06-21Initial support for PCH based em adapters with 82577 PHY,Jonathan Gray
from Laurence Tratt based on FreeBSD code. Confirmed to work on lenovo t410i/t410s/x201. Desktop machines with PCH tend to be paired with a 82578 PHY, these will at some point be supported but not yet. ok claudio@
2010-06-21Add some more ids for existing mac and phy types foundJonathan Gray
in the FreeBSD driver. ok claudio@
2010-06-21use LE_READ_4/LE_READ_2 instead of hardcodingDamien Bergamini
2010-06-21Implement PA linearization on adapters with digital predistortersDamien Bergamini
(AR9003 family only). The power amplifier predistortion state machine works as follows: 1) Disable digital predistorters for all Tx chains 2) Repeat steps 3~7 for all Tx chains 3) Force Tx gain to that of training signal 4) Send training signal (asynchronous) 5) Wait for training signal to complete (asynchronous) 6) Read PA measurements (input power, output power, output phase) 7) Compute the predistortion function that linearizes PA output 8) Write predistortion functions to hardware tables for all Tx chains 9) Enable digital predistorters for all Tx chains from ath9k (though implementation differs a lot)
2010-06-21allow Tx flags to be passed to the tx() routine.Damien Bergamini
2010-06-21Send the right kroute struct to ldpctl for IMSG_CTL_KROUTE. This shouldClaudio Jeker
fix printing of multipath routes.
2010-06-21Requiring { } blocks for interfaces is dumb since most don't need anyClaudio Jeker
additional options.
2010-06-21use correct clock rate when computing the listen time for ANIDamien Bergamini
2010-06-21no delay is necessary on the AR9003 after writing an analog register.Damien Bergamini
2010-06-21sync from mirrors.datStuart Henderson
2010-06-21clean up all generated filesPeter Hessler
2010-06-21avoid an overflow of the xs sense buffer by ignoring t2i->senselen.David Gwynne
again, found by and fixed by matthew dempsky.
2010-06-21fix an integer arithmetic overflow.David Gwynne
An attacker can get past the ENOMEM check in vscsi_data() by first reading/writing 1 byte and then reading/writing 0xffffffff bytes. found and fixed by matthew dempsky
2010-06-21update supported device list.Felix Kronlage
discussed with and ok jsg@, jmc@
2010-06-21protect the ccb free list with its own mutex.David Gwynne
2010-06-21use the full path to zipJonathan Gray
2010-06-21No need to include mutex.h twice.Thordur I. Bjornsson
Pointed out by Jung <moorang at gmail dot com>
2010-06-21Argh. Back out previous until correct diff found.Kenneth R Westerback
2010-06-21Juggle code a bit and add a check so we don't attempt to createKenneth R Westerback
a device from a UID name.
2010-06-21Extend the -t:+ and -t:- window targets for next and previous window toNicholas Marriott
accept an offset such as -t:+2. From Tiago Cunha.
2010-06-21Having a list of winlinks->alerts for each session is stupid, just storeNicholas Marriott
the alert flags directly in the winlink itself.
2010-06-21Rename activity->alert in a couple of functions for consistency.Nicholas Marriott
2010-06-21Give tmux sockets (but not the containing folder) groupNicholas Marriott
permissions. This allows hardlinks to the sockets to be used more easily.
2010-06-21Ensure we overwrite UTF-8 wide characters properly, and never overwriteNicholas Marriott
characters we weren't overlapping. Fixes "disappearing wide characters" glitch. From Micah Cowan.
2010-06-20Don't use and maintain a function pointer that is only ever set to oneMichael Knudsen
function. Just call the function where needed. ok krw dlg
2010-06-20The -R option was removed from pfctl in March, so we no longer need thisPeter Hessler
test. The remaining pieces are all tested in other regress tests. OK sthen@
2010-06-20Add some missing includes, so we do not have implicit functionPeter Hessler
declarations. OK miod@, millert@
2010-06-20Add some missing includes, so we do not have implicit functionPeter Hessler
declarations. OK miod@ stsp@
2010-06-20update AR9380 ROM layout (add PA predistortion related fields.)Damien Bergamini
2010-06-20update 5GHz Tx gain tables for the Osprey (AR9380).Damien Bergamini
2010-06-20remove the check for a comment that was removed in 2001Peter Hessler
pointed out by david@
2010-06-20Have yet another regress test actually build the test program, beforePeter Hessler
trying to use it. OK (a long time ago) david@
2010-06-20Have the flock regress test actually depend on the flock regressPeter Hessler
program, so we have a chance of running pointed out (a long time ago) by david@
2010-06-20fix midicat(1) device mode when only -i or only -o is used (ieAlexandre Ratchov
open the device input-only if -o is used, and output-only if -i is used).
2010-06-20sync the list of device and phy ids with FreeBSDJonathan Gray
2010-06-20regenJonathan Gray
2010-06-20add a bunch of em devices from FreeBSDJonathan Gray
2010-06-20Lock the sample rate of es1731-based devices to 48kHz (ie theAlexandre Ratchov
codec rate). The es1731 has a hardware sample rate converter but we don't know how to program it (no documentation) and the current code is wrong (breaks full-duplex). ok jakemsr, landry
2010-06-20display bad symlinks by destinationMarc Espie
2010-06-20- add /etc/ikedJason McIntyre
- pkgconfig -> pkg-config
2010-06-20Document locks mechanism changes to default.Marc Espie
2010-06-19Remove more splbio/splx pairs from around scsi_done() calls.Kenneth R Westerback
From Matthew Dempsky.
2010-06-19Fix reference counting panic for CondRefJordan Hargrave
Various HP laptops now boot correctly, fixes PR 6276 ok marco@
2010-06-19Skip exiting procesess in sysctl_file2(). As processes in exit1()Thordur I. Bjornsson
do a pdfree() way before they remove themself from the allproc list. This prevents a null deref found by todd@. Joint work with mikeb OK millert@, tedu@
2010-06-19Remove unused md BUS_SPACE_MAP_NOEXTENT flag; ok jsing@Miod Vallat
2010-06-19In ieee80211_node_leave(), clear the associd after callingDamien Bergamini
ieee80211_node_leave_rsn() since ieee80211_node_leave_rsn() calls ic_delete_key() and drivers like ral(4) RT2860 need a valid associd in their delete_key callbacks. This affects HostAP mode only. from Nathanael Rensen. remove a useless (nested) #ifndef IEEE80211_STA_ONLY while i'm here
2010-06-19let build libspec match as they should.Marc Espie
namely, if a shared lib exists, then a static library should not match if the version number is not okay. problem noticed by sthen@, okay sthen@
2010-06-19new iwn-firmware-5.5 package that contains an update forDamien Bergamini
Intel Centrino Advanced-N 6200/Ultimate-N 6300 adapters. see the release notes here: http://marc.info/?l=linux-wireless&m=127690155503943&w=2
2010-06-18Remove obsolete dvmamap comment.Miod Vallat