From: Ben Pfaff Date: Thu, 1 Jan 2009 18:08:09 +0000 (-0800) Subject: brcompat: Mark variables "static". X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8245f0c4c59f1cb98bfc9cc48750082175fd3a7b;p=openvswitch brcompat: Mark variables "static". --- diff --git a/datapath/brcompat.c b/datapath/brcompat.c index b86e8e0c..ac117abb 100644 --- a/datapath/brcompat.c +++ b/datapath/brcompat.c @@ -17,7 +17,7 @@ static struct genl_multicast_group brc_mc_group; /* Completion for vswitchd to notify the ioctl that the operation * completed. */ -DECLARE_COMPLETION(dp_act_done); +static DECLARE_COMPLETION(dp_act_done); /* Time to wait for vswitchd to respond to a datapath action (in * milliseconds) */ @@ -25,7 +25,7 @@ DECLARE_COMPLETION(dp_act_done); /* Positive errno as a result of a datapath action. Calls that make * use of this variable are serialized by the br_ioctl_mutex. */ -int dp_act_err; +static int dp_act_err; int brc_send_dp_add_del(const char *dp_name, int add); int brc_send_port_add_del(struct net_device *dev, struct net_device *port,