summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_vic.c
AgeCommit message (Expand)Author
2007-10-28let vic attach to the virtual pcnet hardware in vmware.David Gwynne
2007-10-23shrink dmesg output to one line that shows irq and the ethernet address.David Gwynne
2007-06-15the multicast filter is operated on as an array of u_int16_t's, not theDavid Gwynne
2007-05-26one extern seems to be better than 20 for ifqmaxlen; ok krwJason Wright
2007-05-04when it does not compile we KNOW it was not tested. come onTheo de Raadt
2007-05-04do not call vic_init() on ENETRESET in the ioctl handler, useReyk Floeter
2007-04-22this is my previous commit again, but this time it was tested.David Gwynne
2007-04-21backout: compile before you commit, pleaseTheo de Raadt
2007-04-21when allocating a new mbuf for rx, do a dmamap_sync before handing it toDavid Gwynne
2007-04-17a break in the default case, while unnecessary, is still nice.David Gwynne
2007-04-17point ifreq in the ioctl path at something, so we can void dereferencingDavid Gwynne
2007-04-14replace IPL_BIO with IPL_NET. vic(4) is a networking driver, not blockReyk Floeter
2007-01-30update vic(4) to use the LINK_STATE_IS_UP() macroReyk Floeter
2006-12-14remove an ugly macro that made claudio sad. luckily it wasnt being used.David Gwynne
2006-12-03always assume full duplex state if the interface is up... what doesReyk Floeter
2006-12-03re-add a tiny little #ifdef VIC_DEBUG, used to compare the vic(4)Reyk Floeter
2006-11-09no need to check for IFF_ALLMULTI when we just removed the flag...Reyk Floeter
2006-11-09knfReyk Floeter
2006-11-09add multicast filter support instead of using ALLMULTI all the timeReyk Floeter
2006-11-06set the rx filters after setting the shared data address.Reyk Floeter
2006-11-02if the hardware doesnt say it can do scatter gather lists for tx, thenDavid Gwynne
2006-11-02comments like "schedule timeout" before going timeout_add are dumb. learnDavid Gwynne
2006-11-02dont set tx_stopped when we actually want to do tx.David Gwynne
2006-11-02pointers in hardware structures are stupid. shame on you vmware.David Gwynne
2006-11-02reyk said i can put my copyright on this file too.David Gwynne
2006-11-02merge the register description into the c file. nothing else will everDavid Gwynne
2006-11-02set up a tick to check the link state every second.David Gwynne
2006-11-02remove cruftDavid Gwynne
2006-11-02split the initialisation of the dma area up between the attach path and theDavid Gwynne
2006-11-02set the proper maximum queue length.Brad Smith
2006-11-02we sync regions in the dma area anymore, we just sync the whole thing. thisDavid Gwynne
2006-11-02VIC_DEBUG is useless, so it goes awayDavid Gwynne
2006-11-02more whitespace fixesDavid Gwynne
2006-11-02rewrite the tx path so it doesnt feel so lopsided.David Gwynne
2006-11-02whitespaces cleanup, no functional changeFelix Kronlage
2006-11-01Use correct error message as return value. OK dlg@Claudio Jeker
2006-11-01fix the tx path so it can use more than one scatter gather entry whenDavid Gwynne
2006-11-01let the tx completion path clean up by recording which mbuf we'reDavid Gwynne
2006-11-01vmware frames are slightly short, but that is ok. done with clues fromDavid Gwynne
2006-11-01fix the barriers in setlladdr.David Gwynne
2006-10-31we're passing physical addresses to the adapter, so say so. add some magicDavid Gwynne
2006-10-31absolutely huge reworking on this driver (sorry reyk). so far attach,David Gwynne
2006-05-31- stop counting input/output bytes in the driver as this is taken care ofBrad Smith
2006-05-28- remove ETHER_MAX_LEN_JUMBO and ETHERMTU_JUMBO.Brad Smith
2006-05-28unknown ioctl is ENOTTY not EINVALJason Wright
2006-03-25allow bpf(4) to ignore packets based on their direction (inbound orDamien Miller
2006-03-04- Use sc->sc_dev.dv_xname everywhere.Brad Smith
2006-02-26clean up if there is a failure to attach.Brad Smith
2006-02-26store the shutdown hook pointer in the softc struct.Brad Smith
2006-02-26vic(4) is PCI only so make it look like a typical PCI only driver.Brad Smith