greater than 1.
 
        The valid range is 0 - 255; the default value is 1.  These options
-       affect only the active-backup mode.  These options were added for
-       bonding versions 3.3.0 and 3.4.0 respectively.
+       affect the active-backup or 802.3ad (broadcast_neighbor enabled) mode.
+       These options were added for bonding versions 3.3.0 and 3.4.0
+       respectively.
 
        From Linux 3.0 and bonding version 3.7.1, these notifications
        are generated by the ipv4 and ipv6 code and the numbers of
 
        return 0;
 }
 
+static void ad_cond_set_peer_notif(struct port *port)
+{
+       struct bonding *bond = port->slave->bond;
+
+       if (bond->params.broadcast_neighbor && rtnl_trylock()) {
+               bond->send_peer_notif = bond->params.num_peer_notif *
+                       max(1, bond->params.peer_notif_delay);
+               rtnl_unlock();
+       }
+}
+
 /**
  * ad_mux_machine - handle a port's mux state machine
  * @port: the port we're looking at
                __enable_port(port);
                /* Slave array needs update */
                *update_slave_arr = true;
+               /* Should notify peers if possible */
+               ad_cond_set_peer_notif(port);
        }
 }
 
 
 /* must be called in RCU critical section or with RTNL held */
 static bool bond_should_notify_peers(struct bonding *bond)
 {
-       struct slave *slave = rcu_dereference_rtnl(bond->curr_active_slave);
+       struct bond_up_slave *usable;
+       struct slave *slave = NULL;
 
-       if (!slave || !bond->send_peer_notif ||
+       if (!bond->send_peer_notif ||
            bond->send_peer_notif %
            max(1, bond->params.peer_notif_delay) != 0 ||
-           !netif_carrier_ok(bond->dev) ||
-           test_bit(__LINK_STATE_LINKWATCH_PENDING, &slave->dev->state))
+           !netif_carrier_ok(bond->dev))
                return false;
 
+       /* The send_peer_notif is set by active-backup or 8023ad
+        * mode, and cleared in bond_close() when changing mode.
+        * It is safe to only check bond mode here.
+        */
+       if (BOND_MODE(bond) == BOND_MODE_8023AD) {
+               usable = rcu_dereference_rtnl(bond->usable_slaves);
+               if (!usable || !READ_ONCE(usable->count))
+                       return false;
+       } else {
+               slave = rcu_dereference_rtnl(bond->curr_active_slave);
+               if (!slave || test_bit(__LINK_STATE_LINKWATCH_PENDING,
+                                      &slave->dev->state))
+                       return false;
+       }
+
        netdev_dbg(bond->dev, "bond_should_notify_peers: slave %s\n",
-                  slave ? slave->dev->name : "NULL");
+                  slave ? slave->dev->name : "all");
 
        return true;
 }