Re: netif_rx will not free skb when I use ftp in kernel 2.6.22/2.6.21

2007-09-20 Thread Jay Cliburn
Chris Snook wrote: wrote: in function at_alloc_rx_buffers(), pci_unmap_page() and netif_rx() in function at_clean_rx_irq(), Okay, I didn't know you were talking about the atl1 driver. Are you using the in-tree driver in 2.6.22, or the pre-merge driver on sourceforge, or the vendor d

Re: netif_rx will not free skb when I use ftp in kernel 2.6.22/2.6.21

2007-09-19 Thread Chris Snook
wrote: Dear netdev, I have one problem with my NIC driver: whenever I use netif_receive_skb(skb) or netif_rx(skb) to indicate received packet, iperf does work, but ftp does not work, because the kernel seemes not kfree_skb(skb) when I use ftp. What??s wrong with my NIC driver? Any