diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2012-06-29 02:15:21 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-06-29 19:46:02 -0400 |
commit | a31f2d17b331db970259e875b7223d3aba7e3821 (patch) | |
tree | 0d10021be81446ab360f4240b0d16729f518387f /crypto | |
parent | dd7f36ba3ce17d4fe85987d83efd5901b0935816 (diff) |
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>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/crypto_user.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/crypto/crypto_user.c b/crypto/crypto_user.c index 5a37eadb4e56..ba2c611154af 100644 --- a/crypto/crypto_user.c +++ b/crypto/crypto_user.c | |||
@@ -496,9 +496,12 @@ static void crypto_netlink_rcv(struct sk_buff *skb) | |||
496 | 496 | ||
497 | static int __init crypto_user_init(void) | 497 | static int __init crypto_user_init(void) |
498 | { | 498 | { |
499 | struct netlink_kernel_cfg cfg = { | ||
500 | .input = crypto_netlink_rcv, | ||
501 | }; | ||
502 | |||
499 | crypto_nlsk = netlink_kernel_create(&init_net, NETLINK_CRYPTO, | 503 | crypto_nlsk = netlink_kernel_create(&init_net, NETLINK_CRYPTO, |
500 | 0, crypto_netlink_rcv, | 504 | THIS_MODULE, &cfg); |
501 | NULL, THIS_MODULE); | ||
502 | if (!crypto_nlsk) | 505 | if (!crypto_nlsk) |
503 | return -ENOMEM; | 506 | return -ENOMEM; |
504 | 507 | ||