Page MenuHomeFreeBSD

ossl: split out x86 bits to x86/ossl_cpuid.c
ClosedPublic

Authored by mhorne on Nov 26 2020, 8:26 PM.
Tags
None
Referenced Files
Unknown Object (File)
Feb 24 2024, 1:27 AM
Unknown Object (File)
Feb 24 2024, 1:27 AM
Unknown Object (File)
Feb 24 2024, 1:27 AM
Unknown Object (File)
Feb 24 2024, 1:27 AM
Unknown Object (File)
Feb 24 2024, 1:27 AM
Unknown Object (File)
Feb 23 2024, 11:21 AM
Unknown Object (File)
Jan 13 2024, 1:33 PM
Unknown Object (File)
Dec 23 2023, 1:33 AM
Subscribers

Details

Summary

Make room for adding arm64 support to this driver by moving the
x86-specific feature parsing to a separate file.

Diff Detail

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

Event Timeline

mhorne created this revision.

Move common ossl files to conf/files.

In general looks ok. My only wiggle is that right now sys/crypto/openssl/<arch> only contains generated files from OpenSSL (and is shared with the userland libcrypto build via .PATH). The other approach would be to call this new file 'sys/crypto/openssl/ossl_x86.c' and add it to SRCS.amd64 and SRCS.i386 explicitly. I'm not strictly tied to that approach however.

In D27388#613044, @jhb wrote:

In general looks ok. My only wiggle is that right now sys/crypto/openssl/<arch> only contains generated files from OpenSSL (and is shared with the userland libcrypto build via .PATH). The other approach would be to call this new file 'sys/crypto/openssl/ossl_x86.c' and add it to SRCS.amd64 and SRCS.i386 explicitly. I'm not strictly tied to that approach however.

I see, it would be best kept out of that folder then. Naming it ossl_x86.c seems reasonable to me.

Move x86/ossl_cpuid.c to ossl_x86.c.

This revision is now accepted and ready to land.Dec 3 2020, 10:37 PM
This revision was automatically updated to reflect the committed changes.