struct {
                unsigned long spec;     /* pointer to spec plus flag bits */
-/* BUSY flag indicates that an update is in progress.  STACK_OLD is
- * used to mark and sweep stack-owned MAC filters.
+/* BUSY flag indicates that an update is in progress.  AUTO_OLD is
+ * used to mark and sweep MAC filters for the device address lists.
  */
 #define EFX_EF10_FILTER_FLAG_BUSY      1UL
-#define EFX_EF10_FILTER_FLAG_STACK_OLD 2UL
+#define EFX_EF10_FILTER_FLAG_AUTO_OLD  2UL
 #define EFX_EF10_FILTER_FLAGS          3UL
                u64 handle;             /* firmware handle */
        } *entry;
        wait_queue_head_t waitq;
 /* Shadow of net_device address lists, guarded by mac_lock */
-#define EFX_EF10_FILTER_STACK_UC_MAX   32
-#define EFX_EF10_FILTER_STACK_MC_MAX   256
+#define EFX_EF10_FILTER_DEV_UC_MAX     32
+#define EFX_EF10_FILTER_DEV_MC_MAX     256
        struct {
                u8 addr[ETH_ALEN];
                u16 id;
-       } stack_uc_list[EFX_EF10_FILTER_STACK_UC_MAX],
-         stack_mc_list[EFX_EF10_FILTER_STACK_MC_MAX];
-       int stack_uc_count;             /* negative for PROMISC */
-       int stack_mc_count;             /* negative for PROMISC/ALLMULTI */
+       } dev_uc_list[EFX_EF10_FILTER_DEV_UC_MAX],
+         dev_mc_list[EFX_EF10_FILTER_DEV_MC_MAX];
+       int dev_uc_count;               /* negative for PROMISC */
+       int dev_mc_count;               /* negative for PROMISC/ALLMULTI */
 };
 
 /* An arbitrary search limit for the software hash table */
                        if (saved_spec->priority > EFX_FILTER_PRI_AUTO)
                                saved_spec->flags |= EFX_FILTER_FLAG_RX_OVER_AUTO;
                        table->entry[ins_index].spec &=
