summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_bnx.c
AgeCommit message (Expand)Author
2022-08-04s/bufferred/buffered/ in memory description.L:andvar
2021-12-05s/exisit/exist/ in comment.msaitoh
2021-08-13s/struture/structure/ s/structre/structure/andvar
2021-02-14if_bnx.c: fix misleading indentationjakllsch
2021-02-13Curb aprint_*() abuse in bnx(4)jakllsch
2021-02-13Revert bnx(4) to INTx interrupts.jakllsch
2020-07-17if bnx_tx_encap() fails because mbuf is too fragmented or too long,jdolecek
2020-07-17make sure bnx_alloc_pkts() always clears BNX_ALLOC_PKTS_FLAG and IFF_OACTIVE,jdolecek
2020-07-17remove mistakely committed in-progress code from previous commitjdolecek
2020-07-17re-enable MSI/MSI-X, the TX timeouts were caused by the IFF_OACTIVE handling,jdolecek
2020-07-16need to clear IFF_OACTIVE after allocating more pkts in order to actuallyjdolecek
2020-07-16disable MSI/MSI-X for time being, it causes interrupt timeouts and needsjdolecek
2020-07-14make bnx_wk (used to trigger bnx_alloc_pkts()) part of softc insteadjdolecek
2020-07-14remove call to bnx_alloc_pkts() from bnx_init_tx_chain() - it canjdolecek
2020-07-14only destroy the TX pkgs and dmamaps in bnx_dma_free() called on detach, don'tjdolecek
2020-07-12enable MSI/MSI-X if supported by adapterjdolecek
2020-05-18 Fix typo in comment.msaitoh
2020-02-28 Replace bnx_ifmedia_upd() in bnx_init() with mii_ifmedia_change() for futuremsaitoh
2020-02-28 Replace bnx_ifmedia_upd() in bnx_mgmt_init() with mii_ifmedia_change() formsaitoh
2020-02-07Use callout_setfunc() / callout_schedule().thorpej
2020-02-04Use ifmedia_fini().thorpej
2020-02-01Adopt <net/if_stats.h>.thorpej
2019-12-27s/recive/receive/ in comment.msaitoh
2019-11-10in many device attach paths, allocate memory with M_WAITOK instead of M_NOWAITchs
2019-07-26 Calculate the multicast hash table correctly to avoid undefined behavior.msaitoh
2019-07-09 Don't automatically set ec_capenable's ETHERCAP_VLAN_HWTAGGING bit inmsaitoh
2019-05-28 Use ETHER_LOCK()/ETHER_UNLOCK() for all ethernet drivers to protect ec_multi*.msaitoh
2019-05-23 Whitespace fix (mainly tabify).msaitoh
2019-05-23No functional change:msaitoh
2019-04-24 This driver uses MII(4) and have hook SIOCGIFMEDIA which just pass tomsaitoh
2019-04-11 Fix a bug that the duplex of manual media setting may be wrongmsaitoh
2019-04-08Make it compilable with BNX_DEBUG.msaitoh
2019-04-05 BCM5709 is PCIe based. To wait for pending PCI transactions to complete,msaitoh
2019-04-05- Allow time for the management firmware to enter the running state.msaitoh
2019-04-05 Fix a bug that BNX_MISC_ENABLE_SET_BITS is not correctly set on BCM5709.msaitoh
2019-04-04 0 -> NULL.msaitoh
2019-04-01s/adddress/address/msaitoh
2019-03-29- Use m_defrag() when bus_dmamap_load_mbuf() returned with EFBIG.msaitoh
2019-03-29Sync with OpenBSD:msaitoh
2019-03-28- Remove extra cast (from OpenBSD rev. 1.95)msaitoh
2019-03-27- Remove extra check (because the same check is done inmsaitoh
2019-03-27 Apply OpenBSD rev. 1.94:msaitoh
2019-03-27 Sync with other *BSDs:msaitoh
2019-01-22 Change MII PHY read/write API from:msaitoh
2019-01-08 Fix a bug that bnx_miibus_read_reg() returns wrong value whenmsaitoh
2019-01-08 KNF. No functional change.msaitoh
2018-06-26 Implement the BPF direction filter (BIOC[GS]DIRECTION). It provides backwardmsaitoh
2018-05-08- Fix a bug that bnx(4) panics on shutdown. Stop callout before restroy.msaitoh
2018-02-08Typos.dholland
2017-09-26VLAN ID uses pkthdr instead of mtag now. Contributed by s-yamaguchi@IIJ.knakahara