summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-06-01Don't assume there will be a newline after calling fgets.Ray Lai
OK millert
2009-06-01Simplify newline stripping after fgets.Ray Lai
OK millert
2009-06-01I forgot to apply the End Of Command token for async xfers. Maybe thatMarcus Glocker
caused the stalls seen in some rare conditions? Who knows ...
2009-06-01Style, inspired by NetBSD.Ray Lai
No binary change.
2009-06-01oops, bad merge.Damien Bergamini
2009-06-01- cleanup tx pathDamien Bergamini
- nitemize
2009-06-01fix endianness issue.Damien Bergamini
tested by jsg@ on tadpole sparc64 laptop.
2009-06-01add uvideo to zaurus roughly one year from its initial demonstrationTodd T. Fries
ok robert@
2009-06-01New VIA nano's support amd64 and EST. Move the setperf init routine outsideGordon Willem Klok
of the vendor check for intel and use the EST cpu feature flag to determine if we should call the est init routine. Tested on mattieu@'s via nano laptop. ok deraadt@, jsg@
2009-06-01Test the return value of md_prep_disklabel() to detect failedKenneth R Westerback
attempts to write a disklabel. When failure is detected don't configure the disk, return it to the list of disks available to be configured.
2009-05-31Add Naturetech as a possible hardware vendor.Mark Kettenis
2009-05-31Make sure xdm is installed before trying to run itAlexander Hall
ok deraadt@
2009-05-31Add support for udl in socppc. ok @miod and @kettenisMats O Jansson
2009-05-31Remove redundant imsg_event_add calls; ok claudio@Jacek Masiulaniec
2009-05-31Remove redundant imsg_event_add calls; ok claudio@Jacek Masiulaniec
2009-05-31Consolidate common code for interface attachment into single functionBret Lambert
to save some space in the kernel. Although there are deeper issues with interface attachment, this diff was not meant to address those, just to shave some space ;) ok henning@, claudio@
2009-05-31Make iomem_ex cover the complete (48-bit) physical address space. MakesMark Kettenis
bigmem kernels work again. ok oga@, ariane@.
2009-05-31Always show the start and end of the OpenBSD area in units ofKenneth R Westerback
sectors, not any 'human' unit in force.
2009-05-31Don't define NFS before including kernel header files,Thordur I. Bjornsson
besides it being gnarly its useless since no magic is done if it is define. pointed out by deraadt@
2009-05-31Remove some #ifdef / #define maze that is not needed at all.Claudio Jeker
OK deraadt@ miod@
2009-05-31enable pf by default.Henning Brauer
turns bombs into flowers, water into beer and eradicts swine flu
2009-05-31Remove _KERNEL goo from kernel files because we're setting _KERNEL correctly.Claudio Jeker
OK deraadt@, miod@
2009-05-31make set loginterface, set hostid, set reassemble and set debugHenning Brauer
transactional. sanity checked claudio, requested by theo for some time
2009-05-31Remove redundant imsg_event_add calls; ok claudio@Jacek Masiulaniec
2009-05-31224MB is no longer enough for the full sgi iso, crank to 240MB.Miod Vallat
2009-05-31push the dmesg and $SERVERLIST into the random pool to enhance theTheo de Raadt
entropy, before we pull out the host.random for the next boot
2009-05-31when entering mta_connect() reset session fd to -1Gilles Chehade
when connect timesout and we close the fd, reset session fd to -1 in session_destroy(), only attempt to close session fd if != -1 fixes a fatal in session_destroy() which happened because we closed a fd after a timeout, but the session still assumed the fd to be opened.
2009-05-31We are able to address 256 pixels (16bit) per command not just 128 pixels.Marcus Glocker
This safes us some protocol overhead, especially when bit blittering large regions.
2009-05-31Try to catch up with install.{sh,sub} changes.Miod Vallat
2009-05-31document checksum offload support; ok sthen@Christian Weisgerber
2009-05-31There is no need to mask priority with RTP_MASK because it is already doneClaudio Jeker
by the kernel.
2009-05-31Masking the priority with RTP_MASK is no longer needed in userland.Claudio Jeker
Kernel will do this now.
2009-05-31Hide RTP_DOWN in the kernel and don't expose it to userland. Userland isClaudio Jeker
not smart enough to handle it in a sensible way. Make sure the kernel selected routing priority is actually exported to userland or to help daemons like bgpd to keep correctly track of the routes. This should fix some of the rather strange errors seen by people having multipath routes on their bgpd boxes. While there make the interface priority inheritance on static routes work again. OK henning@
2009-05-31If xdm was requested, but then xbase was not installed, don't try toTheo de Raadt
enable it. ok halex
2009-05-31Make bootblock installation as silent as possible by default. WhileTheo de Raadt
there, remove a lot of cruft from the various md_installboot functions ok halex
2009-05-31Remove BUS_DMAMEM_NOSYNC definition. Its name is not consistent withMiod Vallat
other BUS_DMA_xxx flag names, and nothing uses it. ok many@
2009-05-31add audible output to ping and ping6: -e beeps when pings are replied, -E ↵Chris Kuethe
beeps when pings are dropped. suggestion to make ping and ping6 use the same flag from deraadt & sthen. reminder to not forget about ping6 from todd and naddy. ok deraadt, sthen "well, i don't object..." from a few others.
2009-05-31More libevent callback fixes. While there make n also ssize_t as in allClaudio Jeker
other daemons.
2009-05-31Move splassert checks from pool_do_get to pool_get(). Since the formerMiod Vallat
is invoked with the pool mutex held, the asserts are satisfied by design. ok tedu@
2009-05-31Better EV_READ and EV_WRITE handling in the libevent callbacks. Again mostlyClaudio Jeker
the same ospfd diff applied with some fuzz.
2009-05-31The wsmouse support code has been written for pcvt long ago, then liftedMiod Vallat
to work with wscons. Back then, the universe was simple and there was only one single wsdisplay device, so that code would use global variables. Overhaul this, and make sure the various routines take the wsscreen or wsdisplay they operate on as arguments. This will eventually allow multiple wsmoused to run, one per wsdisplay device. While there, use more appropriate integer types in that code, so that unholy big displays do not cause integer overflows in coordinates computations. As a bonus, this makes the code smaller.
2009-05-31libevent handler fix to allow EV_READ and EV_WRITE to be set at the sameClaudio Jeker
time in the callback. Same diff that went into ospfd applied with some fuzz.
2009-05-31The libevent callback function may be called with EV_READ and EV_WRITEClaudio Jeker
set at the same time so using a switch to do read or write is a bad idea. Problem noticed by Eygene Ryabinkin on FreeBSD for some reasons it is not triggered on OpenBSD. Fix aggreed by a most other libevent hackers
2009-05-31Do not access sc_scr[-1] from the wsmoused-related code ifMiod Vallat
wsdisplay_switch(..., WSDISPLAY_NULLSCREEN, ...).
2009-05-31Make sure wsdisplay_kbdholdscreen() checks whether the screen has a ttyMiod Vallat
before invoking wsdisplay_kbdholdscr(), which assumes it does.
2009-05-31Add AL2230S support, extracted from part of a massiveJonathan Gray
'sync to p4' style commit in FreeBSD.
2009-05-31PV2000 -> AL2230SJonathan Gray
2009-05-31Match on siemens zd1211b, support for the al2230s radioJonathan Gray
is not yet in, but this makes things easier.
2009-05-31Fix definition of CL_FIFO_MAX to match what the hardware can do; this inMiod Vallat
turn fixes a stack smash in cl_rxintr().
2009-05-31regenJonathan Gray