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
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
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:
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:
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 +
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
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
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 +
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 +
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
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:
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
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
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
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.
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 +
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
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
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
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
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
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 +
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 +
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 +
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 +
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 +
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 +
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
28 matches
Mail list logo