Lines Matching full:bridge
18 Linux tools such as bridge, iproute2, ifconfig to work transparently whether
322 DSA directly utilizes SWITCHDEV when interfacing with the bridge layer, and
467 ``BR_STATE_BLOCKING`` if the port is a bridge member, or ``BR_STATE_FORWARDING`` if it
474 disabled while being a bridge member
476 Bridge layer
479 - ``port_bridge_join``: bridge layer function invoked when a given switch port is
480 added to a bridge, this function should be doing the necessary at the switch
482 domain for it to ingress/egress traffic with other members of the bridge.
484 - ``port_bridge_leave``: bridge layer function invoked when a given switch port is
485 removed from a bridge, this function should be doing the necessary at the
487 remaining bridge members. When the port leaves the bridge, it should be aged
491 - ``port_stp_state_set``: bridge layer function invoked when a given switch port STP
492 state is computed by the bridge layer and should be propagated to switch
497 Bridge VLAN filtering
500 - ``port_vlan_filtering``: bridge layer function invoked when the bridge gets
510 - ``port_vlan_prepare``: bridge layer function invoked when the bridge prepares the
512 by the hardware, this function should return ``-EOPNOTSUPP`` to inform the bridge
516 - ``port_vlan_add``: bridge layer function invoked when a VLAN is configured
519 - ``port_vlan_del``: bridge layer function invoked when a VLAN is removed from the
522 - ``port_vlan_dump``: bridge layer function invoked with a switchdev callback
524 of. A switchdev object is used to carry the VID and bridge flags.
526 - ``port_fdb_add``: bridge layer function invoked when the bridge wants to install a
530 function should return ``-EOPNOTSUPP`` to inform the bridge code to fallback to
534 of DSA, would be its port-based VLAN, used by the associated bridge device.
536 - ``port_fdb_del``: bridge layer function invoked when the bridge wants to remove a
541 - ``port_fdb_dump``: bridge layer function invoked with a switchdev callback
545 - ``port_mdb_prepare``: bridge layer function invoked when the bridge prepares the
547 this function should return ``-EOPNOTSUPP`` to inform the bridge code to fallback
551 - ``port_mdb_add``: bridge layer function invoked when the bridge wants to install
557 of DSA, would be its port-based VLAN, used by the associated bridge device.
559 - ``port_mdb_del``: bridge layer function invoked when the bridge wants to remove a
564 - ``port_mdb_dump``: bridge layer function invoked with a switchdev callback