Преглед на файлове

qcacmn: Release the spin lock before return

Currently in interrupt handler of per CE, spin lock is taken for
send or receive and returns with out releasing the lock held if
target register access is not allowed. This condition will lead
to kernel panic if some other context is trying for the same lock.

Change-Id: I115f6fbb006d28097168342aa4add3526ad3939d
CRs-Fixed: 2077464
Sravan Kumar Kairam преди 7 години
родител
ревизия
26cf747681
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      hif/src/ce/ce_service.c

+ 1 - 1
hif/src/ce/ce_service.c

@@ -2103,7 +2103,7 @@ more_watermarks:
 					   HOST_IS_COPY_COMPLETE_MASK);
 		} else {
 			HIF_ERROR("%s: target access is not allowed", __func__);
-			return CE_state->receive_count;
+			goto unlock_end;
 		}
 	}