summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-12-22size_t format string fixesStefan Fritsch
2013-12-22Setting format id to 't' when it's already 't' is a waste ofKenneth R Westerback
time.
2013-12-22tweak commentTed Unangst
2013-12-22No need to change format id 'X' (ascii or hex) to 'x' (hex) whileKenneth R Westerback
pretty printing, when 'X' is not used in the next switch statement. Just keep 'X'. Makes the code a touch less mysterious.
2013-12-22Don't look for two semi-colons when encountering an unrecognizedKenneth R Westerback
statement in dhclient.conf.
2013-12-22- replaces "audio stream" by "audio device", as sndio is a deviceAlexandre Ratchov
abstraction - remove useless statements. ok jmc@
2013-12-21Document that the "user" socket check is not reliable with wildcardCamiel Dobbelaar
listeners. Update the example to reflect this. Deprecate usage of user "unknown" too, same reason. Noted by Maxim Khitrov on bugs ok henning, jmc
2013-12-21Don't assign a literal number to a variable that otherwise holds an errno.Philip Guenther
ok jsing@
2013-12-21Advertise that we provide monotonic timestamps.Mark Kettenis
2013-12-21Introduce pretty_print_string() and use for printing both textKenneth R Westerback
valued options and previously snprintf()'d filename and servername lease attributes. Should fix "string constant too long" errors when reading back a lease with filename or servername attributes with escaped characters. Reported by Rivo Nurges.
2013-12-21rearrange DVACT_RESUME chunk to avoid implying something ridiculousTheo de Raadt
ok stsp
2013-12-21save/restore hpet configuration. Perhaps a little more than weTheo de Raadt
need to do, since we do not use many hpet features. ok kettenis millert
2013-12-21i915_gem_mmap_ioctl() should return a Linux-style negative errno value.Mark Kettenis
2013-12-21syncTheo de Raadt
2013-12-21Fix locking in the page fault handler. A (somewhat malicious) userlandMark Kettenis
program could force a copyin/copyout from/to memory mapped through the GTT, forcing a "locking against myself" panic. The intel-gpu-tools "package" has a test for this. The problem can be circumvented by making the fault handler fail if we already hold the (DRM) lock. This will make the copyin/copyout return with EFAULT making the caller fall back on a "slow path". This makes it obvious that using a shared (read) lock here doesn't make any sense. So use an exclusive (write) lock like everywhere else in the inteldrm code.
2013-12-21Recognize itimer and ktrace facility names to {get,set}itimer() and ktrace()Philip Guenther
ok otto@
2013-12-21Refer to the kernel headers consistently via ../../sys, even for mkioctlPhilip Guenther
and mksubr ok otto@
2013-12-21small typoTed Unangst
2013-12-21Don't use a non-constant format string with printf() that gcc can'tPhilip Guenther
figure out how to trust. Shuts up gcc -Wformat=2 ok deraadt@
2013-12-21Constipate some functionsPhilip Guenther
2013-12-21Match the type to the callsPhilip Guenther
2013-12-21Use timespec and CLOCK_MONOTONIC for a timing testPhilip Guenther
2013-12-21Fix a commentPhilip Guenther
2013-12-21Xr virtioTheo de Raadt
2013-12-21syncTheo de Raadt
2013-12-20regenMatthew Dempsky
2013-12-20add virtio scsiMatthew Dempsky
2013-12-20Add basic vioscsi(4) manual page.Matthew Dempsky
2013-12-20Add support for truncate in fuse.Sylvestre Gallon
Input from millert@. Ok millert@, tedu@.
2013-12-20Add vioscsi(4) driver.Matthew Dempsky
Still a work-in-progress, but functional enough to work with both Google Compute Engine and RHEVM. Committing so additional testing and cleanup can be handled in tree. thx Jiri B for RHEVM testing ok dlg, deraadt
2013-12-20cannot let theo talking about emacs and mg slideHenning Brauer
2013-12-20Set the correct line number after successfully searching withFlorian Obser
re-search-{backward,forward}. OK lum
2013-12-20Fix a crash in ksh when trying to access ${12345678901234567890}Vadim Zhukov
Input from deraadt@, millert@ and otto@. okay from millert@ plus a willing from deraadt@
2013-12-20Fix typo, allow hppa64 to build a little furtherTobias Ulmer
2013-12-20Remove a spurious message that appears in dired mode if you press aMark Lumsden
key without a function bound to it. ok florian@
2013-12-20When writing a file, break out when we get a write(2) error, notJeremie Courreges-Anglas
just EPIPE, else we'll just reattempt the write with non-sensical values. From Maxime Villard (max at m00nbsd dot net).
2013-12-20Be less verbose when SNDIO_DEBUG=1 is set.Alexandre Ratchov
2013-12-20set the target device number of standard system exclusiveAlexandre Ratchov
messages to 0x7f (aka "any device").
2013-12-20Switch inpt_queue from CIRCLEQ to TAILQ. Thus ending use of CIRCLEQKenneth R Westerback
in the base. Ports fixes to follow shortly for the two ports (gkrellm and net-snmp) affected. ok zhuk@ millert@
2013-12-20delete 4 includes we do not needTheo de Raadt
2013-12-19oh sorry, I forgot two #ifdefTheo de Raadt
2013-12-19use full name for author, with his permissionDamien Miller
2013-12-19Reliability fix for SHA384 SSL/TLS ciphers on strict alignmentJeremie Courreges-Anglas
architectures. ok miod@ djm@ Upstream patch: commit cdd1acd788020d2c525331da1712ada778f1373c Author: Andy Polyakov <appro@openssl.org> Date: Wed Dec 18 21:27:35 2013 +0100
2013-12-19fix double word error;Jason McIntyre
2013-12-19Mtrr stops being a pseudo-device. We need to probe the cpu type andTheo de Raadt
initialize the structures when we see the first cpu. We also need to initialize each cpu's properly (for PAT) before we setup mtrr on that cpu. On i386 (late hatch) we were getting this desperately wrong on the primary cpu. After suspend/resume, we also need to do the same work. re-initialize PAT before mtrr. On some laptops apparently PAT was not turned on by the BIOS, so we ended up with incorrect setup for the primary cpu. Oops. This makes mplayer on the x201 (and similar) machines work without weird pauses after a suspend/resume. Many other things are likely fixed. ok kettenis
2013-12-19Split out strncpy and strncat from strcpy and strcat manuals.Todd C. Miller
Requested by deraadt@
2013-12-19Use shifts instead of integer multiplication by the page size in theMiod Vallat
Octeon-specific code paths. No functional change. ok bcallah@ pirofti@
2013-12-19sun4e needs the same 1.6 usec ZS_DELAY() as sun4 does.Miod Vallat
2013-12-19Amend dired-unmark-backward to fit with recent change andMark Lumsden
include DEL in DIRED KEY BINDINGS.
2013-12-19Make dired-unmark-backward behave the same as emacs: move cursor up aMark Lumsden
line then remove 'D' instead of remove 'D' then move up a line. input/ok florian@