Home
last modified time | relevance | path

Searched refs:net (Results 1 – 25 of 226) sorted by relevance

12345678910

/linux-2.4.37.9/drivers/usb/
DCDCEther.c65 struct net_device *net; in read_bulk_callback() local
84 net = ether_dev->net; in read_bulk_callback()
85 if ( !netif_device_present(net) ) { in read_bulk_callback()
108 dbg( "%s: RX status %d", net->name, urb->status ); in read_bulk_callback()
125 skb->dev = net; in read_bulk_callback()
133 skb->protocol = eth_type_trans(skb, net); in read_bulk_callback()
171 if ( !netif_device_present(ether_dev->net) ) { in write_bulk_callback()
179 dbg("%s: TX status %d", ether_dev->net->name, urb->status); in write_bulk_callback()
184 ether_dev->net->trans_start = jiffies; in write_bulk_callback()
185 netif_wake_queue( ether_dev->net ); in write_bulk_callback()
[all …]
Dpegasus.c430 memcpy(pegasus->net->dev_addr, node_id, sizeof(node_id)); in set_ethernet_addr()
503 struct net_device *net; in read_bulk_callback() local
512 net = pegasus->net; in read_bulk_callback()
513 if (!netif_device_present(net)) in read_bulk_callback()
531 dbg("%s: RX status %d", net->name, urb->status); in read_bulk_callback()
540 dbg("%s: RX packet error %x", net->name, rx_status & 0xe0000); in read_bulk_callback()
561 skb->dev = net; in read_bulk_callback()
570 skb->protocol = eth_type_trans(skb, net); in read_bulk_callback()
588 struct net_device *net = pegasus->net; in write_bulk_callback() local
593 if (!netif_device_present(net)) in write_bulk_callback()
[all …]
Dkaweth.c223 struct net_device *net; member
487 netif_carrier_on(kaweth->net); in int_callback()
489 netif_carrier_off(kaweth->net); in int_callback()
533 struct net_device *net = kaweth->net; in kaweth_usb_receive() local
555 net->name, in kaweth_usb_receive()
563 if(kaweth->net && (count > 2)) { in kaweth_usb_receive()
579 skb->dev = net; in kaweth_usb_receive()
585 skb->protocol = eth_type_trans(skb, net); in kaweth_usb_receive()
599 static int kaweth_open(struct net_device *net) in kaweth_open() argument
601 struct kaweth_device *kaweth = (struct kaweth_device *)net->priv; in kaweth_open()
[all …]
Dusbnet.c229 struct net_device net; member
384 printk(KERN_DEBUG "%s: " fmt "\n" , (usbnet)->net.name , ## arg)
391 printk(KERN_INFO "%s: " fmt "\n" , (usbnet)->net.name , ## arg); \
521 static void ax8817x_set_multicast(struct net_device *net) in ax8817x_set_multicast() argument
523 struct usbnet *dev = (struct usbnet *) net->priv; in ax8817x_set_multicast()
526 if (net->flags & IFF_PROMISC) { in ax8817x_set_multicast()
528 } else if (net->flags & IFF_ALLMULTI in ax8817x_set_multicast()
529 || net->mc_count > AX_MAX_MCAST) { in ax8817x_set_multicast()
531 } else if (net->mc_count == 0) { in ax8817x_set_multicast()
534 struct dev_mc_list *mc_list = net->mc_list; in ax8817x_set_multicast()
[all …]
/linux-2.4.37.9/Documentation/sound/
DChangeLog.multisound1 1998-12-04 Andrew T. Veliath <andrewtv@usa.net>
7 1998-11-11 Andrew T. Veliath <andrewv@usa.net>
14 1998-09-10 Andrew Veliath <andrewtv@usa.net>
20 1998-09-09 Andrew Veliath <andrewtv@usa.net>
28 1998-09-07 Andrew Veliath <andrewtv@usa.net>
44 1998-09-05 Andrew Veliath <andrewtv@usa.net>
51 1998-09-03 Andrew Veliath <andrewtv@usa.net>
55 1998-09-01 Andrew Veliath <andrewtv@usa.net>
60 1998-08-29 Andrew Veliath <andrewtv@usa.net>
77 1998-08-06 Andrew Veliath <andrewtv@usa.net>
[all …]
/linux-2.4.37.9/drivers/usb/gadget/
Dether.c131 struct net_device *net; member
310 printk(level "%s: " fmt , (d)->net->name , ## args)
1128 netif_carrier_on (dev->net); in set_ether_config()
1129 if (netif_running (dev->net)) { in set_ether_config()
1153 netif_stop_queue (dev->net); in eth_reset_config()
1154 netif_carrier_off (dev->net); in eth_reset_config()
1554 netif_carrier_on (dev->net); in eth_setup()
1557 if (netif_running (dev->net)) { in eth_setup()
1563 netif_stop_queue (dev->net); in eth_setup()
1564 netif_carrier_off (dev->net); in eth_setup()
[all …]
/linux-2.4.37.9/
DMAINTAINERS11 2. Try to release a few ALPHA test versions to the net. Announce
75 M: mikep@linuxtr.net
76 L: linux-net@vger.kernel.org
77 L: linux-tr@linuxtr.net
78 W: http://www.linuxtr.net
84 L: linux-net@vger.kernel.org
90 L: linux-net@vger.kernel.org
113 W: http://sourceforge.net/projects/gkernel/
126 W: http://serial.sourceforge.net
132 L: linux-net@vger.kernel.org
[all …]
DMakefile17 FINDHPATH = $(HPATH)/asm $(HPATH)/linux $(HPATH)/scsi $(HPATH)/net $(HPATH)/math-emu
138 NETWORKS =net/network.o
141 SUBDIRS =kernel drivers mm fs net ipc lib crypto
153 drivers/net/net.o
158 DRIVERS-$(CONFIG_NET_FC) += drivers/net/fc/fc.o
159 DRIVERS-$(CONFIG_DEV_APPLETALK) += drivers/net/appletalk/appletalk.o
160 DRIVERS-$(CONFIG_TR) += drivers/net/tokenring/tr.o
161 DRIVERS-$(CONFIG_WAN) += drivers/net/wan/wan.o
162 DRIVERS-$(CONFIG_ARCNET) += drivers/net/arcnet/arcnetdrv.o
178 DRIVERS-$(CONFIG_NET_PCMCIA) += drivers/net/pcmcia/pcmcia_net.o
[all …]
/linux-2.4.37.9/drivers/scsi/
DREADME.ppa4 http://www.torque.net/~campbell/
7 http://www.torque.net/~campbell/ppa/
10 http://www.torque.net/parport/
13 linux-parport@torque.net
16 campbell@torque.net
/linux-2.4.37.9/net/khttpd/
DREADME41 2) configure the module in /proc/sys/net/khttpd if needed
42 3) echo 1 > /proc/sys/net/khttpd/start
46 echo 1 > /proc/sys/net/khttpd/stop
47 echo 1 > /proc/sys/net/khttpd/unload
95 echo 80 > /proc/sys/net/khttpd/clientport
96 echo 8080 > /proc/sys/net/khttpd/serverport
97 echo /var/www > /proc/sys/net/khttpd/documentroot
98 echo php3 > /proc/sys/net/khttpd/dynamic
99 echo shtml > /proc/sys/net/khttpd/dynamic
100 echo 1 > /proc/sys/net/khttpd/start
[all …]
/linux-2.4.37.9/net/econet/
Daf_econet.c182 sk->protinfo.af_econet->net = sec->addr.net; in econet_bind()
269 addr.net = sk->protinfo.af_econet->net; in econet_sendmsg()
276 addr.net = saddr->addr.net; in econet_sendmsg()
282 dev = net2dev_map[addr.net]; in econet_sendmsg()
462 sec->addr.net = sk->protinfo.af_econet->net; in econet_getname()
606 net2dev_map[edev->net] = NULL; in ec_dev_ioctl()
608 edev->net = sec->addr.net; in ec_dev_ioctl()
609 net2dev_map[sec->addr.net] = dev; in ec_dev_ioctl()
624 sec->addr.net = edev->net; in ec_dev_ioctl()
730 station, unsigned char net) in ec_listening_socket() argument
[all …]
/linux-2.4.37.9/net/
DConfig.in21 source net/ipv4/Config.in
26 source net/ipv6/Config.in
30 source net/khttpd/Config.in
33 source net/sctp/Config.in
60 source net/ipx/Config.in
65 source drivers/net/appletalk/Config.in
70 source net/decnet/Config.in
97 source net/sched/Config.in
/linux-2.4.37.9/net/irda/
DConfig.in13 source net/irda/irlan/Config.in
14 source net/irda/irnet/Config.in
15 source net/irda/ircomm/Config.in
24 source drivers/net/irda/Config.in
/linux-2.4.37.9/Documentation/networking/
DConfigurable9 linux/net/TUNABLE
16 # cat /proc/sys/net/ipv4/arp_timeout
18 # echo 7000 > /proc/sys/net/ipv4/arp_timeout
19 # cat /proc/sys/net/ipv4/arp_timeout
26 machines transmitting on the same net, resulting in overruns and receive errors.
29 # route add -net 192.168.3.0 window 4096
Ddecnet.txt8 http://linux-decnet.sourceforge.net/ - Userland tools
9 http://www.sourceforge.net/projects/linux-decnet/ - Status page
45 using /proc/sys/net/decnet/conf/<dev>/forwarding. This file can be
49 also be set through the /proc/sys/net/decnet/ files, as can other system
55 /proc/net/decnet_dev). There is a utility available at the above
66 You will also need to set /proc/sys/net/decnet/default_device to the
70 echo -n "eth0" >/proc/sys/net/decnet/default_device
72 There is a list of what the other files under /proc/sys/net/decnet/ do
102 - Is the node address set (see /proc/sys/net/decnet/node_address)
104 (see /proc/sys/net/decnet/conf/<dev>/forwarding)
[all …]
Dproc_net_tcp.txt1 This document describes the interfaces /proc/net/tcp and /proc/net/tcp6.
4 connections, and are implemented by tcp_get_info() in net/ipv4/tcp_ipv4.c and
5 tcp6_get_info() in net/ipv6/tcp_ipv6.c, respectively.
8 TCP connections. A typical entry of /proc/net/tcp would look like this (split
Dcops.txt52 dummy -seed -phase 2 -net 2000 -addr 2000.10 -zone "1033"
53 lt0 -seed -phase 1 -net 1000 -addr 1000.50 -zone "1033"
56 eth0 -seed -phase 2 -net 3000 -addr 3000.20 -zone "1033"
57 lt0 -seed -phase 1 -net 1000 -addr 1000.50 -zone "1033"
61 lt0 -seed -phase 1 -net 1000 -addr 1000.10 -zone "LocalTalk1"
62 lt1 -seed -phase 1 -net 2000 -addr 2000.20 -zone "LocalTalk2"
63 eth0 -seed -phase 2 -net 3000 -addr 3000.30 -zone "EtherTalk"
Dpt.txt10 drivers/net directory in the Linux source tree, for me this is the
11 directory /usr/src/linux/drivers/net. The patch file needs to be patched in
32 other net device and just need ifconfig to get them going.
33 As an example, here is my /etc/rc.net
40 /sbin/route add -net 44.136.8.0 netmask 255.255.255.0 dev pt0a
41 /sbin/route add -net 44.0.0.0 netmask 255.0.0.0 gw 44.136.8.68 dev pt0a
42 /sbin/route add -net 138.25.16.0 netmask 255.255.240.0 dev pt0a
/linux-2.4.37.9/include/linux/
Dif_ec.h11 unsigned char net; /* Network number. */ member
55 unsigned char net; member
60 unsigned char station, net; /* Econet protocol address */ member
/linux-2.4.37.9/Documentation/DocBook/
DMakefile56 wanbook.sgml: wanbook.tmpl $(TOPDIR)/drivers/net/wan/syncppp.c
57 $(TOPDIR)/scripts/docgen $(TOPDIR)/drivers/net/wan/syncppp.c \
60 z8530book.sgml: z8530book.tmpl $(TOPDIR)/drivers/net/wan/z85230.c
61 $(TOPDIR)/scripts/docgen $(TOPDIR)/drivers/net/wan/z85230.c \
71 sis900.sgml: sis900.tmpl $(TOPDIR)/drivers/net/sis900.c
72 $(TOPDIR)/scripts/docgen $(TOPDIR)/drivers/net/sis900.c \
105 $(TOPDIR)/drivers/net/net_init.c \
106 $(TOPDIR)/drivers/net/8390.c \
114 $(TOPDIR)/drivers/net/wan/syncppp.c \
115 $(TOPDIR)/drivers/net/wan/z85230.c \
[all …]
/linux-2.4.37.9/net/bluetooth/
DConfig.in14 source net/bluetooth/rfcomm/Config.in
15 source net/bluetooth/bnep/Config.in
16 source net/bluetooth/cmtp/Config.in
/linux-2.4.37.9/Documentation/video4linux/bttv/
DCONTRIBUTORS15 bigfoot <bigfoot@net-way.net>
16 Ragnar Hojland Espinosa <ragnar@macula.net>
/linux-2.4.37.9/Documentation/usb/
Drio.txt48 The main page for the project is hosted at sourceforge.net in the following
49 address: http://rio500.sourceforge.net You can also go to the sourceforge
50 project page at: http://sourceforge.net/project/?group_id=1944 There is
51 also a mailing list: rio500-users@lists.sourceforge.net
57 Clayton <kclayton@jps.net> is incharge of the PPC port and making sure
58 things work there. Bruce Tenison <btenison@dibbs.net> is adding support
66 http://rio500.sourceforge.net/
129 That's it. The Rio500 Utils at: http://rio500.sourceforge.net should
137 btenison@dibbs.net
/linux-2.4.37.9/Documentation/
Dsmart-config.txt4 Michael Chastain <mec@shout.net>
10 Suppose that drivers/net/foo.c has the following lines:
31 to be out of date, which will cause drivers/net/foo.c to be recompiled.
42 drivers/net/foo.c: include/linux/config.h
46 drivers/net/foo.c: \
50 So drivers/net/foo.c depends only on the CONFIG_* lines that
87 This helps clean up drivers/net/Makefile, drivers/scsi/Makefile,
Dmagic-number.txt34 <mailto:mec@shout.net>
49 MKISS_DRIVER_MAGIC 0x04bf mkiss_channel drivers/net/mkiss.h
59 SLIP_MAGIC 0x5302 slip drivers/net/slip.h
60 STRIP_MAGIC 0x5303 strip drivers/net/strip.c
61 X25_ASY_MAGIC 0x5303 x25_asy drivers/net/x25_asy.h
62 SIXPACK_MAGIC 0x5304 sixpack drivers/net/hamradio/6pack.h
63 AX25_MAGIC 0x5316 ax_disp drivers/net/mkiss.h
74 BAYCOM_MAGIC 0x19730510 baycom_state drivers/net/baycom_epp.c

12345678910