Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9529cdc5 authored by Jan Glauber's avatar Jan Glauber Committed by Martin Schwidefsky
Browse files

[S390] s390,oprofile: fix alert counter increment



The counter for requested interrupts should be incremented if the
program-request-alert bit is set and not the invalid-address-entry
bit.

Signed-off-by: default avatarJan Glauber <jang@linux.vnet.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent 3af6fb68
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -764,7 +764,7 @@ static int worker_check_error(unsigned int cpu, int ext_params)
	if (!sdbt || !*sdbt)
		return -EINVAL;

	if (ext_params & EI_IEA)
	if (ext_params & EI_PRA)
		cb->req_alert++;

	if (ext_params & EI_LSDA)