]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'ip_cmsg_csum'
authorDavid S. Miller <davem@davemloft.net>
Tue, 6 Jan 2015 03:44:56 +0000 (22:44 -0500)
committerDavid S. Miller <davem@davemloft.net>
Tue, 6 Jan 2015 03:44:56 +0000 (22:44 -0500)
commit03a7cd86d53a1db5939d8993ad170e5455b511a5
treef00a55adcedfde95441ed2ec498a2a294623522e
parent09645e942d31b728e0ad898be5256460ca00db08
parentbecf274e010cb45e8bdb8873a90f986ab22794a1
Merge branch 'ip_cmsg_csum'

Tom Herbert says:

====================
ip: Support checksum returned in csmg

This patch set allows the packet checksum for a datagram socket
to be returned in csum data in recvmsg. This allows userspace
to implement its own checksum over the data, for instance if an
IP tunnel was be implemented in user space, the inner checksum
could be validated.

Changes in this patch set:
  - Move checksum conversion to inet_sock from udp_sock. This
    generalizes checksum conversion for use with other protocols.
  - Move IP cmsg constants to a header file and make processing
    of the flags more efficient in ip_cmsg_recv
  - Return checksum value in cmsg. This is specifically the unfolded
    32 bit checksum of the full packet starting from the first byte
    returned in recvmsg

Tested: Wrote a little server to get checksums in cmsg for UDP and
        verfied correct checksum is returned.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>