net: bridge: use mld2r_ngrec instead of icmpv6_dataun
authorMichelleJin <shjy180909@gmail.com>
Sun, 29 Aug 2021 04:32:29 +0000 (04:32 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 31 Aug 2021 10:29:23 +0000 (11:29 +0100)
commit6baeb3951c271cff30828c4763fa1362da56454a
treeabad895fea77016cced5a7bb17bc57dbe15d2bcb
parent429205da6c834447a57279af128bdd56ccd5225e
net: bridge: use mld2r_ngrec instead of icmpv6_dataun

br_ip6_multicast_mld2_report function uses icmp6h
to parse mld2_report packet.

mld2r_ngrec defines mld2r_hdr.icmp6_dataun.un_data16[1]
in include/net/mld.h.

So, it is more compact to use mld2r rather than icmp6h.

By doing printk test, it is confirmed that
icmp6h->icmp6_dataun.un_data16[1] and mld2r->mld2r_ngrec are
indeed equivalent.

Also, sizeof(*mld2r) and sizeof(*icmp6h) are equivalent, too.

Signed-off-by: MichelleJin <shjy180909@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/bridge/br_multicast.c