Sponsored Content
Full Discussion: The simplest network driver
Top Forums Programming The simplest network driver Post 302576025 by Chrisdot on Wednesday 23rd of November 2011 12:23:26 PM
Old 11-23-2011
Quote:
Originally Posted by Corona688
I haven't tried it, but my suspicion is that "probe" would be run for everything. Probing is how you detect non-plug-and-play things which don't advertise their presence, so PCI ID's wouldn't seem to apply.
Setup:
- Intel network card
- e1000e standard linux driver in autorun
- myModule; customized e1000e driver by me for debugging reasons

Steps:
- after power on execute 'rmmod e1000e'
- 'insmod myModule'
From my debuging experience I see, that .probe function is fired always after 'insmod myModule' (when e1000e is not present).

Steps
- after power on do not remove 'e1000e' driver
- 'insmod myModule'
Now .probe function from myModule is not executed. Only init_module function operates.

What if I add myModule to autorun? Will .probe function be then executed? I don't know. I have no idea how to add myModule to autorun. Smilie.

I guess .probe is 'must be', because there are important lines like:

Code:
.probe function:
{
 netdev = alloc_etherdev
 SET_MODULE_OWNER(netdev);
  netdev->netdev_ops        = &e1000e_netdev_ops;
 err = register_netdev(netdev);
}

static const struct net_device_ops e1000e_netdev_ops = {
    .ndo_open        = e1000_open,    // e.g. ifconfig up
    .ndo_stop        = e1000_close,    // e.g. ifconfig down
    .ndo_start_xmit        = e1000_xmit_frame,
    .ndo_get_stats        = e1000_get_stats,
    .ndo_tx_timeout        = e1000_tx_timeout,
    .ndo_validate_addr    = eth_validate_addr,
};


Last edited by Chrisdot; 11-23-2011 at 01:29 PM..
 

8 More Discussions You Might Find Interesting

1. Programming

Network device driver

HI, I am writing a network device driver for RTL8139c card on 2.6.18 kernel ... I am facing few queries listed below 1. Can i able to at all write a driver for RTL8139C or Realtek had designed new chip for 2.6 series kernel? 2. If no then which driver file 2.6.18 uses .. Is it 8139too.c or... (1 Reply)
Discussion started by: niketan
1 Replies

2. Solaris

network driver cpu usage

Hello all, Needed a suggestion from you all, if you know anything about this stuff. We have a high network traffic application. Close to around 700Meg /sec on one NIC. When the traffic is around 200Meg on the NIC, the VCPU(not the CPU, cause we have 24 VCPU) utilization by the NIC driver... (5 Replies)
Discussion started by: Naanu
5 Replies

3. Solaris

Installing Network on Computer, might be driver

Hi All, Just completing my second Solaris installation, in the previous one which was on a Dell X64 machine, I went through the Network configuration setting, on the current computer which I am installing Solaris on, its a custom built machine and for some reason, I didnt see the screen where I... (1 Reply)
Discussion started by: platforminc
1 Replies

4. Solaris

network driver not detecting in solaris 10 X86 on HPDL380G5 Server

I have installed solaris10 x86 on HP DL380 G5 Server, but network card is not getting detected. i have installed the network driver, downloaded from the following link HP ProLiant DL380 G5 Server series- Download drivers and software - HP Business Support Center Can any one suggest me how to... (1 Reply)
Discussion started by: raj.chinnu
1 Replies

5. Red Hat

How to know whether the network driver alredy installed in my system

I am using NVIDIA nforce: Networking controllers And Redhat enterprice linux ws version 4 32 bit: OS I want to connect my system to Broadband internet using linux. From where can I download the driver for nertwork. How to know whether the network driver alredy installed in my system. ... (0 Replies)
Discussion started by: rijas
0 Replies

6. Solaris

Can I Install the Gani Network Driver Using the Application that Came on the CD?

When I boot up the Solaris 10 5/09 install CD and select 'Solaris' from the GRUB menu that comes up, a menu loads. Option 5 is 'Apply Driver Updates'. Can I install the Gani driver using that? I tried using the tar file (the way it came) that I wrote to a floppy but when I asked it to look at the... (8 Replies)
Discussion started by: Bradj47
8 Replies

7. UNIX for Dummies Questions & Answers

Simulated driver for Network Interface Adapter

Hi all, I got sort of a task to do. I have to write in C "simulated network driver". What does it mean? - It has to run on all network adapters - It has to be as simple as it can be - It has to run on all linux distributions (or at least most of them) - It does not have to run a network... (4 Replies)
Discussion started by: Chrisdot
4 Replies

8. Programming

Compiling virtual network adapter driver problem (net_device struct)

Hi, I found on linuxgazette.net/93/bhaskaran.html page very useful sample of virtual driver (not connected to real hardware). I try to compile it with no effect. So: I got fresh Ubuntu 9.10 (kernel 2.6.31-14) My source is saved in networkAdapter.c file in /usr/src/myModules directory. I... (21 Replies)
Discussion started by: Chrisdot
21 Replies
bt-network(1)							    bluez-tools 						     bt-network(1)

NAME
bt-network - a bluetooth network manager SYNOPSIS
bt-network [OPTION...] Help Options: -h, --help Application Options: -a, --adapter=<name|mac> -c, --connect <name|mac> <uuid> -s, --server <gn|panu|nap> <brige> DESCRIPTION
This utility is used to manage network services (client/server). All servers will be automatically unregistered when the application terminates. OPTIONS
-h, --help Show help -a, --adapter <name|mac> Specify adapter to use by his Name or MAC address (if this option does not defined - default adapter used) -c, --connect <name|mac> <uuid> Connect to the network device and return the network interface name, uuid can be either one of "gn", "panu" or "nap" -s, --server <gn|panu|nap> <brige> Register server for the provided UUID, every new connection to this server will be added the bridge interface AUTHOR
Alexander Orlenko <zxteam@gmail.com>. SEE ALSO
bt-adapter(1) bt-agent(1) bt-audio(1) bt-device(1) bt-input(1) bt-monitor(1) bt-serial(1) 2010-11-22 bt-network(1)
All times are GMT -4. The time now is 02:21 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy