summaryrefslogtreecommitdiffstats
path: root/sys/dev/ic/ti.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* sizes for free(); ok semariederaadt2015-09-091-5/+5
|
* removes two mem leaks in ti (in error path).semarie2015-08-121-5/+5
| | | | | | | | one leak reported by Maxime Villard initial patch from Christian Schulte (with spelling corrections in comments) second leak corrected by myself ok kettenis@
* Increment if_ipackets in if_input().mpi2015-06-241-2/+1
| | | | | | | Note that pseudo-drivers not using if_input() are not affected by this conversion. ok mikeb@, kettenis@, claudio@, dlg@
* Convert to if_input().mpi2015-05-191-11/+5
| | | | ok dlg@
* Remove some includes include-what-you-use claims don'tjsg2015-03-141-2/+1
| | | | | | | have any direct symbols used. Tested for indirect use by compiling amd64/i386/sparc64 kernels. ok tedu@ deraadt@
* unifdef INETtedu2014-12-221-5/+1
|
* A few last 'easy' #include dedups.krw2014-12-061-2/+1
| | | | ok tedu@
* replace the custom jumbo allocator with MCLGETI.dlg2014-08-201-227/+44
| | | | putting this in the tree to make it easier for people to test.
* Fewer <netinet/in_systm.h>mpi2014-07-221-3/+1
|
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-121-5/+5
| | | | after discussions with beck deraadt kettenis.
* Use %z* for size_tsf2013-10-011-3/+3
| | | | while there, fix a few %d into %u
* get rid of the copy argument in m_devget that let you provide andlg2013-08-211-2/+2
| | | | | | | | | alternative to bcopy since noone uses it. while there use memcpy instead of bcopy because we know the memory cannot overlap. ok henning@ matthew@ mikeb@ deraadt@
* Most network drivers include netinet/in_var.h, but apparently theybluhm2013-08-071-2/+1
| | | | | don't have to. Just remove these include lines. Compiled on amd64 i386 sparc64; OK henning@ mikeb@
* remove some unnecessary casts. ok blambert deraadt kettenis matthewtedu2011-06-211-7/+7
|
* Stop doing shutdown hooks in network drivers where possible. We alreadyderaadt2010-09-201-17/+1
| | | | | | | take all interfaces down, via their xxstop routines. Claudio and I have verified that none of the shutdown hooks do much extra beyond what xxstop was already doing; it is largely a pile of junk. ok claudio, some early comments by sthen; also read by matthew, jsg
* Cleanup promiscuous mode and multicast handling. From Brad.kettenis2009-12-131-81/+56
|
* Split the ti(4) driver into mostly bus-agnostic code and PCI-specifickettenis2009-08-291-0/+2569
attachment. Add SBus support to the bus-agnostic code.