Re: ipw2100: firmware problem

From: James Ketrenos
Date: Thu Jun 09 2005 - 16:03:51 EST


David S. Miller wrote:

>From: Pavel Machek <pavel@xxxxxx>
>Date: Thu, 9 Jun 2005 12:42:05 +0200
>
>
>
>>I'm not saying it should not work automagically. But it is wrong to
>>start transmitting on wireless as soon as kernel boots. It should stay
>>quiet in the radio until it is either told to talk or until interface
>>is upped.
>>
>>
>
>I agree.
>
>There is a similar problem in the Acenic driver, it brings the
>link up and receives broadcast packets as soon as the driver
>is loaded. Mostly this is because the driver inits the chip
>and registers the IRQ handler at probe time, whereas nearly
>every other driver does this at ->open() time.
>
>
The ipw2100 originally postponed doing any initialization until open was
called. The problem at that time was that distributions were crafted to
rely on link detection (I believe via ethtoolop's get_link) before they
would bring the interface up.

With a wireless device, you don't have link until you are associated...
chicken and egg. The solution was to move initialization and
association to the probe.

I don't know if all the distributions have moved away from this model.
If they have and the devices are brought up regardless of link, then
going back to delaying radio initialization until the open() is called
is workable.

James

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/