@@ -259,7 +259,7 @@ static atomic_t wait_cnt;
static pthread_t retry_thread_id;
static int retry_thread_started = 0;
-__thread char log_data[ACM_MAX_ADDRESS];
+static __thread char log_data[ACM_MAX_ADDRESS];
/*
* Service options - may be set through ibacm_opts.cfg file.
@@ -186,7 +186,7 @@ static struct acmc_client client_array[FD_SETSIZE - 1];
static FILE *flog;
static pthread_mutex_t log_lock;
-__thread char log_data[ACM_MAX_ADDRESS];
+static __thread char log_data[ACM_MAX_ADDRESS];
static atomic_t counter[ACM_MAX_COUNTER];
static struct acmc_device *
@@ -69,10 +69,10 @@ enum perf_query_output {
PERF_QUERY_EP_ADDR
};
static enum perf_query_output perf_query;
-int verbose;
+static int verbose;
-struct ibv_context **verbs;
-int dev_cnt;
+static struct ibv_context **verbs;
+static int dev_cnt;
#define VPRINT(format, ...) do { if (verbose) printf(format, ## __VA_ARGS__ ); } while (0)
Signed-off-by: Christoph Hellwig <hch@lst.de> --- ibacm/prov/acmp/src/acmp.c | 2 +- ibacm/src/acm.c | 2 +- ibacm/src/acme.c | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-)