Re: [PATCH 5/7] ocxl: Create a clear delineation between ocxl backend & frontend

2019-03-14 Thread Frederic Barrat
diff --git a/drivers/misc/ocxl/file.c b/drivers/misc/ocxl/file.c index 865b3d176431..424bb0b40afb 100644 --- a/drivers/misc/ocxl/file.c +++ b/drivers/misc/ocxl/file.c -int ocxl_register_afu(struct ocxl_afu *afu) +int ocxl_file_register_afu(struct ocxl_afu *afu) { int minor; +

[PATCH 5/7] ocxl: Create a clear delineation between ocxl backend & frontend

2019-03-12 Thread Alastair D'Silva
From: Alastair D'Silva The OCXL driver contains both frontend code for interacting with userspace, as well as backend code for interacting with the hardware. This patch separates the backend code from the frontend so that it can be used by other device drivers that communicate via OpenCAPI. Rel