From: Peter Georg <peter.georg@xxxxxxxxxxxxxxxxxxxxxxxx> x86/sgx: Add ifdef RHEL_DIFFERENCES Bugzilla: http://bugzilla.redhat.com/2025959 Upstream Status: RHEL only Fixes: 062183357c10d Signed-off-by: Peter Georg <peter.georg@xxxxxxxxxxxxxxxxxxxxxxxx> diff --git a/arch/x86/kernel/cpu/sgx/driver.c b/arch/x86/kernel/cpu/sgx/driver.c index blahblah..blahblah 100644 --- a/arch/x86/kernel/cpu/sgx/driver.c +++ b/arch/x86/kernel/cpu/sgx/driver.c @@ -18,7 +18,6 @@ static int sgx_open(struct inode *inode, struct file *file) { struct sgx_encl *encl; int ret; - static bool warned = false; encl = kzalloc(sizeof(*encl), GFP_KERNEL); if (!encl) @@ -37,10 +36,13 @@ static int sgx_open(struct inode *inode, struct file *file) return ret; } +#ifdef CONFIG_RHEL_DIFFERENCES + static bool warned = false; if (!warned) { mark_tech_preview("Intel Software Guard Extensions (SGX)", NULL); warned = true; } +#endif file->private_data = encl; -- https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1610 _______________________________________________ kernel mailing list -- kernel@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to kernel-leave@xxxxxxxxxxxxxxxxxxxxxxx Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/kernel@xxxxxxxxxxxxxxxxxxxxxxx Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure