Skip to content

Commit 2c4192c

Browse files
brooniectmarinas
authored andcommitted
kselftest/arm64: Don't require FA64 for streaming SVE+ZA 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 which got copied over into the SSVE+ZA registers test case. 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 <[email protected]> Link: https://lore.kernel.org/r/20230202-arm64-kselftest-sve-za-fa64-v1-1-5c5f3dabe441@kernel.org Signed-off-by: Catalin Marinas <[email protected]>
1 parent 6012b82 commit 2c4192c

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

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

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -154,12 +154,7 @@ static int sme_regs(struct tdescr *td, siginfo_t *si, ucontext_t *uc)
154154
struct tdescr tde = {
155155
.name = "Streaming SVE registers",
156156
.descr = "Check that we get the right Streaming SVE registers reported",
157-
/*
158-
* We shouldn't require FA64 but things like memset() used in the
159-
* helpers might use unsupported instructions so for now disable
160-
* the test unless we've got the full instruction set.
161-
*/
162-
.feats_required = FEAT_SME | FEAT_SME_FA64,
157+
.feats_required = FEAT_SME,
163158
.timeout = 3,
164159
.init = sme_get_vls,
165160
.run = sme_regs,

0 commit comments

Comments
 (0)