summaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/sun/sunvnet_common.c
diff options
context:
space:
mode:
authorShannon Nelson2017-02-13 19:56:57 +0100
committerDavid S. Miller2017-02-14 19:04:08 +0100
commit2493b842f258e14938f278e44ecc26970dfabbf0 (patch)
tree6d89a039590bc490614e45c6cc250b9662c6e219 /drivers/net/ethernet/sun/sunvnet_common.c
parentMerge branch 'sfc-bogus-interrupt-mode-fallbacks' (diff)
downloadkernel-qcow2-linux-2493b842f258e14938f278e44ecc26970dfabbf0.tar.gz
kernel-qcow2-linux-2493b842f258e14938f278e44ecc26970dfabbf0.tar.xz
kernel-qcow2-linux-2493b842f258e14938f278e44ecc26970dfabbf0.zip
sunvnet: make sunvnet common code dynamically loadable
When the sunvnet_common code was split out for use by both sunvnet and the newer ldmvsw, it was made into a static kernel library, which limits the usefulness of sunvnet and ldmvsw as loadables, since most of the real work is being done in the shared code. Also, this is simply dead code in kernels that aren't running the LDoms. This patch makes the sunvnet_common into a dynamically loadable module and makes sunvnet and ldmvsw dependent on sunvnet_common. Signed-off-by: Shannon Nelson <shannon.nelson@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/sun/sunvnet_common.c')
-rw-r--r--drivers/net/ethernet/sun/sunvnet_common.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/net/ethernet/sun/sunvnet_common.c b/drivers/net/ethernet/sun/sunvnet_common.c
index 191c8ade6155..c71f0007ad5b 100644
--- a/drivers/net/ethernet/sun/sunvnet_common.c
+++ b/drivers/net/ethernet/sun/sunvnet_common.c
@@ -37,6 +37,11 @@
*/
#define VNET_MAX_RETRIES 10
+MODULE_AUTHOR("David S. Miller (davem@davemloft.net)");
+MODULE_DESCRIPTION("Sun LDOM virtual network support library");
+MODULE_LICENSE("GPL");
+MODULE_VERSION("1.1");
+
static int __vnet_tx_trigger(struct vnet_port *port, u32 start);
static void vnet_port_reset(struct vnet_port *port);