X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=vswitchd%2Fproc-net-compat.c;h=6a8f8756e2f8b12716c7c3520ea6afae08152768;hb=refs%2Fheads%2Flts-1.0a;hp=72eb7be317f7b7b72f80d18e7315a4b0dda4789f;hpb=69123704450703f7ebea4af9e3b9635399fc21f2;p=sliver-openvswitch.git diff --git a/vswitchd/proc-net-compat.c b/vswitchd/proc-net-compat.c index 72eb7be31..6a8f8756e 100644 --- a/vswitchd/proc-net-compat.c +++ b/vswitchd/proc-net-compat.c @@ -31,10 +31,10 @@ #include "hmap.h" #include "shash.h" #include "svec.h" - -#define THIS_MODULE VLM_proc_net_compat #include "vlog.h" +VLOG_DEFINE_THIS_MODULE(proc_net_compat) + /* Netlink socket to bridge compatibility kernel module. */ static struct nl_sock *brc_sock; @@ -72,7 +72,7 @@ proc_net_compat_init(void) static int set_proc_file(const char *dir, const char *file, const char *data) { - struct ofpbuf request, *reply; + struct ofpbuf request; int retval; ofpbuf_init(&request, 0); @@ -84,9 +84,8 @@ set_proc_file(const char *dir, const char *file, const char *data) nl_msg_put_string(&request, BRC_GENL_A_PROC_DATA, data); } - retval = nl_sock_transact(brc_sock, &request, &reply); + retval = nl_sock_transact(brc_sock, &request, NULL); ofpbuf_uninit(&request); - ofpbuf_delete(reply); if (retval) { VLOG_WARN_RL(&rl, "failed to %s /proc/%s/%s (%s)", data ? "update" : "remove", dir, file, strerror(retval));