[Bug 204521] [new driver] [request] Port rtsx from OpenBSD to FreeBSD

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204521 Zeus Panchenko changed: What|Removed |Added Attachment #215874|text/x-log |text/plain mime type|

[Bug 204521] [new driver] [request] Port rtsx from OpenBSD to FreeBSD

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204521 --- Comment #262 from Zeus Panchenko --- (In reply to Henri Hennebert from comment #260) still the same (inversion and keyboard freeze on kldload and card insert/remove) 1. git pull (to commit 415995a) 2. make clean; make 3. sysctl debug.

[Bug 247494] sort(1) order affected by LC_CTYPE

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247494 Bug ID: 247494 Summary: sort(1) order affected by LC_CTYPE Product: Base System Version: 12.1-STABLE Hardware: Any OS: Any Status: New Severity: Aff

[Bug 204521] [new driver] [request] Port rtsx from OpenBSD to FreeBSD

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204521 --- Comment #263 from Henri Hennebert --- (In reply to Zeus Panchenko from comment #262) I try to go back to d605a27 step by step Just test 106fb99 without bootverbose=1. I go step by step because I want to pinpoint the problem of inve

[Bug 247472] /var/db/entropy not created with correct user/group

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247472 --- Comment #2 from Rajeev Pillai --- (In reply to Kyle Evans from comment #1) > Some questions to try and narrow the problem down: > > 1.) Are you installing from official install meia, or a custom build? Official media > For official me

[Bug 247498] vd_kbstate not getting reset after keyboard detach/attach?

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247498 Bug ID: 247498 Summary: vd_kbstate not getting reset after keyboard detach/attach? Product: Base System Version: 12.1-RELEASE Hardware: Any OS: Any

[Bug 247411] killall does not kill processes if -d is specified

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247411 Fernando Apesteguía changed: What|Removed |Added CC||fern...@freebsd.org

Kişisel Verilerin Korunması Kanunu (KVKK)

