projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bc3452c
)
dmaengine: idxd: add RO check for wq max_batch_size write
author
Dave Jiang
<dave.jiang@intel.com>
Mon, 11 Apr 2022 22:08:55 +0000
(15:08 -0700)
committer
Vinod Koul
<vkoul@kernel.org>
Wed, 20 Apr 2022 11:54:42 +0000
(17:24 +0530)
Block wq_max_batch_size_store() when the device is configured as read-only
and not configurable.
Fixes: e7184b159dd3 ("dmaengine: idxd: add support for configurable max wq batch size")
Reported-by: Bernice Zhang <bernice.zhang@intel.com>
Tested-by: Bernice Zhang <bernice.zhang@intel.com>
Signed-off-by: Dave Jiang <dave.jiang@intel.com>
Link:
https://lore.kernel.org/r/164971493551.2201159.1942042593642155209.stgit@djiang5-desk3.ch.intel.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/dma/idxd/sysfs.c
patch
|
blob
|
history
diff --git
a/drivers/dma/idxd/sysfs.c
b/drivers/dma/idxd/sysfs.c
index 7e19ab92b61a879bddb19759d4a61b5a36513a63..6c41d429bd89f9457e32327c327193eab06df83d 100644
(file)
--- a/
drivers/dma/idxd/sysfs.c
+++ b/
drivers/dma/idxd/sysfs.c
@@
-939,6
+939,9
@@
static ssize_t wq_max_batch_size_store(struct device *dev, struct device_attribu
u64 batch_size;
int rc;
+ if (!test_bit(IDXD_FLAG_CONFIGURABLE, &idxd->flags))
+ return -EPERM;
+
if (wq->state != IDXD_WQ_DISABLED)
return -EPERM;