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

Commit dcabf36d authored by Will Deacon's avatar Will Deacon Committed by Channagoud Kadabi
Browse files

arm64: cpufeature: Pass capability structure to ->enable callback



In order to invoke the CPU capability ->matches callback from the ->enable
callback for applying local-CPU workarounds, we need a handle on the
capability structure.

This patch passes a pointer to the capability structure to the ->enable
callback.

Change-Id: Ia57e74fa144a701f5144b6661594e4f69f7b0140
Reviewed-by: default avatarSuzuki K Poulose <suzuki.poulose@arm.com>
Signed-off-by: default avatarWill Deacon <will.deacon@arm.com>
Patch-mainline: linux-arm-kernel @ 01/08/18, 9:32
[ckadabi@codeaurora.org: Resolved minor merge conflicts]
Signed-off-by: default avatarChannagoud Kadabi <ckadabi@codeaurora.org>
parent c2511253
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -998,7 +998,7 @@ void __init enable_cpu_capabilities(const struct arm64_cpu_capabilities *caps)
			 * uses an IPI, giving us a PSTATE that disappears when
			 * we return.
			 */
			stop_machine(caps->enable, NULL, cpu_online_mask);
			stop_machine(caps->enable, (void *)caps, cpu_online_mask);
}

/*
@@ -1054,7 +1054,7 @@ verify_local_cpu_features(const struct arm64_cpu_capabilities *caps)
			cpu_die_early();
		}
		if (caps->enable)
			caps->enable(NULL);
			caps->enable((void *)caps);
	}
}