[realtek-bug] Bug in v1.10

Paul Campbell paul@taniwha.com
Wed, 12 Jul 2000 12:41:19 -0700


During system shutdown as the driver is closed the
kernel (2.2.16) gives a warning about data being
kfree'd incorrectly

The solution is simple - in rtl8129_close
simply remove the line:

	 kfree(tp->tx_bufs);

the previous line has already free'd this region

	Paul Campbell