Page MenuHomeFreeBSD

tests/sys/opencrypto: enable armv8crypto
ClosedPublic

Authored by val_packett.cool on Jul 21 2019, 7:28 PM.
Tags
Referenced Files
F168733242: D21018.id60634.diff
Sat, Aug 29, 9:10 PM
F168619291: D21018.id60028.diff
Sat, Aug 29, 7:17 AM
Unknown Object (File)
Thu, Aug 27, 4:15 PM
Unknown Object (File)
Thu, Aug 27, 6:19 AM
Unknown Object (File)
Tue, Aug 25, 5:55 AM
Unknown Object (File)
Sat, Aug 15, 9:10 PM
Unknown Object (File)
Thu, Aug 13, 2:22 PM
Unknown Object (File)
Thu, Aug 13, 2:22 PM
Subscribers

Details

Summary

The tests were useful for adding XTS (D21017) and will no doubt be useful for adding more of the things :)

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

Could you please test this change out on amd64?

Thank you for the submission :)!

tests/sys/opencrypto/runtests.sh
67 ↗(On Diff #59995)

Please use a switch statement here, e.g.,

case “${cpu_type}” in
aarch64)
    cpu_module=...
    ;;
amd64|i386)
    cpu_module=...
    ;;
esac

The above change would break some testing on i386.

PS please pardon my editing. I’m submitting the comment via my iPhone).

val_packett.cool marked an inline comment as done.
In D21018#456270, @ngie wrote:

Could you please test this change out on amd64?

Yes, works fine of course.

tests/sys/opencrypto/runtests.sh
67 ↗(On Diff #59995)

Of course Intel added AES-NI to the 32-bit mode, why did I assume that all new features were restricted to 64-bit.. Sorry :D

Updated the patch.

This revision was not accepted when it landed; it landed in state Needs Review.Aug 10 2019, 3:53 PM
This revision was automatically updated to reflect the committed changes.