]> 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)
commita79e6a16303210d5e12530fe9c1e9c6e5bc8a09c
treef00a55adcedfde95441ed2ec498a2a294623522e
parent3dc359d9ce9f98106032e511bada9b1b80ea008e
parentf60d050c04fc851adf761bb85c98e8ee9f3d314d
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>