summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-11-02Link m88k kernels on a BATC boundary.Miod Vallat
2013-11-02replace bare use of disksort with a bufq, modelled on the sys/dev/isa/fd.cDavid Gwynne
change. ok miod@
2013-11-02Replace drm_handle_create/delete with drm_gem_handle_create/delete and makeMark Kettenis
the necessary adjustments to reference counting of GEM objects. Matches what Linux does these days.
2013-11-02add curve25519-sha256@libssh.orgMarkus Friedl
2013-11-02the default kex is now curve25519-sha256@libssh.orgMarkus Friedl
2013-11-02remove unnecessary spinlock that slowed down pthread_getspecific.Ted Unangst
original report and fix provided by John Carr. ok guenther kettenis
2013-11-02no need to include monitor_wrap.h and ssh-gss.hMarkus Friedl
2013-11-02no need to include ssh-gss.hMarkus Friedl
2013-11-02no need to include monitor_wrap.hMarkus Friedl
2013-11-02add missing $OpenBSD$ tagsMarkus Friedl
2013-11-02use curve25519 for default key exchange (curve25519-sha256@libssh.org);Markus Friedl
initial patch from Aris Adamantiadis; ok djm@
2013-11-02Oops, utime() is section 3, not 2Philip Guenther
noted by jmc@
2013-11-02While answering a question asked by espie@, i noticed that .Fd is notIngo Schwarze
completely obsolete, but still somewhat useful for listing preprocessor directives, in particular in the SYNOPSIS.
2013-11-02syncTheo de Raadt
2013-11-02Fix lie that predated NetBSD: the struct stat time padding affectedPhilip Guenther
utime() usage, not utimes() ok deraadt@
2013-11-02support pkcs#11 tokes that only provide x509 zerts instead of raw pubkeys;Markus Friedl
fixes bz#1908; based on patch from Laurent Barbe; ok djm
2013-11-02replace rc4 with ChaCha20 here, too; ok djm, tedu, deraadtMarkus Friedl
2013-11-02out of place word; discussed with jmc and guentherTheo de Raadt
2013-11-02Reserve a page at the beginning of the kernel text to use for the trap vectors,Miod Vallat
and switch to it, on all processors, after autoconf is over. First step towards being able to unmap the low memory and have address 0 non-accessible in the kernel.
2013-11-02.Xr clock_gettimeMarc Espie
okay deraadt@
2013-11-02syncTheo de Raadt
2013-11-02syncTheo de Raadt
2013-11-02oops, do install man pages on macppc...Theo de Raadt
2013-11-02do not log passwords, even if they are wrong.Sebastian Benoit
ok mcbride halex
2013-11-02Cleanup bios_oconsdev_t. Make sure you have a halfway recent bootloaderMark Kettenis
(at least BOOT 3.20 on amd64 and BOOT 3.18 on i386) or you'll risk losing your serial console. ok deraadt@
2013-11-02Fix reference leak in i915_gem_mmap_ioctl().Mark Kettenis
2013-11-02Make calltrap global such that gdb can always find it.Mark Kettenis
ok bluhm@
2013-11-02Bring back spnego support into gssapi as we used to have it beforeAntoine Jacoutot
the update to 1.5.2. ok miod@
2013-11-02Use sigexit() instead of rolling our own version.Miod Vallat
2013-11-02bunch of format string cleanups, removing %i, signed vs unsigned, and evenTheo de Raadt
a few long long's ok jmatthew
2013-11-02Remove a layer of abstraction for fetching a configuration descriptor.Martin Pieuchot
2013-11-02move the global description of --export-symbols up to dlopen,Marc Espie
since that's where the problem usually gets noticed, add -rdynamic for gcc. okay matthew@
2013-11-02Update the fuse_opt to have option like -h working.Sylvestre Gallon
ok ajacoutot@
2013-11-02fix some commentsTheo de Raadt
2013-11-02finish xref linking clock_gettime and getitimerTed Unangst
2013-11-02Begin conversion of USB stack to return int instead of usbd_status,Jeremy Evans
starting with usbd_endpoint_count and usbd_interface_count. usbd_status should only be used to indicate the status of a USB transfer, it should not be used for generic error codes. Idea from and much hand-holding by mpi@ OK mpi@
2013-11-02Some more aggressive CR3 whacking is needed on some machines to completelyMike Larkin
flush the inflate page TLB entry.
2013-11-02do not export speclisth to userlandTheo de Raadt
2013-11-02No need to cast constants or simple variables to (daddr_t). UseKenneth R Westerback
(u_int64_t) instead of (daddr_t) when casting a variable in an expression passed to DL_SETDSIZE(). Change a variable counting open files from daddr_t to int64_t. ok deraadt@ with the tweak to fix that pesky expression.
2013-11-01Document the stupid behaviour of older PROM which fail to load binariesMiod Vallat
past 3MB but fail to abort with an error message, and instead spin until ^Ced. This should only affect netbooting bsd.rd; explain lightly how to use the boot loader and load the kernel from NFS.
2013-11-01Provide -I's to reach the gdtoa directory for .h filesTheo de Raadt
2013-11-01push the queues every 1/HZ using timeout(9)pelikan
This is a modified version of oldtbr_timeout() with a timeout for each HFSC enabled interface. We can now safely include <sys/timeout.h> in net/hfsc.h without breaking the build. tested by naddy, ok henning claudio deraadt
2013-11-01keep net/hfsc.h away from userspace, except in pfctlpelikan
tested by naddy, ok deraadt
2013-11-01Drop zsaddr[NZS] and the need for zs to be needs-count. zsaddr[] is no longerMiod Vallat
necessary now that each zs device registers its own interrupt handler, and zshard() does not need to walk all zs chips, which has been the case for years.
2013-11-01adds a few modules used by upcoming drivers, and support for disablingaalm
modules. ok jasper@
2013-11-01syncJasper Lievisse Adriaanse
2013-11-01missing regen after gpio(4) got addedJasper Lievisse Adriaanse
2013-11-01hookup sunxi bits for miniroot and ramdisk, tested on pcduino.Jasper Lievisse Adriaanse
note that on boards without ahci you will need to install to usb and still boot of sd, at least until there's support for the sd slot. ok patrick@
2013-11-01Use %lu to print u_long, not %lld.Kenneth R Westerback
2013-11-01crank MINIROOTSIZE needed so the ramdisks will fit againJasper Lievisse Adriaanse
ok patrick@