Re: [11/many] acrypto: crypto_main.c

From: Randy.Dunlap
Date: Tue Mar 15 2005 - 11:33:09 EST


Evgeniy Polyakov wrote:
--- /tmp/empty/crypto_main.c 1970-01-01 03:00:00.000000000 +0300
+++ ./acrypto/crypto_main.c 2005-03-07 20:35:36.000000000 +0300
@@ -0,0 +1,374 @@
+/*
+ * crypto_main.c
+ *
+ * Copyright (c) 2004 Evgeniy Polyakov <johnpol@xxxxxxxxxxx>
+ * + */

+struct crypto_session *crypto_session_alloc(struct crypto_session_initializer *ci, struct crypto_data *d)
+{
+ struct crypto_session *s;
+
+ s = crypto_session_create(ci, d);
+ if (!s)
+ return NULL;
+
+ crypto_session_add(s);
+
+ return s;
+}
+
+

+EXPORT_SYMBOL(crypto_session_alloc);
Why is this one not _GPL ?? It calls _create() and _add().

+EXPORT_SYMBOL_GPL(crypto_session_create);
+EXPORT_SYMBOL_GPL(crypto_session_add);
+EXPORT_SYMBOL_GPL(crypto_session_dequeue_route);


--
~Randy
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/