On Sat, Oct 20, 2012 at 12:49:12PM -0500, Ethan Jackson wrote:
> > - if (f->nw_proto == IPPROTO_ICMP) {
> > + if (f->dl_type == htons(ETH_TYPE_IP) &&
> > + f->nw_proto == IPPROTO_ICMP) {
> > format_be16_masked(s, "icmp_type", f->tp_src, wc->masks.tp_src);
> > format_be16_masked(s, "icmp_code", f->tp_dst, wc->masks.tp_dst);
> > - } else if (f->nw_proto == IPPROTO_ICMPV6) {
> > + } else if (f->dl_type == htons(ETH_TYPE_IPV6) &&
> > + f->nw_proto == IPPROTO_ICMPV6) {
>
> Traditionally we've put the && on the next line so you end up with:
A lot of people disagree with this so some time ago we removed the
text that required binary operators at the beginning of a line.
_______________________________________________
dev mailing list
[email protected]
http://openvswitch.org/mailman/listinfo/dev