netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Reducing the overhead on the network core
@ 2005-03-28 21:44 Vicente Feito
  2005-03-29  1:14 ` David S. Miller
  0 siblings, 1 reply; 2+ messages in thread
From: Vicente Feito @ 2005-03-28 21:44 UTC (permalink / raw)
  To: netdev

Hello, I was looking at the csma/cd algorithm and something ocurred to me. 
Maybe this has been already discussed/dropped/implemented somewhere, but I 
would like to know.

The idea is to create a new method in the net_device structure, the point of 
this method would be to compare a given MAC address
with our MAC ADDR, the multicast list MAC's and BROADCAST addr, this way we 
can use this from the driver directly when you are picking the frames from 
the hardware buffer directly. Something like this allows us to drop a frame 
that is not directed to us, without having the overhead to call netif_rx, add 
to a queue and pass trhough the packet_handlers (again, this would be done 
exactly after reading the frame from the card's buffer, it's not even 
necessary to read the whole frame, reading only the first few bytes and the 
dst mac address would do, saving resources).

I think that the benefits are worth, and most important, I would loose less 
frames, suppose the situation where a computer in the lan starts to send 
frames one after another that are not directed to us, we would be adding 
those and filling the queue, after those it sends a frame that is for us, but 
since the queue is full we would drop the frame, this is bad, and it can be 
avoided (if it is on a different perspective please let me know).

Another important issue is the overhead of calling functions to verify frames 
that are not worth the time, wasting cycles, my thoughs are: if the frame is 
for me, it would have my ADDR and after that I'll checksum, if the mac 
doesn't match, then drop the frame, because I don't care what the checksum 
says, it's simply non of my bussiness (of course this would be on top of the 
length verifications for the frame).

This can be implemented on interrupt context because it would be fast and 
wouldn't have to block, is a simple check, inexpensive.
The method to add to net_device would be something like :

(int) (*validate_rx_macdst)(struct net_device *dev, unsigned char dst_addr);

 this can be called from anywhere, and can be implemented from any driver, 
avoiding the work for 'core'.

Well, maybe this is crazy, I just wanted to know if has been though or dropped 
or is nonsense, I would like to start writing some
 code for this, but I think asking first is better.

Thanks for reading the whole thing.

Vicente.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2005-03-29  1:14 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-28 21:44 Reducing the overhead on the network core Vicente Feito
2005-03-29  1:14 ` David S. Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).