From: Pablo de Lara <pablo.de.lara.guarch@intel.com>
To: dev@dpdk.org
Subject: [dpdk-dev] [PATCH] app/test: pci_autotest test fails if there is any device bound to igb_uio driver
Date: Sat, 1 Nov 2014 20:04:02 +0000 [thread overview]
Message-ID: <1414872242-32349-1-git-send-email-pablo.de.lara.guarch@intel.com> (raw)
Since commit a155d430119 ("support link bonding device initialization"),
rte_eal_pci_probe() is called in rte_eal_init().
pci_autotest called it to bind devices to the test_driver and test_driver2.
Therefore, the function is called twice and devices already allocated
will cause the test fail.
This patch solves that issue, unregistering all previous drivers before
calling rte_eal_pci_probe() for the first time, so DPDK does not try
to allocate data for the devices, binding them to their previous
drivers again.
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
---
app/test/test_pci.c | 31 +++++++++++++++++++++----------
1 files changed, 21 insertions(+), 10 deletions(-)
diff --git a/app/test/test_pci.c b/app/test/test_pci.c
index e834c4d..4f0169a 100644
--- a/app/test/test_pci.c
+++ b/app/test/test_pci.c
@@ -39,10 +39,13 @@
#include <rte_interrupts.h>
#include <rte_pci.h>
+#include <rte_ethdev.h>
#include <rte_devargs.h>
#include "test.h"
+/* Generic maximum number of drivers to have room to allocate all drivers */
+#define NUM_MAX_DRIVERS 256
/*
* PCI test
@@ -57,7 +60,6 @@
int test_pci_run = 0; /* value checked by the multiprocess test */
static unsigned pci_dev_count;
-static unsigned driver_registered = 0;
static int my_driver_init(struct rte_pci_driver *dr,
struct rte_pci_device *dev);
@@ -150,15 +152,22 @@ int
test_pci(void)
{
struct rte_devargs_list save_devargs_list;
+ struct rte_pci_driver *dr = NULL;
+ struct rte_pci_driver *save_pci_driver_list[NUM_MAX_DRIVERS];
+ unsigned i, num_drivers = 0;
printf("Dump all devices\n");
rte_eal_pci_dump(stdout);
- if (driver_registered == 0) {
- rte_eal_pci_register(&my_driver);
- rte_eal_pci_register(&my_driver2);
- driver_registered = 1;
+
+ /* Unregister all previous drivers */
+ TAILQ_FOREACH(dr, &pci_driver_list, next) {
+ rte_eal_pci_unregister(dr);
+ save_pci_driver_list[num_drivers++] = dr;
}
+ rte_eal_pci_register(&my_driver);
+ rte_eal_pci_register(&my_driver2);
+
pci_dev_count = 0;
printf("Scan bus\n");
rte_eal_pci_probe();
@@ -187,11 +196,13 @@ test_pci(void)
}
test_pci_run = 1;
- if (driver_registered == 1) {
- rte_eal_pci_unregister(&my_driver);
- rte_eal_pci_unregister(&my_driver2);
- driver_registered = 0;
- }
+
+ rte_eal_pci_unregister(&my_driver);
+ rte_eal_pci_unregister(&my_driver2);
+
+ /* Restore original driver list */
+ for (i = 0; i < num_drivers; i++)
+ rte_eal_pci_register(save_pci_driver_list[i]);
return 0;
}
--
1.7.4.1
next reply other threads:[~2014-11-01 19:54 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-01 20:04 Pablo de Lara [this message]
2014-11-05 21:42 ` Thomas Monjalon
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=1414872242-32349-1-git-send-email-pablo.de.lara.guarch@intel.com \
--to=pablo.de.lara.guarch@intel.com \
--cc=dev@dpdk.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).