From 6c49c2a29bd9a8e35358f825d0cefbc643e7070d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michal=20Mal=C3=BD?= Date: Mon, 27 Jul 2015 00:43:04 +0200 Subject: [PATCH] Do not start a stopped combinable effect when it gets updated. --- klgd_ff_plugin.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/klgd_ff_plugin.c b/klgd_ff_plugin.c index d9e2aa5..aac7dbf 100644 --- a/klgd_ff_plugin.c +++ b/klgd_ff_plugin.c @@ -657,6 +657,10 @@ static int ffpl_handle_combinable_effects(struct klgd_plugin_private *priv, stru eff->state = FFPL_STARTED; case FFPL_TO_UPDATE: eff->active = eff->latest; + if (eff->state != FFPL_STARTED) { + printk(KERN_NOTICE "KLGDFF: Updating a stopped combinable effect\n"); + break; + } active_effects++; needs_update = true; printk(KERN_NOTICE "KLGDFF: %s combinable effect, total active effects %lu\n", eff->change == FFPL_TO_START ? "Started" : "Altered", active_effects); @@ -853,7 +857,7 @@ static void ffpl_advance_trigger(struct ffpl_effect *eff, const unsigned long no eff->trigger = FFPL_TRIG_NONE; break; case FFPL_TRIG_UPDATE: - if (ffpl_needs_recalculation(&eff->active, eff->start_at, eff->stop_at, now)) + if (ffpl_needs_recalculation(&eff->active, eff->start_at, eff->stop_at, now) && eff->state == FFPL_STARTED) eff->trigger = FFPL_TRIG_RECALC; else eff->trigger = FFPL_TRIG_NONE; -- 2.43.5