Re: [PATCH net] bna: fix list corruption

2016-03-01 Thread David Miller
From: Ivan Vecera Date: Fri, 26 Feb 2016 09:15:50 +0100 > Use list_move_tail() to move MAC address entry from list of pending > to list of active entries. Simple list_add_tail() leaves the entry > also in the first list, this leads to list corruption. > > Cc: Rasesh Mody

RE: [PATCH net] bna: fix list corruption

2016-02-26 Thread Rasesh Mody
> From: Ivan Vecera [mailto:ivec...@redhat.com] > Sent: Friday, February 26, 2016 12:16 AM > > Use list_move_tail() to move MAC address entry from list of pending to list > of active entries. Simple list_add_tail() leaves the entry also in the first > list, > this leads to list corruption. > >

[PATCH net] bna: fix list corruption

2016-02-26 Thread Ivan Vecera
Use list_move_tail() to move MAC address entry from list of pending to list of active entries. Simple list_add_tail() leaves the entry also in the first list, this leads to list corruption. Cc: Rasesh Mody Signed-off-by: Ivan Vecera ---