• S
    selftests/net: fix bugs in address and port initialization · d36f45e5
    Sowmini Varadhan 提交于
    Address/port initialization should work correctly regardless
    of the order in which command line arguments are supplied,
    E.g, cfg_port should be used to connect to the remote host
    even if it is processed after -D, src/dst address initialization
    should not require that [-4|-6] be specified before
    the -S or -D args, receiver should be able to bind to *.<cfg_port>
    
    Achieve this by making sure that the address/port structures
    are initialized after all command line options are parsed.
    
    Store cfg_port in host-byte order, and use htons()
    to set up the sin_port/sin6_port before bind/connect,
    so that the network system calls get the correct values
    in network-byte order.
    Signed-off-by: NSowmini Varadhan <sowmini.varadhan@oracle.com>
    Acked-by: NWillem de Bruijn <willemb@google.com>
    Signed-off-by: NDavid S. Miller <davem@davemloft.net>
    d36f45e5
msg_zerocopy.c 16.0 KB