brcompat: Mark variables "static".
authorBen Pfaff <blp@nicira.com>
Thu, 1 Jan 2009 18:08:09 +0000 (10:08 -0800)
committerBen Pfaff <blp@nicira.com>
Thu, 1 Jan 2009 18:10:07 +0000 (10:10 -0800)
datapath/brcompat.c

index b86e8e0c9d98874faca71c749ba05c9fd50e1575..ac117abbe5e571d65f163b0a30907c3bf7497d75 100644 (file)
@@ -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,