diff options
author | Michał Mirosław <mirq-linux@rere.qmqm.pl> | 2009-05-21 14:34:04 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-05-22 03:50:22 +0400 |
commit | a7b11d738282337488ae158c975d76271ad43a98 (patch) | |
tree | 82c27ba3224309e442fffbaa7e5d9ae6453a20a1 /include/net/genetlink.h | |
parent | 4ea7e38696c7e798c47ebbecadfd392f23f814f9 (diff) | |
download | linux-a7b11d738282337488ae158c975d76271ad43a98.tar.xz |
genetlink: Introduce genl_register_family_with_ops()
This introduces genl_register_family_with_ops() that registers a genetlink
family along with operations from a table. This is used to kill copy'n'paste
occurrences in following patches.
Signed-off-by: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/genetlink.h')
-rw-r--r-- | include/net/genetlink.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/genetlink.h b/include/net/genetlink.h index 747c255d1df0..1b0e3ee4ddd8 100644 --- a/include/net/genetlink.h +++ b/include/net/genetlink.h @@ -88,6 +88,8 @@ struct genl_ops }; extern int genl_register_family(struct genl_family *family); +extern int genl_register_family_with_ops(struct genl_family *family, + struct genl_ops *ops, size_t n_ops); extern int genl_unregister_family(struct genl_family *family); extern int genl_register_ops(struct genl_family *, struct genl_ops *ops); extern int genl_unregister_ops(struct genl_family *, struct genl_ops *ops); |