Explorar o código

qcacld-3.0: Add retries to state control file creation

wlan_hdd_state_ctrl_param_create() creates a control file that is used
to synchronize the wlan driver with the Wi-Fi HAL in userspace. When
multiple instances of the driver are loaded in parallel, only one can
create and own the state ctrl param. The first instance of the driver
that is loaded creates the state ctrl param, and then it will wait for
a certain amount of time to be probed. If it is probed, then that
instance of the driver will stay loaded and no other instances of the
driver can load. But if it is not probed, then that instance of the
driver will destroy the state ctrl param and exit, and another
instance of the driver can then create the state ctrl param.

In the current code if a second instance of the driver tries to create
the state ctrl param while the first instance is still waiting for
the probe, then the second instance will fail and will exit. If the
first instance subsequently isn't probed and times out, then no driver
will be loaded.

To address this issue add retries to the state control file creation
so that the second instance will not exit after one failure, but
instead exits only after so much time has passed that the first
instance of the driver must have been probed.

Change-Id: I35cf04145d610613a51e5321603d48d988c16479
CRs-Fixed: 2905637
Jeff Johnson %!s(int64=4) %!d(string=hai) anos
pai
achega
875ba60c6e
Modificáronse 1 ficheiros con 35 adicións e 2 borrados
  1. 35 2
      core/hdd/src/wlan_hdd_main.c

+ 35 - 2
core/hdd/src/wlan_hdd_main.c

@@ -16500,6 +16500,39 @@ dev_alloc_err:
 	return -ENODEV;
 }
 
+/*
+ * When multiple instances of the driver are loaded in parallel, only
+ * one can create and own the state ctrl param. An instance of the
+ * driver that creates the state ctrl param will wait for
+ * HDD_WLAN_START_WAIT_TIME to be probed. If it is probed, then that
+ * instance of the driver will stay loaded and no other instances of
+ * the driver can load. But if it is not probed, then that instance of
+ * the driver will destroy the state ctrl param and exit, and another
+ * instance of the driver can then create the state ctrl param.
+ */
+
+/* max number of instances we expect (arbitrary) */
+#define WLAN_DRIVER_MAX_INSTANCES 5
+
+/* max amount of time an instance has to wait for all instances */
+#define CTRL_PARAM_WAIT (WLAN_DRIVER_MAX_INSTANCES * HDD_WLAN_START_WAIT_TIME)
+
+/* amount of time we sleep for each retry (arbitrary) */
+#define CTRL_PARAM_SLEEP 100
+
+static int wlan_hdd_state_ctrl_param_create_with_retry(void)
+{
+	int retries = CTRL_PARAM_WAIT / CTRL_PARAM_SLEEP;
+	int errno;
+
+	do {
+		errno = wlan_hdd_state_ctrl_param_create();
+		if (!errno || !--retries)
+			return errno;
+		msleep(CTRL_PARAM_SLEEP);
+	} while (true);
+}
+
 static void wlan_hdd_state_ctrl_param_destroy(void)
 {
 	cdev_del(&wlan_hdd_state_cdev);
@@ -16512,7 +16545,7 @@ static void wlan_hdd_state_ctrl_param_destroy(void)
 
 #else /* WLAN_CTRL_NAME */
 
-static int  wlan_hdd_state_ctrl_param_create(void)
+static int  wlan_hdd_state_ctrl_param_create_with_retry(void)
 {
 	return 0;
 }
@@ -17294,7 +17327,7 @@ int hdd_driver_load(void)
 
 	hdd_set_conparam(con_mode);
 
-	errno = wlan_hdd_state_ctrl_param_create();
+	errno = wlan_hdd_state_ctrl_param_create_with_retry();
 	if (errno) {
 		hdd_err("Failed to create ctrl param; errno:%d", errno);
 		goto wakelock_destroy;