summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2008-05-11regenBrad Smith
2008-05-11Add the USB id for the Melco (Buffalo) LUA-U2-GT Ethernet adapter.Brad Smith
From the Linux ASIX driver
2008-05-11regenBrad Smith
2008-05-11More E1000 PCI ids for ICH9 and ICH10.Brad Smith
2008-05-11Revert the last commit as this is not the proper way of fixing the issue.Brad Smith
ok krw@
2008-05-11Try harder to avoid corrupting the mbuf pool. Stuff any mbuf chain inKenneth R Westerback
ln_hold or la_hold into temporary storage and null ln_hold or la_hold before manually processing the mbuf chain. Discard the mbuf chain if it is put back in the hold area. ok claudio@ markus@
2008-05-11Fix a typo with the media duplex flag being used for AUI connectionsBrad Smith
so that the status routine will properly display half duplex instead of full. ok henning@ krw@
2008-05-11Check to make sure pp_tlf is not NULL in sppp_keepalive() before calling it.Brad Smith
From NetBSD ok canacar@
2008-05-11When passing opt[] array as an argument, use opt instead of &opt. WhileCan Erkin Acar
they point to the same address, this is more readable. ok claudio@
2008-05-10More headers needed by userland.Mark Kettenis
2008-05-10Needed by userland.Mark Kettenis
2008-05-10More OpenBSD/socppc parts.Mark Kettenis
2008-05-10Missing bootloader file.Mark Kettenis
2008-05-10First stab at a bootloader for the Thecus N1200.Mark Kettenis
2008-05-10Fix typo. Spotted by Pierre Riteau.Mark Kettenis
2008-05-10On socppc, we need to be able to map a zero base address too.Mark Kettenis
2008-05-10regenMats O Jansson
2008-05-10Add some ATI entries. -mojMats O Jansson
2008-05-10Add two missing files.Mark Kettenis
2008-05-10Add .cvsignore, such that we don't lose the compile directory withMark Kettenis
cvs update -dP.
2008-05-10OpenBSD/socppc, a port to the Thecus N1200, and potentially other FreescaleMark Kettenis
PowerPC SoC platforms that use u-boot as a bootloader.
2008-05-10Make MPLS code compile without pseudo device mpe. OK norbyClaudio Jeker
2008-05-10convert sdltosa to a real cast because I removed the silly makro last night.Claudio Jeker
2008-05-09- Count excess and late collisions as output errors.Brad Smith
- Count receive errors as input errors. Based on similar change to the gem(4) driver from NetBSD. ok kettenis@
2008-05-09Another rtrequest() rtrequest1() replacement.Claudio Jeker
OK henning@
2008-05-09more rtrequest() to rtrequest1() replacement.Claudio Jeker
OK henning@
2008-05-09replace rtrequest() with corresponding rtrequest1() replacement.Claudio Jeker
OK henning@
2008-05-09Kill some useless makros.Claudio Jeker
2008-05-09switch altq from ifp->if_start to if_start() to take advantage of tx mit.David Gwynne
ok kjc@
2008-05-09Add support to kill states by rule label or state id.Marco Pfatschbacher
Fix printing of the state id in pfctl -ss -vv. Remove the psnk_af hack to return the number of killed states. OK markus, beck. "I like it" henning, deraadt. Manpage help from jmc.
2008-05-09Add support for NTT DoCoMo A2502.Jonathan Gray
From/tested by Yojiro UO <yuo@iijlab.net>
2008-05-09regenJonathan Gray
2008-05-09NTT DoCoMo A2502.Jonathan Gray
From Yojiro UO <yuo@iijlab.net>
2008-05-09Increase buffer size to 4k and make use of interrupt endpointJonathan Gray
to increase responsiveness. From Yojiro UO <yuo@iijlab.net>
2008-05-09there was a race between the addition of mpls and tx mitigation. this givesDavid Gwynne
mpls its own bit in netisr instead of accidentally sharing one with tx mit. "do it" claudio@
2008-05-09procfs can use vop_generic_bmap too;Thordur I. Bjornsson
2008-05-09Fix a logic botch around prioinv that resulted in wrong ordering of moreClaudio Jeker
specific routes. OK henning@
2008-05-09when cloning, copy the priority from the parent to the cloned route,Henning Brauer
claudio ok
2008-05-09arp entries in the routing table should have priority RTF_CONNECTEDHenning Brauer
ok claudio theo
2008-05-09Attempt to fix link status change handling so that the proper RTM_IFINFOKenneth R Westerback
messages are generated when links go down or come up. Works on available devices, put in tree to encourage wide testing. Enables latest dhclient changes to work their magic on bge. Feedback from brad@ ok deraadt@ beck@ reyk@
2008-05-09Lock in removable media while trying to determine the disk parameters. ThisKenneth R Westerback
should fix a number of 'drive offline' situations where the device claims it has no media loaded until the lock in occurs. Like a Blackberry Pearl Todd Fries found and probably other USB devices. Move the lock in during device open to before the test unit ready to eliminate similar spurious rejections of the device. Feedback from marco@, tests by todd@ and miod@. ok deraadt@ beck@ dlg@ miod@
2008-05-09should check for null pointers; from henning@Markus Friedl
2008-05-09IP_RECVDSTPORT, allows you to get the destination port of UDP datagramsMarkus Friedl
for pf(4) diverted packets; based on patch by Scot Loach; ok beck@
2008-05-09Add SO_BINDANY socket option from BSD/OS.Markus Friedl
The option allows a socket to be bound to addresses which are not local to the machine. In order to receive packets for these addresses SO_BINDANY needs to be combined with matching outgoing pf(4) divert rules, see pf.conf(5). ok beck@
2008-05-09divert packets to local socket without modifying the ip header;Markus Friedl
makes transparent proxies much easier; ok beck@, feedback claudio@
2008-05-09A little bit of magic to make arp lookups work in MPLS as they should.Claudio Jeker
No need to preload the arp table anymore. hai norby@
2008-05-09Oops. When detaching tape drives look for devices using 'stopen' notKenneth R Westerback
devices using 'sdopen'. PR#5810 from Jozef Hatala. ok beck@
2008-05-08regenMark Kettenis
2008-05-08Add the Freescale vendor ID and some devices from the MPC8349E family.Mark Kettenis
2008-05-08retire vn_default_error() and replace all instancesThordur I. Bjornsson
with eopnotsupp() instead; ok blambert@