Re: [RFC PATCH] component: do not leave master devres group open after bind

2021-09-21 Thread Russell King (Oracle)
On Tue, Sep 21, 2021 at 02:18:10PM +0300, Kai Vehmanen wrote: > In current code, the devres group for aggregate master is left open > after call to component_master_add_*(). This leads to problems when the > master does further managed allocations on its own. When any > participating driver calls c

Re: [RFC PATCH] component: do not leave master devres group open after bind

2021-09-21 Thread Imre Deak
On Tue, Sep 21, 2021 at 02:18:10PM +0300, Kai Vehmanen wrote: > In current code, the devres group for aggregate master is left open > after call to component_master_add_*(). This leads to problems when the > master does further managed allocations on its own. When any > participating driver calls c

[RFC PATCH] component: do not leave master devres group open after bind

2021-09-21 Thread Kai Vehmanen
In current code, the devres group for aggregate master is left open after call to component_master_add_*(). This leads to problems when the master does further managed allocations on its own. When any participating driver calls component_del(), this leads to immediate release of resources. This ca