Let's take a closer look at the network drivers that you load into io-pkt.
For information about specific drivers, see the
devnp-*
entries in the Utilities Reference.
Problems with shared interrupts
Having different devices sharing a hardware interrupt is kind of a neat idea, but unless you really need to do it—because you've run out of hardware interrupt lines—it generally doesn't help you much. In fact, it can cause you trouble. For example, if your driver doesn't work (e.g., no received packets), check to see if it's sharing an interrupt with another device, and if so, reconfigure your board so it doesn't.
Debugging a driver using gdb
If you want to use gdb to debug a driver, you first have to make sure that your source is compiled with debugging information included.
Jumbo packets and hardware checksumming
Jumbo packets are packets that carry more payload than the normal 1500 bytes. Even the definition of a jumbo packet is unclear; different people use different lengths.