summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/if_upl.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove _KERNEL_OPT leftovers.miod2007-02-111-7/+1
|
* In a drivers activate() entry point, if on DVACT_DEACTIVATE it doesmiod2006-06-231-2/+1
| | | | | | something, then it MUST return zero on DVACT_ACTIVATE, not EOPNOTSUPP; this very popular bug has been cut and pasted a lot of times... ok deraadt@ mickey@
* allow bpf(4) to ignore packets based on their direction (inbound ordjm2006-03-251-5/+3
| | | | | outbound), using a new BIOCSDIRFILT ioctl; guidance, feedback and ok canacar@
* Remove last NRND NetBSDisms from tree.krw2006-03-071-17/+1
| | | | ok deraadt@ brad@
* Use usbd_clear_endpoint_stall_async() when clearing endpoint stalls inbrad2006-01-291-4/+4
| | | | | | | | an interrupt context. From NetBSD ok dlg@
* Remove redundant calls to bpfdetach.canacar2006-01-041-4/+1
| | | | ok brad@
* Don't keep the devinfo string on the stack, instead use malloc/free.brad2005-08-011-4/+5
| | | | | | | | This should cure some rare stack overflows. From augustss NetBSD ok dlg@ pascoe@
* clear IFF_RUNNING & IFF_OACTIVE in foo_stop() before de-allocating resources.brad2005-07-021-3/+2
|
* remove netns crud.henning2005-06-081-21/+1
| | | | | some drivers actually had hooks for SIOCSIFADDR, most just useless includes "looks good" deraadt miod brad
* strncpy->strlcpygrange2004-11-101-2/+2
| | | | ok henning@
* put "do { } while (0)" wrappers on all the debug maroc functionsderaadt2004-07-081-3/+3
|
* Set devclass to DV_IFNET for all USB network drivers.cedric2003-12-151-2/+2
| | | | ok deraadt@ nate@
* string cleanup; nate okderaadt2003-05-071-2/+2
|
* remove the altq classifier code which is replaced by pf and no longer used.kjc2003-01-071-9/+2
| | | | ok henning@, deraadt@
* Make code more portablenate2002-07-291-17/+8
|
* get rid of trailing whitespacenate2002-07-251-4/+4
|
* allocate sockaddr_dl for ifnet in if_alloc_sadl(), as we don't always knowitojun2002-06-301-1/+2
| | | | | the size of sockaddr_dl on if_attach() - for instance, see ether_ifattach(). from netbsd. fgs ok
* Kill __FUNCTION__.espie2002-06-261-19/+19
|
* use IF_INPUT macro for us as well.fgsch2002-06-071-2/+2
|
* Meant to commit only ulpt and committed everything. Most things weren't readynate2002-05-071-11/+17
|
* Sync ulpt driver with NetBSDnate2002-05-071-17/+11
|
* sync with KAMEkjc2002-03-121-11/+21
| | | | | ALTQify more drivers. ok millert@
* Synchronize usb code with NetBSD.nate2001-10-311-10/+10
|
* change the meaning of ifnet.if_lastchange to meet RFC1573 ifLastChange.itojun2001-06-151-2/+1
| | | | | | | | follows BSD/OS practice and ucd-snmp code (FreeBSD does it for specific interfaces only). was: if_lastchange get updated on every packet transmission/receipt. now: if_lastchange get updated when IFF_UP is changed.
* for ethernet ifaces attach bpf from ether_ifattach; jason@, aaron@, itojun@ okmickey2001-02-201-3/+1
|
* Add driver for Prolific PL2301/PL2302 host-to-host adapter. From NetBSD.aaron2001-01-281-0/+1116
/* XXX - untested */ Note: just reminding myself that I need to create a nice diff for Lennart to further portablize the USB code (I fell behind in doing this). In particular, for this driver, the IF_INPUT() macro just does ether_input() in OpenBSD, but we really want to call the local upl_input() routine.