summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Compensate for off by one bugs in disk firmware for 48BIT addressing cutover.sos2004-12-094-3/+5
|
* More fixing of multiple addresses in the same prefix. This time do not trymlaier2004-12-091-2/+20
| | | | | | | | to arp resolve "secondary" local addresses. Found and submitted by: ru With additions from: OpenBSD (rev. 1.47) Reviewed by: ru
* fixup printf arguments for 64-bit machinessam2004-12-084-11/+11
|
* Diff-reduction before merging if_axe to RELENG_4.rsm2004-12-083-1/+27
| | | | | Approved by: imp (mentor) MFC after: 1 week
* Overhaul to cleanup some of the tangled logic that's grown over the years.sam2004-12-0814-1538/+3342
| | | | | | | | | | | | | | | | | | | | o break per-address family support out into separate files o modularize per-address family and functional operations using a registration mechanism; this permits configuration according to which files you include (but beware that order of the files is important to insure backwards compatibility) o many cleanups to eliminate incestuous behaviour, global variables, and poor coding practices (still much more to fix) The original motivation of this work was to support dynamic addition of functionality based on the interface so we can eliminate the various little control programs and so that vendors can distribute ifconfig plugins that support their in-kernel code. That work is still to be completed. o Update 802.11 support for all the new net80211 functionality; some of these operations (e.g. list *) may be better suited in a different program
* If the parent process has the trap bit set (i.e. a debugger had singlekbyanc2004-12-081-0/+12
| | | | | | | | | | stepped the process to the system call), we need to clear the trap flag from the new frame unless the debugger had set PF_FORK on the parent. Otherwise, the child will receive a (likely unexpected) SIGTRAP when it executes the first instruction after returning to userland. Reviewed by: bde MFC after: 3 days
* Oooops I forgot to commit that.cognet2004-12-081-1/+1
| | | | | | Use fp_rnd_t, not fp_rnd. Reported by: Jia-Shiun Li (jiashiun at gmail dot com)
* clear old files now in publicsam2004-12-082-3562/+0
|
* update for new ath halsam2004-12-082-2/+10
|
* resolve merge conflictsam2004-12-081-6/+26
|
* Wordsmith previous commit and bump document date.trhodes2004-12-081-4/+7
| | | | Poked by: simon
* This commit was generated by cvs2svn to compensate for changes in r138583,sam2004-12-0856-132/+74779
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Version 0.9.14.12:sam2004-12-0857-138/+74806
| | | | | | | | | | | | | | | | | | | | | | | | | | | | [Changes listed only since last public release 0.9.12.14; for changes prior to that consult the CVS logs at http://madwifi.sourceforge.net] o reorg directory structure to have a single set of public binary builds shared by all systems o support for new parts (all shipping pci/cardbus parts to this date work) o new capabilities for identifying various chip features o set/get tx power cap for supporting 802.11h information element o revised api for set/get tx queue properties o support for updating CTS in frames when doing packet bursting o support for querying which tx queues have pending interrupts
* | Update the ICH6 support so all 4 SATA channels can be used.sos2004-12-081-5/+13
| | | | | | | | | | | | | | We still use "normal" mode, AHCI mode is in the works still. HW donated by: Sentex HW donated by: Yahoo!
* | Now that circular lists are gone remove stuff for them. Simplifyharti2004-12-081-10/+6
| | | | | | | | somewhat so that we can remove a local variable.
* | document m_appendsam2004-12-081-0/+12
| |
* | Updates for revised ath and net80211 support; the new man pages aresam2004-12-088-28/+385
| | | | | | | | placeholders for real material.
* | Loadable modules that run test vectors for net80211 crypto plugins.sam2004-12-086-0/+1493
| |
* | No caller checks the return code from Lst_Remove, so don't return one.harti2004-12-082-30/+12
| | | | | | | | Simplify the algorithm now that circular lists are gone.
* | o new tools for futzing with 80211 and ath debug masks symbolicallysam2004-12-085-166/+659
| | | | | | | | o update stats programs to reflect driver and net80211 changes
* | add ath rate control module(s)sam2004-12-081-0/+2
| |
* | Update for ath and net80211 changes.sam2004-12-081-1/+11
| |
* | Update/new modules for net80211 and ath changes.sam2004-12-0810-3/+148
| |
* | Update for net80211 changes.sam2004-12-086-99/+147
| |
* | o Update for net80211 changessam2004-12-083-205/+238
| | | | | | | | o Import some minor fixes from netbsd
* | Update with last year of work.sam2004-12-085-1217/+3170
| |
* | Transmit rate control modules for the ath driver.sam2004-12-084-0/+1219
| |
* | Update 802.11 support; too much new functionality to fully describesam2004-12-0823-2187/+12388
| | | | | | | | | | | | here but it includes completed 802.11g, WPA, 802.11i, 802.1x, WME/WMM, AP-side power-save, crypto plugin framework, authenticator plugin framework, and access control plugin frameowrk.
* | Don't check the return code from Lst_Remove. There is no wayharti2004-12-081-5/+2
| | | | | | | | that the list's first element is not on the list.
* | Remove return value from Lst_Concat. None of the callers ever checkedharti2004-12-082-36/+20
| | | | | | | | it. Remove stuff that was needed for circular lists.
* | Don't free the second list in Lst_Concat for LST_CONCLINK; free itharti2004-12-082-3/+3
| | | | | | | | in the caller instead.
* | Get rid of the sequential access feature of the lists. This was usedharti2004-12-0815-551/+98
| | | | | | | | | | | | | | | | only in a couple of places and all of them except for one were easily converted to use Lst_First/Lst_Succ. The one place is compatibility mode in job.c where the it was used to advance to the next command on each invocation of JobStart. For this case add a pointer to the node to hold the currently executed command.
* | Document recently added security.mac.portacl.autoport_exempt tunable.trhodes2004-12-081-0/+8
| | | | | | | | Outraced the speed of doc request: trhodes
* | - Use ng_callout() instead of timeout()glebius2004-12-081-30/+23
| | | | | | | | | | | | | | - remove spl(9) calls Tested by: Ilya Pizik Approved by: julian (mentor)
* | Constify the arguments to the list compare function. This temporarilyharti2004-12-089-39/+50
| | | | | | | | | | | | | | | | requires to make a copy of the filename in ReadMakefile and to duplicate two small functions in suff.c. This hopefully will go away when everything is constified. Submitted by: Max Okumoto <okumoto@ucsd.edu> (partly)
* | Make sure we don't pass garbage to the kernel.phk2004-12-081-1/+2
| | | | | | | | The filesystem is named "ufs" not "ffs".
* | Fix snapshot creation.phk2004-12-081-1/+1
| |
* | Add a new sysctl/tunable to mac_portacl:rwatson2004-12-081-0/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | security.mac.portacl.autoport_exempt This sysctl exempts to bind port '0' as long as IP_PORTRANGELOW hasn't been set on the socket. This is quite useful as it allows applications to use automatic binding without adding overly broad rules for the binding of port 0. This sysctl defaults to enabled. This is a slight variation on the patch submitted by the contributor. MFC after: 2 weeks Submitted by: Michal Mertl <mime at traveller dot cz>
* | Add support for the ITE IT8212F controller.sos2004-12-083-5/+117
| | | | | | | | HW donated by: Yahoo!
* | Reset timeout when we are back from interrupt.sos2004-12-081-0/+3
| |
* | Add first shot on support for the new Promise SATAII chips.sos2004-12-082-48/+116
| | | | | | | | HW donated by: pil.dk
* | Correct logical error, result was that retries wasn't always made butsos2004-12-081-1/+2
| | | | | | | | failure reported instead.
* | Constify some calls of Buf_AddBytes.harti2004-12-081-3/+3
| | | | | | | | Submitted by: Max Okumoto <okumoto@ucsd.edu>
* | Consify the arguments to str_concat. Remove the STR_DOFREE flag for thatharti2004-12-084-14/+9
| | | | | | | | | | | | | | purpose and explicitely free the input string in the one place that was calling str_concat with that flag. Submitted by: Max Okumoto <okumoto@ucsd.edu>
* | Properly handle vnode_if.h dependencies, and don't forget to clean all files.ru2004-12-081-13/+12
| |
* | Don't obtain the HCDP address directly from the bootinfo structure.marcel2004-12-083-3/+13
| | | | | | | | Use a function to keep the details at arms length from uart(4).
* | Cleanup link state change notification:sam2004-12-083-28/+38
| | | | | | | | | | o add new if_link_state_change routine that deals with link state changes o change mii to use if_link_state_change
* | add m_append utility function to be used in forthcoming changessam2004-12-082-0/+47
| |
* | Don't require a device to be marked up when issuing BIOCSETIF.sam2004-12-081-4/+3
| |
* | Tidy up the zero-copy receive path: Remove an unneeded argument toalc2004-12-083-11/+6
| | | | | | | | uiomoveco() and userspaceco().
OpenPOWER on IntegriCloud