index
:
src
cvs/HEAD
kms/intel
kms/radeon
master
OpenBSD base system
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
sys
/
dev
/
pci
/
if_vic.c
Age
Commit message (
Expand
)
Author
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
2006-11-02
reyk said i can put my copyright on this file too.
David Gwynne
2006-11-02
merge the register description into the c file. nothing else will ever
David Gwynne
2006-11-02
set up a tick to check the link state every second.
David Gwynne
2006-11-02
remove cruft
David Gwynne
2006-11-02
split the initialisation of the dma area up between the attach path and the
David Gwynne
2006-11-02
set the proper maximum queue length.
Brad Smith
2006-11-02
we sync regions in the dma area anymore, we just sync the whole thing. this
David Gwynne
2006-11-02
VIC_DEBUG is useless, so it goes away
David Gwynne
2006-11-02
more whitespace fixes
David Gwynne
2006-11-02
rewrite the tx path so it doesnt feel so lopsided.
David Gwynne
2006-11-02
whitespaces cleanup, no functional change
Felix Kronlage
2006-11-01
Use correct error message as return value. OK dlg@
Claudio Jeker
2006-11-01
fix the tx path so it can use more than one scatter gather entry when
David Gwynne
2006-11-01
let the tx completion path clean up by recording which mbuf we're
David Gwynne
2006-11-01
vmware frames are slightly short, but that is ok. done with clues from
David Gwynne
2006-11-01
fix the barriers in setlladdr.
David Gwynne
2006-10-31
we're passing physical addresses to the adapter, so say so. add some magic
David Gwynne
2006-10-31
absolutely 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 of
Brad Smith
2006-05-28
- remove ETHER_MAX_LEN_JUMBO and ETHERMTU_JUMBO.
Brad Smith
2006-05-28
unknown ioctl is ENOTTY not EINVAL
Jason Wright
2006-03-25
allow bpf(4) to ignore packets based on their direction (inbound or
Damien Miller
2006-03-04
- Use sc->sc_dev.dv_xname everywhere.
Brad Smith
2006-02-26
clean up if there is a failure to attach.
Brad Smith
2006-02-26
store the shutdown hook pointer in the softc struct.
Brad Smith
2006-02-26
vic(4) is PCI only so make it look like a typical PCI only driver.
Brad Smith
2006-02-25
Add vic(4), a driver for the VMware vmxnet network interface. This is
Reyk Floeter