archie
75e32a670a
Make all Ethernet drivers attach using ether_ifattach() and detach using
...
ether_ifdetach().
The former consolidates the operations of if_attach(), ng_ether_attach(),
and bpfattach(). The latter consolidates the corresponding detach operations.
Reviewed by: julian, freebsd-net
2000-07-13 22:54:34 +00:00
itojun
1897cf38f9
be sure to wipe out m_pkthdr when you set M_PKTHDR, you may see junk pointer
...
in m_pkthdr portion.
actually, we should not change pkthdr mbuf <-> non-pkthdr mbuf.
2000-07-04 18:43:32 +00:00
gj
46b83ce4fd
MF4: add support for the Am79C973.
2000-06-18 08:12:54 +00:00
peter
4c6ce84a31
Unused includes: #include "pci.h" and #include "lnc.h"
2000-06-10 11:13:39 +00:00
brian
07c2b69b6d
Dynamically allocate softc structures
...
Reviewed by: Mark Knight <mkn@uk.FreeBSD.org>
2000-06-09 17:03:29 +00:00
peter
252dc9302f
Mass update of isa drivers using compatability shims to use
...
COMPAT_ISA_DRIVER() so that we can get rid of the evil isa_compat.h table.
2000-05-28 13:40:48 +00:00
nyan
2b80ed9c28
Fixed to support PC-98.
2000-05-19 16:31:45 +00:00
paul
f548509f2d
Replace all references to lnc_softc with a typedef.
2000-05-16 02:30:53 +00:00
paul
596420d799
Update copyright.
2000-05-16 02:18:49 +00:00
paul
17b1de0ece
Re-organise lnc driver in preparation for newbusifying it.
2000-05-16 02:08:04 +00:00
paul
26e045fa2c
Unchain lnc include files.
2000-05-14 19:14:41 +00:00
paul
e78746dfe8
Fix includes to build from /sys/dev/lnc
2000-05-14 18:21:39 +00:00
paul
6da5153187
Sync with the BPF and BRIDGE changes.
2000-05-14 17:37:34 +00:00
peter
81103ba0e4
Add $FreeBSD$
2000-05-01 20:32:07 +00:00
phk
43018e3fb6
Remove ~25 unneeded #include <sys/conf.h>
...
Remove ~60 unneeded #include <sys/malloc.h>
2000-04-19 14:58:28 +00:00
imp
f454c7935a
Ahhrggg. Put the test for the compat shims AFTER the file that includes
...
them.
Pointed out by: bde
2000-03-27 20:24:02 +00:00
imp
5f1e2ae32e
Per conversations in -current, add #error to these drivers when you don't
...
have the right compatibility shims enabled. ISA drivers to follow later.
2000-03-27 18:32:45 +00:00
paul
504f0f8dca
Update the copyright. Remove the advertising clause.
2000-03-20 00:53:46 +00:00
peter
dfabf6fde1
Remove a bunch of unused (NO-OP) #if NFOO > 0 type includes and some
...
#include "foo.h" headers.
2000-01-29 16:17:36 +00:00
phk
024e9c590a
Remove NBPF conditionality of bpf calls in most of our network drivers.
...
This means that we will not have to have a bpf and a non-bpf version
of our driver modules.
This does not open any security hole, because the bpf core isn't loadable
The drivers left unchanged are the "cross platform" drivers where the respective
maintainers are urged to DTRT, whatever that may be.
Add a couple of missing FreeBSD tags.
1999-09-25 12:06:01 +00:00
peter
e4b04a2b21
$Id$ -> $FreeBSD$
1999-08-28 01:08:13 +00:00
mdodd
bb8e33cd0b
Set ifp->if_init to the right function.
...
if_init_f_t is passed void * containing the address of ifp->if_softc
not the unit number.
Someone tell me if these things don't work as I don't have the hardware
needed to test them. (thats a first.)
I'll get if_ze and if_zp later.
Pointed out by: Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
1999-08-20 14:12:14 +00:00
mdodd
a5b82ebd18
Make these actually compile. I got a little delete happy pruning includes
...
and used 'command' instead of 'cmd' in a few cases. Also clear up some
unused variables.
Pointed out by: phk
1999-08-18 22:14:24 +00:00
mdodd
b2e49f6848
SIOCSIFADDR, SIOCGIFADDR, and SIOCSIFMTU are implemented in
...
sys/net/if_ethersubr.c:ether_ioctl(). Drivers need not implement generic
behavior.
PR: kern/12126
Submitted by: in part by Boris Popov <bp@butya.kz>
1999-08-18 06:12:00 +00:00
mdodd
8274c26880
Add support for the Am79C978. (AMD PCHome/PCI Ethernet adapter)
...
See: http://www.amd.com/products/npd/overview/homenetworking/intro.html
PR: kern/12275
Submitted by: Robert Watson <robert@cyrus.watson.org>
1999-08-10 01:03:51 +00:00
des
284ed27f44
Rename bpfilter to bpf.
1999-07-06 19:23:32 +00:00
peter
69b2430c97
Eliminate a bunch of #include "pci.h" and #if NPCI > 0 around entire
...
files. config will leave the whole file out if configured to do so.
1999-07-03 20:17:08 +00:00
paul
baf497af03
Set the bus master bit.
...
Submitted by: Ted Faber
1999-05-10 22:39:37 +00:00
peter
2f03f0a6c1
#ifdef BRIDGE around a goto label used by the bridge code to silcence a
...
warning.
1999-05-09 23:24:47 +00:00
peter
970b6faae9
Simplify the COMPAT_PCI_DRIVER/DATA_SET hack. We can add:
...
#define COMPAT_PCI_DRIVER(name,data) DATA_SET(pcidevice_set,data)
.. to 2.2.x and 3.x if people think it's worth it. Driver writers can do
this if it's not defined. (The reason for this is that I'm trying to
progressively eliminate use of linker_sets where it hurts modularity and
runtime load capability, and these DATA_SET's keep getting in the way.)
1999-05-09 17:07:30 +00:00
peter
36880de539
Fix up a few easy 'assignment used as truth value' and 'suggest parens
...
around && within ||' type warnings. I'm pretty sure I have not masked
any problems here, I've committed real problem fixes seperately.
1999-05-06 18:44:42 +00:00
peter
48287d84dc
Add sufficient braces to keep egcs happy about potentially ambiguous
...
if/else nesting.
1999-05-06 18:13:11 +00:00
peter
6b7a3225d7
Use COMPAT_PCI_DRIVER() for registration if it exists. This shouldn't
...
hurt the driver portability to 3.x too much for where drivers are shared.
1999-04-24 20:17:05 +00:00
paul
54ec48fcbc
Set ifq_maxlen to IFQ_MAXLEN
1999-04-18 01:49:16 +00:00
paul
56582da3e6
Set ifq_maxlen to number of transmit descriptors.
1999-04-18 01:37:19 +00:00
paul
2a59668af3
The changes to vm_page.c have broken the assumption that mallocing
...
early will result in memory below 16M so now we need to explicitly use
contigmalloc to get low physical memory.
1999-04-18 01:03:46 +00:00
luigi
be6e5ad345
MF22... add bridging support to the device drivers. Without this
...
bridging cannot work on -current/releng3!
1999-03-17 16:44:53 +00:00
paul
a08dbd9d10
New driver flags to support IFF_ALLMULTI handling.
1999-01-31 00:56:32 +00:00
paul
77c418cd33
Add IFF_MULTICAST when setting flags in lnc_init().
1999-01-31 00:44:37 +00:00
paul
94ebb25227
Fix and enable multicast support.
1999-01-31 00:39:20 +00:00
eivind
f522d49d01
Silence warnings.
1999-01-12 00:36:36 +00:00
dillon
5fb9bd9c35
probe function changed from returning char * to const char *.
1998-12-14 06:37:37 +00:00
paul
8daafcd4a8
Add Id string to if_lnc.h and fix up copyrights to be consistent and up to date.
1998-11-26 00:57:32 +00:00
paul
4b632cb7fa
Despite what people may think the Am79C970 returns the chip id of an Am79C965.
...
Fix the PCI probe code to accept this id otherwise cards based on the Am79C970
fail to probe.
1998-11-26 00:53:45 +00:00
luigi
e71df8886e
Fix a typo, and remove verbose error reporting when in
...
promisc mode (they are annoying in normal mode
as well so i am really tempted to remove them unconditionally...)
1998-10-30 11:53:58 +00:00
bde
3dbd6f0919
Initialize isa_devtab entries for interrupt handlers in individual
...
device drivers, not in ioconf.c. Use a different hack in isa_device.h
so that a new config(8) is not required yet.
pc98 parts approved by: kato
1998-10-22 05:58:45 +00:00
jkh
37f2b60c6f
MF22: Robert Swindells' patch for correct probing of more AMD cards.
...
Merged by: Max Khon <fjoe@iclub.nsu.ru>
1998-09-17 13:09:16 +00:00
bde
f6db30ae0d
Fixed printf format errors. Only one left in LINT on i386's.
1998-08-24 02:28:16 +00:00
msmith
63d9bb9639
Add support for PCNet PCI chips that only work when we talk to them as ISA
...
devices. Specifically fix the case for the Hitachi version as used in
their VisionBook models.
Submitted by: Ted Faber <faber@isi.edu>
1998-07-20 17:33:01 +00:00
dfr
92449ad5fa
This commit fixes various 64bit portability problems required for
...
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.
1998-06-07 17:13:14 +00:00