Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1510249 > unrolled thread
| Started by | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| First post | 2016-10-27 16:20 +0200 |
| Last post | 2016-10-28 12:40 +0200 |
| Articles | 3 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] crypto: acomp: export all scomp interfaces Arnd Bergmann <arnd@arndb.de> - 2016-10-27 16:20 +0200
Re: [PATCH] crypto: acomp: export all scomp interfaces Giovanni Cabiddu <giovanni.cabiddu@intel.com> - 2016-10-27 23:10 +0200
Re: [PATCH] crypto: acomp: export all scomp interfaces Arnd Bergmann <arnd@arndb.de> - 2016-10-28 12:40 +0200
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Date | 2016-10-27 16:20 +0200 |
| Subject | [PATCH] crypto: acomp: export all scomp interfaces |
| Message-ID | <swTHd-31G-61@gated-at.bofh.it> |
The newly added scomp/acomp interface has a couple of functions
that should be exported to allow linking the two drivers
as loadable modules:
ERROR: "crypto_acomp_scomp_free_ctx" [crypto/acompress.ko] undefined!
ERROR: "crypto_acomp_scomp_alloc_ctx" [crypto/acompress.ko] undefined!
ERROR: "crypto_init_scomp_ops_async" [crypto/acompress.ko] undefined!
Alternatively, both of them could be combined into one loadable module.
Fixes: 1ab53a77b772 ("crypto: acomp - add driver-side scomp interface")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
crypto/scompress.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/crypto/scompress.c b/crypto/scompress.c
index 35e396d154b7..1f9cdcddb2ce 100644
--- a/crypto/scompress.c
+++ b/crypto/scompress.c
@@ -267,6 +267,7 @@ int crypto_init_scomp_ops_async(struct crypto_tfm *tfm)
return 0;
}
+EXPORT_SYMBOL_GPL(crypto_init_scomp_ops_async);
struct acomp_req *crypto_acomp_scomp_alloc_ctx(struct acomp_req *req)
{
@@ -286,6 +287,7 @@ struct acomp_req *crypto_acomp_scomp_alloc_ctx(struct acomp_req *req)
return req;
}
+EXPORT_SYMBOL_GPL(crypto_acomp_scomp_alloc_ctx);
void crypto_acomp_scomp_free_ctx(struct acomp_req *req)
{
@@ -298,6 +300,7 @@ void crypto_acomp_scomp_free_ctx(struct acomp_req *req)
if (ctx)
crypto_scomp_free_ctx(scomp, ctx);
}
+EXPORT_SYMBOL_GPL(crypto_acomp_scomp_free_ctx);
static const struct crypto_type crypto_scomp_type = {
.extsize = crypto_alg_extsize,
--
2.9.0
[toc] | [next] | [standalone]
| From | Giovanni Cabiddu <giovanni.cabiddu@intel.com> |
|---|---|
| Date | 2016-10-27 23:10 +0200 |
| Message-ID | <sx05X-793-7@gated-at.bofh.it> |
| In reply to | #1510249 |
Hi Arnd, On Thu, Oct 27, 2016 at 04:09:49PM +0200, Arnd Bergmann wrote: > The newly added scomp/acomp interface has a couple of functions > that should be exported to allow linking the two drivers > as loadable modules: > > ERROR: "crypto_acomp_scomp_free_ctx" [crypto/acompress.ko] undefined! > ERROR: "crypto_acomp_scomp_alloc_ctx" [crypto/acompress.ko] undefined! > ERROR: "crypto_init_scomp_ops_async" [crypto/acompress.ko] undefined! These functions were not exported on purpose. They should not be called by other modules. > Alternatively, both of them could be combined into one loadable module. I think this is the correct approach. Here is a patch with an alternative fix: https://patchwork.kernel.org/patch/9396503/ Thanks, -- Giovanni
[toc] | [prev] | [next] | [standalone]
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Date | 2016-10-28 12:40 +0200 |
| Message-ID | <sxcJP-77Y-3@gated-at.bofh.it> |
| In reply to | #1510672 |
On Thursday, October 27, 2016 10:03:29 PM CEST Giovanni Cabiddu wrote: > Hi Arnd, > > On Thu, Oct 27, 2016 at 04:09:49PM +0200, Arnd Bergmann wrote: > > The newly added scomp/acomp interface has a couple of functions > > that should be exported to allow linking the two drivers > > as loadable modules: > > > > ERROR: "crypto_acomp_scomp_free_ctx" [crypto/acompress.ko] undefined! > > ERROR: "crypto_acomp_scomp_alloc_ctx" [crypto/acompress.ko] undefined! > > ERROR: "crypto_init_scomp_ops_async" [crypto/acompress.ko] undefined! > These functions were not exported on purpose. They should not be called > by other modules. > > > Alternatively, both of them could be combined into one loadable module. > I think this is the correct approach. Here is a patch with an > alternative fix: https://patchwork.kernel.org/patch/9396503/ Yes, your patch is exactly what I had in mind as the alternative, looks good to me. Arnd
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web