Re: [U-Boot] [PATCH] malloc: solve dead code issue in memalign()

2016-02-04 Thread Tom Rini
On Thu, Feb 04, 2016 at 11:54:20AM -0700, Stephen Warren wrote: > From: Stephen Warren > > The recent change to memalign() caused the allocation failure detection > code to be dead code; the "retry" logic is always activated under the same > condition that the original

[U-Boot] [PATCH] malloc: solve dead code issue in memalign()

2016-02-04 Thread Stephen Warren
From: Stephen Warren The recent change to memalign() caused the allocation failure detection code to be dead code; the "retry" logic is always activated under the same condition that the original failure detection code is, and also fully handles any possible failures. This