summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2004-05-19Allow recursive anchors (anchors within anchors, up to 64Daniel Hartmeier
levels deep). More work required, but this is already functional. authpf users will need to adjust their anchor calls, but this will change again soon. ok beck@, cedric@, henning@, mcbride@
2004-05-19do not loop on nd6_output() when transmission fails. from kameJun-ichiro itojun Hagino
2004-05-19regenAlexander Yurchenko
2004-05-19New vendor iRiver and its mp3 players.Alexander Yurchenko
2004-05-19No need to force a kernel mapping for the sram, the sram driver will do itMiod Vallat
if necessary.
2004-05-19another ETHER_ALIGNBrad Smith
2004-05-19unbreak by removing the 'nonexistant" PERC 3/QC here as wellHenning Brauer
we usually test compile at least a kernel before removing pcidevs shitz... the carrot goes to marco's nose
2004-05-19remove duplication, use ETHER_ALIGN from if_ether.hBrad Smith
2004-05-19de __P of sys/arch/cats.Dale Rahn
2004-05-19de __P of sys/arch/arm.Dale Rahn
2004-05-19Add missing aic79xx_reg.h file. Update aic79xx* files to latestKenneth R Westerback
FreeBSD versions in preparation for ahd. Update Makefile to generate aic79xx* files. ok marco@, tested by Milos Urbanek.
2004-05-18fix from netbsd to twiddle the fxp eeprom to disable dynamic standby modeBob Beck
on cards that have issues with this creating pci errors in 10 mbps mode tested by many, including me, nick, and pval. ok jason@, markus@
2004-05-18Check for and handle interface CRC errors.Bob Beck
testing by me, pval, nick, others... ok jason@, marco@
2004-05-18if_ether.hBrad Smith
add ETHER_MAX_LEN_JUMBO, ETHER_VLAN_ENCAP_LEN, ETHER_ALIGN, and ETHERMTU_JUMBO constants. if.h add a few more interface capabilities flags. Some from NetBSD, some from FreeBSD. ok markus@
2004-05-18Regen.Marco Peereboom
2004-05-18Add ahd, remove non-existent PERC 3/QC. ok deraadt@ henning@ krw@ bob@ millert@Marco Peereboom
2004-05-18useless caddr_t casts removal, same sha1sPedro Martelletto
2004-05-18Be sure to initalized and use the "len" variable correctly in iestart();Miod Vallat
from Thierry Herbelot (%thierry% at herbelot ding com).
2004-05-18In DIOCCHANGERULE, move ticket increment above code that might freeDaniel Hartmeier
the ruleset and invalidate the pointer. ok cedric@
2004-05-18fix size argument to ovbcopy() in ip_pcbopts(), found by Andrei IltchenkoDaniel Hartmeier
(FreeBSD PR 66386), ok markus@, otto@
2004-05-18fix memory leak, ok tedu@Pedro Martelletto
2004-05-17Elminate SCSIRET_* synonyms for EJUSTRETURN and ERESTART by usingKenneth R Westerback
EJUSTRETURN and ERESTART instead. Delete unused SCSIRET_RETRY define. From NetBSD. ok marco@
2004-05-17Work arounda behaviour change in binutils-2.14, now -m<...> -nostdlibDale Rahn
removes /usr/libdata from the script search path. add it back with a -L
2004-05-17fix uninitialized var; found by millert@Michael Shalayeff
2004-05-17typoPedro Martelletto
2004-05-17Add a quirk entry for TEAC compact cassette tape drive, taken from NetBSD.Kenji Aoyama
ok miod@ tdeval@ marco@ krw@
2004-05-17KNF and minor cleaning.Miod Vallat
2004-05-17typoBrad Smith
2004-05-17OF_mapintr: swizzle interrupt for PCI bridges,Brad Smith
don't process OBP interrupts, return error if interrupt is not mapped. allows the IDE CD-rom on a Netra T1 105 to work. From NetBSD Tested by me on a Netra T1 105 and Ultra 10, tested on a E450 and ok henric@
2004-05-16Simplify bugtty_chkinput(), from mvmeppc.Miod Vallat
2004-05-16remove printfs i left in. noticed by marc@Ted Unangst
2004-05-16add DLT_PPP_ETHER DLT typeBrad Smith
From NetBSD ok deraadt@
2004-05-16When we back off due to problems with the physical interface, advertiseRyan Thomas McBride
the backoff immediately on all of the interfaces instead of waiting for the next scheduled advertisement.
2004-05-16Remove useless test pointed out by Frank Denis <j@pureftpd.org>.Ryan Thomas McBride
2004-05-15Be more careful when using hwirq[] values.Miod Vallat
2004-05-14Fix a bug that occurs when a FIFO is opened for writing withTodd C. Miller
O_NONBLOCK set and there are no readers. Before returning ENXIO fifo_open calls VOP_CLOSE (and hence fifo_close). However, since fi_writers has not yet been incremented, when fifo_close decements fi_writers it is one too few. This could cause qmail processes to spin, consuming all the CPU. Noticed by avsm@ and henning@, test case provided by claudio@, Ok pedro@
2004-05-14Attach a working bugtty device - userland needs at least a console tty.Miod Vallat
2004-05-14Correctly coalesce buffers in _bus_dmamap_load_buffer().Miod Vallat
2004-05-14Really working interrupt engine, at least on both 2600 flavours.Miod Vallat
2004-05-14syncNathan Binkert
2004-05-14more adaptec aac(4)Nathan Binkert
2004-05-14Syba SD-LAB PCI I/O Card 4SHenning Brauer
From: Christian Gut <cycloon@is-root.org>
2004-05-14syncHenning Brauer
2004-05-14Syba 4S pucHenning Brauer
2004-05-14use pool for namei pathbuf. testing ok millert@ tdeval@Ted Unangst
2004-05-14use pool for namei pathbuf. testing ok millert@ tdeval@Ted Unangst
2004-05-13activate systrace on amd64, while here get rid of syscall_{plain,fancy}Nikolay Sturm
instead use syscall() as everywhere else ok mickey, tested and ok tedu@
2004-05-138ks do not have hvtMichael Shalayeff
2004-05-13Act like our advskew is 240 when receiving packets as well as sending ifRyan Thomas McBride
we're backing off. Makes the backoff actually work like it's supposed to instead of flip-flopping. Problem pointed out by ho@ and jakob@
2004-05-13Add cloned interface destruction to carp (ifconfig carp0 destroy).Ryan Thomas McBride
ok deraadt@