• Eric Dumazet's avatar
    net: fix inet_proto_csum_replace4() sparse errors · 05c98543
    Eric Dumazet authored
    make C=2 CF=-D__CHECK_ENDIAN__ net/core/utils.o
    ...
    net/core/utils.c:307:72: warning: incorrect type in argument 2 (different base types)
    net/core/utils.c:307:72:    expected restricted __wsum [usertype] addend
    net/core/utils.c:307:72:    got restricted __be32 [usertype] from
    net/core/utils.c:308:34: warning: incorrect type in argument 2 (different base types)
    net/core/utils.c:308:34:    expected restricted __wsum [usertype] addend
    net/core/utils.c:308:34:    got restricted __be32 [usertype] to
    net/core/utils.c:310:70: warning: incorrect type in argument 2 (different base types)
    net/core/utils.c:310:70:    expected restricted __wsum [usertype] addend
    net/core/utils.c:310:70:    got restricted __be32 [usertype] from
    net/core/utils.c:310:77: warning: incorrect type in argument 2 (different base types)
    net/core/utils.c:310:77:    expected restricted __wsum [usertype] addend
    net/core/utils.c:310:77:    got restricted __be32 [usertype] to
    net/core/utils.c:312:72: warning: incorrect type in argument 2 (different base types)
    net/core/utils.c:312:72:    expected restricted __wsum [usertype] addend
    net/core/utils.c:312:72:    got restricted __be32 [usertype] from
    net/core/utils.c:313:35: warning: incorrect type in argument 2 (different base types)
    net/core/utils.c:313:35:    expected restricted __wsum [usertype] addend
    net/core/utils.c:313:35:    got restricted __be32 [usertype] to
    
    Note we can use csum_replace4() helper
    
    Fixes: 58e3cac5 ("net: optimise inet_proto_csum_replace4()")
    Signed-off-by: default avatarEric Dumazet <edumazet@google.com>
    Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
    05c98543
utils.c 8.75 KB