Re: [PATCH] stream: Don't crash when node permission is denied

2021-03-12 Thread Vladimir Sementsov-Ogievskiy
09.03.2021 20:34, Kevin Wolf wrote: The image streaming block job restricts shared permissions of the nodes it accesses. This can obviously fail when other users already got these permissions. &error_abort is therefore wrong and can crash. Handle these errors gracefully and just fail starting the

Re: [PATCH] stream: Don't crash when node permission is denied

2021-03-10 Thread Alberto Garcia
On Tue 09 Mar 2021 06:34:51 PM CET, Kevin Wolf wrote: > The image streaming block job restricts shared permissions of the nodes > it accesses. This can obviously fail when other users already got these > permissions. &error_abort is therefore wrong and can crash. Handle these > errors gracefully a

Re: [PATCH] stream: Don't crash when node permission is denied

2021-03-09 Thread Eric Blake
On 3/9/21 11:34 AM, Kevin Wolf wrote: > The image streaming block job restricts shared permissions of the nodes > it accesses. This can obviously fail when other users already got these > permissions. &error_abort is therefore wrong and can crash. Handle these > errors gracefully and just fail star

[PATCH] stream: Don't crash when node permission is denied

2021-03-09 Thread Kevin Wolf
The image streaming block job restricts shared permissions of the nodes it accesses. This can obviously fail when other users already got these permissions. &error_abort is therefore wrong and can crash. Handle these errors gracefully and just fail starting the block job. Reported-by: Nini Gu Sig