summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2005-03-01Print display resolution as %dx%d, not %d x %d.Miod Vallat
2005-03-01use one uint64_t instead of two uint32_t in rx radiotap header.Damien Bergamini
2005-03-01make sure radiotap structures are packed.Damien Bergamini
2005-03-01Unbreak arp_input with carp; add back the call to carp_iamatch()Ryan Thomas McBride
which was removed in rev 1.57. This makes arpbalance work again, and ensures that only one carp host will reply to a given arp request. ok mpf@ pascoe@ dhartmei@ deraadt@
2005-03-01- make large packets work without hanging the interfaceRyan Thomas McBride
- make tcpdump attach correctly by Alex Feldman prodded via Greg Mortensen <thevision@pobox.com> ok deraadt@
2005-03-01only call eaio_l2() if kernel has support for pcxl2 compiled in; from ↵Michael Shalayeff
weissmanndude
2005-03-01Fix an integer overflow that prevented us from reading files >= 2 GBTom Cosgrove
from MS-DOS filesystems. Assistance otto@; thanks. "looks ok" krw@; ok derradt@.
2005-03-01The maximum file size on MS-DOS filesystems is 4 GB - 1 byte, soTom Cosgrove
don't bother trying to write files bigger than this. Just return EFBIG to caller, rather than panic()ing later. Closes PR 4090. Assistance from otto@, tested by OP and moritz@; thanks. ok tedu@ deraadt@
2005-03-01Avoid 32-bit overflow by casting blk arg to lblktosize() to (off_t). SolvesAaron Campbell
performance loss issue in some cases when reading past the 2GB boundary in large files. Testing by drahn@, otto@, danh@, krw@, tom@, jaredy@. From FreeBSD. tedu@, pedro@ ok.
2005-03-01fix the radiotap bpf listenerReyk Floeter
2005-03-01only use MAX_KMAPENT 2000 on i386 amd64 sparc64 and revert to 1000 on allHenning Brauer
other archs for now, beck theo ok
2005-02-28Store interrupt state in one variable not two, remove inlines whichDale Rahn
signficantly bloat kernel. tested/ok dlg@
2005-02-28Fix confusion between KS_paragraph and KS_section; inspired from a PS/2Miod Vallat
keyboard sv map error spotted by Jan Johansson.
2005-02-28Fix confusion between KS_paragraph and KS_section; inspired from a PS/2Miod Vallat
keyboard sv map error spotted by Jan Johansson.
2005-02-28add radiotap, monitor and promiscuous mode support.Damien Bergamini
2005-02-28do per-node rate adaptation. paves the way for ibss support.Damien Bergamini
2005-02-28Provide inittodr and resettodr for xscale, remove them from sa11x0, andUwe Stuehler
restore the time on resume.
2005-02-28Fix minor KNF nit that hurts every time I analyse this code.Christopher Pascoe
ok dlg@
2005-02-28another fix from netbsd pointed out by jsg@David Gwynne
Clear IFF_RUNNING flag before aborting usb pipes in atu_stop().
2005-02-28Don't bother trying to load an empty firmware file.Patrick Latifi
ok deraadt
2005-02-28Do not incorrectly emit "too many" message in debugging code.Christopher Pascoe
ok dlg@
2005-02-28Remove unused variable if_flags in struct carp_softc, ok mickey@Ryan Thomas McBride
2005-02-27remove dead code of unsupported ioctls from FreeBSD. we do it in aReyk Floeter
different way. ok deraadt@, martin@
2005-02-27Move wsdisplay-only prototypes declarations in the #if NWSDISPLAY > 0 blockMiod Vallat
so that kernels with no frame buffer drivers can compile; spotted by marc@
2005-02-27Document how to set CONSCODE to point to an SGC device if one wants to forceMiod Vallat
the console.
2005-02-27Split sti softc in two structures, one device-related for regular deviceMiod Vallat
attachment and interface, one screen-attached for the real work. The attachment code is now required to decide whether sti_end_attach() is run immediately, or as a startuphook. This allows hp300 to initialize sti early, and use it as a console; hppa is functionally unchanged, as it uses the PROM console until the root device is mounted.
2005-02-27Invoke hp300_cninit() twice, with a global variable letting theMiod Vallat
console-dependent routines know which pass they are being invoked in. The first pass is the usual console detection code. The second pass runs after uvm is initialized, and will allow devices which need VM services to run to claim the console.
2005-02-27Decide whether to force serial console on the 425e based upon the serviceMiod Vallat
switch, which is a physical switch on this model, unlike other frodo-based hp300. Service mode will now select serial console, while normal mode will select graphics console.
2005-02-27Use the DMA defines from dev/ic/lsi64854reg.h whenever possible; no functionalMiod Vallat
change. ok deraadt@
2005-02-27support 'tagged' in translation rules, non-delayed tag lookupDaniel Hartmeier
ok henning@, deraadt@
2005-02-271. tcp_xmit_timer(): remove extra rtt decrement (t_rtttime is 0-basedMarkus Friedl
while t_rtt was 1-based), update callers 2. define and use TCP_RTT_BASE_SHIFT instead of the hardcoded 2. 3. add missing shifts when t_srtt/t_rttvar are used. 4. update the comments: t_srtt uses 5 bits of fraction (not 3) and t_rttvar uses 4 bits 5. remove obsolete/unused macros TCP_RTT_SCALE and TCP_RTTVAR_SCALE 6. make sure rttmin is not > TCPTV_REXMTMAX parts from netbsd, ok mcbride, henning
2005-02-27IBSS bits from NetBSD rtw.c -r 1.40Jonathan Gray
2005-02-27regenBrad Smith
2005-02-27MF -> MTBrad Smith
2005-02-27If test_unit_ready() in sdattach() returns EIO, try to spin up unitKenneth R Westerback
exactly as is done in sdopen(). This improves the chances of getting valid geometry/size and avoiding 'drive offline' errors, without subjecting the device to anything it won't see anyway. No impact on devices that already work. Fixes problem with Jim Rees' Hitachi DK23DA in an Archos Multimedia Jukebox. Without adding quirks! Tested by Jim Rees. ok marco@.
2005-02-26Fix a problem introduced with the recent lru cache change.Jonathan Gray
Check that we actually have a node before trying to release it. This was causing a panic when playing with IBSS. ok reyk@
2005-02-25add support for the atheros ar5211 802.11A/B/g wireless chipset.Reyk Floeter
ok deraadt@
2005-02-25minor white spacingTheo de Raadt
2005-02-25Enable re(4) on alpha.Jonathan Gray
2005-02-25Correct usage of bus_dma which makes re(4) work on alpha.Jonathan Gray
From NetBSD rtl8169.c -r 1.11 ok pvalchev@
2005-02-25Add support for software WEP.Jonathan Gray
Pointers from and ok damien@
2005-02-25syncTheo de Raadt
2005-02-25via is integrating s3 video components now..; maxim@chl.chalmers.seTheo de Raadt
2005-02-24fixes inspired by netbsd and pointed out by jsg@David Gwynne
- make sure the interface is up before continuing in atu_start - use IFQ_DEQUEUE instead of IF_DEQUEUE
2005-02-24Don't use inline assembly for cpuid instruction, it clobbersAlexander Yurchenko
registers that are used by gcc. Use cpuid() function instead like all others do. Problem noticed by david@. ok tom@
2005-02-24Workaround for a suspend problem when building on the zaurus.Dale Rahn
2005-02-24support zoltrix tv/fm; from jakemsr@ pr4096Michael Shalayeff
2005-02-24add zoltrix vendor and a bktr device; from jakemsr@Michael Shalayeff
2005-02-24fix a buffer-done race that makes mirroring work now;Michael Shalayeff
use pool instead of malloc/free and this fixes new buffer mode; implement DIOCGPDINFO for disklabel -d; tested by henning@ millert@ fries@
2005-02-24do not even ask for btlb on 8k cpus as pdc pretends there is some but then ↵Michael Shalayeff
it does not work; found w/ Moritz Kiese <mbk@mytum.de> on c180; add a debug print and fix pcxu entry