I also get this problem.
Running Fedora Core 10s latest kernel och associated stuff.
I temporary solve this problem by restarting NetworkManager.
I've also noticed that this problem seems to occur more often when downloading at greater speeds.
I have yet to encounter this problem when just casually browsing the web.
Code:
Linux 2.6.27.5-117.fc10.x86_64 #1 SMP Tue Nov 18 11:58:53 EST 2008 x86_64 x86_64 x86_64 GNU/Linux
$ cat /sys/module/rt2x00*/version
2.1.8
2.1.8
I suppose you could temporary "fix" this by something like..
Code:
#!/bin/bash
ERROR=`tail -5 /var/log/messages|grep "Arrived at non-free entry"`
while [ "$ERROR" == "" ]
do
echo "No error"
sleep 3
done
echo "Error found: $ERROR"
sudo service NetworkManager restart