wrong definition in cpm_8260.h?

Dan Malek dan at embeddededge.com
Fri Jan 24 02:45:44 EST 2003


Shen Rong wrote:

> I am changing the fcc enet buffer management and interrupt
> strategy to reduce the interrupt number when receiving the
> small frame(say 64 bytes).

I don't understand.  The current driver will get exactly one
interrupt per frame (or maybe less if frames are coming in fast
and they are queued), regardless of the frame size.

> .... But at least the so called final_version in fcc_enet_rx
> need to be changed since it's do nothing but eat the cpu.

This was just for debugging, I don't even think that code is compiled anymore.
Take it out if you wish.  This driver is....hell....six or seven years old
already and was used to debug 8xx silicon.  We were happy when it actually
sent and received frames on the wire, so there is likely to be some debug
stuff here that can be removed.

The purpose for using first/last is so you can split a frame across multiple
BDs, making the use of memory a little more efficient.  Using this method,
you can't dma directly into sk buffers, you will have to check for the
buffer sequences and copy the data into the sk buffers.  This method also
increases the number of interrupts you will receive (all high performance
network devices are polled with carefully tuned data transfer functions)
and increases the amount of CPU needed for processing every frame.


	-- Dan


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/





More information about the Linuxppc-embedded mailing list