Re: [ptxdist] [PATCH v3] tf-a: new package for ARM trusted firmware A

2020-02-24 Thread Michael Tretter
On Wed, 19 Feb 2020 11:42:29 +0100, Ahmad Fatoum wrote: > Trusted Firmware-A (TF-A) is a reference implementation of secure world > software for Arm A-Profile architectures (Armv8-A and Armv7-A). > > Cc: Alejandro Vazquez > Signed-off-by: Rouven Czerwinski > Signed-off-by: Ahmad Fatoum

Re: [ptxdist] [PATCH] unfs3: fix attribute setting for symlinks

2020-02-24 Thread Uwe Kleine-König
On Tue, Feb 18, 2020 at 03:57:20PM +0100, Uwe Kleine-König wrote: > unfs makes use of utime() which is unsuitable to set last access and > modification times for symlinks. So make use of the O_PATH flag to > open() and use the futimens() function. > > As a side effect this is less racy and

Re: [ptxdist] [PATCH] unfs3: fix attribute setting for symlinks

2020-02-24 Thread Michael Olbrich
On Mon, Feb 24, 2020 at 12:00:51PM +0100, Uwe Kleine-König wrote: > On Tue, Feb 18, 2020 at 03:57:20PM +0100, Uwe Kleine-König wrote: > > unfs makes use of utime() which is unsuitable to set last access and > > modification times for symlinks. So make use of the O_PATH flag to > > open() and use