All of lore.kernel.org
 help / color / mirror / Atom feed
From: ramesh.thomas at intel.com
To: accel-config@lists.01.org
Subject: [Accel-config] [PATCH] accel-config: Provide compatibility for legacy mode driver names
Date: Wed, 14 Jul 2021 21:18:46 -0400	[thread overview]
Message-ID: <20210715011846.1090270-1-ramesh.thomas@intel.com> (raw)

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

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

Check for presence of /sys/bus/dsa/drivers/idxd and use legacy driver
names if not present.

Signed-off-by: Ramesh Thomas <ramesh.thomas(a)intel.com>
---
 accfg/lib/libaccfg.c | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/accfg/lib/libaccfg.c b/accfg/lib/libaccfg.c
index f21cab5..592c22c 100644
--- a/accfg/lib/libaccfg.c
+++ b/accfg/lib/libaccfg.c
@@ -36,6 +36,13 @@
 #define IDXD_WQ_DEVICE_PORTAL(d, w) ((d)->ctx->compat ? \
 		(d)->bus_type_str : accfg_wq_device_portals[(w)->type])
 
+char *accfg_wq_device_portals_legacy[] = {
+	[ACCFG_WQT_KERNEL] = "idxd-kernel-portal",
+	[ACCFG_WQT_USER] = "idxd-user-portal",
+	[ACCFG_WQT_MDEV] = "idxd-mdev-portal",
+	NULL
+};
+
 char *accfg_wq_device_portals[] = {
 	[ACCFG_WQT_KERNEL] = "dmaengine",
 	[ACCFG_WQT_USER] = "user",
@@ -398,8 +405,15 @@ ACCFG_EXPORT int accfg_new(struct accfg_ctx **ctx)
 	c->refcount = 1;
 	log_init(&c->ctx, "libaccfg", "ACCFG_LOG");
 	c->timeout = 5000;
-	if (access(IDXD_DRIVER_BIND_PATH, R_OK))
+	if (access(IDXD_DRIVER_BIND_PATH, R_OK)) {
 		c->compat = true;
+		accfg_wq_device_portals[ACCFG_WQT_KERNEL] =
+			accfg_wq_device_portals_legacy[ACCFG_WQT_KERNEL];
+		accfg_wq_device_portals[ACCFG_WQT_USER] =
+			accfg_wq_device_portals_legacy[ACCFG_WQT_USER];
+		accfg_wq_device_portals[ACCFG_WQT_MDEV] =
+			accfg_wq_device_portals_legacy[ACCFG_WQT_MDEV];
+	}
 
 	list_head_init(&c->devices);
 
-- 
2.26.3

                 reply	other threads:[~2021-07-15  1:18 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210715011846.1090270-1-ramesh.thomas@intel.com \
    --to=accel-config@lists.01.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.