sd-device: ignore bind/unbind events for now

Until systemd/udev are ready for the new events and do not flush entire
device state on each new event received, we should ignore them.
This commit is contained in:
Dmitry Torokhov 2018-12-09 11:59:34 -08:00 committed by Zbigniew Jędrzejewski-Szmek
parent 8340b762e4
commit 56c886dc7e

View file

@ -326,6 +326,15 @@ static int device_append(sd_device *device, char *key, const char **_major, cons
action = device_action_from_string(value);
if (action == _DEVICE_ACTION_INVALID)
return -EINVAL;
/* FIXME: remove once we no longer flush previuos state for each action */
if (action == DEVICE_ACTION_BIND || action == DEVICE_ACTION_UNBIND) {
static bool warned;
if (!warned) {
log_device_debug(device, "sd-device: ignoring actions 'bind' and 'unbind'");
warned = true;
}
return -EINVAL;
}
} else if (streq(key, "SEQNUM")) {
r = safe_atou64(value, &seqnum);
if (r < 0)