aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc/cxl/cxl.h
diff options
context:
space:
mode:
authorMichael Neuling <mikey@neuling.org>2016-06-24 02:47:07 -0400
committerMichael Ellerman <mpe@ellerman.id.au>2016-06-28 04:35:08 -0400
commitad42de859ff14c079e966e61cbcba85265b982e1 (patch)
tree6764901e0f510307cf7fa136ec1f35f9c3f8fee6 /drivers/misc/cxl/cxl.h
parentb810253bd9342f863a86ec7dfff4a5a7a0394d2f (diff)
cxl: Add set and get private data to context struct
This provides AFU drivers a means to associate private data with a cxl context. This is particularly intended for make the new callbacks for driver specific events easier for AFU drivers to use, as they can easily get back to any private data structures they may use. Signed-off-by: Michael Neuling <mikey@neuling.org> Signed-off-by: Ian Munsie <imunsie@au1.ibm.com> Signed-off-by: Philippe Bergheaud <felix@linux.vnet.ibm.com Reviewed-by: Matthew R. Ochs <mrochs@linux.vnet.ibm.com> Reviewed-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'drivers/misc/cxl/cxl.h')
-rw-r--r--drivers/misc/cxl/cxl.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/misc/cxl/cxl.h b/drivers/misc/cxl/cxl.h
index 422ee53868a8..27578fceda8a 100644
--- a/drivers/misc/cxl/cxl.h
+++ b/drivers/misc/cxl/cxl.h
@@ -484,6 +484,9 @@ struct cxl_context {
484 /* Only used in PR mode */ 484 /* Only used in PR mode */
485 u64 process_token; 485 u64 process_token;
486 486
487 /* driver private data */
488 void *priv;
489
487 unsigned long *irq_bitmap; /* Accessed from IRQ context */ 490 unsigned long *irq_bitmap; /* Accessed from IRQ context */
488 struct cxl_irq_ranges irqs; 491 struct cxl_irq_ranges irqs;
489 struct list_head irq_names; 492 struct list_head irq_names;