netlink: add netlink_kernel_cfg parameter to netlink_kernel_create
This patch adds the following structure: struct netlink_kernel_cfg { unsigned int groups; void (*input)(struct sk_buff *skb); struct mutex *cb_mutex; }; That can be passed to netlink_kernel_create to set optional configurations for netlink kernel sockets. I've populated this structure by looking for NULL and zero parameters at the existing code. The remaining parameters that always need to be set are still left in the original interface. That includes optional parameters for the netlink socket creation. This allows easy extensibility of this interface in the future. This patch also adapts all callers to use this new interface. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
dd7f36ba3c
commit
a31f2d17b3
@@ -282,6 +282,9 @@ static int __init ebt_ulog_init(void)
|
||||
{
|
||||
int ret;
|
||||
int i;
|
||||
struct netlink_kernel_cfg cfg = {
|
||||
.groups = EBT_ULOG_MAXNLGROUPS,
|
||||
};
|
||||
|
||||
if (nlbufsiz >= 128*1024) {
|
||||
pr_warning("Netlink buffer has to be <= 128kB,"
|
||||
@@ -296,8 +299,7 @@ static int __init ebt_ulog_init(void)
|
||||
}
|
||||
|
||||
ebtulognl = netlink_kernel_create(&init_net, NETLINK_NFLOG,
|
||||
EBT_ULOG_MAXNLGROUPS, NULL, NULL,
|
||||
THIS_MODULE);
|
||||
THIS_MODULE, &cfg);
|
||||
if (!ebtulognl)
|
||||
ret = -ENOMEM;
|
||||
else if ((ret = xt_register_target(&ebt_ulog_tg_reg)) != 0)
|
||||
|
Reference in New Issue
Block a user