device: Drop device down event during device release if device gets active again
authorHans Dedecker <dedeckeh@gmail.com>
Fri, 23 Sep 2016 13:08:23 +0000 (15:08 +0200)
committerFelix Fietkau <nbd@nbd.name>
Mon, 26 Sep 2016 09:51:19 +0000 (11:51 +0200)
commit2bf80ba8c5ab4d01c6e8eb1b7ecebefea7f2d530
treec60bc06c6cd9dfa0b3d5978e1617d6c1e201d172
parente2dfdffad514acf4f6a55f4608802421b55be236
device: Drop device down event during device release if device gets active again

Fixes a race condition as the device can be active again; due to a device_claim; by the logic
behind the set_state device type function. In this case the down event cannot be sent anymore
as it would bring down the interface(s) referencing the device.
This can be the case for an aliased device when the underlying device is switched during a reload;
the alias_set_device function can add a new dependency on the new active device which will put the
aliased device in active mode again as the aliased device is already claimed by the interface
using it.

Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
device.c