kettenis [Tue, 4 Jul 2017 22:27:23 +0000 (22:27 +0000)]
Ignore entries with specific PCI subvendor/subdevice such that we don't
inadvertedly match the Intel HD Graphics P4000 as a "Quanta transcode"
device.
Thanks to Joe Gidi for figuring out that I inadvertedly brought this back.
Hopefully fixing it this way prevents it from happening again.
nicm [Tue, 4 Jul 2017 22:21:31 +0000 (22:21 +0000)]
< and > keys to scroll preview list left and right in tree mode.
bluhm [Tue, 4 Jul 2017 21:56:05 +0000 (21:56 +0000)]
Fix building the libedit regress programs.
benno [Tue, 4 Jul 2017 21:13:03 +0000 (21:13 +0000)]
delete tokens that have never been used.
From Rob Pierce
ok yacc and gcc
benno [Tue, 4 Jul 2017 21:09:52 +0000 (21:09 +0000)]
rename fetch_state() to fetch_ifstate(). The word "state" is a bit
overloaded in this daemon.
From Rob Pierce
benno [Tue, 4 Jul 2017 21:04:14 +0000 (21:04 +0000)]
Fix some variable alignment whitespace.
From Rob Pierce
schwarze [Tue, 4 Jul 2017 20:59:17 +0000 (20:59 +0000)]
It turns out association of tbl spans with layout rows is simpler than
i thought. Fixing a bug in curs_addch(3) and minus 25 lines of code.
benno [Tue, 4 Jul 2017 20:27:09 +0000 (20:27 +0000)]
if configured, set the ttl (IPV6_UNICAST_HOPS) for ipv6 tcp checks.
From Kapetanakis Giannis, thanks.
ok florian@
ajacoutot [Tue, 4 Jul 2017 20:25:53 +0000 (20:25 +0000)]
Detect upfront whether we have a particular set installed and if not, do *not*
list a matching syspatch as available. This will allow to skip the syspatches
for the X sets for example if we don't have them installed. If we do install
these sets a posteriori, then syspatch *will* list the X syspatches if there are
any.
req. by many
ok robert@
benno [Tue, 4 Jul 2017 19:59:51 +0000 (19:59 +0000)]
make relayd not crash in relay_udp_server() when using a dns relay.
needs revisiting. From Rivo Nurges, thanks.
ok florian@
rpe [Tue, 4 Jul 2017 19:02:11 +0000 (19:02 +0000)]
Switch reorder_kernel() from sending emails to logging via syslog
and to write the logfile inside the kernel compile dir.
- turn the whole reorder_kernel function into a subshell {} -> ()
- create kernel compile dir early on
- redirect all stdout/stderr to a logfile inside this dir
- setup ERR trap handler that
- disables the EXIT trap handler
- syslogs the error and hints to the logfile
- additionally sends this message to the console
- setup EXIT trap handler that syslogs success
- wipe only the content instead of the whole kernel compile dir
- reestablish stdout redirection to the log after the wipe
- remove -q option of sha256 to log check result
- run reorder_kernel() in the background
OK deraadt@ tb@
bluhm [Tue, 4 Jul 2017 18:02:21 +0000 (18:02 +0000)]
Do not add isakmpd obj directory to .PATH. We must compile some
fake objects from regress ourselves.
tedu [Tue, 4 Jul 2017 17:29:51 +0000 (17:29 +0000)]
some of this code was written in an era when spaces cost extra.
add a little breathing room.
florian [Tue, 4 Jul 2017 15:55:22 +0000 (15:55 +0000)]
calculate multiples of 4 smarter; from Klemens Nanni
bluhm [Tue, 4 Jul 2017 15:52:26 +0000 (15:52 +0000)]
It does not make sense to use ioctl(FIONREAD) with TLS as libtls
has already read the buffer from kernel to user land. I have blindly
copied this code from libevent for syslogd(8) TLS, remove it together
with the bug. It caused hangs in ldapd(8).
report, analysis, testing, OK Seiya Kawashima, Robert Klein, gsoares@
florian [Tue, 4 Jul 2017 15:43:38 +0000 (15:43 +0000)]
replace perror(3) with err(3); from Klemens Nanni
schwarze [Tue, 4 Jul 2017 15:33:03 +0000 (15:33 +0000)]
1. mild deprecation notice
2. point to getline (suggested by nicm@)
3. cross reference fgetc(3) rather than putc(3)
4. add missing error handling to the example code
OK nicm@
espie [Tue, 4 Jul 2017 14:54:15 +0000 (14:54 +0000)]
zap .o, put both .c at deraadt@'s request
schwarze [Tue, 4 Jul 2017 14:53:23 +0000 (14:53 +0000)]
Messages of the -Wbase level now print STYLE:. Since this
causes horrible churn anyway, profit of the opportunity to stop
excessive testing, such that this is hopefully the last instance
of such churn. Consistently use OpenBSD RCS tags, blank .Os,
blank fourth .TH argument, and Mdocdate like everywhere else.
Use -Ios=OpenBSD for platform-independent predictable output.
schwarze [Tue, 4 Jul 2017 14:40:30 +0000 (14:40 +0000)]
Printing "BASE:" in messages about violations of base system conventions
is confusing, simply print "STYLE:", which is intuitive and does not
sound excessively alarming; suggested by jmc@, OK tedu@ jmc@.
visa [Tue, 4 Jul 2017 14:33:43 +0000 (14:33 +0000)]
Enable the use of futex(2) in librthread on mips64.
OK mpi@, deraadt@
mpi [Tue, 4 Jul 2017 14:10:15 +0000 (14:10 +0000)]
Revert previous, it exposed two edge cases still requiring the
KERNEL_LOCK().
- radix_node_head are still allocated with malloc(9) and pf_table can
free(9) some.
- pfsync(4) might send some traffic which can exercise IPsec code
Found by bluhm@ and Hrvoje Popovski
espie [Tue, 4 Jul 2017 13:10:13 +0000 (13:10 +0000)]
Should have committed this two days ago, last part that ran during depend
can run normally
mpi [Tue, 4 Jul 2017 12:58:32 +0000 (12:58 +0000)]
Always hold the socket lock when calling sblock().
Implicitely protects `so_state' with the socket lock in sosend().
ok visa@, bluhm@
mpi [Tue, 4 Jul 2017 12:52:48 +0000 (12:52 +0000)]
Assert that the socket lock is held when `so_state' is modified.
ok bluhm@, visa@
mpi [Tue, 4 Jul 2017 12:51:18 +0000 (12:51 +0000)]
Assert that the socket lock is held when `so_qlen' is modified.
ok bluhm@, visa@
florian [Tue, 4 Jul 2017 12:48:36 +0000 (12:48 +0000)]
consistently use the evtimer wrappers around the connection timeout.
this is instead of setting the timeout up with event_set and
event_add, but removing it with evtimer_del. this uses evtimer_set
and evtimer_add.
prompted by dlg's commit to identd
OK dlg
florian [Tue, 4 Jul 2017 12:47:51 +0000 (12:47 +0000)]
Include stdarg.h explicitly instead of relying on event.h to bring it in.
prompted by dlg's commit to identd
OK dlg
espie [Tue, 4 Jul 2017 12:43:07 +0000 (12:43 +0000)]
complete "nodepend" in source
- mix-up between .ALLSRC and .IMPSRC, compile the right gc.c file
- add explicit targets for pre-generated stuff
nicm [Tue, 4 Jul 2017 12:26:14 +0000 (12:26 +0000)]
Handle 0 size of preview box in caller.
anton [Tue, 4 Jul 2017 11:46:15 +0000 (11:46 +0000)]
Backout previous due to a bug discovered by zhuk@ that requires some tinkering
and is not an easy fix for now.
job [Tue, 4 Jul 2017 09:33:36 +0000 (09:33 +0000)]
Add GRACEFUL_SHUTDOWN example to bgpd.conf
OK phessler@
mpi [Tue, 4 Jul 2017 09:00:12 +0000 (09:00 +0000)]
Export our atomic definitions to userland instead of gcc builtins.
ok kettenis@, dlg@
espie [Tue, 4 Jul 2017 08:39:57 +0000 (08:39 +0000)]
generate the parser directly instead of fucking around
anton [Tue, 4 Jul 2017 07:29:32 +0000 (07:29 +0000)]
Add support for pattern substitution to variables in ksh using a common syntax
borrowed from ksh93.
Survived a ports build performed by naddy@ and encouraged by many.
dlg [Tue, 4 Jul 2017 01:09:42 +0000 (01:09 +0000)]
consistently use the evtimer wrappers around the connection timeout.
this is instead of setting the timeout up with event_set and
event_add, but removing it with evtimer_del. this uses evtimer_set
and evtimer_add.
dlg [Tue, 4 Jul 2017 01:07:32 +0000 (01:07 +0000)]
include stdarg.h explicitly instead of relying on event.h to bring it in.
espie [Tue, 4 Jul 2017 00:59:11 +0000 (00:59 +0000)]
let BUILDFIRST just build first, using the same trick guenther@ did in
kernel Makefiles (thank you!), also add lex and yacc generated files to
that list.
Let those lex/yacc variables be defined for bsd.lib.mk as well.
Complete the SRCS -> OBJS hints with the library dependency
This should fix most dependency problems.
Commit now, so that people can check if something else is still amiss.
krw@ agrees
tedu [Tue, 4 Jul 2017 00:30:45 +0000 (00:30 +0000)]
properly adjust the ttl of replies instead of freezing them in time
dlg [Mon, 3 Jul 2017 23:27:53 +0000 (23:27 +0000)]
blacklist MSI on intel m.2 optane parts. it just doesnt work there.
discovered by jmatthew@
tweaks and ok jsg@ kettenis@
bluhm [Mon, 3 Jul 2017 23:05:21 +0000 (23:05 +0000)]
Do not grab the socket lock in doaccept() twice. Pass NOTE_SUBMIT
to KNOTE() as we are already holding the lock. Fixes "panic:
rw_enter: netlock locking against myself" reported by Gregor Best
and reproduced with src/regress/lib/libtls/gotls.
OK millert@
nicm [Mon, 3 Jul 2017 22:48:02 +0000 (22:48 +0000)]
Change session and window preview so that the current window or pane is
always shown.
espie [Mon, 3 Jul 2017 22:21:47 +0000 (22:21 +0000)]
no need to generate y.tab.h if nothing uses it, set YFLAGS to nothing
instead of CLEANFILES += y.tab.h
okay millert@
krw [Mon, 3 Jul 2017 22:06:11 +0000 (22:06 +0000)]
sizeof(struct sockaddr_in) != sizeof(struct in_addr).
Fix construction of the unicast UDP packets being sent
out via sendmsg(). Accidentally broken in r1.32 (5.6)
when types were juggled.
ok bluhm@
bluhm [Mon, 3 Jul 2017 19:35:06 +0000 (19:35 +0000)]
Add more checks and debug info to identify the sporadic test failures.
claudio [Mon, 3 Jul 2017 19:23:47 +0000 (19:23 +0000)]
Both PF_ROUTE and PF_KEY need to start to take care of their own PCB list
to simplify the locking of those lists. For now move the LIST_ENTRY from
rawcb into routecb and in the pfkey case a new keycb. Do some cleanup and
renaming in the pfkey code but more to come.
OK bluhm@ mpi@
florian [Mon, 3 Jul 2017 19:02:04 +0000 (19:02 +0000)]
s/log_warn/log_warnx/ where errno is not set
benno [Mon, 3 Jul 2017 18:45:34 +0000 (18:45 +0000)]
Remove obvious clear_config() comments and misleading state_change() comments.
Also relocate do_action() calls for the init block from change_state() to
occur with the corresponding do_action() calls for the body block.
From Rob Pierce
ok stsp@ and i
bluhm [Mon, 3 Jul 2017 18:19:55 +0000 (18:19 +0000)]
Generate source and header files for regress on demand.
OK espie@
schwarze [Mon, 3 Jul 2017 17:33:01 +0000 (17:33 +0000)]
report trailing delimiters after macros where they are usually a mistake;
the idea came up in a discussion with Thomas Klausner <wiz at NetBSD>
visa [Mon, 3 Jul 2017 16:37:07 +0000 (16:37 +0000)]
Use copyin32() instead of copyin() in RDHWR emulation.
This reduces emulation time about 5%.
tedu [Mon, 3 Jul 2017 16:36:48 +0000 (16:36 +0000)]
don't bother caching invalid or very short lived responses
bluhm [Mon, 3 Jul 2017 16:24:51 +0000 (16:24 +0000)]
Link all lib regress tests to the build.
espie [Mon, 3 Jul 2017 15:17:11 +0000 (15:17 +0000)]
allows working without depends, as discovered and discussed with drahn@
okay drahn@
espie [Mon, 3 Jul 2017 15:11:02 +0000 (15:11 +0000)]
re-add dependencies from SRCS to corresponding OBJS.
the old mkdep run did walk the SRCS list and write those as a side-effect.
Without this, bsd.prog.mk .SUFFIXES order will have OBJS depend on the
wrong src file.
Causes of the alpha/stand/bootxx breakage.
jmc [Mon, 3 Jul 2017 14:30:11 +0000 (14:30 +0000)]
markup fixes;
schwarze [Mon, 3 Jul 2017 13:40:00 +0000 (13:40 +0000)]
warn about time machines; suggested by Thomas Klausner <wiz @ NetBSD>
naddy [Mon, 3 Jul 2017 13:26:04 +0000 (13:26 +0000)]
merge error, revealed by clang; ok kettenis@
nicm [Mon, 3 Jul 2017 12:38:50 +0000 (12:38 +0000)]
Change previous to not wait for both process exit and pty close -
instead if there is a pipe-pane active, do not exit until all data is
read (including any libevent hasn't seen yet). Fixes problem reported by
Theo Buehler and still seems to solve the original issue.
schwarze [Mon, 3 Jul 2017 11:21:23 +0000 (11:21 +0000)]
Remove mdoclint(1) from the tree.
All functionality is now covered by mandoc -Tlint.
OK jmc@ wiz@
tedu [Mon, 3 Jul 2017 09:39:48 +0000 (09:39 +0000)]
check that a cachehit hasn't expired before using it.
kevlo [Mon, 3 Jul 2017 09:21:09 +0000 (09:21 +0000)]
Replace slot time durations with macros.
ok stsp@
mpi [Mon, 3 Jul 2017 08:31:39 +0000 (08:31 +0000)]
Protect `so_state', `so_snd' and `so_rcv' with the socket lock in
kqueue filters.
ok millert@, bluhm@, visa@
mpi [Mon, 3 Jul 2017 08:29:24 +0000 (08:29 +0000)]
Protect `so_state', `so_error' and `so_qlen' with the socket lock in
kqueue filters.
ok millert@, bluhm@, visa@
visa [Mon, 3 Jul 2017 08:27:59 +0000 (08:27 +0000)]
Note arm64 and armv7.
mpi [Mon, 3 Jul 2017 08:27:07 +0000 (08:27 +0000)]
Not all sockets require the NET_LOCK(). So use solock() instead in
fifo_close().
ok millert@, visa@
visa [Mon, 3 Jul 2017 08:23:36 +0000 (08:23 +0000)]
Update attachment on octeon.
visa [Mon, 3 Jul 2017 08:17:20 +0000 (08:17 +0000)]
Attach com(4) using fdt on octeon.
The relevant part of uartbus(4) is made part of the com(4) glue
to avoid extra maneuvers in the code.
nicm [Mon, 3 Jul 2017 08:16:03 +0000 (08:16 +0000)]
Do not close panes until process has exited and any outstanding data
has been written to the pipe-pane event if there is one. GitHub issue 991.
mpi [Mon, 3 Jul 2017 08:11:21 +0000 (08:11 +0000)]
Drop the KERNEL_LOCK() in pf_purge_thread().
The NET_LOCK() is currently what guarantees that accesses to PF data
structures are serialized.
While here use rwsleep(9) instead of calling NET_LOCK()/NET_UNLOCK()
for every iteration.
Tested by Hrvoje Popovski, ok sashan@, visa@
nicm [Mon, 3 Jul 2017 08:08:30 +0000 (08:08 +0000)]
Try C.UTF-8 which is also a commonly useful locale on some platforms,
from Romain Francoise.
visa [Mon, 3 Jul 2017 07:58:42 +0000 (07:58 +0000)]
Add the first UART into the fdt blob.
espie [Mon, 3 Jul 2017 07:54:18 +0000 (07:54 +0000)]
explicitly pass -MD -MP in DFLAGS, so that even if CFLAGS are forced
on the command line, things will still work
bentley [Mon, 3 Jul 2017 07:01:14 +0000 (07:01 +0000)]
Remove settings that were unimplemented for 20 years; update STANDARDS.
ok jmc@ natano@
dlg [Mon, 3 Jul 2017 06:33:24 +0000 (06:33 +0000)]
regen
dlg [Mon, 3 Jul 2017 06:32:54 +0000 (06:32 +0000)]
intel optanes are a thing
espie [Mon, 3 Jul 2017 00:17:52 +0000 (00:17 +0000)]
be explicit in the lex/yacc dependencies
reluctant okay deraadt@
deraadt [Sun, 2 Jul 2017 23:19:07 +0000 (23:19 +0000)]
whitespace
schwarze [Sun, 2 Jul 2017 21:17:12 +0000 (21:17 +0000)]
If a single page references the same non-existent manual more than
once, print "(N times)" after the message "referenced manual not
found", to lessen the risk that people fix the first instance and
miss the others; jmc@ confirmed that this is useful.
kettenis [Sun, 2 Jul 2017 20:58:55 +0000 (20:58 +0000)]
Enable MIPI/DSI support for inteldrm(4). Makes the display on my ASUS
Transformer Book T100HA work (with some ugly error/warning messages).
mlarkin [Sun, 2 Jul 2017 19:49:31 +0000 (19:49 +0000)]
re-enable PAT
discussed with deraadt a month or so ago, this has been sitting in my
tree since then.
tobias [Sun, 2 Jul 2017 19:06:12 +0000 (19:06 +0000)]
Fixed a typo in error message.
ok jmc@
espie [Sun, 2 Jul 2017 18:11:28 +0000 (18:11 +0000)]
repair the tree, make sure y.tab.h is there before compiling yacc files.
problem noticed by deraadt@
espie [Sun, 2 Jul 2017 17:55:14 +0000 (17:55 +0000)]
somehow, I did NOT commit the patch I sent to tb@. Matthieu noticed it.
commit the right DEPS definition.
espie [Sun, 2 Jul 2017 17:03:45 +0000 (17:03 +0000)]
document new depends somewhat.
I asked jmc, told me to go ahead and he'd review it when he can.
schwarze [Sun, 2 Jul 2017 15:31:48 +0000 (15:31 +0000)]
add warning "cross reference to self"; inspired by mdoclint
benno [Sun, 2 Jul 2017 15:28:26 +0000 (15:28 +0000)]
Second diff to rename additional "always" variable in struct ifsd_config.
from Rob Pierce.
Requested by stsp@
kevlo [Sun, 2 Jul 2017 14:48:19 +0000 (14:48 +0000)]
Add the definition of IEEE80211_DUR_DS_SHSLOT.
From IEEE Std. 802.11-2016, Table 18-5 "ERP characteristics", p. 2332:
aSlotTime characteristic:
If dont11OperatingClassesRequired is false:
Long = 20 us
Short = 9 us
ok stsp@
benno [Sun, 2 Jul 2017 14:30:35 +0000 (14:30 +0000)]
Remove unused variable from header file.
from Rob Pierce.
ok stsp@ and me
benno [Sun, 2 Jul 2017 14:28:45 +0000 (14:28 +0000)]
Remove variable assignment in declaration and add whitespace to improve
readability. No functional change.
from Rob Pierce.
ok stsp@ and me
benno [Sun, 2 Jul 2017 14:27:30 +0000 (14:27 +0000)]
Rename one of the "always" variables to "body" for improved readability.
No functional change.
from Rob Pierce.
ok stsp@ and me
rpe [Sun, 2 Jul 2017 12:45:43 +0000 (12:45 +0000)]
Shorter version of the same.
based on a mail from Klemens Nanni on tech@
rpe [Sun, 2 Jul 2017 11:53:35 +0000 (11:53 +0000)]
Tweak comment
rpe [Sun, 2 Jul 2017 11:52:44 +0000 (11:52 +0000)]
NIFS is checked inside start_cgiinfo() already.
No need to do this check twice.
from Klemens Nanni
brynet [Sun, 2 Jul 2017 10:58:15 +0000 (10:58 +0000)]
Replace fgetln with POSIX getline, even though file was using fgetln in
the idiomatic safe way. Also, check for stream errors with ferror and
err(1, "") in that case.
with feedback from joerg@, schwarze@, nicm@
ok nicm "code is shorter anyway", and joerg@ for an earlier diff
krw [Sun, 2 Jul 2017 09:11:13 +0000 (09:11 +0000)]
Unbreak tree by putting revised resolv_conf_priority() declaration in
correct place and passing the invocation the correct parameters.
Noticed by & initial diff from matthieu@
visa [Sun, 2 Jul 2017 07:46:05 +0000 (07:46 +0000)]
Fix the set of octmmc.4.
visa [Sun, 2 Jul 2017 07:42:58 +0000 (07:42 +0000)]
sync
visa [Sun, 2 Jul 2017 07:27:16 +0000 (07:27 +0000)]
Add octciu(4) manual page.
krw [Sat, 1 Jul 2017 23:27:55 +0000 (23:27 +0000)]
Eliminate multiple socket openings/closings and pass
fd'd from main loops as required. One socket to do
ioctl's per process (called ioctlfd) and one socket to
do route messages per socket (called routefd).
Clean up local variable declaration lists in passing.