summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-04-30Convert a linux specific test for master in currently disabled code.Jonathan Gray
2019-04-30Add 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-29Make v[46]_info() return all the interface flags instead of justKenneth 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-29Install upgrade kernel with ln -f, as per kernel build. ok florian@Ian Darwin
2019-04-29Add '*' to disklabel(8) editor prompt when in-memory copy of disklabelKenneth 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-29Switched 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-29Remove unnecessary end-of-contents octets.rob
ok claudio@
2019-04-29These Makefile.inc are now empty and unused.Theo de Raadt
2019-04-29TOPDIR and TOP are not neccessary.Theo de Raadt
2019-04-29MC146818_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-29Extend 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-29Add support for keys to jump between matching brackets - C-M-f and C-M-bNicholas Marriott
in emacs, % in vi. Suggested by and help from Chris Barber in GitHub issue 1666.
2019-04-29Check that depend on interfaces are in the same rdomain. If they are notremi
the daemon wouldn't notice state changes for those interfaces. ok benno@
2019-04-29tr_unit is unused, so gc itDavid Gwynne
2019-04-29don'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-29remove the abstraction REV on top of abstraction OSrev which is alwaysTheo de Raadt
the sme.
2019-04-29Update to reflect change of default ruby version to ruby 2.6Jeremy Evans
2019-04-28Add unit tests for user@host and URI parsing.Darren Tucker
2019-04-28reduce delta with ../ramdisk/listTheo de Raadt
2019-04-28Removes 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-28Support multiple occurances of the same argument. Use this for a newNicholas 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-28Fix reading route entries via kvm(3).Martin Pieuchot
From Naoki Fukaumi, ok yasuoka@, sthen@
2019-04-28oops, repair some BSDRD confusionTheo de Raadt
2019-04-28cleanup the situation around "df -i"Theo de Raadt
2019-04-28fix misplaced hyphen in usage();Jason McIntyre
2019-04-28incorporate GZIPFLAGS into place everywhereTheo de Raadt
2019-04-28Oops; hardcode instbin directlyTheo de Raadt
2019-04-28Cull BSDRD variables which are always bsd.rdTheo de Raadt
2019-04-28NEWFS_WILL_FAIL is a ridiculous unused artifact.Theo de Raadt
2019-04-28CBIN variable is also pointless, it is always "instbin". Rather thanTheo de Raadt
having two mysterious names, let's settle on one.
2019-04-28the BSD_RD variable is pointlessTheo de Raadt
2019-04-28the bufcachepercent=80 experiment has exposed a few problems...Theo de Raadt
2019-04-28Use new vnconfig vnd-auto-allocate mode. Resolve some variation betweenTheo 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-28Remove need for -A option, lack of a vnd_dev option implies creatingTheo de Raadt
a vnd. Seperate out the code a fair bit.
2019-04-28Make sure only "primary" clients can become master.Mark Kettenis
ok jsg@
2019-04-28Quiet down signify, seeing all the OKs scroll by is not helping.Florian Obser
2019-04-28Avoid 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-28Avoid an undefined shift in ASN1_INTEGER_get().Theo Buehler
Fixes oss-fuzz issue #13804 ok beck, jsing
2019-04-28add 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-27Tweak; work in progress.rob
2019-04-27Tweak tests; work in progress.rob
2019-04-27switch the example mirror to cdn.openbsd.orgT.J. Townsend
2019-04-27the 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-27It's timer_pid not timeout_pidkn
There since introduction in 1.18 (2013). OK halex
2019-04-27keep the grammatical structure of the options list consistent;Jason McIntyre
2019-04-27Use REGRESS_TARGETS et al.rob
2019-04-27Only apply sign extension when less than eight bytes have been consumed. Thisrob
fixes a problem when handling large negative integers. ok claudio@
2019-04-27Add test, update comments, and modify some output.rob
2019-04-27drm/ttm: fix out-of-bounds read in ttm_put_pages() v2Jonathan Gray
From Christian Koenig 96800ba9e565ab752774cd88328f96aed28a1436 in linux 4.19.y/4.19.37 a66477b0efe511d98dde3e4aaeb189790e6f0a39 in mainline linux