-                               ~EFX_EF10_FILTER_FLAG_STACK_OLD;
+                               ~EFX_EF10_FILTER_FLAG_AUTO_OLD;
                        rc = ins_index;
                        goto out_unlock;
                }
 }
 
 /* Remove a filter.
- * If !stack_requested, remove by ID
- * If stack_requested, remove by index
+ * If !by_index, remove by ID
+ * If by_index, remove by index
  * Filter ID may come from userland and must be range-checked.
  */
 static int efx_ef10_filter_remove_internal(struct efx_nic *efx,
                                           enum efx_filter_priority priority,
-                                          u32 filter_id, bool stack_requested)
+                                          u32 filter_id, bool by_index)
 {
        unsigned int filter_idx = filter_id % HUNT_FILTER_TBL_ROWS;
        struct efx_ef10_filter_table *table = efx->filter_state;
 
        spec = efx_ef10_filter_entry_spec(table, filter_idx);
        if (!spec ||
-           (!stack_requested &&
+           (!by_index &&
             efx_ef10_filter_rx_match_pri(table, spec->match_flags) !=
             filter_id / HUNT_FILTER_TBL_ROWS)) {
                rc = -ENOENT;
            priority == EFX_FILTER_PRI_AUTO) {
                /* Just remove flags */
                spec->flags &= ~EFX_FILTER_FLAG_RX_OVER_AUTO;
-               table->entry[filter_idx].spec &= ~EFX_EF10_FILTER_FLAG_STACK_OLD;
+               table->entry[filter_idx].spec &= ~EFX_EF10_FILTER_FLAG_AUTO_OLD;
                rc = 0;
                goto out_unlock;
        }
        spin_unlock_bh(&efx->filter_lock);
 
        if (spec->flags & EFX_FILTER_FLAG_RX_OVER_AUTO) {
-               /* Reset steering of a stack-owned filter */
+               /* Reset to an automatic filter */
 
                struct efx_filter_spec new_spec = *spec;
 
 
        /* Mark old filters that may need to be removed */
        spin_lock_bh(&efx->filter_lock);
-       n = table->stack_uc_count < 0 ? 1 : table->stack_uc_count;
+       n = table->dev_uc_count < 0 ? 1 : table->dev_uc_count;
        for (i = 0; i < n; i++) {
-               filter_idx = table->stack_uc_list[i].id % HUNT_FILTER_TBL_ROWS;
-               table->entry[filter_idx].spec |= EFX_EF10_FILTER_FLAG_STACK_OLD;
+               filter_idx = table->dev_uc_list[i].id % HUNT_FILTER_TBL_ROWS;
+               table->entry[filter_idx].spec |= EFX_EF10_FILTER_FLAG_AUTO_OLD;
        }
-       n = table->stack_mc_count < 0 ? 1 : table->stack_mc_count;
+       n = table->dev_mc_count < 0 ? 1 : table->dev_mc_count;
        for (i = 0; i < n; i++) {
-               filter_idx = table->stack_mc_list[i].id % HUNT_FILTER_TBL_ROWS;
-               table->entry[filter_idx].spec |= EFX_EF10_FILTER_FLAG_STACK_OLD;
+               filter_idx = table->dev_mc_list[i].id % HUNT_FILTER_TBL_ROWS;
+               table->entry[filter_idx].spec |= EFX_EF10_FILTER_FLAG_AUTO_OLD;
        }
        spin_unlock_bh(&efx->filter_lock);
 
         */
        netif_addr_lock_bh(net_dev);
        if (net_dev->flags & IFF_PROMISC ||
-           netdev_uc_count(net_dev) >= EFX_EF10_FILTER_STACK_UC_MAX) {
-               table->stack_uc_count = -1;
+           netdev_uc_count(net_dev) >= EFX_EF10_FILTER_DEV_UC_MAX) {
+               table->dev_uc_count = -1;
        } else {
-               table->stack_uc_count = 1 + netdev_uc_count(net_dev);
-               memcpy(table->stack_uc_list[0].addr, net_dev->dev_addr,
+               table->dev_uc_count = 1 + netdev_uc_count(net_dev);
+               memcpy(table->dev_uc_list[0].addr, net_dev->dev_addr,
                       ETH_ALEN);
                i = 1;
                netdev_for_each_uc_addr(uc, net_dev) {
-                       memcpy(table->stack_uc_list[i].addr,
+                       memcpy(table->dev_uc_list[i].addr,
                               uc->addr, ETH_ALEN);
                        i++;
                }
        }
        if (net_dev->flags & (IFF_PROMISC | IFF_ALLMULTI) ||
-           netdev_mc_count(net_dev) >= EFX_EF10_FILTER_STACK_MC_MAX) {
-               table->stack_mc_count = -1;
+           netdev_mc_count(net_dev) >= EFX_EF10_FILTER_DEV_MC_MAX) {
+               table->dev_mc_count = -1;
        } else {
-               table->stack_mc_count = 1 + netdev_mc_count(net_dev);
-               eth_broadcast_addr(table->stack_mc_list[0].addr);
+               table->dev_mc_count = 1 + netdev_mc_count(net_dev);
+               eth_broadcast_addr(table->dev_mc_list[0].addr);
                i = 1;
                netdev_for_each_mc_addr(mc, net_dev) {
-                       memcpy(table->stack_mc_list[i].addr,
+                       memcpy(table->dev_mc_list[i].addr,
                               mc->addr, ETH_ALEN);
                        i++;
                }
        netif_addr_unlock_bh(net_dev);
 
        /* Insert/renew unicast filters */
-       if (table->stack_uc_count >= 0) {
-               for (i = 0; i < table->stack_uc_count; i++) {
+       if (table->dev_uc_count >= 0) {
+               for (i = 0; i < table->dev_uc_count; i++) {
                        efx_filter_init_rx(&spec, EFX_FILTER_PRI_AUTO,
                                           EFX_FILTER_FLAG_RX_RSS,
                                           0);
                        efx_filter_set_eth_local(&spec, EFX_FILTER_VID_UNSPEC,
-                                                table->stack_uc_list[i].addr);
+                                                table->dev_uc_list[i].addr);
                        rc = efx_ef10_filter_insert(efx, &spec, true);
                        if (rc < 0) {
                                /* Fall back to unicast-promisc */
                                while (i--)
                                        efx_ef10_filter_remove_safe(
                                                efx, EFX_FILTER_PRI_AUTO,
-                                               table->stack_uc_list[i].id);
-                               table->stack_uc_count = -1;
+                                               table->dev_uc_list[i].id);
+                               table->dev_uc_count = -1;
                                break;
                        }
-                       table->stack_uc_list[i].id = rc;
+                       table->dev_uc_list[i].id = rc;
                }
        }
-       if (table->stack_uc_count < 0) {
+       if (table->dev_uc_count < 0) {
                efx_filter_init_rx(&spec, EFX_FILTER_PRI_AUTO,
                                   EFX_FILTER_FLAG_RX_RSS,
                                   0);
                rc = efx_ef10_filter_insert(efx, &spec, true);
                if (rc < 0) {
                        WARN_ON(1);
-                       table->stack_uc_count = 0;
+                       table->dev_uc_count = 0;
                } else {
-                       table->stack_uc_list[0].id = rc;
+                       table->dev_uc_list[0].id = rc;
                }
        }
 
        /* Insert/renew multicast filters */
-       if (table->stack_mc_count >= 0) {
-               for (i = 0; i < table->stack_mc_count; i++) {
+       if (table->dev_mc_count >= 0) {
+               for (i = 0; i < table->dev_mc_count; i++) {
                        efx_filter_init_rx(&spec, EFX_FILTER_PRI_AUTO,
                                           EFX_FILTER_FLAG_RX_RSS,
                                           0);
                        efx_filter_set_eth_local(&spec, EFX_FILTER_VID_UNSPEC,
-                                                table->stack_mc_list[i].addr);
+                                                table->dev_mc_list[i].addr);
                        rc = efx_ef10_filter_insert(efx, &spec, true);
                        if (rc < 0) {
                                /* Fall back to multicast-promisc */
                                while (i--)
                                        efx_ef10_filter_remove_safe(
                                                efx, EFX_FILTER_PRI_AUTO,
-                                               table->stack_mc_list[i].id);
-                               table->stack_mc_count = -1;
+                                               table->dev_mc_list[i].id);
+                               table->dev_mc_count = -1;
                                break;
                        }
-                       table->stack_mc_list[i].id = rc;
+                       table->dev_mc_list[i].id = rc;
                }
        }
-       if (table->stack_mc_count < 0) {
+       if (table->dev_mc_count < 0) {
                efx_filter_init_rx(&spec, EFX_FILTER_PRI_AUTO,
                                   EFX_FILTER_FLAG_RX_RSS,
                                   0);
                rc = efx_ef10_filter_insert(efx, &spec, true);
                if (rc < 0) {
                        WARN_ON(1);
-                       table->stack_mc_count = 0;
+                       table->dev_mc_count = 0;
                } else {
-                       table->stack_mc_list[0].id = rc;
+                       table->dev_mc_list[0].id = rc;
                }
        }
 
        /* Remove filters that weren't renewed.  Since nothing else
-        * changes the STACK_OLD flag or removes these filters, we
+        * changes the AUTO_OLD flag or removes these filters, we
         * don't need to hold the filter_lock while scanning for
         * these filters.
         */
        for (i = 0; i < HUNT_FILTER_TBL_ROWS; i++) {
                if (ACCESS_ONCE(table->entry[i].spec) &
-                   EFX_EF10_FILTER_FLAG_STACK_OLD) {
+                   EFX_EF10_FILTER_FLAG_AUTO_OLD) {
                        if (efx_ef10_filter_remove_internal(
                                    efx, EFX_FILTER_PRI_AUTO, i, true) < 0)
                                remove_failed = true;