summaryrefslogtreecommitdiffstats
path: root/sys/dev/vx
Commit message (Collapse)AuthorAgeFilesLines
* Import the (Fast) Etherlink XL driver. I'm reasonally confident in itswpaul1998-08-161-0/+7
| | | | | | | | | | stability now. ALso modify /sys/conf/files, /sys/i386/conf/GENERIC and /sys/i386/conf/LINT to add entries for the XL driver. Deactivate support for the XL adapters in the vortex driver. LAstly, add a man page. (Also added an MLINKS entry for the ThunderLAN man page which I forgot previously.)
* Fixed printf format errors (only 1 left in GENERIC now).bde1998-07-131-2/+2
|
* This commit fixes various 64bit portability problems required fordfr1998-06-071-3/+3
| | | | | | | | | | FreeBSD/alpha. The most significant item is to change the command argument to ioctl functions from int to u_long. This change brings us inline with various other BSD versions. Driver writers may like to use (__FreeBSD_version == 300003) to detect this change. The prototype FreeBSD/alpha machdep will follow in a couple of days time.
* Add $Id$gpalmer1998-02-211-0/+2
|
* Provide a missing parameter to printf to stop the kernel from panicing.gpalmer1998-02-211-1/+1
|
* Removed unused #includes.bde1998-02-203-31/+0
|
* Staticize.eivind1998-02-091-1/+1
|
* Make INET a proper option.eivind1998-01-083-5/+11
| | | | | | | | | | | | This will not make any of object files that LINT create change; there might be differences with INET disabled, but hardly anything compiled before without INET anyway. Now the 'obvious' things will give a proper error if compiled without inet - ipx_ip, ipfw, tcp_debug. The only thing that _should_ work (but can't be made to compile reasonably easily) is sppp :-( This commit move struct arpcom from <netinet/if_ether.h> to <net/if_arp.h>.
* Remove a bunch of variables which were unused both in GENERIC and LINT.phk1997-11-071-1/+0
| | | | Found by: -Wunused
* To obey the traditional practice in mbuf chaining.itojun1997-10-011-10/+15
| | | | | PR: 4020 Reviewed by: hamada@astec.co.jp
* Add shared EISA interrupt support.gibbs1997-09-211-3/+8
| | | | Clean up the match routines so that they return const char *
* Convert to the new callout interface.gibbs1997-09-212-5/+15
| | | | Guard against scheduling more than one callout.
* Struct arpcom should be in the beginning of a softc struct for arp andjhay1997-09-021-1/+1
| | | | | ether_ioctl() to work correctly. Tested by: Joao Carlos Mendes Luis <jonny@mailhost.coppe.ufrj.br>
* Yank the casts.fsmp1997-08-211-1/+1
|
* Add several casts and include several header files to eliminate compilerfsmp1997-08-211-2/+2
| | | | warnings.
* Add a cast to eliminate a compiler warning.fsmp1997-08-211-1/+1
|
* Don't cast function pointers to (void *). This will cause warnings.bde1997-07-012-7/+3
| | | | | | | They should be fixed when similar warnings for the general interrupt attach routines are fixed. Removed unused #include.
* Removed unused #includes.bde1997-06-141-16/+1
|
* Don't include <sys/ioctl.h> in the kernel. Stage 2: includebde1997-03-241-1/+1
| | | | <sys/sockio.h> instead of <sys/ioctl.h> in network files.
* Some of these cards are always in promiscous mode :-(phk1997-01-281-15/+12
| | | | | If you enable ip forwarding your net melts down. This is a workaround, probably not the correct fix.
* Use the new if_multiaddrs list for multicast addresses rather than thewollman1997-01-131-15/+9
| | | | | | | previous hackery involving struct in_ifaddr and arpcom. Get rid of the abominable multi_kludge. Update all network interfaces to use the new machanism. Distressingly few Ethernet drivers program the multicast filter properly (assuming the hardware has one, which it usually does).
* Support 4 of these as default, it only cost us 12 bytes more.phk1996-12-151-0/+5
|
* Some imporvemnets to the vx driver.guido1996-12-021-57/+81
| | | | | | | | | | | | 1. 'connector_table' is shortened to 'conn_tab'. 2. More reliable connector change code. 3. Display message like "vx0: selected bnc. (link1)" when the connector changed by link[012]. 4. Handle MII properly. 5. Potentially slightly better performance. 6. Fixed a silly typo. Submitted by: Naoki Hamada <nao@sbl.cl.nec.co.jp>
* Some imporvemnets to the vx driver.guido1996-12-021-1/+1
| | | | | | | | | | | | 1. 'connector_table' is shortened to 'conn_tab'. 2. More reliable connector change code. 3. Display message like "vx0: selected bnc. (link1)" when the connector changed by link[012]. 4. Handle MII properly. 5. Potentially slightly better performance. 6. Fixed a silly typo. Submitted by: Naoki Hamada <nao@sbl.cl.nec.co.jp>
* Fix ifconfig link flag handlingguido1996-11-211-3/+6
| | | | Submitted by: "Jon Morgan" <morgan@terminus.trailblazer.com>
* New vx driver for:guido1996-11-044-0/+1861
3COM 3C590 Etherlink III PCI, 3COM 3C595 Fast Etherlink PCI, 3COM 3C592 Etherlink III EISA, 3COM 3C590 Fast Etherlink EISA, 3COM 3C900 Etherlink XL PCI and 3COM 3C905 Fast Etherlink XL PCI. This driver is based on OpenBSD's driver. I modified it to run under FreeBSd and made it actually work usefully. Afterwards, nao@tom-yam.or.jp (HAMADA Naoki) added EISA support as well as early support for 3C900 Etherlink XL PCI and 3C905 Fast Etherlink XL PCI. He also split up the driver in a bus independant and bus dependant parts. Especially the 3c59X support should be pretty stable now. Submitted by: partly nao@tom-yam.or.jp (HAMADA Naoki) Obtained from:partly OpenBSD
OpenPOWER on IntegriCloud