David S. Miller wrote:
From: Ben Greear <[EMAIL PROTECTED]>
Date: Fri, 26 Aug 2005 16:34:49 -0700
And for the record, I grepped a great deal of dev_holds, but
associating a particular get with a put is making my head hurt :)
How about the one, and only one, in that file that adds the SKBs to
the input_pkt_queue list? :-)
/me bows head in defeat.
Btw, I think I found a leaked reference off in the ATM code...does this
look legit to you?
line 3580 of drivers/atm/idt77252.d
/*
* XXX: <hack>
*/
sprintf(tname, "eth%d", card->index);
tmp = dev_get_by_name(tname); /* jhs: was "tmp = dev_get(tname);" */
if (tmp) {
memcpy(card->atmdev->esi, tmp->dev_addr, 6);
printk("%s: ESI %02x:%02x:%02x:%02x:%02x:%02x\n",
card->name, card->atmdev->esi[0], card->atmdev->esi[1],
card->atmdev->esi[2], card->atmdev->esi[3],
card->atmdev->esi[4], card->atmdev->esi[5]);
}
/*
* XXX: </hack>
*/
--
Ben Greear <[EMAIL PROTECTED]>
Candela Technologies Inc http://www.candelatech.com
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html