Merge branch 'bonding-winter-cleanup'
authorDavid S. Miller <davem@davemloft.net>
Fri, 10 Mar 2017 01:33:30 +0000 (17:33 -0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 10 Mar 2017 01:33:30 +0000 (17:33 -0800)
commit825d2c509a04d94b208eeebc7295f04bb70a1929
treed461db31feb7b87f667918d9383f3d51d844cb10
parent96d7552e99393fdffddfc589e697c62a5fd98640
parentdc9c4d0fe023b508f1b41dbe2a3f3133f81b4d29
Merge branch 'bonding-winter-cleanup'

Mahesh Bandewar says:

====================
bonding: winter cleanup

Few cleanup patches that I have accumulated over some time now.

(a) First two patches are basically to move the work-queue initialization
    from every ndo_open / bond_open operation to once at the beginning while
    port creation. Work-queue initialization is an unnecessary operation
    for every 'ifup' operation. However we have some mode-specific work-queues
    and mode can change anytime after port creation. So the second patch is
    to ensure the correct work-handler is called based on the mode.

(b) Third patch is simple and straightforward that removes hard-coded value
    that was added into the initial commit and replaces it with the default
    value configured.

(c) The final patch in the series removes the unimplemented "port-moved" state
    from the LACP state machine. This state is defined but never set so
    removing from the state machine logic makes code little cleaner.

(d) Reduce scope of some global variables to local.

Note: None of these patches are making any functional changes.
====================

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