From: David Miller > Sent: 11 September 2017 22:30 > From: Thomas Meyer <tho...@m3y3r.de> > Date: Sat, 9 Sep 2017 05:18:19 +0200 > > > @@ -168,6 +169,18 @@ static struct name_seq *tipc_nameseq_create(u32 type, > > struct hlist_head > *seq_hea > > return nseq; > > } > > > > +static int nameseq_find_subseq_cmp(const void *key, const void *elt) > > +{ > > + u32 instance = *(u32 *)key; > > + struct sub_seq *sseq = (struct sub_seq *)elt; > > Please order local variables from longest to shortest (ie. reverse > christmas tree).
You probably just need to remove the unnecessary cast of 'void *'. Although adding the 'const' qualifier will make it wrong again. You probably ought to make the 'key' a structure - even if it only contains a single u32. Casting pointers to numeric types is often wrong. David