summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-06-09try to get "play" right; help/ok naddyJason McIntyre
2009-06-09syncTheo de Raadt
2009-06-09correct loop in debug code to not use an uninitialised page. it wasOwain Ainsworth
ass-backwards. afaik this was found by the LLVM CLang static analyser. ok ariane@ a couple of days ago.
2009-06-09Fix userland regression tests by providing a #define for pool_setipl()Owain Ainsworth
(just a noop since that doesn't matter in userland). Pointed out by a couple of people, thanks.
2009-06-09make the regress target build the program before using it.Peter Hessler
OK millert@, deraadt@
2009-06-09Update to handle the default resolv order behavior.Peter Hessler
Add a note that the regress depends on the "family" keyword in resolv.conf OK millert@, deraadt@
2009-06-09nnpfspioctl change in libc mandates a major crank here toTheo de Raadt
2009-06-09missing header file; bring things into scopeTheo de Raadt
2009-06-09add missing flag to usage; synchronize argument names with documentation;Igor Sobrado
while here, use lowercase letters for "usage:".
2009-06-09By default, don't accept IPv4 ICMP redirects. This behaviour can beStuart Henderson
changed with a sysctl, so note it in sysctl.conf. v6 needs further testing following discussions on the tech mailing list; rainer@ points out possible interactions with neighbour discovery which need to be investigated first. "go ahead on the v4 part" deraadt@
2009-06-09Update the user input routines to (re-evaluate and) redraw theAlexander Hall
question if dmesg changes are detected. The password reading routines are not subject to these changes at this point. ok deraadt@, krw@
2009-06-09AD1981HD output amps are weird. they report 63 volume steps but theJacob Meuser
first 30 do nothing. perhaps there are other codecs with such amps? (ab)use some reserved bits in the amplifier capabilities parameter to store the first volume step that actually changes the volume. problem reported and patch tested by LEVAI Daniel.
2009-06-09quirks for MacBookPro3,1 inspired by FreeBSD's snd_hda. problemJacob Meuser
reported and patch tested by Bryan Chapman. according to FreeBSD, this might be needed for other MacBookPro models but no one else has told me their MacBookPro doesn't work.
2009-06-09Tighten and tweak keyboard question. Use 'layout' instead of 'type'Kenneth R Westerback
as suggested by mk@. Shortened verbiage allows us to bring back 'L' as a way to list the alternate layouts, as pointed out by Andr?s on tech@. On some keyboards finding the '?' can be a challenge before the layout is set. ok deraadt@
2009-06-09revert guenther@'s un-revert of art's curpmap.Kenneth R Westerback
My bios0: ASUSTeK Computer INC. P5K-E cpu0: Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz, 2405.74 MHz cpu1: Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz, 2405.46 MHz cpu2: Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz, 2405.46 MHz cpu3: Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz, 2405.46 MHz can't boot with this in. It always hangs somewhere in fsck'ing if any, or between netstart and local daemons if no fsck'ing. Also fubars theo's real amd machine. Much more testing needed for this.
2009-06-09Disable xlights for now, since the rapid periodic interrupts it generatesTheo de Raadt
help worsen the interrupt race that dale is trying to fix. He'll get that fixed, but for now, we can try to run macppc in the most reliable fashion.
2009-06-09backout interrupt diff until it the next round of fixesTheo de Raadt
2009-06-08must calculate iovlen or ktrace panics the machine; diff from blambertTheo de Raadt
and it is pretty critical so commiting it now. Any more fallout from the code 'simplication'?
2009-06-08If the machine only has one state enabling the EST driver is pointless,Gordon Willem Klok
this might need to be revisted later if its clear that there are machines which only come up with a single state but more may appear after a PPC change but for now we will just not initilize on systems with a single state a boot. Solves a divide by zero panic when using the PDC diff on broken hardware. ok marco@, krw@
2009-06-08syncTheo de Raadt
2009-06-08remove stray * from comment, probably a rewrapping artefactStuart Henderson
2009-06-08quieten compiler by converting pointers to uintptr_t before truncating themTheo de Raadt
to u_int32_t to do integer math with (in a situation where that is legit) ok otto millert
2009-06-08improve the description of fs_freq;Jason McIntyre
prompted by a fix from Warner Losh, freebsd -r193625, but i chose a different fix; help/ok otto
2009-06-08Document new behaviour of the gconf2 MODULE.Antoine Jacoutot
ok kili@ cvs: ----------------------------------------------------------------------
2009-06-08Update to tzdata2009i from elsie.nci.nih.govTodd C. Miller
2009-06-08fix non standard/valid usage of ? : operator on amd64Jonathan Gray
as well, reminded by miod@
2009-06-08fix non standard/valid usage of ? : operator.Jonathan Gray
ok oga@
2009-06-08revert this change by eric@:David Gwynne
Make the imsg protocol network-safe. it might be network safe, but half the imsg based daemons on my firewalls dont run anymore.
2009-06-08in pf_print_state_parts, do not use skw->proto to print the protocolHenning Brauer
but our local copy proto that we very carefully set beforehands. skw being NULL is perfectly valid there.
2009-06-08bring back the fixed PF_AEQ/ANEQ/AZERO macros, the offending use has beenHenning Brauer
found by sthen and fixed, all other callers of these macros checked by both of us
2009-06-08"do not call PF_ANEQ with af=0, dragons". fixes a problem with skipStuart Henderson
steps found with the recent pfvar.h commit to check address families. from & commit req by henning.
2009-06-08gah. something is not quite right, sthen sees strange behaviour fixedHenning Brauer
by backing out the macro fix. something must rely on the broken behaviour
2009-06-08some vnodes have a NULL mountpoint, so strlcpy of the f_mntonname if not advisedTheo de Raadt
2009-06-08unfuck PF_AEQ PF_ANEQ PF_AZERO macos that got fucked when v6 supportHenning Brauer
was added in 2001. yes i got bitten by inet6 shit again. in the ANEQ case, if af == AF_INET, (a)->addr32[0] != (b)->addr32[0] is false when the adresses ARE equal. now it goes right in the intended-for-v6 case and starts to compare the other addr32 fields - in the v4 case I have garbage in them, so it reports all v4 as different when they are in fact the same. fix by adding explicit af == INET6 test before going on to compare the rest. found the really hard way (many hours wasted, thought the bug was in my new code) by me. ok sthen markus claudio
2009-06-07syncTheo de Raadt
2009-06-07tweak -v; from Tim van der MolenJason McIntyre
2009-06-07some minor fixes, mainly from from Niclas Zeising, freebsd conf/112024Jason McIntyre
2009-06-07improve spacing in usage()Igor Sobrado
2009-06-07Define _KERNEL for the bare minimum. We can include sys/proc.hTodd C. Miller
normally as long as we define __need_process and use a local definition of struct proclist.
2009-06-07xfs -> nnpfs; ok jjJason McIntyre
2009-06-07We weren't including isa.h and therefore missing the NISA #define. ThisMike Larkin
caused the PIC to not be initialized on resume, which caused much badness - things attached to the ISA bus weren't getting any interupts (for example, keyboards). Also move around some of the lapic reinit code to handle some clock initialization bits we weren't doing before. Worked out by deraadt and myself. ok deraadt@
2009-06-07Do not look at the avail_{start,end} members from vm_physmem[] anymore.Miod Vallat
These values were used to eventually pass ranges to uvm_pglistalloc(), which has been fixed to correctly skip no-memory ranges a lot of time ago; however mvme68k would still use the computed range and osiop would no longer attach; this repairs it.
2009-06-07Remove gecos expanding code, since the expanded string is no longerRay Lai
used.
2009-06-07Don't leak FILE * if multiple -o flags are given.Ray Lai
2009-06-07don't prefix the usage of a define that has a - with a -Jonathan Gray
no binary change and consistent with other usage of the macro.
2009-06-07Shave surplus space from format string.Michael Knudsen
2009-06-07Use SIZE_MAX, not SIZE_T_MAX.Ray Lai
2009-06-07Don't use $TMPDIR if it is empty.Ray Lai
2009-06-07Plug file descriptor leak when diffing regular files.Ray Lai
2009-06-07Remove outdated comment.Ray Lai