Re: xenodm Radeon driver error on AMD GX-420CA SoC + Radeon HD 8400E

2018-12-14 Thread Denis
/etc/firmware/radeon/ contains bonaire_uvd.bin & bonaire_vce.bin by soft linking them to BONAIRE_uvd.bin & BONAIRE_vce.bin don't bring any positive results. The error is persistent. It seems radeonsi should be fixed for firmware paths and names. Thank you for attention to a problem. On

vmm/vmd 100% cpu usage on some hardware

2018-12-14 Thread lists+bugs
>Synopsis: docker-containerd uses 100% CPU on alpine linux in vm on Lenovo X1 >Carbon (5th Gen), and works as expected on T420 >Category: system >Environment: System : OpenBSD 6.4 Details : OpenBSD 6.4-current (GENERIC.MP) #506: Tue Dec 11 19:03:36 MST 2018

PS: OpenRCS 4.5 test for modified files confused by keyword substitution

2018-12-14 Thread bernward . pub
The same error occurs with the $Log$ keyword substitution: > How-To-Repeat: $ echo '$Log$' >test.txt $ ci -l -mtestci -t-TEST test.txt $ rcsdiff test.txt # shows a difference, though there is none $ ci -l -mtestci test.txt # makes a new revision, though there is no change

Network issue with dhclient

2018-12-14 Thread Christophe Staïesse
>Synopsis: Network issue with dhclient >Category: system >Environment: System : OpenBSD 6.4 Details : OpenBSD 6.4 (GENERIC.MP) #1: Mon Nov 26 10:18:14 CET 2018

Re: fread() on unbuffered FILE doesn't set feof flag

2018-12-14 Thread Ted Unangst
Todd C. Miller wrote: > > After thinking about this a bit more I believe it best to just use > the existing FILE * and swap in the buffer temporarily. There's > no need to store the value of the old buffer; since we are unbuffered > it can only point to _nbuf. This is neat.

Re: fread() on unbuffered FILE doesn't set feof flag

2018-12-14 Thread Sebastien Marie
On Fri, Dec 14, 2018 at 10:49:23AM -0700, Todd C. Miller wrote: > On Fri, 14 Dec 2018 08:45:31 +0100, Sebastien Marie wrote: > > After thinking about this a bit more I believe it best to just use > the existing FILE * and swap in the buffer temporarily. There's > no need to store the value of

Re: fread() on unbuffered FILE doesn't set feof flag

2018-12-14 Thread Todd C. Miller
On Fri, 14 Dec 2018 08:45:31 +0100, Sebastien Marie wrote: > I like a lot the way it is done. Using a copy of FILE argument with > _bf._size changed to request read size is great. > > and as juanfra@ said, it solves mercurial problem (I tested it too). > > some comments inlined. > > > Index: