aboutsummaryrefslogtreecommitdiff
path: root/vswitchd
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2010-10-19 14:47:01 -0700
committerBen Pfaff <blp@nicira.com>2010-10-29 09:48:47 -0700
commitd98e60075528c3065ad453f7add4b30f22edcde3 (patch)
tree01f2266cae63af507e6ac6b72ab8153b7d496bdd /vswitchd
parent10a24935c9d382e4d85b05d9616843f3d3bb4983 (diff)
vlog: Make client supply semicolon for VLOG_DEFINE_THIS_MODULE.
It's kind of odd for VLOG_DEFINE_THIS_MODULE to supply its own semicolon, so this commit switches to the more common form.
Diffstat (limited to 'vswitchd')
-rw-r--r--vswitchd/bridge.c2
-rw-r--r--vswitchd/ovs-brcompatd.c2
-rw-r--r--vswitchd/ovs-vswitchd.c2
-rw-r--r--vswitchd/proc-net-compat.c2
-rw-r--r--vswitchd/system-stats.c2
-rw-r--r--vswitchd/xenserver.c2
6 files changed, 6 insertions, 6 deletions
diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c
index 20cfef7d..53a24e36 100644
--- a/vswitchd/bridge.c
+++ b/vswitchd/bridge.c
@@ -68,7 +68,7 @@
#include "vlog.h"
#include "sflow_api.h"
-VLOG_DEFINE_THIS_MODULE(bridge)
+VLOG_DEFINE_THIS_MODULE(bridge);
struct dst {
uint16_t vlan;
diff --git a/vswitchd/ovs-brcompatd.c b/vswitchd/ovs-brcompatd.c
index 39c11013..6feeda05 100644
--- a/vswitchd/ovs-brcompatd.c
+++ b/vswitchd/ovs-brcompatd.c
@@ -57,7 +57,7 @@
#include "vlog.h"
#include "vswitchd/vswitch-idl.h"
-VLOG_DEFINE_THIS_MODULE(brcompatd)
+VLOG_DEFINE_THIS_MODULE(brcompatd);
/* xxx Just hangs if datapath is rmmod/insmod. Learn to reconnect? */
diff --git a/vswitchd/ovs-vswitchd.c b/vswitchd/ovs-vswitchd.c
index 541cdcbc..c307c928 100644
--- a/vswitchd/ovs-vswitchd.c
+++ b/vswitchd/ovs-vswitchd.c
@@ -48,7 +48,7 @@
#include "vlog.h"
#include "vswitchd/vswitch-idl.h"
-VLOG_DEFINE_THIS_MODULE(vswitchd)
+VLOG_DEFINE_THIS_MODULE(vswitchd);
static unixctl_cb_func ovs_vswitchd_exit;
diff --git a/vswitchd/proc-net-compat.c b/vswitchd/proc-net-compat.c
index 0eda6d25..d8160f45 100644
--- a/vswitchd/proc-net-compat.c
+++ b/vswitchd/proc-net-compat.c
@@ -33,7 +33,7 @@
#include "svec.h"
#include "vlog.h"
-VLOG_DEFINE_THIS_MODULE(proc_net_compat)
+VLOG_DEFINE_THIS_MODULE(proc_net_compat);
/* Netlink socket to bridge compatibility kernel module. */
static struct nl_sock *brc_sock;
diff --git a/vswitchd/system-stats.c b/vswitchd/system-stats.c
index 11b2fbed..45b8cce6 100644
--- a/vswitchd/system-stats.c
+++ b/vswitchd/system-stats.c
@@ -39,7 +39,7 @@
#include "timeval.h"
#include "vlog.h"
-VLOG_DEFINE_THIS_MODULE(system_stats)
+VLOG_DEFINE_THIS_MODULE(system_stats);
/* #ifdefs make it a pain to maintain code: you have to try to build both ways.
* Thus, this file tries to compile as much of the code as possible regardless
diff --git a/vswitchd/xenserver.c b/vswitchd/xenserver.c
index 976d7162..eed798f4 100644
--- a/vswitchd/xenserver.c
+++ b/vswitchd/xenserver.c
@@ -24,7 +24,7 @@
#include "process.h"
#include "vlog.h"
-VLOG_DEFINE_THIS_MODULE(xenserver)
+VLOG_DEFINE_THIS_MODULE(xenserver);
static char *
read_host_uuid(void)