aboutsummaryrefslogtreecommitdiff
path: root/module/icp/core/kcf_sched.c
diff options
context:
space:
mode:
Diffstat (limited to 'module/icp/core/kcf_sched.c')
-rw-r--r--module/icp/core/kcf_sched.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/module/icp/core/kcf_sched.c b/module/icp/core/kcf_sched.c
index f9bcfe094e6b..da2346f7ec21 100644
--- a/module/icp/core/kcf_sched.c
+++ b/module/icp/core/kcf_sched.c
@@ -1306,8 +1306,11 @@ kcf_reqid_insert(kcf_areq_node_t *areq)
int indx;
crypto_req_id_t id;
kcf_areq_node_t *headp;
- kcf_reqid_table_t *rt =
- kcf_reqid_table[CPU_SEQID & REQID_TABLE_MASK];
+ kcf_reqid_table_t *rt;
+
+ kpreempt_disable();
+ rt = kcf_reqid_table[CPU_SEQID & REQID_TABLE_MASK];
+ kpreempt_enable();
mutex_enter(&rt->rt_lock);