[BACK]Return to ixgbe.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / dev / pci / ixgbe

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/dev/pci/ixgbe/ixgbe.c between version 1.38 and 1.39

version 1.38, 2016/06/10 13:27:14 version 1.39, 2016/07/11 06:14:51
Line 2536  alloc_retry:
Line 2536  alloc_retry:
         adapter->osdep.ihs[0] = pci_intr_establish(adapter->osdep.pc,          adapter->osdep.ihs[0] = pci_intr_establish(adapter->osdep.pc,
             adapter->osdep.intrs[0], IPL_NET, ixgbe_legacy_irq, que);              adapter->osdep.intrs[0], IPL_NET, ixgbe_legacy_irq, que);
         if (adapter->osdep.ihs[0] == NULL) {          if (adapter->osdep.ihs[0] == NULL) {
                 intr_type = pci_intr_type(adapter->osdep.intrs[0]);                  intr_type = pci_intr_type(adapter->osdep.pc,
                       adapter->osdep.intrs[0]);
                 aprint_error_dev(dev,"unable to establish %s\n",                  aprint_error_dev(dev,"unable to establish %s\n",
                     (intr_type == PCI_INTR_TYPE_MSI) ? "MSI" : "INTx");                      (intr_type == PCI_INTR_TYPE_MSI) ? "MSI" : "INTx");
                 pci_intr_release(adapter->osdep.pc, adapter->osdep.intrs, 1);                  pci_intr_release(adapter->osdep.pc, adapter->osdep.intrs, 1);

Legend:
Removed from v.1.38  
changed lines
  Added in v.1.39

CVSweb <webmaster@jp.NetBSD.org>