cluster-devel.redhat.com archive mirror
 help / color / mirror / Atom feed
* [Cluster-devel] [PATCH] dlm: use genl_register_family_with_ops()
       [not found] <1280135959-17485-1-git-send-email-xiaosuo@gmail.com>
@ 2010-07-26 16:04 ` David Teigland
  0 siblings, 0 replies; only message in thread
From: David Teigland @ 2010-07-26 16:04 UTC (permalink / raw)
  To: cluster-devel.redhat.com

On Mon, Jul 26, 2010 at 05:19:19PM +0800, Changli Gao wrote:
> Signed-off-by: Changli Gao <xiaosuo@gmail.com>
> ----
>  fs/dlm/netlink.c |   15 +--------------
>  1 file changed, 1 insertion(+), 14 deletions(-)
> diff --git a/fs/dlm/netlink.c b/fs/dlm/netlink.c
> index 2c6ad51..ef17e01 100644
> --- a/fs/dlm/netlink.c
> +++ b/fs/dlm/netlink.c
> @@ -81,24 +81,11 @@ static struct genl_ops dlm_nl_ops = {
>  
>  int __init dlm_netlink_init(void)
>  {
> -	int rv;
> -
> -	rv = genl_register_family(&family);
> -	if (rv)
> -		return rv;
> -
> -	rv = genl_register_ops(&family, &dlm_nl_ops);
> -	if (rv < 0)
> -		goto err;
> -	return 0;
> - err:
> -	genl_unregister_family(&family);
> -	return rv;
> +	return genl_register_family_with_ops(&family, &dlm_nl_ops, 1);
>  }
>  
>  void dlm_netlink_exit(void)
>  {
> -	genl_unregister_ops(&family, &dlm_nl_ops);
>  	genl_unregister_family(&family);
>  }

Looks fine, ack.
Dave



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-07-26 16:04 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1280135959-17485-1-git-send-email-xiaosuo@gmail.com>
2010-07-26 16:04 ` [Cluster-devel] [PATCH] dlm: use genl_register_family_with_ops() David Teigland

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).