summaryrefslogtreecommitdiff
path: root/sys/dev/ti
AgeCommit message (Expand)Author
2024-06-28net: Remove unneeded NULL check for the allocated ifnetZhenlei Huang
2023-12-26ti: Handle errors from copyin() and copyout()Mark Johnston
2023-08-16sys: Remove $FreeBSD$: one-line .c patternWarner Losh
2023-08-16sys: Remove $FreeBSD$: one-line .h patternWarner Losh
2023-08-16sys: Remove $FreeBSD$: two-line .h patternWarner Losh
2023-02-06Mechanically convert if_ti(4) to IfAPIJustin Hibbits
2022-05-06ti: Remove unused devclass argument to DRIVER_MODULE.John Baldwin
2021-12-03Fix "set but not used" for the ti driverScott Long
2021-10-19Convert vm_page_alloc() callers to use vm_page_alloc_noobj().Mark Johnston
2021-08-28Fix a common typo in man pages and src commentsGordon Bergling
2020-09-01ti: clean up empty lines in .c and .h filesMateusz Guzik
2019-10-21Convert to if_foreach_llmaddr() KPI.Gleb Smirnoff
2019-06-07Replace uses of vm_page_unwire(m, PQ_NONE) with vm_page_unwire_noq(m).Mark Johnston
2018-05-18ifnet: Replace if_addr_lock rwlock with epoch + mutexMatt Macy
2017-11-18spdx: initial adoption of licensing ID tags.Pedro F. Giffuni
2017-09-24Since the page "frame" doesn't belong to a vm object, it can't be pagedAlan Cox
2016-05-03sys/dev: minor spelling fixes.Pedro F. Giffuni
2016-04-21sys: use our roundup2/rounddown2() macros when param.h is available.Pedro F. Giffuni
2016-04-10Cleanup unnecessary semicolons from the kernel.Pedro F. Giffuni
2016-01-08New sendfile(2) syscall. A joint effort of NGINX and Netflix from 2013 andGleb Smirnoff
2015-06-23Fix r284722, by making it actually compile.Dimitry Andric
2015-06-23Fix endless recursion in ti(4)'s ti_ifmedia_upd(), found by clang 3.7.0.Dimitry Andric
2015-01-06In order to reduce use of M_EXT outside of the mbuf allocator andRobert Watson
2014-09-26- Mechanically convert to if_inc_counter() the rest of counters.Gleb Smirnoff
2014-06-17Fix teardown of static DMA allocations in various NIC drivers:John Baldwin
2014-06-16- Modify vm_page_unwire() and vm_page_enqueue() to directly acceptAttilio Rao
2013-10-26The r48589 promised to remove implicit inclusion of if_var.h soon. PrepareGleb Smirnoff
2013-08-19Remove unused and incomplete support for delayed fragment checksumsAndre Oppermann
2012-12-04Mechanically substitute flags from historic mbuf allocator withGleb Smirnoff
2012-11-05Remove duplicate const specifiers in many drivers (I hope I got all ofDimitry Andric
2012-11-01Remove TCP/UDP checksum offloading feature for IP fragmentedPyun YongHyeon
2011-12-15Eliminate vestiges of page coloring.Alan Cox
2011-11-14Overhaul bus_dma(9) usage in driver:Pyun YongHyeon
2011-11-14Export sysctl node for various interrupt moderation parameters andPyun YongHyeon
2011-11-14It's bad idea to allocate large memory, 4KB, from stack.Pyun YongHyeon
2011-11-10Remove dead ifdef. Driver should always check raised interrupt isPyun YongHyeon
2011-11-10style.Pyun YongHyeon
2011-11-08Retire 'options TI_PRIVATE_JUMBOS' and replace local jumboPyun YongHyeon
2011-11-07Do not allow changing MTU to be less than the minimum.Pyun YongHyeon
2011-11-07If ti_chipinit() fails in ti_stop(), ignore the error and releasePyun YongHyeon
2011-11-07Show RX buffer allocation failure and do not blindly send alivePyun YongHyeon
2011-11-07Mini ring is not available on Tigon 1 so do not create DMA maps forPyun YongHyeon
2011-11-07Track which ring was updated in RX handler and update only modifiedPyun YongHyeon
2011-11-07 o Remove unnecessary controller reinitialization.Pyun YongHyeon
2011-11-07Remove ti_unit member variable in softc.Pyun YongHyeon
2011-11-04Implement altq(4) support.Pyun YongHyeon
2011-11-04Because ti(4) drops a driver lock in RX handler, check whetherPyun YongHyeon
2011-11-04Don't abuse if_hwassist and make sure enabling corresponding TX/RXPyun YongHyeon
2011-11-04Don't clear upper 4bits from VLAN tag information. It'sPyun YongHyeon
2011-11-04Introduce ti_ifmedia_upd_locked() to use in driver initializationPyun YongHyeon