Re: arm64/machdep.c: strncpy+overlap - "boot> boot -s" behaviour

2018-03-08 Thread Artturi Alm
On Thu, Mar 08, 2018 at 08:42:09AM +0200, Artturi Alm wrote: > Hi, > > another user mentioned on irc about issue w/"boot -s" not working on rpi3. > diff below fixes secondary the strncpy() w/dst==src, and also adds blank > line after the function which does the correct strncpy. > i just tested i

Re: Blowfish_expand0state invocation order

2018-03-08 Thread Delan Azabani
At 06:40, Ted Unangst wrote: > A simple mistake not easily corrected, but of no consequence. Thanks — this is what I was hoping would be the case.

ksh: ${foo#'bar'} problem in here-document

2018-03-08 Thread Martijn Dekker
x=notOK cat <

Re: Blowfish_expand0state invocation order

2018-03-08 Thread Ted Unangst
Delan Azabani wrote: > Are there any interesting reasons behind this difference (aside from > a simple mistake in either the implementation or the paper)? > > Does the difference in order have any cryptanalytic implications (it > would surprise me if there were, but I’m not really a cryptographer)

Blowfish_expand0state invocation order

2018-03-08 Thread Delan Azabani
While trying to implement bcrypt based on the USENIX 99 paper alone, a tiny difference between the paper and src/lib/libc/crypt/bcrypt.c left me scratching my head until I finally gave in and had a peek. Since it was first checked in, bcrypt.c has passed the key to the odd Blowfish_expand0state in

Re: mfii(4): add bio(4) support

2018-03-08 Thread Jonathan Matthew
On Thu, Mar 08, 2018 at 06:43:51PM +0900, Naoki Fukaumi wrote: > Hi, > > thank you for your feedback! > > From: Jonathan Matthew > Subject: Re: mfii(4): add bio(4) support > Date: Thu, 8 Mar 2018 19:18:28 +1000 > > > On Mon, Mar 05, 2018 at 09:49:16PM +0900, Naoki Fukaumi wrote: > >> Hi tech@,

Let ld.so support the DF_TEXTREL flag

2018-03-08 Thread Mark Kettenis
The llvm/lld folks discussed implementing DF_TEXTREL and dropping support for DT_TEXTREL. We never implemented support for this flag. It isn't mentioned in the latest "official" ELF standard, but has been part of drafts since 2000 and has been implemented by most other OSes (including Solaris). o

update to xf86-video-ati 18.0.0

2018-03-08 Thread Jonathan Gray
update from xf86-video-ati 7.10.0 to 18.0.0 https://lists.x.org/archives/xorg-announce/2018-March/002854.html Index: configure === RCS file: /cvs/xenocara/driver/xf86-video-ati/configure,v retrieving revision 1.22 diff -u -p -r1.22 c

Re: mfii(4): add bio(4) support

2018-03-08 Thread Naoki Fukaumi
Hi, thank you for your feedback! From: Jonathan Matthew Subject: Re: mfii(4): add bio(4) support Date: Thu, 8 Mar 2018 19:18:28 +1000 > On Mon, Mar 05, 2018 at 09:49:16PM +0900, Naoki Fukaumi wrote: >> Hi tech@, >> >> This patch adds bio(4) support for mfii(4). >> # with "mfii(4): use MFII_FUN

Re: close filedescriptors of children

2018-03-08 Thread Gerhard Roth
If proc_init() knows about debug mode, we can move the call to daemon(3) into proc_init(). Then only the parent calls daemon(3). The children will inherit stdin/out/err from the parent and don't have to do anything. And since the children don't call daemon(3) themselves anymore, there won't be any

Re: mfii(4): add bio(4) support

2018-03-08 Thread Jonathan Matthew
On Mon, Mar 05, 2018 at 09:49:16PM +0900, Naoki Fukaumi wrote: > Hi tech@, > > This patch adds bio(4) support for mfii(4). > # with "mfii(4): use MFII_FUNCTION_PASSTHRU_IO for MFI commands" > > most parts are taken from mfi(4), plus fix for rebuilding (bioctl -R). Thanks for working on this, it'