summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-05-08Enable ichpcib(4) in GENERIC and on all media.Alexander Yurchenko
ok deraadt@
2004-05-08Put back ichpcib(4), it works now.Alexander Yurchenko
2004-05-08If a carp interface has more than CARP_SENDAD_MAX_ERRORS failedRyan Thomas McBride
advertisements in a row, back off all the other interfaces, until CARP_SENDAD_MIN_SUCCESS advertisements are successful. This makes carp deal better with ip output errors.
2004-05-08Pass the length of what was captured to pfsync_print, not the lengthRyan Thomas McBride
of the original packet. ok beck@
2004-05-08kill a tiny header; ok deraadt@Damien Miller
2004-05-08make two tiny header files go away; djm okTheo de Raadt
2004-05-07CardBus fxp's use the 82558 chipset which has a Long Receive bit,Brad Smith
we need to enable this to receive VLAN sized frames. ok deraadt@
2004-05-07Error out on attempts to inject command or variable substitutionKenneth R Westerback
into dhclient-script environment variables. Inspiration from todd@. ok henning@ deraadt@.
2004-05-07This makes afsd drop priviledge to user _afs inside a chroot (theBob Beck
cache directory). This is privledge dropping, not full privsep.
2004-05-07Set value for rslt before trying to display it. 'Bad LUN ...' messsageKenneth R Westerback
will now display correct error value. Spotted in SCSIDEBUG output from Adrian Close's bizarre USB device. ok millert@ deraadt@ marco@.
2004-05-07align to __LDPGSZ for anon mmap. this allows userland to be compiledTed Unangst
with a static page size on platforms where it may vary. ok deraadt@ millert@ tdeval@
2004-05-07mention kern.maxclustersTodd C. Miller
2004-05-07spllower should return the previous level, to match other archs.Ted Unangst
"looks right" miod
2004-05-07syncTheo de Raadt
2004-05-07Check poll revents for error.Todd C. Miller
2004-05-07Regression tests for fgrep -w and grep -w. Also enable a few tests thatOtto Moerbeek
were defined, but not called.
2004-05-07Make grep -w behave the same for the fastcomp and the regex case,Otto Moerbeek
by teaching fastcomp what word boundaries are according to regex. ok millert@
2004-05-07Document _SC_XOPEN_SHM, SEM_NSEMS_MAX and SEM_VALUE_MAX.Todd C. Miller
2004-05-07Implement _SC_SEM_NSEMS_MAX and _SC_SEM_VALUE_MAX.Todd C. Miller
Based on a diff from Jean-GĂ©rard Pailloncy.
2004-05-07Updates for the ssh->osiop change on mvme88k.Miod Vallat
2004-05-07Remove mvme88k workaround for ssh(4) bugs.Miod Vallat
2004-05-07Replace the old ssh(4) NCR53C710 scsi driver with a pcctwo attachment forMiod Vallat
the MI osiop(4) driver. This improves performance very slighly and should also improve reliability. Tested on 25MHz (50MHz osiop) and 33MHz (66MHz osiop) MVME187 boards.
2004-05-07bus_dma(9) implementation for mvme88k, mostly based upon powerpc.Miod Vallat
2004-05-07Introduce a new cmmu operation, cachectl_pa, similar to cachectl, but takingMiod Vallat
a pa instead of a pmap_kernel va. The cachectl operation is now deprecated and will disappear soon.
2004-05-07typosHenning Brauer
From: Jared Yanovich <phirerunner@comcast.net>
2004-05-07zap duplicateHenning Brauer
From: Myk Taylor <myk@ucla.edu>
2004-05-07Fix some sizeof(ptr) bugs based on diffs from aaron@.Todd C. Miller
Note that this is not code that actually gets compiled.
2004-05-07List all operators (= += -= *= /= %= <<= >>= &= ^= |=) instead of printing theAaron Campbell
first few followed by "etc". From FreeBSD. millert@ ok
2004-05-07Make #endif /* foo */ comments really match the #if condition.Miod Vallat
2004-05-07Do not rely upon a fictitious MAXPHYSMEM value, but rather the actualMiod Vallat
physical memory size, to decide the end of /dev/*mem, as well as default cacheability for mappings.
2004-05-07Add new file <machine/conf.h> and clean up console code and structures.Kenji Aoyama
From miod@
2004-05-07Add a new past path for fgrep that is just a simplified version ofTodd C. Miller
fastcomp. This makes fgrep faster and fixes the -w flag w/ fgrep. Also remove free_patterns() since calling free right before exit is silly. Problem noticed by espie@
2004-05-07Describe more accurate what word boundaries are.Otto Moerbeek
ok millert@
2004-05-07Replace RSA-derived md5 code with code derived from Colin Plumb's PD version.Todd C. Miller
This moves md5.c out of libkern and into sys/crypto where it belongs (as requested by markus@). Note that md5.c is still mandatory (dev/rnd.c uses it). Verified with IPsec + hmac-md5 and tcp md5sig. OK henning@ and hshoexer@
2004-05-07Simpler byte order flipping. Now the only place we explicitly checkTodd C. Miller
for the host byte order is when we copy the final digest (and that is just an optimization).
2004-05-07Some clean up, especially delete unused nvram related part. From miod@Kenji Aoyama
2004-05-07add a filter option to dump prefixes learned in UPDATEs into a PF table,Damien Miller
intended for building realtime BGP blacklists (e.g. with spamd); ok claudio & henning
2004-05-07Compute the size of the kernel page table at runtime, depending upon theMiod Vallat
board we run on, and its default mappings from pmap_table, rather than trying to compute a "fits all" value at compile time.
2004-05-07LM7x models improvements:Alexander Yurchenko
- correct divisor for fan3 (2 means 2^1, so the divisor is actually 1, not 2) - fan1 and fan2 have adjastable divisors, use this feature to dynamically correct divisors for slow fans - fix SENSOR_FINVALID usage Based on the diff from Alexander Bluhm <alexander.bluhm@gmx.net> in PR 3719.
2004-05-07This chunk was not supposed to be commited now.Alexander Yurchenko
2004-05-07proper casts for vtophys. looked at by grange@Ted Unangst
2004-05-07free the right thing on failure, in case this ever gets usedTed Unangst
2004-05-07fatty softdep merge with freebsd. fixes a variety of possible issues.Ted Unangst
relevant changes to ffs_softdep.c were 1.95, 1.96, 1.97, 1.98, 1.103, and 1.107 in freebsd. testing marc and otto. ok deraadt
2004-05-06back out kernel breakage. Be more careful damnitTheo de Raadt
2004-05-06remove more unused codeTheo de Raadt
2004-05-06spacingTheo de Raadt
2004-05-06knf and other cleanupsTheo de Raadt
2004-05-06Don't fseek() on stdin if it is a terminal. It does not fail, butOtto Moerbeek
what's more more important, it does not work either. ok millert@ tedu@
2004-05-06TypoMiod Vallat
2004-05-06ichpcib(4) man page; with help from jmc@Alexander Yurchenko