X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fnetlink-notifier.c;h=9aa185d5b1a3149611af747a8c25621c57562cf6;hb=HEAD;hp=8f6daff8d8bcc858141aa634bb691f18f66b62d8;hpb=1e3f34c7693bcabae8e443ac1b246680ef9b60e2;p=sliver-openvswitch.git diff --git a/lib/netlink-notifier.c b/lib/netlink-notifier.c index 8f6daff8d..9aa185d5b 100644 --- a/lib/netlink-notifier.c +++ b/lib/netlink-notifier.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009, 2010, 2011, 2012 Nicira, Inc. + * Copyright (c) 2009, 2010, 2011, 2012, 2013 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,7 +18,6 @@ #include "netlink-notifier.h" -#include #include #include #include @@ -42,7 +41,7 @@ struct nln { /* Passed in by nln_create(). */ int multicast_group; /* Multicast group we listen on. */ - int protocol; /* Protocal passed to nl_sock_create(). */ + int protocol; /* Protocol passed to nl_sock_create(). */ nln_parse_func *parse; /* Message parsing function. */ void *change; /* Change passed to parse. */ }; @@ -87,7 +86,7 @@ void nln_destroy(struct nln *nln) { if (nln) { - assert(list_is_empty(&nln->all_notifiers)); + ovs_assert(list_is_empty(&nln->all_notifiers)); nl_sock_destroy(nln->notify_sock); free(nln); } @@ -116,7 +115,8 @@ nln_notifier_create(struct nln *nln, nln_notify_func *cb, void *aux) } if (error) { nl_sock_destroy(sock); - VLOG_WARN("could not create netlink socket: %s", strerror(error)); + VLOG_WARN("could not create netlink socket: %s", + ovs_strerror(error)); return NULL; } nln->notify_sock = sock; @@ -185,7 +185,7 @@ nln_run(struct nln *nln) VLOG_WARN_RL(&rl, "netlink receive buffer overflowed"); } else { VLOG_WARN_RL(&rl, "error reading netlink socket: %s", - strerror(error)); + ovs_strerror(error)); } nln_report(nln, NULL); }