aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ti
Commit message (Expand)AuthorAgeFilesLines
* ti: Handle errors from copyin() and copyout()Mark Johnston2023-12-261-23/+33
* sys: Remove $FreeBSD$: one-line .c patternWarner Losh2023-08-161-2/+0
* sys: Remove $FreeBSD$: one-line .h patternWarner Losh2023-08-161-1/+0
* sys: Remove $FreeBSD$: two-line .h patternWarner Losh2023-08-162-4/+0
* Mechanically convert if_ti(4) to IfAPIJustin Hibbits2023-02-062-113/+112
* ti: Remove unused devclass argument to DRIVER_MODULE.John Baldwin2022-05-061-3/+1
* Fix "set but not used" for the ti driverScott Long2021-12-031-8/+8
* Convert vm_page_alloc() callers to use vm_page_alloc_noobj().Mark Johnston2021-10-201-2/+1
* Fix a common typo in man pages and src commentsGordon Bergling2021-08-281-1/+1
* ti: clean up empty lines in .c and .h filesMateusz Guzik2020-09-011-4/+0
* Convert to if_foreach_llmaddr() KPI.Gleb Smirnoff2019-10-212-40/+17
* Replace uses of vm_page_unwire(m, PQ_NONE) with vm_page_unwire_noq(m).Mark Johnston2019-06-071-1/+1
* ifnet: Replace if_addr_lock rwlock with epoch + mutexMatt Macy2018-05-181-1/+1
* spdx: initial adoption of licensing ID tags.Pedro F. Giffuni2017-11-182-0/+4
* Since the page "frame" doesn't belong to a vm object, it can't be pagedAlan Cox2017-09-241-1/+1
* sys/dev: minor spelling fixes.Pedro F. Giffuni2016-05-032-7/+7
* sys: use our roundup2/rounddown2() macros when param.h is available.Pedro F. Giffuni2016-04-211-5/+5
* Cleanup unnecessary semicolons from the kernel.Pedro F. Giffuni2016-04-101-3/+3
* New sendfile(2) syscall. A joint effort of NGINX and Netflix from 2013 andGleb Smirnoff2016-01-081-2/+2
* Fix r284722, by making it actually compile.Dimitry Andric2015-06-231-1/+1
* Fix endless recursion in ti(4)'s ti_ifmedia_upd(), found by clang 3.7.0.Dimitry Andric2015-06-231-1/+1
* In order to reduce use of M_EXT outside of the mbuf allocator andRobert Watson2015-01-061-2/+1
* - Mechanically convert to if_inc_counter() the rest of counters.Gleb Smirnoff2014-09-261-31/+40
* Fix teardown of static DMA allocations in various NIC drivers:John Baldwin2014-06-171-15/+23
* - Modify vm_page_unwire() and vm_page_enqueue() to directly acceptAttilio Rao2014-06-161-1/+1
* The r48589 promised to remove implicit inclusion of if_var.h soon. PrepareGleb Smirnoff2013-10-261-0/+1
* Remove unused and incomplete support for delayed fragment checksumsAndre Oppermann2013-08-191-18/+0
* Mechanically substitute flags from historic mbuf allocator withGleb Smirnoff2012-12-041-8/+8
* Remove duplicate const specifiers in many drivers (I hope I got all ofDimitry Andric2012-11-051-1/+1
* Remove TCP/UDP checksum offloading feature for IP fragmentedPyun YongHyeon2012-11-011-11/+5
* Eliminate vestiges of page coloring.Alan Cox2011-12-151-2/+1
* Overhaul bus_dma(9) usage in driver:Pyun YongHyeon2011-11-142-403/+604
* Export sysctl node for various interrupt moderation parameters andPyun YongHyeon2011-11-141-14/+62
* It's bad idea to allocate large memory, 4KB, from stack.Pyun YongHyeon2011-11-142-29/+35
* Remove dead ifdef. Driver should always check raised interrupt isPyun YongHyeon2011-11-101-3/+0
* style.Pyun YongHyeon2011-11-101-63/+44
* Retire 'options TI_PRIVATE_JUMBOS' and replace local jumboPyun YongHyeon2011-11-082-328/+291
* Do not allow changing MTU to be less than the minimum.Pyun YongHyeon2011-11-071-1/+1
* If ti_chipinit() fails in ti_stop(), ignore the error and releasePyun YongHyeon2011-11-071-5/+5
* Show RX buffer allocation failure and do not blindly send alivePyun YongHyeon2011-11-071-5/+21
* Mini ring is not available on Tigon 1 so do not create DMA maps forPyun YongHyeon2011-11-071-0/+5
* Track which ring was updated in RX handler and update only modifiedPyun YongHyeon2011-11-071-5/+12
* o Remove unnecessary controller reinitialization.Pyun YongHyeon2011-11-071-2/+8
* Remove ti_unit member variable in softc.Pyun YongHyeon2011-11-072-7/+5
* Implement altq(4) support.Pyun YongHyeon2011-11-041-8/+10
* Because ti(4) drops a driver lock in RX handler, check whetherPyun YongHyeon2011-11-041-4/+4
* Don't abuse if_hwassist and make sure enabling corresponding TX/RXPyun YongHyeon2011-11-041-32/+60
* Don't clear upper 4bits from VLAN tag information. It'sPyun YongHyeon2011-11-041-2/+2
* Introduce ti_ifmedia_upd_locked() to use in driver initializationPyun YongHyeon2011-11-041-3/+21
* Announce IFCAP_LINKSTATE capability and let network stack know linkPyun YongHyeon2011-11-041-7/+25