Age | Commit message (Collapse) | Author | |
---|---|---|---|
1999-10-28 | hush up the link up/down messages | Jason Wright | |
1999-10-28 | Add ip_ether.c | Angelos D. Keromytis | |
1999-10-28 | Add IPPROTO_ETHERIP in the protocol switch; comment out INET6 IPv4-IPv4 | Angelos D. Keromytis | |
handling that was re-using ipv4_input() instead of using ip4_input() from netinet/ip_ip4.c | |||
1999-10-28 | Add Ethernet-IP encapsulation handling. | Angelos D. Keromytis | |
1999-10-28 | Define IPPROTO_ETHERIP. | Angelos D. Keromytis | |
1999-10-27 | bugfixes from netbsd ata_wdc.c, ok csapuntz@ | Chris Cappuccio | |
from bouyer: - Add some debug printf (WDCPROBE) in _wdcreset_wait(), I've needed these 2 times in the past - Set up timeout per xfer instead of per interrupt. This helps with PIO transfer (we would call timeout()/untimout() several times for a transfer). - If we missed an interrupt for a PIO transfer, reset and restart it immedialy, don't try to recover and continue. If we missed an interrupt we may have lost a read/write cycle on the IDE bus. If this happens 1) we corrupt data and 2) we enter an interrupt loop at the end of the xfer, as the drive has some more data to read/write, but the host thinks the xfer is done. This last change fix the (or at last some of the) 'lookup after lost interrupt' some peoples have been experiencing. | |||
1999-10-27 | Use SIMPLEQ_XXX. | Federico G. Schwindt | |
1999-10-27 | move nat_ifdetach() after interface is removed from the list; ↵ | Theo de Raadt | |
avalon@coombs.anu.edu.au | |||
1999-10-27 | Actually make ASYNC pipes generate SIGIO. | Niklas Hallqvist | |
1999-10-27 | sync | Niklas Hallqvist | |
1999-10-27 | Provide FreeBSD fcntl emulation that handles F[GS]ETOWN on pipes. | Niklas Hallqvist | |
1999-10-27 | packets addressed "for us" should be entered into the bridge address cache. | Jason Wright | |
1999-10-27 | make kvtop() work on page unaligned addresses | Michael Shalayeff | |
1999-10-27 | do not pre-filter bpf packets; jason | Theo de Raadt | |
1999-10-26 | Support LMC1200 | Chris Cappuccio | |
Based on LMC's Linux code | |||
1999-10-26 | sync | Chris Cappuccio | |
1999-10-26 | add LMC1200 | Chris Cappuccio | |
1999-10-26 | modify bootapiver chekups to use bitwise operations. | Michael Shalayeff | |
factor out /boot options parser from biosattach(). add logic to warn about ancient /boots. cleanup vanishing cruft. @niklas ok | |||
1999-10-26 | Missed earlier: add PCI_HDRTYPE_TYPE macro, from NetBSD. | Jason Downs | |
1999-10-26 | higher the kmem limit; fix up the nmbclusters | Michael Shalayeff | |
1999-10-26 | Add puc devices. | Jason Downs | |
1999-10-26 | Add puc devices. | Jason Downs | |
1999-10-26 | Add com/pccom driver for puc. | Jason Downs | |
1999-10-26 | PCI "universal" communication device driver, by cgd@netbsd.org. | Jason Downs | |
1999-10-26 | Update my copyright. | Jason Downs | |
1999-10-26 | This file has my code in it, attach my copyright. | Jason Downs | |
1999-10-26 | Rename internal com_attach() routine. | Jason Downs | |
1999-10-26 | sync | Jason Downs | |
1999-10-26 | Add puc device IDs. | Jason Downs | |
1999-10-26 | Clean up function declarations. | Jason Downs | |
1999-10-26 | Fix inline function decls to work with C++. | Jason Downs | |
1999-10-26 | rewriting the header for packets originating from the bridge is | Jason Wright | |
unncessary since we check for incoming frames destined to any of the bridged interfaces. Also change the full mbuf copy to a referenced copy. | |||
1999-10-25 | use bus_dma instead of [u]vm_page_alloc_contig | Jason Wright | |
1999-10-22 | fix some panic bugs; jason | Theo de Raadt | |
1999-10-20 | special character handling; aaron | Theo de Raadt | |
1999-10-18 | force FDSCRIPTS after include files are pulled in | Theo de Raadt | |
1999-10-16 | another fix form csapuntz | Theo de Raadt | |
1999-10-16 | - Add support for a traditional PC display (16 colors and use the standard IBM | Aaron Campbell | |
font) and make it the default mode. This is more or less a hack, since pcvt was developed only to be a vt220 terminal emulator. - Document new default mode in pcvt(4). - Add -o option to scon(1) for toggling between the new and legacy modes. | |||
1999-10-15 | Yet another unmount/kill race. (I hate this) | Artur Grabowski | |
1999-10-14 | A fix for the dreaded isadmaattach panic. The reason was actually quite | Niklas Hallqvist | |
obscure, many, many thanks to art@ for finding my bug, which only hit people having about 2300-2500 pages in the buffercache. | |||
1999-10-14 | tick tock the mii clock during the stats update | Jason Wright | |
1999-10-14 | Fix for PR 871. | cmetz | |
This fix is taken from BSD/OS (the file in question being BSD licensed). It continues to remove a datagram from a socket receive buffer even if there is an error on the copy-out, so as to leave the buffer in a reasonable state. Before, the kernel would stop in mid-receive if the copy-out failed, and the buffer's structural requirements would be violated (since the start of a datagram must be an address iff ). Note that if the user provides any invalid addresses as arguments to a recvmsg(), the datagram at the front of the buffer will be discarded. The more correct behavior would be not to remove this datagram if the arguments are invalid. Implementing this behavior requires a lot of significant changes, and socket receives are a critical path. Also included are two simple and fairly obvious fixes from the same source. If non-blocking I/O is set, it makes sure the receieve is non-blocking. It also fixes a slightly over-aggressive optimization. | |||
1999-10-14 | read disklabels only from CDs that have a data track, spoofed labels from | Theo de Raadt | |
the audio CDs could do with a bit more work, but this makes audio cd playing not generate disklabel read-failure messages on first open; csapuntz | |||
1999-10-14 | it now says 2.6 instead of 2.6-beta, but that does not mean that more | Theo de Raadt | |
2.6-related fixes won't go in | |||
1999-10-13 | manually add IFM_AUTO (workaround for fxp) | Jason Wright | |
1999-10-13 | Don't try to call VOP_SETATTR on a pipe. From <cky@pobox.com> | Artur Grabowski | |
1999-10-12 | no media prints in mii code | Theo de Raadt | |
1999-10-12 | add iophy* | Jason Wright | |
1999-10-12 | add driver for i82553; from netbsd | Jason Wright | |
1999-10-12 | sync | Jason Wright | |