summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2005-04-21no need to check for 0, it copes, spotted by beckTheo de Raadt
2005-04-21correct idion for snprintf failure handling; ok cloderTheo de Raadt
2005-04-21unused variable n; ok cloderTheo de Raadt
2005-04-21correct idiom for snprintf failure handling; ok beckTheo de Raadt
2005-04-20Make vlan(4) aware of its physical interface link state.Marco Pfatschbacher
Changes are reported to userland and to other interfaces sitting on top of us. OK henning@, camield@ Tested by camield@ and Alexey E. Suslikov
2005-04-20Introduce if_linkstatehooks.Marco Pfatschbacher
This converts if_link_state_change() to a generic usable callback with dohooks(). OK henning@, camield@ Tested by camield@ and Alexey E. Suslikov
2005-04-20fix commentBrad Smith
2005-04-20add mbuf tag for the data link typeReyk Floeter
ok canacar@ damien@
2005-04-20send raw 802.11 frames with bpf(4) using the IEEE802_11 orReyk Floeter
IEEE802_11_RADIO data link types. ok canacar@ damien@
2005-04-20the linktype (DLT) should always be of type u_int.Reyk Floeter
fine deraadt@
2005-04-20Enable ural(4), appears to work fine.Jonathan Gray
2005-04-20support 11b and 11a mode on the ar5211. "pure" 11g mode is not yetReyk Floeter
tested but should work as well. thanks for the hardware donation!
2005-04-20OopsMiod Vallat
2005-04-20er, maybe notTheo de Raadt
2005-04-20Files forgotten during initial commit.Miod Vallat
2005-04-20SiS 180/181/182 SATA support using generic sata_chip_map().Jonathan Gray
Hints from NetBSD and FreeBSD. ok grange@
2005-04-20enter zboot for all architecturesTheo de Raadt
2005-04-20Replace VIA SATA chip map routine with generic sata_chip_map().Jonathan Gray
ok grange@
2005-04-20SiS 760 support from a tech@ mail from peter.galbavy at knowtion.netJonathan Gray
ok grange@
2005-04-20SiS 661 support tested on a Gigabyte 8S661FXMP-RZ board.Jonathan Gray
ok grange@
2005-04-20regenJonathan Gray
2005-04-20A bunch of PCI/SATA SIS devices.Jonathan Gray
2005-04-20knfTheo de Raadt
2005-04-19describe the zaurus boot(8) program; review/suggestions by jmc@Uwe Stuehler
2005-04-19Same vm_machdep.c on solbourne.Miod Vallat
2005-04-19newline after attach; ok deraadt@Damien Miller
2005-04-19As a late birthday present, a preliminary port to the Solbourne IDT systemsMiod Vallat
(S3000, S4000 and S4000DX). Currently limited to diskless and serial console, and userland has issues. Things will get better in the near future.
2005-04-19fix commentMichael Shalayeff
2005-04-19use pool for struct vndbug; tested by many and pedro@ okMichael Shalayeff
2005-04-19nothing uses spllowersoftclock() anymoreMichael Shalayeff
2005-04-19Do not bother looking for symbols if either esym is zero or the computedMiod Vallat
symbol table length is zero.
2005-04-19Nuke DB_NO_AOUT, and have platforms with a.out symbols explicitely provideMiod Vallat
DB_AOUT_SYMBOLS.
2005-04-19No more a.out symbols support in ddb.Miod Vallat
2005-04-19CLKF_BASEPRI we do not have no more; noticed by miodMichael Shalayeff
2005-04-19fix for isochronous pipes:Damien Bergamini
xfer's busy_free status can be XFER_ONQU when uhci_device_isoc_done() is called. this happens when the xfer is queued in the driver supplied callback function that is called before uhci_device_isoc_done(). ok dlg@
2005-04-19be more cautious when processing CMV interrupts.Damien Bergamini
drop every CMV reply that is not a CR or CW ack.
2005-04-18beautify the code by renaming HAL functions with capitalized words (iReyk Floeter
always wanted to do that). this breaks HAL compatibility but porting should be easy, have a look at athvar.h. no functional changes.
2005-04-18oops. uvm_page_physload() has different semantics for start and end...Michael Shalayeff
2005-04-18do not do some of the initmsgbuf()s jobMichael Shalayeff
2005-04-18If the parent interface is not IFF_RUNNING, do not call its start function.Brad Smith
This prevent a variety of fun panics. From NetBSD
2005-04-18revert a change in the previous commit to appease henning@ for the timeBrad Smith
being.. - Set the interface speed back to zero after ether_ifattach(). RFC 2863 says: "For a sub-layer which has no concept of bandwidth, [ifSpeed] should be zero."
2005-04-18- check for ETHERMIN with SIOCSIFMTU ioctl caseBrad Smith
- don't need to trim off anything but the VLID bits in the driver anymore
2005-04-17- In vlan_input()/vlan_input_tag(), always mask off all but the VLIDBrad Smith
bits from tags extracted from received frames. (Some drivers may already do this masking internally, but doing it here doesn't hurt and insures consistency.) - In vlan_ioctl(), don't let the user set a VLAN ID value with anything besides the VLID bits set, otherwise we will have trouble matching an interface in vlan_input() later. - Set the interface speed back to zero after ether_ifattach(). RFC 2863 says: "For a sub-layer which has no concept of bandwidth, [ifSpeed] should be zero." - Do not call if_down() on a parent interface if it's already down. From FreeBSD Tested by camield@ and Alexey E. Suslikov <cruel at texnika dot com dot ua> ok camield@
2005-04-17Intermediate cast of strio_offs -> uio_offset should be u_long not longTodd C. Miller
since otherwise a very high kernel address would be stored as a negative offset. From NetBSD (christos).
2005-04-17Generate SIGTRAP instead of SIGILL for breakpoint instructions.Mark Kettenis
Disable some debug code in the process. ok miod@
2005-04-17Fix typosTom Cosgrove
ok krw@
2005-04-17Fix typoTom Cosgrove
ok krw@
2005-04-17Typo in panic stringTom Cosgrove
ok krw@
2005-04-17Do not use KERNBASE when VM_MIN_KERNEL_ADDRESS or VM_MAXUSER_ADDRESS areMiod Vallat
implied; this currently does not change anything (yet). Also, define the I/O space range in <machine/vmparam.h> rather than in <sparc/sparc/vaddrs.h>. ok deraadt@ mickey@
2005-04-17- Speedup CMP_PTE_USER_*4M by commenting out its first instruction, whichMiod Vallat
turns to be a no-op. - Check for nwindows < 8 for SUN4C kernels as well. From NetBSD.