• Paolo Abeni's avatar
    mptcp: optimize out option generation · 1bff1e43
    Paolo Abeni authored
    Currently we have several protocol constraints on MPTCP options
    generation (e.g. MPC and MPJ subopt are mutually exclusive)
    and some additional ones required by our implementation
    (e.g. almost all ADD_ADDR variant are mutually exclusive with
    everything else).
    
    We can leverage the above to optimize the out option generation:
    we check DSS/MPC/MPJ presence in a mutually exclusive way,
    avoiding many unneeded conditionals in the common cases.
    
    Additionally extend the existing constraints on ADD_ADDR opt on
    all subvariants, so that it becomes fully mutually exclusive with
    the above and we can skip another conditional statement for the
    common case.
    
    This change is also needed by the next patch.
    Signed-off-by: default avatarPaolo Abeni <pabeni@redhat.com>
    Signed-off-by: default avatarMat Martineau <mathew.j.martineau@linux.intel.com>
    Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
    1bff1e43
options.c 40.1 KB