2020-06-23 Thread Türkiye Sermaye Piyasaları Birliği
TSPB Birlikte Eğitim Mesleki Gelişim Eğitimleri Bülteni Daha İyi Görüntülemek İçin Tıklayın [http://track-6.n-mail-3.com/0001D2389707|01119990485b4d55f5b11034a73625947252|01015230|1101469|2366.html]TSPB Birlikte Eğitim Mesleki Gelişim Eğitimleri "Kişisel Verilerin Korunması Kanunu" - On

[Bug 247494] sort(1) order affected by LC_CTYPE

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247494 --- Comment #1 from Conrad Meyer --- On CURRENT: $ LC_CTYPE=ja_JP.UTF-8 LC_COLLATE=C LANG=C locale LANG=C LC_CTYPE=ja_JP.UTF-8 LC_COLLATE="C" LC_TIME="C" LC_NUMERIC="C" LC_MONETARY="C" LC_MESSAGES="C" LC_ALL= sort(1) attempts to identify

[Bug 247494] sort(1) order affected by LC_CTYPE

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247494 --- Comment #2 from Conrad Meyer --- I think the lengths printed in the bad example are correct; that is a measure of wchar_t's, whereas in LC_CTYPE=C, the length is in bytes. So it seems like it is a comparison problem. I think we invoke

[Bug 247494] sort(1) order affected by LC_CTYPE

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247494 --- Comment #3 from Conrad Meyer --- (From mergesort, offset=1 is also wrong in LC_CTYPE=C. It should be offset=0.) Probably we need to substract one from the radix level. But that is not the only problem. -- You are receiving this mai

[Bug 247494] sort(1) order affected by LC_CTYPE

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247494 --- Comment #4 from Conrad Meyer --- Ok, so radix sort only goes byte-at-a-time; we can't allocate memory for all wchar_t space (4 GB). Here are the wchar_t representations of the two characters: echo 耳脳 | iconv -f utf-8 -t ucs-4 | hd 000

[Bug 247494] sort(1) order affected by LC_CTYPE

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247494 --- Comment #5 from Conrad Meyer --- Hm we actually do bucket same-byte values in add_to_sublevel. Why do we call strcmp eventually? ah: 379 default: 380 if (TINY_NODE(sl) || (sl->level > 15)) { 381

[Bug 247494] sort(1) order affected by LC_CTYPE

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247494 --- Comment #6 from Conrad Meyer --- This patch fixes (2), but not (1): @@ -258,14 +259,28 @@ add_leaf(struct sort_level *sl, struct sort_list_item *item) static inline int get_wc_index(struct sort_list_item *sli, size_t level) { +

[Bug 247494] sort(1) order affected by LC_CTYPE

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247494 --- Comment #7 from Conrad Meyer --- Also, I don't think there is any reason to degrade to mergesort if radix level is > 15, but that is an unrelated change. -- You are receiving this mail because: You are the assignee for the bug. __

[Bug 247494] sort(1) order affected by LC_CTYPE

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247494 --- Comment #8 from Conrad Meyer --- With this second patch: (echo 耳 ; echo 脳 ; echo 耳) | LC_CTYPE=ja_JP.UTF-8 LC_COLLATE=C LANG=C sort --radixsort --debug Using collate rules of C locale Byte sort is used sort_method=radixsort ; k1=<耳>(1)

[Bug 247494] sort(1) order affected by LC_CTYPE

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247494 Conrad Meyer changed: What|Removed |Added Version|12.1-STABLE |CURRENT Assignee|b...@fre

[Bug 247498] vd_kbstate not getting reset after keyboard detach/attach?

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247498 Mark Linimon changed: What|Removed |Added Keywords||vt -- You are receiving this mail

[Bug 204521] [new driver] [request] Port rtsx from OpenBSD to FreeBSD

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204521 --- Comment #264 from gn...@justmail.de --- (In reply to Henri Hennebert from comment #256) (In reply to Henri Hennebert from comment #260) I can report partial success for 106fb99f7c54616c3e853d942be4c2faf81c6d0b. There was a bug with RTSX

[Bug 204521] [new driver] [request] Port rtsx from OpenBSD to FreeBSD

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204521 --- Comment #265 from Henri Hennebert --- (In reply to gnikl from comment #264) First thank you for your test! The RTSX_REVERSE_SOCKET is of no use here because it is only set in vendor settings. The important diff are: diff --git a/rts

[Bug 204521] [new driver] [request] Port rtsx from OpenBSD to FreeBSD

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204521 --- Comment #266 from gn...@justmail.de --- Created attachment 215893 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=215893&action=edit lspci output for RTS5227 (Fujtsu H730) -- You are receiving this mail because: You are the a

[Bug 204521] [new driver] [request] Port rtsx from OpenBSD to FreeBSD

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204521 --- Comment #267 from gn...@justmail.de --- (In reply to Henri Hennebert from comment #265) I added the lspci output. Maybe it has some value. I modified the driver hopefully as requested. > 1. uniquely adding back RTSX_CLR(sc, RTSX_PM_CT

[Bug 242067] libc: r354823 riscv64 has a fault in printf() where IEEE754-2008 fp128 data is output wrong

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=242067 Mitchell Horne changed: What|Removed |Added Status|Open|In Progress --- Comment #8 from M

[Bug 204521] [new driver] [request] Port rtsx from OpenBSD to FreeBSD

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204521 Zeus Panchenko changed: What|Removed |Added Attachment #215894|text/x-log |text/plain mime type|

[Bug 204521] [new driver] [request] Port rtsx from OpenBSD to FreeBSD

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204521 --- Comment #269 from Zeus Panchenko --- (In reply to Henri Hennebert from comment #263) doesn't work for me :( inversion is present, keyboard freeses on kldload or card insert/remove ... log is attached -- You are receiving this mail be

[Bug 247472] /var/db/entropy not created with correct user/group

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247472 --- Comment #3 from Conrad Meyer --- Hmm: $ curl -s https://download.freebsd.org/ftp/releases/amd64/12.1-RELEASE/base.txz | tar -tJvf - | rg entropy drwx-- 0 operator operator 0 Oct 31 2019 ./var/db/entropy/ $ sudo mdconfig -

[Bug 247472] /var/db/entropy not created with correct user/group

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247472 Conrad Meyer changed: What|Removed |Added Keywords|easy, needs-patch | -- You are receiving this mail be

[Bug 247472] /var/db/entropy not created with correct user/group

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247472 --- Comment #4 from Conrad Meyer --- Additionally, installer operator user/group ids match base. The only other reference to /var/db/entropy I can see is installer's usr/libexec/save-entropy, which may create /var/db/entropy -- with correc

[Bug 247472] /var/db/entropy not created with correct user/group

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247472 --- Comment #5 from Rajeev Pillai --- (In reply to Conrad Meyer from comment #4) > ...I suspect that's only on the installer filesystem, though. > I think you're right: I did a fresh install of FreeBSD-12.1-RELEASE, then installed all my pa

[Bug 247472] /var/db/entropy not created with correct user/group

2020-06-23 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247472 Kyle Evans changed: What|Removed |Added Resolution|--- |Not A Bug Status|Open