Age | Commit message (Expand) | Author |
2011-11-29 | Do not blindly return 1 from the interrupt handler since we do not know | Joel Sing |
2010-05-19 | BUS_DMA_ZERO instead of alloc, map, bzero. | Owain Ainsworth |
2009-11-17 | Tidy up promisc/multicast handling. Tested by myself (and earlier | Stuart Henderson |
2009-08-13 | - consistify cfdriver for the ethernet drivers (0 -> NULL) | Jasper Lievisse Adriaanse |
2009-08-10 | delete xxshutdown handlers that are never even hooked up | Theo de Raadt |
2009-08-09 | MCLGETI() will now allocate a mbuf header if it is not provided, thus | Theo de Raadt |
2009-06-02 | Fix some minor format string problems found in a maze of false positives | Theo de Raadt |
2009-02-01 | use m_clsetwms to tell the allocator how big the rings are. | David Gwynne |
2008-12-30 | Add missing newline to error message printf. | Reyk Floeter |
2008-12-12 | matthieu and reyk say that using 9k frames for rx breaks vic on esx. i can | David Gwynne |
2008-12-05 | enable 9k frames on the "jumbo" ring | David Gwynne |
2008-12-03 | allocate the right number of entries in the "jumbo" rx ring now that it is | David Gwynne |
2008-12-03 | use the right variable when looping over rxqs. | David Gwynne |
2008-11-28 | Eliminate the redundant bits of code for MTU and multicast handling | Brad Smith |
2008-11-25 | backout large cluster allocators. | David Gwynne |
2008-11-25 | put 9k frames on the jumbo ring | David Gwynne |
2008-11-24 | no 9k cluster allocator yet, switch back to 4k. | David Gwynne |
2008-11-24 | switch from 4k to 9k frames on the jumbo ring now the cluster allocator is | David Gwynne |
2008-11-24 | enable the use of the second rx ring. populate it with 4k frames until the | David Gwynne |
2008-11-24 | switch from using MCLGET to MCLGETI for clusters going onto the rx ring. | David Gwynne |
2008-11-24 | drop the requirement that the rx ring has to be filled with mbufs. we only | David Gwynne |
2008-10-29 | dlg says "well, that is embarassing" | Theo de Raadt |
2008-10-02 | First step towards cleaning up the Ethernet driver ioctl handling. | Brad Smith |
2008-09-10 | Convert timeout_add() calls using multiples of hz to timeout_add_sec() | Bret Lambert |
2008-07-07 | tweak the alignment of the rx buffers so the headers in the frame are | David Gwynne |
2007-11-28 | use correct data type for the pci address (bus_addr_t) | Reyk Floeter |
2007-10-28 | let vic attach to the virtual pcnet hardware in vmware. | David Gwynne |
2007-10-23 | shrink dmesg output to one line that shows irq and the ethernet address. | David Gwynne |
2007-06-15 | the multicast filter is operated on as an array of u_int16_t's, not the | David Gwynne |
2007-05-26 | one extern seems to be better than 20 for ifqmaxlen; ok krw | Jason Wright |
2007-05-04 | when it does not compile we KNOW it was not tested. come on | Theo de Raadt |
2007-05-04 | do not call vic_init() on ENETRESET in the ioctl handler, use | Reyk Floeter |
2007-04-22 | this is my previous commit again, but this time it was tested. | David Gwynne |
2007-04-21 | backout: compile before you commit, please | Theo de Raadt |
2007-04-21 | when allocating a new mbuf for rx, do a dmamap_sync before handing it to | David Gwynne |
2007-04-17 | a break in the default case, while unnecessary, is still nice. | David Gwynne |
2007-04-17 | point ifreq in the ioctl path at something, so we can void dereferencing | David Gwynne |
2007-04-14 | replace IPL_BIO with IPL_NET. vic(4) is a networking driver, not block | Reyk Floeter |
2007-01-30 | update vic(4) to use the LINK_STATE_IS_UP() macro | Reyk Floeter |
2006-12-14 | remove an ugly macro that made claudio sad. luckily it wasnt being used. | David Gwynne |
2006-12-03 | always assume full duplex state if the interface is up... what does | Reyk Floeter |
2006-12-03 | re-add a tiny little #ifdef VIC_DEBUG, used to compare the vic(4) | Reyk Floeter |
2006-11-09 | no need to check for IFF_ALLMULTI when we just removed the flag... | Reyk Floeter |
2006-11-09 | knf | Reyk Floeter |
2006-11-09 | add multicast filter support instead of using ALLMULTI all the time | Reyk Floeter |
2006-11-06 | set the rx filters after setting the shared data address. | Reyk Floeter |
2006-11-02 | if the hardware doesnt say it can do scatter gather lists for tx, then | David Gwynne |
2006-11-02 | comments like "schedule timeout" before going timeout_add are dumb. learn | David Gwynne |
2006-11-02 | dont set tx_stopped when we actually want to do tx. | David Gwynne |
2006-11-02 | pointers in hardware structures are stupid. shame on you vmware. | David Gwynne |