summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-08-18sync w/ rum(4):Damien Bergamini
- in ral_newstate(), save the "arg" parameter so we can pass it to the ieee80211_newstate() function in the usb task - merge ral_tx_data() and ral_tx_mgt()
2006-08-18- fix support for RT5225 (802.11a MIMO)Damien Bergamini
- set default Tx power for 802.11a channels - in rum_newstate(), save the "arg" parameter so we can pass it to the ieee80211_new_state() function in the usb task - merge rum_tx_data() and rum_tx_mgt() - s/le32toh/letoh32/g (le32toh is defined in usb_port.h) - cosmetic while i'm here
2006-08-18constify host argument to match the rest of the GSSAPI functions andDamien Miller
unbreak compilation with -Werror
2006-08-18oops, debug cruft shouldnt go into the tree.David Gwynne
2006-08-18add the sysinfo struct, and then use it to get the current state of theDavid Gwynne
alarm.
2006-08-18bz #1218 - disable SPNEGO as per RFC4462; diff from simon AT sxw.org.ukDamien Miller
ok markus@
2006-08-18py-cairo/py-gtk2 deathlock of dependencies. Not fixed yet.Marc Espie
2006-08-18Correctly leave the all AllDRouters group (224.0.0.6) if the interface wasClaudio Jeker
in state DR or BACKUP. Found while analizing PR5192 with norby@ -- seems to help but there is still a issue left. OK norby@
2006-08-18every day of the first five months has at least one event now.Jasper Lievisse Adriaanse
ok mickey
2006-08-18easy bio bits first. this is is code that should enable, disable, andDavid Gwynne
silence the alarm. the hardware can also report the state of the alarm, but its embedded in a really large message im not 100% sure about yet.
2006-08-18reorder so prototypes are sorted by the files they refer to; noDamien Miller
binary change
2006-08-18arc, meet bio. bio, meet arc.David Gwynne
2006-08-18delay authentication related cleanups until we're authenticated andMarkus Friedl
all alarms have been cancelled; ok deraadt
2006-08-18make signal handler termination path shorter; risky code pointed out byTheo de Raadt
mark dowd; ok djm markus
2006-08-18Make sure the PCI mode detection code is called if it hasn't been run yet.Mark Kettenis
This can happen on machines with mpbios but without pcibios like the Sun x4100 and x4200. ok dlg@
2006-08-18make non-root -M use not cut ifconfig output; ok jsgTheo de Raadt
2006-08-18Shrink dmesg output.Jonathan Gray
2006-08-18Remove some chatting about numbers which is inaccurateJonathan Gray
and not appropriate for a man page.
2006-08-18ansi, no binary change.Jonathan Gray
2006-08-18check hw.max_frame_size when deciding when to use m_adj().Brad Smith
2006-08-18regenBrad Smith
2006-08-18pretty print alternate PCI id entries for a few Broadcom Gig chipsets.Brad Smith
2006-08-18fix up the arc fw message macros a bit. change a comment while here.David Gwynne
2006-08-18tip/cu always set "dc" because the code was reading from the wrong valueJason Wright
in the array. Point it at the correct chunk of memory. For now, also preserve the old ":dc:" is always set behavior. ok deraadt
2006-08-18support for ucycom:Jason Wright
- teach ucom that not all i/o is done via bulk pipes - teach uhidev that i/o interrupt pipes are distinct
2006-08-18a bit more infrastructure for firmware commands.David Gwynne
2006-08-18Oops. If you don't use a label, remove it.Kenneth R Westerback
2006-08-18Move backward-paragraph, forward-paragraph to M-{, M-} respectively.Kjell Wooding
(not M-[, M-]). This is where emacs has it.
2006-08-17Instead of doing all this pointer and buffer arithmetic, generate stringRay Lai
using asprintf and strlcat it. Declare usage __dead instead of void in the prototype but static void in the definition. OK millert@
2006-08-17recv(2) returns a ssize_t, so match cc with it.Ray Lai
st.st_mtime is a time_t, so match utmpmtime with it. Check for -1 instead of <0 for some system calls. Remove pointless casts. OK dhill@ and millert@
2006-08-17Remove the link state check from re_start() for now. Allows the 8139C+Brad Smith
based adapters to work again. Issue reported by and workaround tested by maja@
2006-08-17fix tyop.Michael Knudsen
2006-08-17remove more unused code.Brad Smith
2006-08-17remove the Yukon Lite workaround which is not being used in the msk(4) driver.Brad Smith
2006-08-17cosmetic tweaks.Brad Smith
2006-08-17remove PCI ids which msk(4) will match against from sk(4).Brad Smith
2006-08-172 more PCI ids.Brad Smith
2006-08-17Remove some #ifdef'ed out (bogus) debug code.Mark Kettenis
2006-08-17reduce the stack usage of the ioctl function by malloc/free'ing a numberTheo de Raadt
of larger structures as need be. This was one of the worst offenders in the tree.
2006-08-17remove some unused code from msk_init_yukon().Brad Smith
2006-08-17SK_DEBUG/skdebug -> MSK_DEBUG/mskdebugBrad Smith
2006-08-17refactor the promiscuous mode handling code and simplify the ioctl handler.Brad Smith
2006-08-17get rid of the last traces of ykc.Brad Smith
2006-08-17enable msk(4) in a few more places.Brad Smith
2006-08-17tsk tsk, krw did not test compile thisTheo de Raadt
2006-08-17No need for divsi and friends, yetMiod Vallat
2006-08-17prefer higher phys memory for page tablesMichael Shalayeff
2006-08-17Remove -Wredundant-decls from CFLAGSClaudio Jeker
2006-08-17Remove -Wredundant-decls from CFLAGSClaudio Jeker
2006-08-17-Wmissing-declarations -Wredundant-decls are not very useful and especiallyClaudio Jeker
-Wredundant-decls causes many false warnings because of redeclarations in header files. Remove them, requested by deraadt@