git: 7d4a5de84d5e - main - share/man/man9/pwmbus.9 fix types in arguments

2021-03-11 Thread Emmanuel Vadot
The branch main has been updated by manu: URL: https://cgit.FreeBSD.org/src/commit/?id=7d4a5de84d5e54242edc06573522616869e0b37a commit 7d4a5de84d5e54242edc06573522616869e0b37a Author: Oskar Holmund AuthorDate: 2021-03-11 08:53:26 + Commit: Emmanuel Vadot CommitDate: 2021-03-11 08:5

git: 17b14d8f7733 - main - usr.sbin/pwm/pwm add support for flags

2021-03-11 Thread Emmanuel Vadot
The branch main has been updated by manu: URL: https://cgit.FreeBSD.org/src/commit/?id=17b14d8f7733d39397ae5fc104547e358f5f7ddf commit 17b14d8f7733d39397ae5fc104547e358f5f7ddf Author: Oskar Holmund AuthorDate: 2021-03-11 08:55:23 + Commit: Emmanuel Vadot CommitDate: 2021-03-11 08:5

git: 5e9dae8e149a - main - pf: Factor out pf_krule_free()

2021-03-11 Thread Kristof Provost
The branch main has been updated by kp: URL: https://cgit.FreeBSD.org/src/commit/?id=5e9dae8e149ae8848f52148b665f3a0d031ca40f commit 5e9dae8e149ae8848f52148b665f3a0d031ca40f Author: Kristof Provost AuthorDate: 2021-03-10 10:10:04 + Commit: Kristof Provost CommitDate: 2021-03-11 09:

git: 913e7dc3e0eb - main - pf: Remove redundant kif != NULL checks

2021-03-11 Thread Kristof Provost
The branch main has been updated by kp: URL: https://cgit.FreeBSD.org/src/commit/?id=913e7dc3e0eb7df78ec0e7ecc7dd160a316a3ac6 commit 913e7dc3e0eb7df78ec0e7ecc7dd160a316a3ac6 Author: Kristof Provost AuthorDate: 2021-03-10 14:50:42 + Commit: Kristof Provost CommitDate: 2021-03-11 09:

git: 1645a4ae645f - main - usb: tiny formatting nit

2021-03-11 Thread Warner Losh
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=1645a4ae645fa9b9e3571b7512caa92e73b20635 commit 1645a4ae645fa9b9e3571b7512caa92e73b20635 Author: Warner Losh AuthorDate: 2021-03-11 15:23:32 + Commit: Warner Losh CommitDate: 2021-03-11 15:24:13 +

git: 968079f253c1 - main - vm_reserv: Fix list locking in vm_reserv_reclaim_contig()

2021-03-11 Thread Mark Johnston
The branch main has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=968079f253c11433d47bece4b41b46fcbf985903 commit 968079f253c11433d47bece4b41b46fcbf985903 Author: Mark Johnston AuthorDate: 2021-03-11 15:34:28 + Commit: Mark Johnston CommitDate: 2021-03-11 15:3

git: dc0119c28194 - main - linsysfs: create /sys/bus/ and /sys/subsystem/

2021-03-11 Thread Edward Tomasz Napierala
The branch main has been updated by trasz: URL: https://cgit.FreeBSD.org/src/commit/?id=dc0119c28194b537cfa2ad95ce2e62589da7ceb0 commit dc0119c28194b537cfa2ad95ce2e62589da7ceb0 Author: Edward Tomasz Napierala AuthorDate: 2021-03-08 20:55:44 + Commit: Edward Tomasz Napierala CommitD

git: e52368365db3 - main - config_intrhook: provide config_intrhook_drain

2021-03-11 Thread Warner Losh
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=e52368365db3c0a696b37bfc09d08b7093b41b57 commit e52368365db3c0a696b37bfc09d08b7093b41b57 Author: Warner Losh AuthorDate: 2021-03-11 15:42:09 + Commit: Warner Losh CommitDate: 2021-03-11 16:45:10 +

git: 8423f5d4c127 - main - nvme: use config_intrhook_drain to avoid removable card races

2021-03-11 Thread Warner Losh
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=8423f5d4c127f18e7500bc455bc7b6b1691385ef commit 8423f5d4c127f18e7500bc455bc7b6b1691385ef Author: Warner Losh AuthorDate: 2021-03-11 15:42:44 + Commit: Warner Losh CommitDate: 2021-03-11 16:45:10 +

Re: git: d1cbe7908986 - main - Allocating the LinuxKPI current structure from an interrupt thread must be done using the M_NOWAIT flag after 1ae20f7c70ea .

