summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-04-24syncTheo de Raadt
2011-04-24syncTheo de Raadt
2011-04-24syncTheo de Raadt
2011-04-24syncTheo de Raadt
2011-04-24match Radeon HD5450 on the kernel side; Mark PeoplesTheo de Raadt
2011-04-24syncTheo de Raadt
2011-04-24Radeon HD5450, Mark PeoplesTheo de Raadt
2011-04-24Match Sierra USB305; from Erik MugeleTheo de Raadt
2011-04-24syncTheo de Raadt
2011-04-24delete a stupid SIGSEGV handler (not used)Theo de Raadt
2011-04-24No point in attempting to open the 'c' partition on devices that haveKenneth R Westerback
no 'c' partition. So don't call opendev(3) with OPENDEV_PART. ok deraadt@
2011-04-24fenv for i386, and sparc64; from matthew@Martynas Venckus
not reviewed yet, but it's better to track changes in cvs
2011-04-24fenv for armMartynas Venckus
2011-04-23Implement C99 floating-point environment for Alpha.Martynas Venckus
Delivering FPE with non-masked exceptions doesn't work on Alpha; I suspect there's a bug in the kernel trap handler. FE_INEXACT is intentionally left out of FE_ALL_EXCEPT; since the inexact exception is not being maintained. Otherwise it will lead to the bogus results.
2011-04-23Stop calling shared interrupt handlers as soon as one of them return 1Mark Kettenis
(positive interrupt was for me), like we do on other architectures. This is done here, at the elroy(4) driver level, since this is where shared PCI interrupts are handled. We could do something similar for dino(4) but this optimization is probably not very relevant there. ok deraadt@
2011-04-23Don't leave the kernel code/rodata writeable for DDB. Make ddb enableTheo de Raadt
writes in the pte momentarily. Modified the code stolen from amd64. ok miod
2011-04-23Enable the SIGWINCH handler in ncurses.Nicholas Marriott
Prompted by mail from Mikolaj Kucharski on tech@ and discussion with deraadt@ and millert@. A library installing signal handlers without being asked is seriously wrong but it appears quite a few applications now depend on the ncurses SIGWINCH and it looks to be safe. Safer than the other signal handlers it installs (apparently without request... boke). ok millert
2011-04-23Remove now unused vndiodone(). ok deraadt@Miod Vallat
2011-04-23Add FE_DENORMAL to the exception list just like the comment aboveMartynas Venckus
says; for couple of reasons: - makes it actually work, since the code clears ~FE_ALL_EXCEPT bits. - standard requires that.
2011-04-23Merge the same fix for hppa64; reminded by miod@:Martynas Venckus
Sticky flags are in the left half of fpsr;  not the undefined bits in the right half.  OK miod@.
2011-04-23Do not document FP_X_IOV--it's an alpha-only thing. Similarly likeMartynas Venckus
we don't document the i386/amd64 denormalization exception.
2011-04-23Sysarch is for userland, not kernel.  ifdef _KERNEL -> ifndef _KERNELMartynas Venckus
so that the userland actually gets the proto. OK kettenis@, miod@.
2011-04-23Do not set kl_hub_widget[] default value more than once. Found the hard wayMiod Vallat
by deraadt@.
2011-04-23Move assignment of kl_hub_widget[] outside a #ifdef DEBUG ... #endif block,Miod Vallat
giving systems with non-default values a chance to work again. Pass the brown paper bag, please.
2011-04-23When a device or setuid file is owned by a nonexistent user or group,Ingo Schwarze
undefined data got used. Fix this by reporting the UID/GID numerically in that case. Problem reported and patch provided by rd at thrush dot com. While here, use // rather than || everywhere to detect get*id failure, as suggested by RD Thrush. The edge case where it matters - a username of "0" - is rather insane, but the // is more precise anyway.
2011-04-23Partially revert 1.23, by removing the code which tries to pick the bestMiod Vallat
possible DMA window. This breaks systems which have physical memory contiguous to the selected DMA window. A fix is in the works, in the meantime the spice^WDMA should flow.
2011-04-23Even though SUIDSKIP used to be a mere shell variable, it was propagatedIngo Schwarze
to the old /etc/security script because daily sourced it. Now we fork and exec, so SUIDSKIP must be promoted to the environment. Problem reported, fix tested and ok weerd@.
2011-04-23Fix management of the list of free uvm_km_pages. Seems art@ lost a lineMark Kettenis
when he copied this code from uvm_km_putpage() into km_free(). Found independently by ariane@; ok deraadt@
2011-04-23syncTheo de Raadt
2011-04-23The previous code only prevented the vnd from being opened for write inJoel Sing
both simple and non-simple mode. Restore this behaviour by removing the openmask check.
2011-04-23backout the miod change since it is wrongTheo de Raadt
2011-04-23Remove yet another mention of /etc/security that i missed (doh).Ingo Schwarze
Also pointed out by Mattieu Baptiste <mattieu dot b at gmail dot com>, thanks.
2011-04-23Very nice bugfix from Andrew Fresh, who writes:Ingo Schwarze
>> "return if !%changed;" in check_filelist would never return because just above "for @{$changed{xxx}}" autovivifys $changed{xxx} = [] if it is not set already. << I hate autovivification, and it hates me.
2011-04-23improve line breaking in SYNOPSIS now that semantics of the .Bk macroIgor Sobrado
has changed to conform with modern groff releases. diff for route6d(8) written mostly by schwarze@, with lots of useful advice from jmc@. ok jmc@, schwarze@
2011-04-23pf_scrub_ip() does not modify the given mbuf pointer. So don'tAlexander Bluhm
pass a pointer to a pointer to make the code in pf_test() clearer. ok henning@
2011-04-23Only print changed TOS in returned packets when -t is set (last commit wasStuart Henderson
supposed to do this but I missed a piece). ok phessler@
2011-04-23start at high ipl (quiets noise on startup).Dale Rahn
2011-04-23Indicate which side of the connection responded during phase 1 while using -v.lum
ok sthen@ markus@
2011-04-23BRKSIZ is the right constant now, so I don't get lots of teeny tiny heapsTed Unangst
mixed up in my address space.
2011-04-22Turning on SCSIDEBUG (for debugging other drivers, of course) shouldTheo de Raadt
not make these drivers spew millions of lines of output. spotted as missing by miod
2011-04-22delete a bogus blank lineTheo de Raadt
2011-04-22Turning on SCSIDEBUG (for debugging other drivers, of course) shouldTheo de Raadt
not make these drivers spew millions of lines of output. ok krw
2011-04-22Somebody moved a line about SCSIDEBUG_LEVEL into the wrong spot.Kenneth R Westerback
Move it back. Make explicit the default value of SCSIDEBUG_LEVEL.
2011-04-22Fix regression in vndopen() behaviour introduced in previous commit.Miod Vallat
2011-04-22do not mention the now gone PSD/USD directories; ok miodJason McIntyre
2011-04-22Fix uninitialzied variables and formatting strings (-Wxxx errors)Jordan Hargrave
2011-04-22pf_pooladdr_pl does not exist anymore. Remove its extern declaration.Alexander Bluhm
ok henning@
2011-04-22Remove unused structure member.Mark Kettenis
ok marco@, deraadt@
2011-04-22Stop printing the PCI interrupt line programmed by the BIOS for APICMark Kettenis
interrupts. It is irreleveant, confuses people and the information is available in pcidump(8) output anyway. ok oga@, jsg@, deraadt@
2011-04-22Sticky flags are in the left half of fpsr; not the undefined bitsMartynas Venckus
in the right half. OK miod@.