* the SecTAG, so we have to deduce which port to deliver to.
                 */
                if (macsec_is_offloaded(macsec) && netif_running(ndev)) {
-                       if (md_dst && md_dst->type == METADATA_MACSEC &&
-                           (!find_rx_sc(&macsec->secy, md_dst->u.macsec_info.sci)))
+                       struct macsec_rx_sc *rx_sc = NULL;
+
+                       if (md_dst && md_dst->type == METADATA_MACSEC)
+                               rx_sc = find_rx_sc(&macsec->secy, md_dst->u.macsec_info.sci);
+
+                       if (md_dst && md_dst->type == METADATA_MACSEC && !rx_sc)
                                continue;
 
                        if (ether_addr_equal_64bits(hdr->h_dest,
                                        nskb->pkt_type = PACKET_MULTICAST;
 
                                __netif_rx(nskb);
+                       } else if (rx_sc || ndev->flags & IFF_PROMISC) {
+                               skb->dev = ndev;
+                               skb->pkt_type = PACKET_HOST;
+                               ret = RX_HANDLER_ANOTHER;
+                               goto out;
                        }
+
                        continue;
                }