Skip to content

Commit 4365eec

Browse files
brooniectmarinas
authored andcommitted
kselftest/arm64: Don't require FA64 for streaming SVE tests
During early development a dependedncy was added on having FA64 available so we could use the full FPSIMD register set in the signal handler. Subsequently the ABI was finialised so the handler is run with streaming mode disabled meaning this is redundant but the dependency was never removed, do so now. Signed-off-by: Mark Brown <broonie@kernel.org> Link: https://lore.kernel.org/r/20230131-arm64-kselfetest-ssve-fa64-v1-1-f418efcc2b60@kernel.org Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
1 parent 89ff30b commit 4365eec

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

  • tools/testing/selftests/arm64/signal/testcases

tools/testing/selftests/arm64/signal/testcases/ssve_regs.c

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -121,12 +121,7 @@ static int sme_regs(struct tdescr *td, siginfo_t *si, ucontext_t *uc)
121121
struct tdescr tde = {
122122
.name = "Streaming SVE registers",
123123
.descr = "Check that we get the right Streaming SVE registers reported",
124-
/*
125-
* We shouldn't require FA64 but things like memset() used in the
126-
* helpers might use unsupported instructions so for now disable
127-
* the test unless we've got the full instruction set.
128-
*/
129-
.feats_required = FEAT_SME | FEAT_SME_FA64,
124+
.feats_required = FEAT_SME,
130125
.timeout = 3,
131126
.init = sme_get_vls,
132127
.run = sme_regs,

0 commit comments

Comments
 (0)