}
 
 
+static void efx_set_channel_names(struct efx_nic *efx)
+{
+       struct efx_channel *channel;
+       const char *type = "";
+       int number;
+
+       efx_for_each_channel(channel, efx) {
+               number = channel->channel;
+               if (efx->n_channels > efx->n_rx_queues) {
+                       if (channel->channel < efx->n_rx_queues) {
+                               type = "-rx";
+                       } else {
+                               type = "-tx";
+                               number -= efx->n_rx_queues;
+                       }
+               }
+               snprintf(channel->name, sizeof(channel->name),
+                        "%s%s-%d", efx->name, type, number);
+       }
+}
+
 /* Channels are shutdown and reinitialised whilst the NIC is running
  * to propagate configuration changes (mtu, checksum offload), or
  * to clear hardware error conditions
                        goto fail3;
                }
        }
+       efx_set_channel_names(efx);
 
        return 0;
 
 
                strcpy(efx->name, net_dev->name);
                efx_mtd_rename(efx);
+               efx_set_channel_names(efx);
        }
 
        return NOTIFY_DONE;
                return rc;
        }
        strcpy(efx->name, net_dev->name);
+       efx_set_channel_names(efx);
 
        return 0;
 }
 
        efx_for_each_channel(channel, efx) {
                rc = request_irq(channel->irq, falcon_msi_interrupt,
                                 IRQF_PROBE_SHARED, /* Not shared */
-                                efx->name, channel);
+                                channel->name, channel);
                if (rc) {
                        EFX_ERR(efx, "failed to hook IRQ %d\n", channel->irq);
                        goto fail2;
 
  *
  * @efx: Associated Efx NIC
  * @channel: Channel instance number
+ * @name: Name for channel and IRQ
  * @used_flags: Channel is used by net driver
  * @enabled: Channel enabled indicator
  * @irq: IRQ number (MSI and MSI-X only)
 struct efx_channel {
        struct efx_nic *efx;
        int channel;
+       char name[IFNAMSIZ + 6];
        int used_flags;
        bool enabled;
        int irq;