summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2002-11-27regenMichael Shalayeff
2002-11-27chips&tech 69030Michael Shalayeff
2002-11-27fix tbrsize specHenning Brauer
2002-11-27Update document date.Hakan Olsson
2002-11-27fix error message for altq ifspec without child queuesHenning Brauer
2002-11-27fix an underflow in socket timeout calculations.Michael Shalayeff
(see http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/32827). itojun@ ok
2002-11-27correct hppa attachmentsMichael Shalayeff
2002-11-27do address translation for for socket syscalls that pass addresses inJason Ish
or out - this allows linux programs that use IPv6 to work (not ipv4 mapped addresses though) - from NetBSD
2002-11-27recover original stanford copyright. sync w/kameJun-ichiro itojun Hagino
2002-11-27Ressurect -l flag to be compliant with spell(1).margarida
millert@ ok
2002-11-27Kill some alloca. Reduces temp allocation for big static libraries drastically,Marc Espie
allow, e.g., linking against static debug qt (or debug static mozilla for that matter). okay miod@
2002-11-26more tweaksTheo de Raadt
2002-11-26tiny spacing nitTheo de Raadt
2002-11-26Fix various nits:Ryan Thomas McBride
- references to ip(4) et. al. - Remove extra whitespace - Finish some uncompleted sentences - s/traffic shaping/bandwidth control/ ok deraadt@, frantzen@
2002-11-261000baseTX -> 1000baseTNathan Binkert
thanks to miod for pointing this out
2002-11-26The day of fighting with the violence against womenAlexander Yurchenko
ok mickey@
2002-11-26make bandwidth specification on queue truly optionalHenning Brauer
2002-11-26fancier queue exampleHenning Brauer
2002-11-26fix queue exampleHenning Brauer
2002-11-26queue comes before NATHenning Brauer
2002-11-26more cleanupTheo de Raadt
2002-11-26more cleanup, and nat parts from mcbrideTheo de Raadt
2002-11-26test for working timeouts on recv, currently failingMichael Shalayeff
2002-11-26i've comitted from the wrong tree the previous, needs dkbadMichael Shalayeff
2002-11-26Call the enable function, don't set the variable directly.Jason Wright
2002-11-26Match VE_3, too; Cliff SkolnickJason Wright
2002-11-26weissmanndiffMichael Shalayeff
2002-11-26parse all the usefull files in sys for ioctls, change if() return to a ↵Michael Shalayeff
switch(), makes it much smaller on most architectures
2002-11-26pass struct pfioc_changeaddr to DIOCCHANGEADDRRyan Thomas McBride
rather than struct pfioc_pooladdr an obvious fix from dhartmei@
2002-11-261000baseTX -> 1000baseTNathan Binkert
- More technically correct - Matches FreeBSD and NetBSD - Preserved #define for 1000baseTX for backwards compatibility ok jason@
2002-11-26use pci_matchbyidNathan Binkert
2002-11-26reflect currently supported bge(4) devicesNathan Binkert
2002-11-26reflect currently supported devicesNathan Binkert
2002-11-26Numerous bug fixes from freebsd and a few from me.Nathan Binkert
- Add support for the BCM5702X and BCM5703X chips - Take care of an alignment bug in the PCI-X implementation of a couple revs of the chip - Disable memory write invalidate. (Supposedly doesn't always work) - Add missing splx(s) - Fix some typos
2002-11-26Pull in DSP patches for the BCM5400, BCM5401, and BCM5411; from NetBSD.Jason Wright
2002-11-26avoid symbol conflict with "errno"Jun-ichiro itojun Hagino
2002-11-26performance improvement by omitting a redundant getcwd.Jun-ichiro itojun Hagino
from provos
2002-11-26error should go to stderr. from provosJun-ichiro itojun Hagino
2002-11-26fix "pfctl -Fq".Kenjiro Cho
after altq gets flushed, altq forgot that it was enabled since altq is actually detached with an empty ruleset. so, add a variable, pfaltq_running, to remember the running state and re-enable altq when a new ruleset is loaded. noticed, tested, and oked by henning@
2002-11-26KNF, comment and error message repair; ok markus@Kevin Steves
2002-11-26remove outdated statement; ok markus@ deraadt@Kevin Steves
2002-11-26Make the PTE constants unsigned long with UL.Artur Grabowski
The macro PG_PALCODE in pte.h is supposed to be used when comparing two ptes to see if we need a tlb flush. For that it uses the macro ALPHA_PTE_PALCODE which in turn is defined to ~ALPHA_PTE_SOFTWARE. Unfortunately ALPHA_PTE_SOFTWARE is small enough to fit in an int, so ALPHA_PTE_PALCODE becomes an int to and the masking in PG_PALCODE masks off the pfn in the pte and pmap_enter will then fail to flush certain TLB entries when it needs to (this situation shouldn't happen too often). This might or might not be the solution for the memory corruption bug I've been hunting for the last three months (the machine still borks up, but in different ways now).
2002-11-26re-enable if_timer; jason@ ok.Federico G. Schwindt
2002-11-26KNFHenning Brauer
2002-11-26Remove unnecessary fflush(stderr) calls, stderr is unbuffered by default.Wilbern Cobb
ok markus@
2002-11-26Whitespace diff; from FreeBSDJason Wright
2002-11-25Change a setuid() that should be seteuid(), not iced by grange@Todd C. Miller
Move a va_end so it gets called in an error condition as well
2002-11-25enable fxp(4) and xl(4) on sparc64; ok jason@Christian Weisgerber
2002-11-25create a new set of regress tests, which require an activeMichael Shalayeff
setup/cleanup of interfaces/protocols/etc. this is not ran by default and requires a DO_PFSETUP make variable set to be activated, one has to run as root as well. add one simple test for the proper loN link1 address expansion. henning@ ok
2002-11-25repair decide_address_familyHenning Brauer
you cannot just taked the first address family you meet as rule's address family... either all are equal, or the rule has no explicit AF. found by danh@ ok theo