All of lore.kernel.org
 help / color / mirror / Atom feed
* [Accel-config] [PATCH] accel-config/test: Call uacce API to get wq file descriptor
@ 2021-04-06  0:44 ramesh.thomas
  0 siblings, 0 replies; only message in thread
From: ramesh.thomas @ 2021-04-06  0:44 UTC (permalink / raw)
  To: accel-config

[-- Attachment #1: Type: text/plain, Size: 1196 bytes --]

From: Ramesh Thomas <ramesh.thomas(a)intel.com>

Char dev major/minor method of getting file descriptor is being replaced
by uacce interface. Replace calls to char dev API with new API to open
uacce device.

Signed-off-by: Ramesh Thomas <ramesh.thomas(a)intel.com>
---
 test/dsa.c | 18 +++++++-----------
 1 file changed, 7 insertions(+), 11 deletions(-)

diff --git a/test/dsa.c b/test/dsa.c
index 602bfb8..b4e107b 100644
--- a/test/dsa.c
+++ b/test/dsa.c
@@ -69,19 +69,15 @@ struct dsa_context *dsa_init(void)
 
 static int dsa_setup_wq(struct dsa_context *ctx, struct accfg_wq *wq)
 {
-	struct accfg_device *dev;
-	int major, minor;
-	char path[1024];
+	char path[PATH_MAX];
+	int rc;
 
-	dev = accfg_wq_get_device(wq);
-	major = accfg_device_get_cdev_major(dev);
-	if (major < 0)
-		return -ENODEV;
-	minor = accfg_wq_get_cdev_minor(wq);
-	if (minor < 0)
-		return -ENODEV;
+	rc = accfg_wq_get_uacce_path(wq, path, PATH_MAX);
+	if (rc) {
+		fprintf(stderr, "Error getting uacce device path\n");
+		return rc;
+	}
 
-	sprintf(path, "/dev/char/%u:%u", major, minor);
 	ctx->fd = open(path, O_RDWR);
 	if (ctx->fd < 0) {
 		perror("open");
-- 
2.26.3

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2021-04-06  0:44 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-06  0:44 [Accel-config] [PATCH] accel-config/test: Call uacce API to get wq file descriptor ramesh.thomas

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.