#include "libgcc.h" word_type __ucmpdi2(DWtype a, DWtype b) { const DWunion au = {.ll = a}; const DWunion bu = {.ll = b}; if ((UWtype) au.s.high < (UWtype) bu.s.high) return 0; else if ((UWtype) au.s.high > (UWtype) bu.s.high) return 2; if ((UWtype) au.s.low < (UWtype) bu.s.low) return 0; else if ((UWtype) au.s.low > (UWtype) bu.s.low) return 2; return 1; } t' href='git://git.distanz.ch/linux/net-next.git' title='net-next.git Git repository'/>
summaryrefslogtreecommitdiff
path: root/include/trace/events/xen.h
c Sowa <hannes@stressinduktion.org>
AgeCommit message (Expand)AuthorFilesLines
2016-06-12 12:02:46 +0200
committerDavid S. Miller <davem@davemloft.net>2016-06-14 15:28:04 -0400
commitb46d9f625b07f843c706c2c7d0210a90ccdf143b (patch)
tree44a968b62edcecd4c3a70d0c2875665585cf7a05
parentc148d16369ff0095eca950d17968ba1d56a47b53 (diff)
ipv4: fix checksum annotation in udp4_csum_init
Reported-by: Cong Wang <xiyou.wangcong@gmail.com> Cc: Cong Wang <xiyou.wangcong@gmail.com> Cc: Tom Herbert <tom@herbertland.com> Fixes: 4068579e1e098fa ("net: Implmement RFC 6936 (zero RX csums for UDP/IPv6") Signed-off-by: Hannes Frederic Sowa <hannes@stressinduktion.org> Signed-off-by: David S. Miller <davem@davemloft.net>
'>