summaryrefslogtreecommitdiffstats
path: root/drivers/dma/idxd/sysfs.c
diff options
context:
space:
mode:
authorVinod Koul <vkoul@kernel.org>2022-11-11 12:14:26 +0530
committerVinod Koul <vkoul@kernel.org>2022-11-11 12:14:26 +0530
commit3f134c9511d624ccbe6fa0c7c1e457c4ff89d94d (patch)
treee5a9f9788b03b9963bb84e0d048fd7d11f34b974 /drivers/dma/idxd/sysfs.c
parent739153a6ae6891ff42ed9dbbd8e72dd99e6c8ba5 (diff)
parentc47e6403fa099f200868d6b106701cb42d181d2b (diff)
downloadlinux-3f134c9511d624ccbe6fa0c7c1e457c4ff89d94d.tar.bz2
Merge branch 'fixes' into next
Merge due to at_hdmac driver dependency
Diffstat (limited to 'drivers/dma/idxd/sysfs.c')
-rw-r--r--drivers/dma/idxd/sysfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/idxd/sysfs.c b/drivers/dma/idxd/sysfs.c
index 7c7ec8323cb7..3229dfc78650 100644
--- a/drivers/dma/idxd/sysfs.c
+++ b/drivers/dma/idxd/sysfs.c
@@ -1065,7 +1065,7 @@ static ssize_t wq_max_batch_size_store(struct device *dev, struct device_attribu
if (batch_size > idxd->max_batch_size)
return -EINVAL;
- wq->max_batch_size = (u32)batch_size;
+ idxd_wq_set_max_batch_size(idxd->data->type, wq, (u32)batch_size);
return count;
}