Re: [PATCH v5 3/3] of: add early boot allocation of of_find_node_by_phandle() cache

2018-03-05 Thread Frank Rowand
On 03/05/18 12:26, Rob Herring wrote: > On Sun, Mar 4, 2018 at 6:14 PM, wrote: >> From: Frank Rowand >> >> The initial implementation of the of_find_node_by_phandle() cache >> allocates the cache using kcalloc(). Add an early boot allocation >> of

Re: [PATCH v5 3/3] of: add early boot allocation of of_find_node_by_phandle() cache

2018-03-05 Thread Frank Rowand
On 03/05/18 12:26, Rob Herring wrote: > On Sun, Mar 4, 2018 at 6:14 PM, wrote: >> From: Frank Rowand >> >> The initial implementation of the of_find_node_by_phandle() cache >> allocates the cache using kcalloc(). Add an early boot allocation >> of the cache so it will be usable during early

Re: [PATCH v5 3/3] of: add early boot allocation of of_find_node_by_phandle() cache

2018-03-05 Thread Rob Herring
On Sun, Mar 4, 2018 at 6:14 PM, wrote: > From: Frank Rowand > > The initial implementation of the of_find_node_by_phandle() cache > allocates the cache using kcalloc(). Add an early boot allocation > of the cache so it will be usable during early

Re: [PATCH v5 3/3] of: add early boot allocation of of_find_node_by_phandle() cache

2018-03-05 Thread Rob Herring
On Sun, Mar 4, 2018 at 6:14 PM, wrote: > From: Frank Rowand > > The initial implementation of the of_find_node_by_phandle() cache > allocates the cache using kcalloc(). Add an early boot allocation > of the cache so it will be usable during early boot. Switch over > to the kcalloc() based

[PATCH v5 3/3] of: add early boot allocation of of_find_node_by_phandle() cache

2018-03-04 Thread frowand . list
From: Frank Rowand The initial implementation of the of_find_node_by_phandle() cache allocates the cache using kcalloc(). Add an early boot allocation of the cache so it will be usable during early boot. Switch over to the kcalloc() based cache once normal memory

[PATCH v5 3/3] of: add early boot allocation of of_find_node_by_phandle() cache

2018-03-04 Thread frowand . list
From: Frank Rowand The initial implementation of the of_find_node_by_phandle() cache allocates the cache using kcalloc(). Add an early boot allocation of the cache so it will be usable during early boot. Switch over to the kcalloc() based cache once normal memory allocation becomes available.