aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/oce/oce_util.c
Commit message (Collapse)AuthorAgeFilesLines
* oce: clean up empty lines in .c and .h filesMateusz Guzik2020-09-011-18/+3
| | | | Notes: svn path=/head/; revision=365187
* sys/dev: further adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-201-0/+2
| | | | | | | | | | | | | | | | | Mainly focus on files that use BSD 3-Clause license. The Software Package Data Exchange (SPDX) group provides a specification to make it easier for automated tools to detect and summarize well known opensource licenses. We are gradually adopting the specification, noting that the tags are considered only advisory and do not, in any way, superceed or replace the license texts. Special thanks to Wind River for providing access to "The Duke of Highlander" tool: an older (2014) run over FreeBSD tree was useful as a starting point. Notes: svn path=/head/; revision=326022
* Fix teardown of static DMA allocations in various NIC drivers:John Baldwin2014-06-171-2/+2
| | | | | | | | | | | | | | | | | - Add missing calls to bus_dmamap_unload() in et(4). - Check the bus address against 0 to decide when to call bus_dmamap_unload() instead of comparing the bus_dma map against NULL. - Check the virtual address against NULL to decide when to call bus_dmamem_free() instead of comparing the bus_dma map against NULL. - Don't clear bus_dma map pointers to NULL for static allocations. Instead, treat the value as completely opaque. - Pass the correct virtual address to bus_dmamem_free() in wpi(4) instead of trying to free a pointer to the virtual address. Reviewed by: yongari Notes: svn path=/head/; revision=267580
* Update driver to version 10.0.664.0.Xin LI2013-10-231-2/+0
| | | | | | | | | | Many thanks to Emulex for their continued support of FreeBSD. Submitted by: Venkata Duvvuru <VenkatKumar.Duvvuru Emulex Com> MFC after: 3 day Notes: svn path=/head/; revision=257007
* Update driver with recent vendor improvements, most notably supportXin LI2013-07-061-1/+1
| | | | | | | | | | | | of Skyhawk adapters. Many thanks to Emulex for their continued support of FreeBSD. Submitted by: "Duvvuru,Venkat Kumar" <VenkatKumar.Duvvuru Emulex.Com> MFC after: 1 day Notes: svn path=/head/; revision=252869
* Update driver to version 4.6.95.0.Xin LI2013-03-061-1/+4
| | | | | | | | Submitted by: "Duvvuru,Venkat Kumar" <VenkatKumar.Duvvuru Emulex.Com> MFC after: 3 days Notes: svn path=/head/; revision=247880
* Patches from Naresh Raju GottumukkalaLuigi Rizzo2012-02-171-2/+0
| | | | | | | | | | | | | - Feature: UMC - Universal Multi Channel support - Bugfix: BE3 Firmware Flashing bug. - Code improvements: - Removed duplicate switch cases in the oce_ioctl routine. - Made changes to mcc_async notifications routine(oce_mq_handler) MFC after: 1 week Notes: svn path=/head/; revision=231879
* Add a driver for Emulex OneConnect ethernet cards (10 Gbit PCIe)Luigi Rizzo2012-02-101-0/+270
A manpage will come in a future commit. Submitted by: Naresh Raju Gottumukkala (emulex) Notes: svn path=/head/; revision=231437