2021-03-11 Thread John Baldwin
On 3/10/21 2:09 AM, Hans Petter Selasky wrote: On 3/10/21 11:04 AM, Konstantin Belousov wrote: This probably hangs machine instead of panicing. In low memory condition, you do not handle interrupt, which probably mean that the source is not silenced, and after EOI the same interrupt will be gen

Re: git: 1ae20f7c70ea - main - kern: malloc: fix panic on M_WAITOK during THREAD_NO_SLEEPING()

2021-03-11 Thread John Baldwin
On 3/10/21 3:57 AM, Mateusz Guzik wrote: There is something very wrong going on here. Key thing to note is that malloc is ultimately a wrapper around uma_zalloc. Whatever asserts you may want to add to malloc to catch problems sooner, should also present in uma. uma has the following:

Re: git: 1ae20f7c70ea - main - kern: malloc: fix panic on M_WAITOK during THREAD_NO_SLEEPING()

2021-03-11 Thread Bryan Drewery
On 3/11/2021 9:23 AM, John Baldwin wrote: > On 3/10/21 3:57 AM, Mateusz Guzik wrote: ... > I don't know that we've had so many issues that we can't just fix them on > HEAD right now vs having to make this a warning instead of keeping it as > a panic. > Given this isn't a consistency assertion, a

Re: git: d1cbe7908986 - main - Allocating the LinuxKPI current structure from an interrupt thread must be done using the M_NOWAIT flag after 1ae20f7c70ea .

2021-03-11 Thread Hans Petter Selasky
On 3/11/21 6:13 PM, John Baldwin wrote: On 3/10/21 2:09 AM, Hans Petter Selasky wrote: On 3/10/21 11:04 AM, Konstantin Belousov wrote: This probably hangs machine instead of panicing.  In low memory condition, you do not handle interrupt, which probably mean that the source is not silenced, an

Re: git: d1cbe7908986 - main - Allocating the LinuxKPI current structure from an interrupt thread must be done using the M_NOWAIT flag after 1ae20f7c70ea .

2021-03-11 Thread Konstantin Belousov
On Thu, Mar 11, 2021 at 07:17:41PM +0100, Hans Petter Selasky wrote: > On 3/11/21 6:13 PM, John Baldwin wrote: > > On 3/10/21 2:09 AM, Hans Petter Selasky wrote: > > > On 3/10/21 11:04 AM, Konstantin Belousov wrote: > > > > This probably hangs machine instead of panicing.  In low memory > > > > con

Re: git: d1cbe7908986 - main - Allocating the LinuxKPI current structure from an interrupt thread must be done using the M_NOWAIT flag after 1ae20f7c70ea .

2021-03-11 Thread Hans Petter Selasky
On 3/11/21 7:35 PM, Konstantin Belousov wrote: And I dislike this. It is yet another case of introducing consumer-specific logic into core. Isn't netepoch example enough? I presented another patch to Hans, where task and mm allocations are switched to zones, and the zones have reserve applied.

git: c22076b52839 - main - man: Remove obsolete info from hosts man page

2021-03-11 Thread Warner Losh
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=c22076b5283970908e74b3abece53efc4670e87d commit c22076b5283970908e74b3abece53efc4670e87d Author: Warner Losh AuthorDate: 2021-03-11 18:46:10 + Commit: Warner Losh CommitDate: 2021-03-11 18:46:10 +

Re: git: d1cbe7908986 - main - Allocating the LinuxKPI current structure from an interrupt thread must be done using the M_NOWAIT flag after 1ae20f7c70ea .

2021-03-11 Thread Konstantin Belousov
On Thu, Mar 11, 2021 at 07:41:53PM +0100, Hans Petter Selasky wrote: > On 3/11/21 7:35 PM, Konstantin Belousov wrote: > > And I dislike this. It is yet another case of introducing consumer-specific > > logic into core. Isn't netepoch example enough? > > > > I presented another patch to Hans, whe

Re: git: d1cbe7908986 - main - Allocating the LinuxKPI current structure from an interrupt thread must be done using the M_NOWAIT flag after 1ae20f7c70ea .

2021-03-11 Thread Hans Petter Selasky
On 3/11/21 8:04 PM, Konstantin Belousov wrote: On Thu, Mar 11, 2021 at 07:41:53PM +0100, Hans Petter Selasky wrote: On 3/11/21 7:35 PM, Konstantin Belousov wrote: And I dislike this. It is yet another case of introducing consumer-specific logic into core. Isn't netepoch example enough? I pre

git: d28cbb7944e5 - main - development(7): update to reflect Git transition

