Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-04-30 | Convert a linux specific test for master in currently disabled code. | Jonathan Gray | |
2019-04-30 | Add an equivalent test for master in drm_fb_helper_is_bound() | Jonathan Gray | |
Prevents black screens on hotplugging a new display with Xorg running which required a vt switch for screens to be useable. Reported by various people on misc@. Tested by and ok sthen@ | |||
2019-04-29 | Make v[46]_info() return all the interface flags instead of just | Kenneth R Westerback | |
deducing that the interface is up or down. Check for "UP," in the returned flags where a return value of UP was used previously. ok kn@ with feedback/optimizations to be pondered further. | |||
2019-04-29 | Install upgrade kernel with ln -f, as per kernel build. ok florian@ | Ian Darwin | |
2019-04-29 | Add '*' to disklabel(8) editor prompt when in-memory copy of disklabel | Kenneth R Westerback | |
has been modified. Use name of disk being edited in fdisk(8) editor prompt. Idea from tb@. ok tb@ deraadt@ | |||
2019-04-29 | $() is expanded by make itself, so consistently use `cat vnd`; ok deraadt@ | Christian Weisgerber | |
2019-04-29 | Switched min_heap to size_t to prevent integer overflows. | Tobias Stoeckmann | |
Also, as deraadt suggested, switched realloc to recallocarray to at least prevent uninitialized memory to be used as pointers in case of other programming errors. A proper solution (not using an array) needs more work. This change occured in sync with upstream libevent 2.2. with input by and ok bluhm, jca, tedu | |||
2019-04-29 | Remove unnecessary end-of-contents octets. | rob | |
ok claudio@ | |||
2019-04-29 | These Makefile.inc are now empty and unused. | Theo de Raadt | |
2019-04-29 | TOPDIR and TOP are not neccessary. | Theo de Raadt | |
2019-04-29 | MC146818_GETTOD: Check for RTC rollover during read. | cheloha | |
Because the RTC is still ticking it is theoretically possible for the second to roll over while we are reading the clock. This is basically impossible on real/practical hardware but is an interesting corner case for e.g. a VM reading an emulated MC146818 during an exit to userspace. This doesn't check *every* register, so if it takes you a multiple of 60 seconds to read the RTC this change won't help you. But you've got bigger problems at that point. "no objections" kettenis@/mlarkin@, "fine idea" deraadt | |||
2019-04-29 | Extend channel dwell time during passive scans in iwn(4). | Stefan Sperling | |
Makes scan results more reliable. testing jmc@, kmos@, Tracey Emery ok kettenis@ kevlo@ jmc@ phessler@ | |||
2019-04-29 | Add support for keys to jump between matching brackets - C-M-f and C-M-b | Nicholas Marriott | |
in emacs, % in vi. Suggested by and help from Chris Barber in GitHub issue 1666. | |||
2019-04-29 | Check that depend on interfaces are in the same rdomain. If they are not | remi | |
the daemon wouldn't notice state changes for those interfaces. ok benno@ | |||
2019-04-29 | tr_unit is unused, so gc it | David Gwynne | |
2019-04-29 | don't have lacp input push lacp packets into the trunkports bpf again. | David Gwynne | |
if_input already runs bpf for all packets on a trunkport. having lacp code do it again means packets are seen twice by bpf filters twice, which is misleading. | |||
2019-04-29 | remove the abstraction REV on top of abstraction OSrev which is always | Theo de Raadt | |
the sme. | |||
2019-04-29 | Update to reflect change of default ruby version to ruby 2.6 | Jeremy Evans | |
2019-04-28 | Add unit tests for user@host and URI parsing. | Darren Tucker | |
2019-04-28 | reduce delta with ../ramdisk/list | Theo de Raadt | |
2019-04-28 | Removes the KERNEL_LOCK() from bridge(4)'s output fast-path. | Martin Pieuchot | |
This redefines the ifp <-> bridge relationship. No lock can be currently used across the multiples contexts where the bridge has tentacles to protect a pointer, use an interface index. Tested by various, ok dlg@, visa@ | |||
2019-04-28 | Support multiple occurances of the same argument. Use this for a new | Nicholas Marriott | |
flag -e to new-window, split-window, respawn-window, respawn-pane to pass environment variables into the newly created process. From Steffen Christgau in GitHub issue 1697. | |||
2019-04-28 | Fix reading route entries via kvm(3). | Martin Pieuchot | |
From Naoki Fukaumi, ok yasuoka@, sthen@ | |||
2019-04-28 | oops, repair some BSDRD confusion | Theo de Raadt | |
2019-04-28 | cleanup the situation around "df -i" | Theo de Raadt | |
2019-04-28 | fix misplaced hyphen in usage(); | Jason McIntyre | |
2019-04-28 | incorporate GZIPFLAGS into place everywhere | Theo de Raadt | |
2019-04-28 | Oops; hardcode instbin directly | Theo de Raadt | |
2019-04-28 | Cull BSDRD variables which are always bsd.rd | Theo de Raadt | |
2019-04-28 | NEWFS_WILL_FAIL is a ridiculous unused artifact. | Theo de Raadt | |
2019-04-28 | CBIN variable is also pointless, it is always "instbin". Rather than | Theo de Raadt | |
having two mysterious names, let's settle on one. | |||
2019-04-28 | the BSD_RD variable is pointless | Theo de Raadt | |
2019-04-28 | the bufcachepercent=80 experiment has exposed a few problems... | Theo de Raadt | |
2019-04-28 | Use new vnconfig vnd-auto-allocate mode. Resolve some variation between | Theo de Raadt | |
architectures, and start removing some crazy junk that has collected over the years. Being tested on all architectures... ok various people. | |||
2019-04-28 | Remove need for -A option, lack of a vnd_dev option implies creating | Theo de Raadt | |
a vnd. Seperate out the code a fair bit. | |||
2019-04-28 | Make sure only "primary" clients can become master. | Mark Kettenis | |
ok jsg@ | |||
2019-04-28 | Quiet down signify, seeing all the OKs scroll by is not helping. | Florian Obser | |
2019-04-28 | Avoid an undefined shift in ASN1_ENUMERATED_get(). | Theo Buehler | |
(same fix as in a_int.c rev 1.34) Fixes oss-fuzz issue #13809 ok beck, jsing | |||
2019-04-28 | Avoid an undefined shift in ASN1_INTEGER_get(). | Theo Buehler | |
Fixes oss-fuzz issue #13804 ok beck, jsing | |||
2019-04-28 | add WITNESS support to barriers modelled on the timeout stuff visa did. | David Gwynne | |
if a taskq takes a lock, and something holding that lock calls taskq_barrier, there's a potential deadlock. detect this as a lock order problem when witness is enable. task_del conditionally followed by taskq_barrier is a common pattern, so add a taskq_del_barrier wrapper for it that unconditionally checks for the deadlock, like timeout_del_barrier. ok visa@ | |||
2019-04-27 | Tweak; work in progress. | rob | |
2019-04-27 | Tweak tests; work in progress. | rob | |
2019-04-27 | switch the example mirror to cdn.openbsd.org | T.J. Townsend | |
2019-04-27 | the installer creates /etc/installurl even if we don't use http for the sets, | T.J. Townsend | |
so update this page accordingly. while here, add sysupgrade to SEE ALSO since it uses installurl too. ok jmc | |||
2019-04-27 | It's timer_pid not timeout_pid | kn | |
There since introduction in 1.18 (2013). OK halex | |||
2019-04-27 | keep the grammatical structure of the options list consistent; | Jason McIntyre | |
2019-04-27 | Use REGRESS_TARGETS et al. | rob | |
2019-04-27 | Only apply sign extension when less than eight bytes have been consumed. This | rob | |
fixes a problem when handling large negative integers. ok claudio@ | |||
2019-04-27 | Add test, update comments, and modify some output. | rob | |
2019-04-27 | drm/ttm: fix out-of-bounds read in ttm_put_pages() v2 | Jonathan Gray | |
From Christian Koenig 96800ba9e565ab752774cd88328f96aed28a1436 in linux 4.19.y/4.19.37 a66477b0efe511d98dde3e4aaeb189790e6f0a39 in mainline linux |