[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20201002122235.1280-5-shiju.jose@huawei.com>
Date: Fri, 2 Oct 2020 13:22:32 +0100
From: Shiju Jose <shiju.jose@...wei.com>
To: <linux-edac@...r.kernel.org>, <linux-acpi@...r.kernel.org>,
<linux-kernel@...r.kernel.org>, <bp@...en8.de>,
<tony.luck@...el.com>, <rjw@...ysocki.net>, <james.morse@....com>,
<lenb@...nel.org>
CC: <linuxarm@...wei.com>, <shiju.jose@...wei.com>
Subject: [RFC PATCH 4/7] RAS/CEC: Modify cec_mod_work() for common use
Modify the function cec_mod_work() for the common use
with the other error sources.
Signed-off-by: Shiju Jose <shiju.jose@...wei.com>
---
drivers/ras/cec.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/ras/cec.c b/drivers/ras/cec.c
index 803e641d8e5c..f869e7a270b8 100644
--- a/drivers/ras/cec.c
+++ b/drivers/ras/cec.c
@@ -167,12 +167,12 @@ static void do_spring_cleaning(struct ce_array *ca)
/*
* @interval in seconds
*/
-static void cec_mod_work(unsigned long interval)
+static void cec_mod_work(struct delayed_work *dwork, unsigned long interval)
{
unsigned long iv;
iv = interval * HZ;
- mod_delayed_work(system_wq, &cec_work, round_jiffies(iv));
+ mod_delayed_work(system_wq, dwork, round_jiffies(iv));
}
static void cec_work_fn(struct work_struct *work)
@@ -181,7 +181,7 @@ static void cec_work_fn(struct work_struct *work)
do_spring_cleaning(&ce_arr);
mutex_unlock(&ce_mutex);
- cec_mod_work(decay_interval);
+ cec_mod_work(&cec_work, decay_interval);
}
/*
@@ -420,7 +420,7 @@ static int decay_interval_set(void *data, u64 val)
*(u64 *)data = val;
decay_interval = val;
- cec_mod_work(decay_interval);
+ cec_mod_work(&cec_work, decay_interval);
return 0;
}
--
2.17.1
Powered by blists - more mailing lists