There is use of a variable of the same name in vswitchd/mgmt.c, but that
one is static so it's OK to make this one static too.
/* Flag to indicate whether local modifications have been made. */
static bool dirty;
-uint8_t cfg_cookie[CFG_COOKIE_LEN];
+static uint8_t cfg_cookie[CFG_COOKIE_LEN];
/* Current configuration. Maintained in sorted order. */
static struct svec cfg = SVEC_EMPTY_INITIALIZER;