Re: [PATCH] fnic: fixup patch to resolve stack frame issues

2021-01-27 Thread Lee Duncan
On 1/26/21 11:46 PM, Greg KH wrote: > On Tue, Jan 26, 2021 at 05:21:24PM -0800, Lee Duncan wrote: >> From: Hannes Reinecke >> >> Commit 42ec15ceaea7 fixed a gcc issue with unused variables, but >> introduced errors since it allocated an array of two u64-s but >> then used more than that. Set the

Re: [PATCH] fnic: fixup patch to resolve stack frame issues

2021-01-26 Thread Greg KH
On Tue, Jan 26, 2021 at 05:21:24PM -0800, Lee Duncan wrote: > From: Hannes Reinecke > > Commit 42ec15ceaea7 fixed a gcc issue with unused variables, but > introduced errors since it allocated an array of two u64-s but > then used more than that. Set the arrays to the proper size. > > Fixes:

Re: [PATCH] fnic: fixup patch to resolve stack frame issues

2021-01-26 Thread Lee Duncan
On 1/26/21 5:21 PM, Lee Duncan wrote: > From: Hannes Reinecke > > Commit 42ec15ceaea7 fixed a gcc issue with unused variables, but > introduced errors since it allocated an array of two u64-s but > then used more than that. Set the arrays to the proper size. > > Fixes:

[PATCH] fnic: fixup patch to resolve stack frame issues

2021-01-26 Thread Lee Duncan
From: Hannes Reinecke Commit 42ec15ceaea7 fixed a gcc issue with unused variables, but introduced errors since it allocated an array of two u64-s but then used more than that. Set the arrays to the proper size. Fixes: 42ec15ceaea74b5f7a621fc6686cbf69ca66c4cf Cc: sta...@vger.kernel.org