/* * netsniff-ng - the packet sniffing beast * Copyright 2014 Tobias Klauser. * Subject to the GPL, version 2. */ #include "dissector.h" #include "dissector_netlink.h" static inline void dissector_init_entry(int type) { dissector_set_print_type(&nlmsg_ops, type); } static inline void dissector_init_exit(int type) { dissector_set_print_type(&none_ops, type); } void dissector_init_netlink(int fnttype) { dissector_init_entry(fnttype); dissector_init_exit(fnttype); } void dissector_cleanup_netlink(void) { } /git.distanz.ch/cgit.cgi/linux/net-next.git' title='net-next.git Git repository'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavide Caratti <dcaratti@redhat.com>2016-08-31 14:16:44 +0200
committerDavid S. Miller <davem@davemloft.net>2016-08-31 09:29:58 -0700
commit9264251ee2a55bce8fb93826b3f581fb9eb7e2c2 (patch)
tree1be66ce3c0e8045a5e46fc461a74af6da1a80c14
parent2df5d103a646998c672a34db74d15613cf7a716d (diff)
bridge: re-introduce 'fix parsing of MLDv2 reports'
commit bc8c20acaea1 ("bridge: multicast: treat igmpv3 report with INCLUDE and no sources as a leave") seems to have accidentally reverted commit 47cc84ce0c2f ("bridge: fix parsing of MLDv2 reports"). This commit brings back a change to br_ip6_multicast_mld2_report() where parsing of MLDv2 reports stops when the first group is successfully added to the MDB cache. Fixes: bc8c20acaea1 ("bridge: multicast: treat igmpv3 report with INCLUDE and no sources as a leave") Signed-off-by: Davide Caratti <dcaratti@redhat.com> Acked-by: Nikolay Aleksandrov <nikolay@cumulusnetworks.com> Acked-by: Thadeu Lima de Souza Cascardo <cascardo@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>