Age | Commit message (Collapse) | Author |
|
|
|
some values are strings now, which makes it hard to read when these
values are next to the label for the next field.
|
|
pre-reset steps described in Intel's datasheet and also their driver code.
ok dlg@
|
|
mean we should no longer trust processes, so we call fatal(x). The
control socket is the exception, where we ignore rather than allow
crashes due to data from the outside.
suggestion/input and OK florian@
|
|
|
|
|
|
|
|
|
|
previous commit message:
When closing the slave end of a pty, generate an EOF event to any kqueue
consumer of the master end. This behavior is equivalent to how pipes
already behave with kqueue. Also, FreeBSD and NetBSD behaves the same
way.
ok deraadt@ millert@ visa@
|
|
vm console. Instead, wait for the controlling end of the pty to become
writeable, which implies that the slave end is connected. A recent
change to the kqueue pty implementation caused vmd to hammer the log due
to constantly hitting EOF while reading from the pty since the slave end
was disconnected.
Issue found the hard way by mlarkin@ and tb@
ok mlarkin@
|
|
military one)
from Jerome Pinot
|
|
die or exit, but *only* if those are the CORE operations.
make State silent in a context that overrides exit (say, DBI) by using
exec ... or exit instead
(using CORE::exit would be worse, since we want to keep the override)
|
|
tweak and OK florian@
|
|
input and OK florian@
|
|
going on so use log_warnx to not print a useless 2nd error message.
OK pamela
|
|
based on a patch by Christos@ Zoulas at NetBSD
|
|
instead of an mpe and mpw section, have an MPLS section that talks
about mpe, mpw, and mpip.
|
|
no functional change
|
|
the ioctl mpw.4 described is going away, and the examples are
different now cos ifconfig is different, and there's some RFCs it
implements.
|
|
no ioctls yet
|
|
to reset/enable MCU
- there's no need to enable 1.2V power for rtl8192eu
ok jmatthew@
|
|
|
|
|
|
|
|
i wanted to know if some devices are pci bridges or hosts, and found
looking up the values in pcireg.h to be a bit tedious.
|
|
|
|
This will simplify upcoming MP-safety diffs for the timecounting layer.
adjtimedelta is now accessed nowhere outside of kern_tc.c, so we can
remove its extern declaration from kernel.h. Zeroing adjtimedelta
within timecounter_mtx before we jump the real-time clock is also a
bit safer than what we do now, as we are not racing a simultaneous
tc_windup() call from hardclock(), which itself can modify adjtimedelta
via ntp_update_second().
Discussed with visa@ and mpi@.
ok visa@
|
|
uudecode(1) and uuencode(1) do nothing locale-dependent.
While here, sort headers, make usage() static, return from main()
rather than exit(3), and drop two redundant case statements.
This is a minimally tweaked version of a patch from Jan Stary.
OK tedu@
|
|
Spell uses nothing locale-dependent, and it will never need support
for non-English characters because the basic algorithms used are
specific to the English language in the first place.
While here, make usage() static and return from main() rather than exit(3).
Minimially tweaked diff originally from Jan Stary.
OK tedu@
|
|
with %F and %T, neither of which is locale-dependent, and nothing
else in the code depends on the locale either, since most of the
parsing is done by hand and only supports numerical formats in the
first place.
While here, make usage() static and return from main rather than exit(3).
Patch from Jan Stary <hans at stare dot cz>.
tedu@ agrees.
|
|
because CRYPTO_set_locking_callback() is now a no-op
and was never documented in the first place;
no text change;
requested by jmc@ long ago
|
|
and that don't do anything in OpenSSL either;
no significant amount of text remains from OpenSSL, so change the
Copyright information and license of CRYPTO_set_locking_callback.3;
OK inoguchi@ jmc@
|
|
patch from Alessandro dot Gallo at syssegv dot org
|
|
This reduces the need of atomic operations. The lookup tree still
requires serialization, though.
|
|
|
|
|
|
type for EPT
Noticed by Guillaume Pagnoux and myself while cleaning up some old bugs.
|
|
tc_windup() is not necessarily called with KERNEL_LOCK, so it is possible
for the timecounter pointer to change in the midst of the call via the
kern.timecounter.hardware sysctl(2). Reading it once and using that local
copy ensures we're referring to the same timecounter consistently.
Apparently the compiler can optimize this out... somehow... so there may
be room for improvement.
Idea from visa@. With input from visa@, mpi@, cjeker@, and guenther@.
ok visa@ mpi@
|
|
things more readable. otto notes that free() does some checks, but
in this case readability is better than complete cleanup.
ok florian@ deraadt@
|
|
Omission noticed by espie@ long ago, and wording tweaked by jmc@.
|
|
the contents of its argument (on other platforms). Also strdup() the result,
because basename returns a pointer to static memory.
ok florian@
|
|
'announce inet none' should only clear AFI/SAFI pairs where the AFI is
inet.
OK benno@
|
|
OK guenther@
|
|
done by the compiler.
OK guenther@
|
|
(it does not on OpenBSD) so we need to us a copy of the string. In
addition, copy the result of dirname() as well, because it's static
storage and if we call dirname() again it will be overwritten.
Original problem noted and fix suggested by Wolf (wolf AT wolfsden DOT
cz)
ok florian@
|
|
ok visa@
|
|
This will help for future (un)locking.
ok visa@
|
|
shared one manpage.
ok florian@
|
|
|
|
ACPI method for screen backlight changes everywhere and if the ACPI
method fails, fallback on the CMOS method.
also unmask the mic mute event needed on the x260.
required for the x260, no regression on the x40, x230, x250, x280,
t460s, t470p, and x1c6.
|