[Bug 252874] pf cant't bind interface dynamically

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252874 Mark Linimon changed: What|Removed |Added Assignee|b...@freebsd.org|p...@freebsd.org -- You are receiv

[Bug 252874] pf cant't bind interface dynamically

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252874 Bug ID: 252874 Summary: pf cant't bind interface dynamically Product: Base System Version: 12.2-STABLE Hardware: Any OS: Any Status: New Severity: A

[Bug 252760] WITHOUT_LIBTHR and WITHOUT_LIBPTHREAD build options fail on lib/libgcc_s and lib/libthr

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252760 Michael Dexter changed: What|Removed |Added Status|New |Closed Resolution|---

[Bug 252760] WITHOUT_LIBTHR and WITHOUT_LIBPTHREAD build options fail on lib/libgcc_s and lib/libthr

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252760 --- Comment #2 from Michael Dexter --- At the risk that this has not been said, thank you Kyle. -- You are receiving this mail because: You are on the CC list for the bug. ___ freebsd-bugs@freeb

[Bug 252760] WITHOUT_LIBTHR and WITHOUT_LIBPTHREAD build options fail on lib/libgcc_s and lib/libthr

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252760 Kyle Evans changed: What|Removed |Added URL||https://reviews.freebsd.org

[Bug 252663] tcsh history file is not merged

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252663 --- Comment #1 from Osamu Matsuda --- According to https://github.com/tcsh-org/tcsh/blob/master/Fixes, the latest tcsh 6.22.03 includes "Fixed reversed test that broke history merging" The source for 6.22.03 taken from https://github.com/t

[Bug 25278] [patch] bs accepts -s -c but not -sc

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=25278 Ganael LAPLANCHE changed: What|Removed |Added Blocks|252868 | Referenced Bugs: https://bugs

[Bug 25278] [patch] bs accepts -s -c but not -sc

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=25278 Ganael LAPLANCHE changed: What|Removed |Added Blocks||252868 Referenced Bugs: https:

[Bug 252761] multichannel USB audio device reports only 2 channels via SNDCTL_AUDIOINFO

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252761 --- Comment #5 from Ed Maste --- That's not directly the cause of the assertion though, the values involved in the assertion expression: firstChannel=0 channelCount=18 bp->inputChannelCount=2 -- You are receiving this mail because: You ar

[Bug 252227] Default value of vm.max_wired is too low in 12.2

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252227 --- Comment #5 from VVD --- https://cgit.freebsd.org/src/commit/sys/vm/vm_pageout.c?id=54a3a1142189f60edfbbdfb0e1f4085e2d30c115 https://cgit.freebsd.org/src/commit/sys/vm/vm_pageout.c?id=97458520cc15b26edbf5d5cd5ed54c3253dfa21c -- You are

[Bug 252227] Default value of vm.max_wired is too low in 12.2

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252227 VVD changed: What|Removed |Added See Also||https://reviews.freebsd.org

[Bug 252761] multichannel USB audio device reports only 2 channels via SNDCTL_AUDIOINFO

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252761 --- Comment #4 from Ed Maste --- Looks like PA OSS only tries up to 16 channels: https://github.com/PortAudio/portaudio/blob/master/src/hostapi/oss/pa_unix_oss.c#L358 /* Negotiate for the maximum number of channels for this device. PL

[Bug 252866] WITH_OPENLDAP build option fails on missing file lber.h

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252866 --- Comment #1 from Michael Dexter --- Related: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=182546 -- You are receiving this mail because: You are the assignee for the bug. ___ freebsd-bug

[Bug 252866] WITH_OPENLDAP build option fails on missing file lber.h

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252866 Bug ID: 252866 Summary: WITH_OPENLDAP build option fails on missing file lber.h Product: Base System Version: CURRENT Hardware: Any OS: Any

[Bug 252865] WITH_OFED_EXTRA build option fails with multiple errors

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252865 Bug ID: 252865 Summary: WITH_OFED_EXTRA build option fails with multiple errors Product: Base System Version: CURRENT Hardware: Any OS: Any