2021-03-11 Thread Edward Tomasz Napierala
The branch main has been updated by trasz: URL: https://cgit.FreeBSD.org/src/commit/?id=d28cbb7944e5b1015d94a04cadc97d473838611e commit d28cbb7944e5b1015d94a04cadc97d473838611e Author: Edward Tomasz Napierala AuthorDate: 2021-03-11 20:03:30 + Commit: Edward Tomasz Napierala CommitD

git: 2f1cfb7f63ca - main - gmirror: Pre-allocate the timeout event structure

2021-03-11 Thread Mark Johnston
The branch main has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=2f1cfb7f63ca744e7a143896347bdc8606c291d6 commit 2f1cfb7f63ca744e7a143896347bdc8606c291d6 Author: Mark Johnston AuthorDate: 2021-03-11 20:43:04 + Commit: Mark Johnston CommitDate: 2021-03-11 20:4

Re: git: 1ae20f7c70ea - main - kern: malloc: fix panic on M_WAITOK during THREAD_NO_SLEEPING()

2021-03-11 Thread Mateusz Guzik
On 3/11/21, John Baldwin wrote: > On 3/10/21 3:57 AM, Mateusz Guzik wrote: >> There is something very wrong going on here. >> >> Key thing to note is that malloc is ultimately a wrapper around >> uma_zalloc. Whatever asserts you may want to add to malloc to catch >> problems sooner, should also pr

git: ba5de7e93014 - main - SPDX: Spell 4 clause BSD license correctly

2021-03-11 Thread Warner Losh
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=ba5de7e9301438f69ee3532e19d7ec6d496cda05 commit ba5de7e9301438f69ee3532e19d7ec6d496cda05 Author: Warner Losh AuthorDate: 2021-03-11 20:25:55 + Commit: Warner Losh CommitDate: 2021-03-11 21:17:54 +

git: 8a157722e947 - main - Remove README in favor of README.md

2021-03-11 Thread Warner Losh
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=8a157722e947191a63e9108cbfb60ee2605858b4 commit 8a157722e947191a63e9108cbfb60ee2605858b4 Author: Warner Losh AuthorDate: 2021-03-12 00:11:28 + Commit: Warner Losh CommitDate: 2021-03-12 00:14:35 +

git: 2918e9fdb82f - main - readme: update style

2021-03-11 Thread Warner Losh
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=2918e9fdb82ffe5e95cab90a754bc6c2b6dd16a2 commit 2918e9fdb82ffe5e95cab90a754bc6c2b6dd16a2 Author: Warner Losh AuthorDate: 2021-03-12 00:21:16 + Commit: Warner Losh CommitDate: 2021-03-12 00:38:30 +

git: dbd92cc2a491 - main - Fix arch rendering

2021-03-11 Thread Warner Losh
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=dbd92cc2a4915a2070c93cff423314f43edfc841 commit dbd92cc2a4915a2070c93cff423314f43edfc841 Author: Warner Losh AuthorDate: 2021-03-12 00:52:13 + Commit: Warner Losh CommitDate: 2021-03-12 00:52:13 +

git: e75eac2cb81c - main - readme: Link to COPYRIGHT file

2021-03-11 Thread Warner Losh
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=e75eac2cb81c510389f527da14cec4a16123e673 commit e75eac2cb81c510389f527da14cec4a16123e673 Author: Warner Losh AuthorDate: 2021-03-12 00:55:16 + Commit: Warner Losh CommitDate: 2021-03-12 00:55:16 +

git: a491581f3f8d - main - Hyper-V: hn: Enable vSwitch RSC support in hn netvsc driver

2021-03-11 Thread Wei Hu
The branch main has been updated by whu: URL: https://cgit.FreeBSD.org/src/commit/?id=a491581f3f8df07cdff0236bd556895205929af4 commit a491581f3f8df07cdff0236bd556895205929af4 Author: Wei Hu AuthorDate: 2021-03-12 04:35:16 + Commit: Wei Hu CommitDate: 2021-03-12 04:35:16 +

git: 6385cabd5be6 - main - Do not complain about incorrect cylinder group check-hashes when asked to add them to a filesystem.

2021-03-11 Thread Kirk McKusick
The branch main has been updated by mckusick: URL: https://cgit.FreeBSD.org/src/commit/?id=6385cabd5be627c4f395e3abf215882aaeb36320 commit 6385cabd5be627c4f395e3abf215882aaeb36320 Author: Kirk McKusick AuthorDate: 2021-03-12 06:44:33 + Commit: Kirk McKusick CommitDate: 2021-03-12 0