summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2000-01-18syncJason Wright
2000-01-18Farallon PN9000SX (looks like they used DEC's vendor ID by mistake); from ↵Jason Wright
FreeBSD.
2000-01-18Fix fxp+nsphy problem: don't reset everytime when switching to auto mode.Jason Wright
Also, document "magic" bits.
2000-01-17pmap_{zero,copy}_page4m: use getptep4m to get the ptes for vpages.Artur Grabowski
This way we only walk the tables once every boot and we don't have to switch to context 0 on every call.
2000-01-17remove unneeded stuff from setregs; force single-user for now, enable signal ↵Michael Shalayeff
debug
2000-01-17oops, another syscall pipe() botch; karls@inet.noTheo de Raadt
2000-01-17From Manuel Bouyer -Chris Cappuccio
Don't set WDC_CAPABILITY_UDMA at all for SiS rev < 0xd0
2000-01-17spaces everywhereMichael Shalayeff
2000-01-17spaces everywhereMichael Shalayeff
2000-01-17spaces everywhere, some knfMichael Shalayeff
2000-01-17spaces everywhereMichael Shalayeff
2000-01-17spaces and knfMichael Shalayeff
2000-01-17don't need IFF_RUNNING for gif, as no resource is allocated forJun-ichiro itojun Hagino
interface operation.
2000-01-17on fork, flush pcb too, update pcsqMichael Shalayeff
2000-01-17remove IFF_RUNNING if it becomes !IFF_UP.Jun-ichiro itojun Hagino
pointed out by: deraadt
2000-01-17fix pullup and otos saving code for ip6Jun-ichiro itojun Hagino
(ip4_input will be visited with IPv6 packet! better change the func name...)
2000-01-17fix "traceroute -P 41", outgoing side. incoming side needs fix inJun-ichiro itojun Hagino
ip4_input(). Requested from: Niels Provos <provos@citi.umich.edu>
2000-01-17let pmap_enter_pv return a created pv, which simplifies futher pv operationMichael Shalayeff
2000-01-17Remove `pc_disp_special'.Aaron Campbell
2000-01-17Remove `pcdisp_special', which was actually a gross hack. Instead, move theAaron Campbell
`pcdisp' check in write_char() beyond the 0x20-0x7f character value scope. This change should fix most problems when intermixing DEC character- and IBMPC character-based apps in the PCVT console.
2000-01-17Add sysctl vars for checksum, forwarding and netbios.Federico G. Schwindt
Remove ancient code from ipx_input. ipxrecvspace/ipxsendspace changed to ipx_xxx to match netinet counterparts.
2000-01-17some more paranoid checks, shorter trap desriptionsMichael Shalayeff
2000-01-17add syscall frame flagMichael Shalayeff
2000-01-16Closer to support for UVM on powerpc, tries to execute user programs, butDale S. Rahn
then fails with illegal instruction. (init or shell).
2000-01-16updateMichael Shalayeff
2000-01-16Merge with FreeBSD:Jason Wright
o add a new routine, dc_coal(), that copies tx data into a single mbuf o use it on the dm910x chips Tested by jsthyer@uncg.edu
2000-01-16remove more references to -H and -V. -mojMats O Jansson
2000-01-16ETHERTYPE_ATALK -> ETHERTYPE_AT (op21@squish.org)Angelos D. Keromytis
2000-01-16ETHERTYPE_ATALK -> ETHERTYPE_ATAngelos D. Keromytis
2000-01-15Remove unnecessary definition.Angelos D. Keromytis
2000-01-15Don't allow enc0 to be added to a bridge, as it's used for allAngelos D. Keromytis
non-bound SAs...
2000-01-15Can't bind SAs to enc0Angelos D. Keromytis
2000-01-15Add function prototype.Angelos D. Keromytis
2000-01-15PRU_DETACH does not return ENOTCONN. If ipxp is NULL, EINVAL will beFederico G. Schwindt
returned way above.
2000-01-15Some KNF.Federico G. Schwindt
2000-01-15Check that INET is defined. Revove unused code. Some KNF.Federico G. Schwindt
2000-01-15Change function type to non-static.Angelos D. Keromytis
2000-01-15Remove unneded vars and code. 0 -> NULL. Some KNF.Federico G. Schwindt
Use statistics where available.
2000-01-15Remove the IPX ifdef; it's always there.Federico G. Schwindt
2000-01-15set the delay to 4000. this is needed by the Compaq AP400; kos@flirble.orgTheo de Raadt
2000-01-15use model instead of name, more constistant with determining machine type.Dale S. Rahn
2000-01-15more KNF.Federico G. Schwindt
2000-01-15Don't recompute the checksum if tc is modified; from FreeBSD.Federico G. Schwindt
I'm not sure why we'd want to reset it. Leave the comment as is by now.
2000-01-15P3 id 8 is Coppermine; thanks maja for testing on your sweet sweet boxTheo de Raadt
2000-01-15special case one mislabeled device which is not a pci bridge at allTheo de Raadt
2000-01-15More statistics; from FreeBSD.Federico G. Schwindt
2000-01-15Remove unneeded mcopy. Add stats for errors in ipx_forward.Federico G. Schwindt
2000-01-15Handle the SNAP encapsulated IP/Non-IP case.Jason Wright
2000-01-14no such thing as machparam.h; bmah@ca.sandia.govTheo de Raadt
2000-01-14Cleanup the handling of ptes on 4m.Artur Grabowski
Implement a generic getptep4m that returns the pointer to the pte for (pmap, va). reimplement (and make static __inline) {set,get}ptesw4m and setpte4m using getptep4m. (more on this topic coming soon)