[Bug 252227] Default value of vm.max_wired is too low in 12.2

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252227 --- Comment #4 from VVD --- (In reply to VVD from comment #3) Fast fix. 1GB max reserved from wired ram: -vm_page_max_user_wired = 4 * freecount / 5; +vm_page_max_user_wired = freecount - min(freecount, 5 * 1024 * 1024 * 1024 / PAGE_SIZE)

[Bug 252227] Default value of vm.max_wired is too low in 12.2

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252227 --- Comment #3 from VVD --- 1GB max reserved from wired ram: -vm_page_max_user_wired = 4 * freecount / 5; +vm_page_max_user_wired = freecount - min(freecount, 5 * 1048576 / PAGE_SIZE) / 5; -- You are receiving this mail because: You are t

[Bug 252863] ipmi watchdog does not reset after being triggered

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252863 --- Comment #1 from j...@transactionware.com --- Identical behaviour on a Supermicro X11SPA-T. -- You are receiving this mail because: You are the assignee for the bug. ___ freebsd-bugs@freebsd.o

[Bug 252863] ipmi watchdog does not reset after being triggered

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252863 Bug ID: 252863 Summary: ipmi watchdog does not reset after being triggered Product: Base System Version: 12.2-RELEASE Hardware: Any OS: Any Status: New

[Bug 252227] Default value of vm.max_wired is too low in 12.2

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252227 Kyle Evans changed: What|Removed |Added CC||kev...@freebsd.org,

Investissez dans la Construction de Crèche avec Rentabilité Fixe 7% /An !

2021-01-20 Thread Investissement Micro Crèche via freebsd-bugs
[ ] [ http://tracker.acx.im/redirect/?u=gdf0egf0eibh0bccdg0cecbgj0a&redirect=https%3A%2F%2Fwww.investissement-micro-creches.com%3Fsourcetag%3D8455978a%26advc%3D635-465-4817-12236-242169-0 ] [ ] [ http://tracker.acx.im/redirect/?u=gdf0egf0eibh0bccdg0cecbgj0b&redirect=https%3A%2

[Bug 218598] pwait deadlocks on its own pid

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=218598 Mateusz Piotrowski <0...@freebsd.org> changed: What|Removed |Added CC||0...@freebsd

[Bug 250593] Add a manual page for gzero(4) (GEOM zero)

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=250593 Mateusz Piotrowski <0...@freebsd.org> changed: What|Removed |Added Status|New |Open

[Bug 252860] arm64 PT_GETDBREGS does not expose watchpoint registers

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252860 Bug ID: 252860 Summary: arm64 PT_GETDBREGS does not expose watchpoint registers Product: Base System Version: CURRENT Hardware: arm64 OS: Any

[Bug 252858] calloc manual page has become useless

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252858 Bug ID: 252858 Summary: calloc manual page has become useless Product: Documentation Version: Latest Hardware: Any OS: Any Status: New Severity: Aff

[Bug 252856] Manpage missing for if_ue(4)

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252856 Li-Wen Hsu changed: What|Removed |Added Status|New |Open Assignee|b...@freebsd.

[Bug 252856] Manpage missing for if_ue(4)

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252856 Bug ID: 252856 Summary: Manpage missing for if_ue(4) Product: Documentation Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Many

[Bug 252855] nscd(8) does not cache DNS

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252855 Bug ID: 252855 Summary: nscd(8) does not cache DNS Product: Base System Version: 12.1-RELEASE Hardware: amd64 OS: Any Status: New Severity: Affects

[Bug 252853] WITH_HESIOD build option fails on /usr/src/lib/libc

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252853 --- Comment #1 from Michael Dexter --- FYI: https://en.wikipedia.org/wiki/Hesiod_(name_service) This option worked in 11.0R and 12.1R, and 13-CURRENT 20191205-r355406 -- You are receiving this mail because: You are the assignee for the b

[Bug 252853] WITH_HESIOD build option fails on /usr/src/lib/libc

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252853 Bug ID: 252853 Summary: WITH_HESIOD build option fails on /usr/src/lib/libc Product: Base System Version: CURRENT Hardware: Any OS: Any Status: New

[Bug 252850] Netmap doesn't update default packet statistics for management entities

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252850 Bug ID: 252850 Summary: Netmap doesn't update default packet statistics for management entities Product: Base System Version: CURRENT Hardware: Any OS