summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_bge.c
AgeCommit message (Expand)Author
2022-10-11fix typos in log messages s/bus_dmamem_create/bus_dmamap_create/ andandvar
2022-09-04bge(4): Use BUS_DMA_WAITOK in ring initilization now that it's safeskrll
2022-09-04bge(4): fix the MP improvements and improve some more.skrll
2022-09-04bge(4): use a local variable to make bge_ifmedia initialization pretty.skrll
2022-08-27Convert bge_pending_rxintr_change to a bool (from int)skrll
2022-08-27Include headers once (and don't pretend this compiles without INET)skrll
2022-08-27Correct the abbreviation of approximately to 'approx.'skrll
2022-08-25G/Cskrll
2022-08-19Make bge_detaching a bool. NFC.skrll
2022-08-19softc member naming consistency with wm(4). (Taylor made me do it... notskrll
2022-08-19Should be checking ifp->if_flags in bge_init and not sc->bge_if_flags.skrll
2022-08-14bge: Use BUS_DMA_WAITOK in attach routines.skrll
2022-08-14bge: Mirror the bus_dma RX buffer changes in the OpenBSD driverskrll
2022-08-14Make bge(4) MP safeskrll
2022-08-14bge: Fix bge_ring_map bus_dmamap_sync POST{READ,WRITE} operations.skrll
2022-08-07Provide and use (when appropriate) a bge_free_jumbo_mem.skrll
2022-08-07Misc tidyup. NFC.skrll
2022-08-07Unwrap a long line and remove unecessary brackets. NFC.skrll
2022-08-07Fix the KNF. oops.skrll
2022-08-07whitespaceskrll
2022-08-07KNFskrll
2022-07-26Whitespaceskrll
2022-07-22malloc -> kmem.skrll
2022-07-03*** empty log message ***skrll
2022-07-03KNFskrll
2022-07-03Perform a BUS_DMASYNC_POSTREAD on the bge_status_block before reading fromskrll
2022-07-02KNF. Remove brackets around return values.skrll
2022-07-02One timeout message (the write one) in bge_miibus_writereg is enough.skrll
2022-07-02Modernise bge_update_all_threshes. Same code before and after.skrll
2022-07-02Simplification. Same code before and after.skrll
2022-07-02More const. Remove strange ifp assignments in bge_init.skrll
2022-06-30KNF some commentsskrll
2022-06-30Remove strange (duplicate) assignment.skrll
2022-06-30KNFskrll
2022-06-28Sprinkle some const. Same code before and after.skrll
2022-05-19For chips which contain an ASF/IPMI firmware, instruct the chip to shut the h...buhrow
2022-04-07fix various typos in comments.andvar
2022-01-22Explicitly cast a 40-bit mask to bus_addr_t in a dead branch (gcc apparentlymartin
2022-01-22Ensure bus_dmatag_subregion is called with an inclusive max_addrskrll
2021-09-16fix various typos, mainly in comments.andvar
2021-09-03fix typos in comments, mainly s/extention/extension/ and s/sufficent/sufficient/andvar
2021-08-30bge_txeof/bge_rxeof may be called with no pending descriptors, so skipjmcneill
2020-07-02prop_data_data_nocopy -> prop_data_valuemsaitoh
2020-02-07Use callout_setfunc() / callout_schedule().thorpej
2020-02-04Use ifmedia_fini().thorpej
2020-02-01Adopt <net/if_stats.h>.thorpej
2019-11-25 Modify PHY initialization code. This change fix a bug that SK-9D21 doesn'tmsaitoh
2019-11-25- Use *_FLUSH() more. The main purpose is to wait following delay() correctly.msaitoh
2019-11-25 Fix a bug that SK-9D41 can't detect fiber media. Check the subsystem IDmsaitoh
2019-11-10in many device attach paths, allocate memory with M_WAITOK instead of M_NOWAITchs