summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2001-02-16remove IPv6 case from udp_output. now we have separate udp6_output.Jun-ichiro itojun Hagino
2001-02-16oops, remove #ifdef __fooBSD__.Jun-ichiro itojun Hagino
2001-02-16Finish merging lca to become closer to current netbsd.Jason Wright
2001-02-16pull in new pcb notification code from kame. better handling of scope address.Jun-ichiro itojun Hagino
2001-02-16cosmetic sync with kameJun-ichiro itojun Hagino
2001-02-16cosmetic. add missing IFAFREE on failure caseJun-ichiro itojun Hagino
2001-02-16cosmetic/whitespace sync with kameJun-ichiro itojun Hagino
2001-02-16cosmetic/comment sync with kameJun-ichiro itojun Hagino
2001-02-16amove in6_{embed,recover}scope prototypes to in6_var.h (kernel only).Jun-ichiro itojun Hagino
add in6_clearscope. sync better with kame
2001-02-16zap old timeoutMarc Espie
2001-02-16typo (incidentally, removed a bogus -k in the cvs file, the updateMarc Espie
will trigger $OpenBSD$ fill-in)
2001-02-16Further sync... get pci_swiz_bus_{io|mem}_chipdep.c via <> instead of ""Jason Wright
like everyone else.
2001-02-16set frag6_doing_reass while doing reass, to help frag6_drain.Jun-ichiro itojun Hagino
2001-02-16sync whitespace/comment with kame. to help merge tasksJun-ichiro itojun Hagino
2001-02-16make sure to clear ln_byhint when neighbor state goes to REACHABLE.Jun-ichiro itojun Hagino
sync whitespace/comment with kame.
2001-02-16Bring apecs closer to current netbsd work (updated copyrights, plusJason Wright
a few bug fixes I missed earlier).
2001-02-16kill register declarations. to sync with kame better.Jun-ichiro itojun Hagino
2001-02-16sync better with kame. remove register decls. $OpenBSD$Jun-ichiro itojun Hagino
2001-02-16fix multicast API for sizeof(long) != 4. (IF_SET and family will notJun-ichiro itojun Hagino
overrun, it will compute values too little, so old code will not overrun buffers. (we don't include any multicast daemons in openbsd tree) sync better with kame. remove register variable declarations, styles
2001-02-16For powerpc use siop driver instead of ncr, now that siop issue on powerpcDale Rahn
has been resolved.
2001-02-16Engage UVM for powerpc. It is now running fairly well (better than non UVM)Dale Rahn
on my machines as well as on brad's. This change also eliminates the need for the ld.so hack for powerpc.
2001-02-16Allow siop driver to work on powerpc.Dale Rahn
pmap_extract should work for all accessable memory. Since powerpc maps the kernel va=pa without using the pte table, these addresses need to be handled seperately.
2001-02-16bring in netbsd bus_dma stuff for lca and apecs bussesJason Wright
2001-02-15Add iha (Initio SCSI)Kenneth R Westerback
2001-02-15Pick up a two liner from netbsd to set offset for SCSI chain B properly.Hugh Graham
2001-02-15Change i386 LSI/Symbios/NCR 53c8xx driver to siopKenneth R Westerback
2001-02-15approaching UVM support for powerpc, initialize all of the bufferDale Rahn
entries, not just the first entry of each buffer.
2001-02-15Import siop, a replacement for the ncr SCSI driver, from NetBSD.Kenneth R Westerback
Written for NetBSD by Manuel Bouyer. Tested with various cards on i386 and alpha. Outstanding issue: doesn't work with PowerPC yet.
2001-02-14another ne2k, from markus@Michael Shalayeff
2001-02-14regenMichael Shalayeff
2001-02-14another ne2k from markus@Michael Shalayeff
2001-02-14make sure we do not pass shared M_EXT mbuf. will avoidJun-ichiro itojun Hagino
possible shared mbuf overwrite if we use bridge/multicast/loopback/whatever. sync with kame
2001-02-14Change output to fit OpenBSD.Federico G. Schwindt
2001-02-14Theo keeps remembering me things I forgotten. Add pcscp(4) here as well.Federico G. Schwindt
2001-02-14Add pcscp(4) per theo request.Federico G. Schwindt
2001-02-14Add pcscp support.Federico G. Schwindt
2001-02-14sigh. add $OpenBSD$.Federico G. Schwindt
2001-02-14Support for AMD Am53c974 SCSI controllers; from NetBSD.Federico G. Schwindt
Thanks to Quentin Barnes <qbarnes@urbana.css.mot.com> for his help.
2001-02-13grr, pcvt ioctl support still requiredTheo de Raadt
2001-02-13More sane spl handling. Don't just assume that we're called at spl0.Artur Grabowski
2001-02-13No need to cast splx to (void).Artur Grabowski
2001-02-13Use MIN, not min when counting the pages we steal.Artur Grabowski
min is a function taking u_int arguments and we are counting signed longs here.
2001-02-13When detaching an interface set the if_start, if_ioctl and if_watchdogArtur Grabowski
functions to 'nops'. Some protocols might want to output some packets while detaching and that could be a bad idea when the interface has gone away. Do we need to change more functions?
2001-02-13rtc stops if we miss interrupts. Inspired by code from FreeBSD.Hakan Olsson
Some KNF. (niklas@ ok)
2001-02-13Bump maxusers to 32.Artur Grabowski
2001-02-13Cleanup.Artur Grabowski
2001-02-13default more wscons optionsTheo de Raadt
2001-02-13KNFTheo de Raadt
2001-02-13remove a file that should have been gone long ago.Eric Jackson
moved to dev/pci/tgareg.h
2001-02-12Eliminate ISP2100_FABRIC- we always allow for fabric now. Add anmjacob
isp_iid_set/isp_iid for fibre channel- this is because we now fake a port database entry for ourselves. Add the additional loop states between LOOP_PDB_RCVD and LOOP_READY. Change and comment on a wad of Fibre Channel isp_control functions. Change and comment on some of the ISPASYNC Fibre Channel events. Add was_fabric_dev/fabric_dev tags to our local FC database structure (so we can see rapidly whether something was a fabric device but is now gone). Add a tag which says what role this adapter should take. It can take on the value of None, Target, Initiator or Both. None is useful for warm failover purposes. Remove the ISP_CFG_NOINIT silliness since a role of "None" does this. Add a isp_lastmbxcmd tag to store the opcode for the last mailbox command used.