forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
crypto: morus - Mark MORUS SIMD glue as x86-specific
Commit 56e8e57 ("crypto: morus - Add common SIMD glue code for MORUS") accidetally consiedered the glue code to be usable by different architectures, but it seems to be only usable on x86. This patch moves it under arch/x86/crypto and adds 'depends on X86' to the Kconfig options and also removes the prompt to hide these internal options from the user. Reported-by: kbuild test robot <[email protected]> Signed-off-by: Ondrej Mosnacek <[email protected]> Signed-off-by: Herbert Xu <[email protected]>
- Loading branch information
Showing
5 changed files
with
11 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* The MORUS-1280 Authenticated-Encryption Algorithm | ||
* Common glue skeleton | ||
* Common x86 SIMD glue skeleton | ||
* | ||
* Copyright (c) 2016-2018 Ondrej Mosnacek <[email protected]> | ||
* Copyright (C) 2017-2018 Red Hat, Inc. All rights reserved. | ||
|
@@ -299,4 +299,4 @@ EXPORT_SYMBOL_GPL(cryptd_morus1280_glue_exit_tfm); | |
|
||
MODULE_LICENSE("GPL"); | ||
MODULE_AUTHOR("Ondrej Mosnacek <[email protected]>"); | ||
MODULE_DESCRIPTION("MORUS-1280 AEAD mode -- glue for optimizations"); | ||
MODULE_DESCRIPTION("MORUS-1280 AEAD mode -- glue for x86 optimizations"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* The MORUS-640 Authenticated-Encryption Algorithm | ||
* Common glue skeleton | ||
* Common x86 SIMD glue skeleton | ||
* | ||
* Copyright (c) 2016-2018 Ondrej Mosnacek <[email protected]> | ||
* Copyright (C) 2017-2018 Red Hat, Inc. All rights reserved. | ||
|
@@ -295,4 +295,4 @@ EXPORT_SYMBOL_GPL(cryptd_morus640_glue_exit_tfm); | |
|
||
MODULE_LICENSE("GPL"); | ||
MODULE_AUTHOR("Ondrej Mosnacek <[email protected]>"); | ||
MODULE_DESCRIPTION("MORUS-640 AEAD mode -- glue for optimizations"); | ||
MODULE_DESCRIPTION("MORUS-640 AEAD mode -- glue for x86 optimizations"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters