Skip to content

Commit

Permalink
kni: fix build with kernel 2.6.32
Browse files Browse the repository at this point in the history
It fixes the compile issue on kernel version 2.6.32 or old ones.

Error logs:
lib/librte_eal/linuxapp/kni/kni_misc.c:121: error: unknown field id specified in initializer
lib/librte_eal/linuxapp/kni/kni_misc.c:121: error: excess elements in struct initializer
lib/librte_eal/linuxapp/kni/kni_misc.c:121: error: (near initialization for kni_net_ops)
lib/librte_eal/linuxapp/kni/kni_misc.c:122: error: unknown field size specified in initializer
lib/librte_eal/linuxapp/kni/kni_misc.c:122: error: excess elements in struct initializer
lib/librte_eal/linuxapp/kni/kni_misc.c:122: error: (near initialization for kni_net_ops)

Fixes: 72a7a2b ("kni: allow per-net instances")

Signed-off-by: Helin Zhang <helin.zhang@intel.com>
Acked-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
  • Loading branch information
helin-zhang authored and Thomas Monjalon committed Nov 19, 2015
1 parent b0fb515 commit e6734d2
Showing 1 changed file with 45 additions and 2 deletions.
47 changes: 45 additions & 2 deletions lib/librte_eal/linuxapp/kni/kni_misc.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
* Intel Corporation
*/

#include <linux/version.h>
#include <linux/module.h>
#include <linux/miscdevice.h>
#include <linux/netdevice.h>
Expand Down Expand Up @@ -102,24 +103,54 @@ struct kni_net {
struct list_head kni_list_head;
};

static __net_init int kni_init_net(struct net *net)
static int __net_init kni_init_net(struct net *net)
{
#if LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 32)
struct kni_net *knet = net_generic(net, kni_net_id);
#else
struct kni_net *knet;
int ret;

knet = kmalloc(sizeof(struct kni_net), GFP_KERNEL);
if (!knet) {
ret = -ENOMEM;
return ret;
}
#endif /* LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 32) */

/* Clear the bit of device in use */
clear_bit(KNI_DEV_IN_USE_BIT_NUM, &knet->device_in_use);

init_rwsem(&knet->kni_list_lock);
INIT_LIST_HEAD(&knet->kni_list_head);

#if LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 32)
return 0;
#else
ret = net_assign_generic(net, kni_net_id, knet);
if (ret < 0)
kfree(knet);

return ret;
#endif /* LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 32) */
}

static void __net_exit kni_exit_net(struct net *net)
{
#if LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 32)
struct kni_net *knet = net_generic(net, kni_net_id);

kfree(knet);
#endif /* LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 32) */
}

static struct pernet_operations kni_net_ops = {
.init = kni_init_net,
.exit = NULL,
.exit = kni_exit_net,
#if LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 32)
.id = &kni_net_id,
.size = sizeof(struct kni_net),
#endif /* LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 32) */
};

static int __init
Expand All @@ -134,7 +165,11 @@ kni_init(void)
return -EINVAL;
}

#if LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 32)
rc = register_pernet_subsys(&kni_net_ops);
#else
rc = register_pernet_gen_subsys(&kni_net_id, &kni_net_ops);
#endif /* LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 32) */
if (rc)
return -EPERM;

Expand All @@ -152,15 +187,23 @@ kni_init(void)
return 0;

out:
#if LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 32)
unregister_pernet_subsys(&kni_net_ops);
#else
register_pernet_gen_subsys(&kni_net_id, &kni_net_ops);
#endif /* LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 32) */
return rc;
}

static void __exit
kni_exit(void)
{
misc_deregister(&kni_misc);
#if LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 32)
unregister_pernet_subsys(&kni_net_ops);
#else
register_pernet_gen_subsys(&kni_net_id, &kni_net_ops);
#endif /* LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 32) */
KNI_PRINT("####### DPDK kni module unloaded #######\n");
}

Expand Down

0 comments on commit e6734d2

Please sign in to comment.