diff options
author | Linus Lüssing <linus.luessing@web.de> | 2013-04-19 10:06:56 (GMT) |
---|---|---|
committer | Antonio Quartulli <ordex@autistici.org> | 2013-05-29 00:44:55 (GMT) |
commit | e54c77f08ec62434ac8b24e402aa7b787cf42198 (patch) | |
tree | 62b532066b325c5bef1b45e58b36043c71b3ece1 /net/batman-adv/bat_iv_ogm.c | |
parent | d4ff40f683221d46c351cd9ab61f37a6ea5d2444 (diff) | |
download | linux-e54c77f08ec62434ac8b24e402aa7b787cf42198.tar.xz |
batman-adv: Remove unnecessary INIT_HLIST_NODE() calls
There's no need to for an explicit hlist_node initialization if it is
added to a list right away, like it's the case with the
hlist_add_head()s here.
Signed-off-by: Linus Lüssing <linus.luessing@web.de>
Signed-off-by: Marek Lindner <lindner_marek@yahoo.de>
Signed-off-by: Antonio Quartulli <ordex@autistici.org>
Diffstat (limited to 'net/batman-adv/bat_iv_ogm.c')
-rw-r--r-- | net/batman-adv/bat_iv_ogm.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/batman-adv/bat_iv_ogm.c b/net/batman-adv/bat_iv_ogm.c index 5b0a043..d07323b 100644 --- a/net/batman-adv/bat_iv_ogm.c +++ b/net/batman-adv/bat_iv_ogm.c @@ -464,8 +464,6 @@ static void batadv_iv_ogm_aggregate_new(const unsigned char *packet_buff, } skb_reserve(forw_packet_aggr->skb, ETH_HLEN); - INIT_HLIST_NODE(&forw_packet_aggr->list); - skb_buff = skb_put(forw_packet_aggr->skb, packet_len); forw_packet_aggr->packet_len = packet_len; memcpy(skb_buff, packet_buff, packet_len); |