Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Mon, 2 Dec 2002 11:04:41 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Mon, 2 Dec 2002 11:04:41 -0500 Received: from [209.48.37.1] ([209.48.37.1]:40165 "EHLO xdr.com") by vger.kernel.org with ESMTP id ; Mon, 2 Dec 2002 11:04:40 -0500 Date: Mon, 2 Dec 2002 08:11:52 -0800 From: David Ashley Message-Id: <200212021611.gB2GBqD00707@xdr.com> To: linux-kernel@vger.kernel.org Subject: Linux 2.4.18 8139too.c driver fix for mii-tool Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 742 Lines: 18 mii-tool doesn't work with the 8139too.c driver (RTL8139 based network cards). Internally the driver uses phy ID #'s 32+, but when ioctls are used to access the phy registers, the ID is masked down to 0-0x1f, so none of them work properly, and mii-tool fails. The fix is to change the masking done in the top of netdev_ioctl: if (cmd != SIOCETHTOOL) { /* With SIOCETHTOOL, this would corrupt the pointer. */ data->phy_id &= 0x3f; // was 0x1f (DA) 20021202 data->reg_num &= 0x1f; } -Dave - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/