summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-12-03Remove the x86 and i386 prefixes to the bus_dma types. It's really quiteOwain Ainsworth
pointless and just makes the code different for no reason. This moves i386 and amd64 bus_dma to being a lot closer to identical. suggestion to just remove the prefix instead of merge them from deraadt@. no objections art@, kettenis@, ok weingart@
2008-12-03Some more ambigous -> ambiguous pointed out by mbalmer (there areStuart Henderson
others, these are the ones from code unlikely to be re-merged with upstream sources).
2008-12-03typo; from Anathae TownsendJason McIntyre
2008-12-03don't overwrite an error code from wpi_init() in wpi_ioctl(), logic isConstantine A. Murenin
now in line with iwn_ioctl(); 'dead assignment' llvm/clang; ok damien
2008-12-03Weongyo Jeong has consented to switch from an inappropriate licenseJonathan Gray
to license.template
2008-12-03- Fix unit for dwFrameInterval in DPRINTF.Marcus Glocker
- Add a comment from yuo@ which describes dwFrameInterval values a bit.
2008-12-03Fix error handling for usbd_transfer().Marcus Glocker
2008-12-03allocate the right number of entries in the "jumbo" rx ring now that it isDavid Gwynne
actually used. this fixes vic on esx3. problem found by matthieu@ also includes misc tweaks to comments and some cleanup code.
2008-12-03use the right variable when looping over rxqs.David Gwynne
2008-12-03add UYVY video format support for uncompressed videoYojiro Uo
ok mglocker@
2008-12-03remove bogus part (GUID_UYVY part) form last commit.Yojiro Uo
(this diff will be include next diff.)
2008-12-03change UVC VS negotiation logic.Yojiro Uo
some device return wrong value for get probe request without initial set probe request. so, now it issue set probe request and then get probe to initialize device configuration.
2008-12-03fix USB packet size handling of uvideo(4)Yojiro Uo
2008-12-03recommit the use of the new mbuf cluster allocator.David Gwynne
this starts em up with 4 mbufs on the rx ring, which will then grow as usage demands. this also allows em to take advantage of the new livelock mitigation code as well as freeing up a boatload of kernel memory. this version of the diff makes sure we only ever post the last descriptor we filled to the hardware, rather than the whole ring when bringing the interface up. it has been tested by users who got panics with the previous diff without trouble.
2008-12-02backout: would have been nice if this had been tested, to see that itTheo de Raadt
crashes the moment a card is plugged in.
2008-12-02s/remote_id/id/ to be more consistent with other code; ok djm@Markus Friedl
2008-12-02backout 1.149, since it's not necessary and openssh clients sendMarkus Friedl
broken CHANNEL_FAILURE/SUCCESS messages since about 2004; ok djm@
2008-12-02we have to use the recipient's channel number (RFC 4254) forMarkus Friedl
SSH2_MSG_CHANNEL_SUCCESS/SSH2_MSG_CHANNEL_FAILURE messages, otherwise we trigger 'Non-public channel' error messages on sshd systems with clientkeepalive enabled; noticed by sturm; ok djm;
2008-12-02correct spelling (ambigous -> ambiguous)Stuart Henderson
2008-12-02cleanup ieee80211_classify(): retrieve VLAN tag from m_pkthdr.ether_vtag.Damien Bergamini
2008-12-02Add code for 5150 support (not tested since I don't have the hardware andDamien Bergamini
because it requires a specific firmware that Intel has not released yet.) Fix crystal calibration for 5000 Series.
2008-12-02syncDamien Bergamini
2008-12-02Intel WiFi Link 5150Damien Bergamini
2008-12-02typos;Jason McIntyre
2008-12-02Initial support for neighbor expiry.Michele Marchetto
When a nbr goes down delete it from the lists of downstream dependent neighbors. OK norby@
2008-12-02rewrite of mixerctl.conf.5, to try and do something constructiveJason McIntyre
with this page; written with lots of help from jakemsr and ratchov; ok jakemsr ratchov
2008-12-02- there is no "load" global command, so remove its descriptionJason McIntyre
- comment out local commands for now, until they are implemented
2008-12-02tweak previous;Jason McIntyre
2008-12-02commit with rdsetroot now accepting the filesystem as a 2nd argTheo de Raadt
2008-12-02permit passing in the filesystem (a file) as an argumentTheo de Raadt
2008-12-02Allow the kernelfile to be read-only when doing extraction.Paul de Weerd
'Sure' deraadt@
2008-12-02convert -DDEBUG to a -d optionTheo de Raadt
2008-12-02no longer need to compile rdsetroot with DEBUGTheo de Raadt
2008-12-02no need to close() before exit()Theo de Raadt
2008-12-02let it compile, let it compile, let it compile...Theo de Raadt
2008-12-02Do not write warnings, errors or debug messages to stdout; it breaksPaul de Weerd
filesystem extraction (-x) with debug binaries. Found with Nick Bender at OpenCON. 'Go for it' deraadt@
2008-12-02eliminate gratuitous differencesTheo de Raadt
2008-12-02no , at end of arrayTheo de Raadt
2008-12-01terse is good, more readable; please commit deraadt@Todd T. Fries
2008-12-01bzero local variable; ok uweTheo de Raadt
2008-12-01there is zero reason for this parse.y to look different from the others; ok uweTheo de Raadt
2008-12-01- in mxsort, fix type of loop counter, it will never be < 0 if it isGilles Chehade
unsigned and when running out of luck it will cause the lookup process to crash.
2008-12-01Huawei E510 here tooMartin Reindl
reminded by jsg@ ok fkr@
2008-12-01regenMartin Reindl
2008-12-01add the Huawei E510 modemMartin Reindl
ok fkr@
2008-12-01introduce btd(8) and btctl(8), tweak bt.conf(5)Todd T. Fries
feedback from uwe@ and jmc@
2008-12-01Back out previous; it broke specifying paritions sizes with decimals,Ray Lai
e.g. "0.5g".
2008-12-01introduce bt.conf(5), ok uwe@Todd T. Fries
2008-12-01Add a function to print a floating point field and use this to fix theChristian Weisgerber
SEConds field in the iostat view. ok and help canacar@
2008-12-01leak memory in the realloc function until we find out who has a pointerTheo de Raadt
to it, otherwise as seen by sthen/matthieu in master mode: cdcef0 at usbf0: usbf_open_pipe failed ok miod