[PATCH 06/16] dmaengine: idxd: Add private_data to struct idxd_wq

From: Tom Zanussi
Date: Mon Mar 06 2023 - 13:53:23 EST


Add a void * to idxd_wqs for user-defined context data.

Signed-off-by: Tom Zanussi <tom.zanussi@xxxxxxxxxxxxxxx>
---
drivers/dma/idxd/idxd.h | 2 ++
1 file changed, 2 insertions(+)

diff --git a/drivers/dma/idxd/idxd.h b/drivers/dma/idxd/idxd.h
index 719f9f1662ad..e55213b5153e 100644
--- a/drivers/dma/idxd/idxd.h
+++ b/drivers/dma/idxd/idxd.h
@@ -216,6 +216,8 @@ struct idxd_wq {
u32 max_batch_size;

char driver_name[WQ_NAME_SIZE + 1];
+
+ void *private_data;
};

struct idxd_engine {
--
2.34.1