Re: [PATCH net-next] tc-testing: better check if thing is list

2017-10-31 Thread David Miller
From: "Brenda J. Butler" Date: Tue, 31 Oct 2017 14:28:35 -0400 > Check if tcase[k] is an instance of a list (is or is derived from list) > instead of checking if it is a list. > > This will be useful if the data structures change to be something > that implements list, instead of being an actual

Re: [PATCH net-next] tc-testing: better check if thing is list

2017-10-31 Thread Lucas Bates
On Tue, Oct 31, 2017 at 2:28 PM, Brenda J. Butler wrote: > Check if tcase[k] is an instance of a list (is or is derived from list) > instead of checking if it is a list. > > This will be useful if the data structures change to be something > that implements list, instead of being an actual list.

[PATCH net-next] tc-testing: better check if thing is list

2017-10-31 Thread Brenda J. Butler
Check if tcase[k] is an instance of a list (is or is derived from list) instead of checking if it is a list. This will be useful if the data structures change to be something that implements list, instead of being an actual list. In that case, this code will not have to change. Signed-off-by: Br