Re: [RESEND] rsi: Remove stack VLA usage

2018-03-13 Thread tcharding
On Mon, Mar 12, 2018 at 09:46:06AM +, Kalle Valo wrote: > tcharding wrote: > > > The kernel would like to have all stack VLA usage removed[1]. rsi uses > > a VLA based on 'blksize'. Elsewhere in the SDIO code maximum block size > > is defined using

[PATCH 2/3] bridge: netfilter: checkpatch data type fixes

2016-05-09 Thread tcharding
From: Tobin C Harding checkpatch produces data type 'checks'. This patch amends them by changing, for example: uint8_t -> u8 Signed-off-by: Tobin C Harding --- net/bridge/netfilter/ebt_stp.c | 40 1 file changed, 20 insertions(+), 20 deletions(-) diff

[PATCH 3/3] bridge: netfilter: checkpatch null comparison fixes

2016-05-09 Thread tcharding
From: Tobin C Harding checkpatch produces comparison to null 'checks'. This patch amends them. Signed-off-by: Tobin C Harding --- net/bridge/netfilter/ebt_stp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/bridge/netfilter/ebt_stp.c b/net/bridge/netfilter/ebt_st

[PATCH 1/3] bridge: netfilter: checkpatch whitespace fixes

2016-05-09 Thread tcharding
From: Tobin C Harding checkpatch produces various white space 'checks'. This patch amends them. Signed-off-by: Tobin C Harding --- This is my second linux kernel patch. Unsure if I was meant to cc multiple mailing lists? thanks net/bridge/netfilter/ebt_stp.c | 24

[PATCH 0/3] bridge: netfilter: checkpatch fixes

2016-05-09 Thread tcharding
From: Tobin C Harding checkpatch produces 32 'checks'. This patch set amends them all. Patch one is white space only. Patch two changes data types e.g uint8_t -> u8. Patch three amends comparison to null. Tobin C Harding (3): bridge: netfilter: checkpatch whitespace fixes bridge: netfilter: