https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204248

--- Comment #2 from ilya kulikov <[email protected]> ---
Hi, I install new FreeBSD 10.2-RELEASE 
edited file /sys/dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c

dell line

                 packet->vlan_tci & 0xfff;
         }

        if (0 == m_head->m_pkthdr.csum_flags) {
             goto pre_send;
         }


and add line 

                            packet->vlan_tci & 0xfff;
                }

                /* Ignore flags for checksum already calculated or valid */
                if (0 == (m_head->m_pkthdr.csum_flags & 0xffffff)) {
                        goto pre_send;
                }

Further rebuilt kernel with options PF, the situation has not changed, may be i
wrong to apply the patch.

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-pf
To unsubscribe, send any mail to "[email protected]"

Reply via email to