-1
votes
0answers
35 views

Linux Device tree

I have a usb modem connected to my system. I need to find the information of the devices attached to my system and store that information into an sqllite datebase using python. I am facing problems ...
1
vote
0answers
102 views

Ethernet driver for ethercat modules

I have EK1101, EL6002, EL2034 modules which is based on network devices. These modules are connected PC Ethernet port via ethernet cable. I have tested these modules with some application program, ...
-3
votes
1answer
109 views

Linux Network Device Driver [duplicate]

I am writing Linux driver for I/O data transfer. The data transfer should be through network communication. So, I need transfer data from kernel to Ethernet port. The Ethernet port connected to ...
-1
votes
2answers
75 views

Network device driver [closed]

I want to write Linux device driver for network based device. This network device is just Input output control only and also this device connects through Ethernet port via ethernet cable. How can i ...
1
vote
0answers
52 views

Is it possible to transmit a packet while the network interface is blocked using netif_stop_queue?

I'm trying to implement a time-slotted queueing algorithm for wifi mesh networks, using a loadable kernel module. During certain slots, packets from higher layers are allowed to pass through the wlan ...
0
votes
1answer
71 views

Please tell about the query of network packet traversal in linux

I was reading Understanding linux networking Internal book and the pdf Network packet capture in Linux kernelspace on the link networkkernel.pdf In the Understanding linux networking Internal under ...
1
vote
0answers
34 views

Query Related to Packet traversal in kernel

After reading the book "Understanding Linux Network internals". I came to know about some concepts of how we get the packet from the network:- > When working in interrupt driven model, the nic ...
0
votes
0answers
68 views

communicate with local network device

I have a embedded device with a NIC, and its connected to my local network with an local IP. I need to write a program to allow communication between the device and linux computer. At first I ...
0
votes
2answers
115 views

user-space starvation under heavy traffic

I'm implementing a user-space embedded configuration manager application and a network device driver on linux gateway device. We encountered the following issue: under heavy TCP traffic with CPU load ...
2
votes
1answer
128 views

network interfaces and IFF_XX flags

I would like to understand if there are any conventions set up in kernel programming when creating network interfaces in the kernel and initializing interface flags, such as IFF_UP, or IFF_MULTICAST ...
0
votes
0answers
112 views

source MAC address from raw packet in driver

Can some one help me in getting the source MAC address of packet in driver? I could find out the destination address as i have "dev", from there i found out destination address from ...
2
votes
1answer
191 views

Increasing the reference count of a SKB

Is there any simple way I can increase the reference count of SKB buffer in linux kernel so that the hardware wont free it. I know that using skb_clone the reference count is automatically increased ...
0
votes
0answers
133 views

Handling network packets in Linux network driver

Background: We are developing a custom network driver for linux for our own PHY media. We want to add our own packet header in our network driver to IP layer packet in our "hard_start_xmit" routine ...
0
votes
2answers
158 views

Converting TCP/IP traffic to Halfduplex in linux

I am developing a custom network driver for a PHY media which doesn't support full duplex mode. I want to use TCP/IP traffic with this network driver and on top of this half-duplex PHY media. But ...
-1
votes
2answers
443 views

Sending Data over network inside kernel

I'm writing a driver in Linux kernel that sends data over the network . Now suppose that my data to be sent (buffer) is in kernel space . how do i send the data without creating a socket (First of ...
1
vote
1answer
216 views

Writing a new Device driver

I'm planning to write a new device driver on linux kernel . The device i intend to write will be a device that'll pipe the data coming into it to another computer that'll be also having the same ...
2
votes
1answer
306 views

Direct Memory Access (DMA) Scheduling in a Multithreaded Application

I would like to use DMA to accelarate network I/O (intensive disk reads and output via Internet). I wonder if I have a multithreaded application where each thread issues DMA transfers how does the ...
0
votes
2answers
1k views

how to capture tcp/ip packets

I'm creating a module that would capture the TCP/IP packets from TCP/IP stack and send this to Kernel which from ther sends to the userspace. My code right now has been completed for second half. It ...
6
votes
2answers
2k views

How can I monitor the NIC status(up/down) in a C program without polling the kernel?

Now I need to get the status of the NIC(up or down) in the real time. That means I have to catch the kernel interrupt when the NIC up or down in a blocked loop. The first stupid method from mine is ...
2
votes
1answer
307 views

Linux kernel network driver. How do I deal with transmit errors after hard_start_xmit() has returned success?

In a linux network driver, I must provide a function, hard_start_xmit(), that actually sends packets on the wire. I understand that if it can't send the packet, hard_start_xmit() should return an ...
1
vote
0answers
63 views

Can a single page can be used for multiple skbs which are not fragments

I have a networking hardware which does Rx coalescing , in which frames partaining to a nic device are combined and send as a big chunk ( Greater than mtu) to the driver. In the driver i have to ...
1
vote
3answers
326 views

Building a Network Appliance Prototype Using a standard PC with Linux and Two NIC's

I am willing to build a prototype of network appliance. This appliance is suppose to transparently manipulate Ethernet packets. It suppose to have two network interface cards having one card connected ...