Re: [PATCH 1/2] efi: Fix krealloc defect

2014-01-13 Thread Joe Perches
On Mon, 2014-01-13 at 19:17 +, Matt Fleming wrote: > On Mon, 13 Jan, at 09:47:21AM, Joe Perches wrote: > > If it's queued up in some tree of yours, should that > > tree be included in Stephen Rothwell's -next? > My trees get pulled into tip and those are included in linux-next. So, > Borislav's

Re: [PATCH 1/2] efi: Fix krealloc defect

2014-01-13 Thread Matt Fleming
On Mon, 13 Jan, at 09:47:21AM, Joe Perches wrote: > > If it's queued up in some tree of yours, should that > tree be included in Stephen Rothwell's -next? My trees get pulled into tip and those are included in linux-next. So, Borislav's patch is commit ee4114302770 ("x86/efi: Check krealloc retur

Re: [PATCH 1/2] efi: Fix krealloc defect

2014-01-13 Thread Joe Perches
On Mon, 2014-01-13 at 14:03 +, Matt Fleming wrote: > On Fri, 03 Jan, at 04:08:47PM, Joe Perches wrote: > > krealloc should use a temporary pointer for allocations > > and check the temporary pointer returned against NULL too. > > > > Signed-off-by: Joe Perches > > cc: Matthew Garrett > > ---

Re: [PATCH 1/2] efi: Fix krealloc defect

2014-01-13 Thread Matt Fleming
On Fri, 03 Jan, at 04:08:47PM, Joe Perches wrote: > krealloc should use a temporary pointer for allocations > and check the temporary pointer returned against NULL too. > > Signed-off-by: Joe Perches > cc: Matthew Garrett > --- > arch/x86/platform/efi/efi.c | 12 +--- > 1 file changed,

[PATCH 1/2] efi: Fix krealloc defect

2014-01-03 Thread Joe Perches
krealloc should use a temporary pointer for allocations and check the temporary pointer returned against NULL too. Signed-off-by: Joe Perches cc: Matthew Garrett --- arch/x86/platform/efi/efi.c | 12 +--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/arch/x86/platform/ef