On Fri, Sep 22, 2006 at 12:03:11PM +0000, Holger Kiehl (Holger.Kiehl@xxxxxx) wrote: > >This is going to cause an 9000-byte MTU to use a 16384-byte allocation. > >e1000_alloc_rx_buffers() adds two bytes to that, so we do kmalloc(16386), > >which causes the slab allocator to request 32768 bytes. All for a 9kbyte > >skb. > > > I searched the list, which I should have done before asking (I was not sure > if this was due to the e1000) and found this > > http://www.ussg.iu.edu/hypermail/linux/kernel/0608.0/0942.html > > discusion from 3rd August. As a summary I read that people are trying to > find > a solution, in the meantime one should set /proc/sys/vm/min_free_kbytes to > 65000 or higher, to ensure that the driver gets enough unfragmented memory. There is no solution (although e1000 memory management problem is one of the reasons I created memory tree allocator) yet, only workarounds, one of which you described above. e1000 hardware does not support setting of the maximum transfer size, it only allows power of two (and about 1500), so it does require 16k of memory for 9k frame (plus network skb allocation path adds a little which is transformed into 32k request due to power of two problem). Intel folks were suggested to either use fragments in one skb (or wait until network developers invent something new), but there are no patches from them (hopefully yet). It is not e1000 only problem - expect even 8k-12k allocation not on startup is definitely a wrong way. > Holger -- Evgeniy Polyakov - To unsubscribe from this list: send the line "unsubscribe linux-net" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html