Commit 225f597c authored by Supriya Karanth's avatar Supriya Karanth Committed by Greg Kroah-Hartman

staging: lustre: remove initialization of static ints

static ints are initialized to 0 by the compiler.
Explicit initialization is not necessary.

Found by checkpatch.pl - ERROR: do not initialise statics to 0 or NULL

changes made using coccinelle script:
@@
type T;
identifier var;
@@

-static T var = 0;
+static T var;
Signed-off-by: default avatarSupriya Karanth <iskaranth@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 37e3be9d
...@@ -165,7 +165,7 @@ static int proc_dobitmasks(struct ctl_table *table, int write, ...@@ -165,7 +165,7 @@ static int proc_dobitmasks(struct ctl_table *table, int write,
__proc_dobitmasks); __proc_dobitmasks);
} }
static int min_watchdog_ratelimit = 0; /* disable ratelimiting */ static int min_watchdog_ratelimit; /* disable ratelimiting */
static int max_watchdog_ratelimit = (24*60*60); /* limit to once per day */ static int max_watchdog_ratelimit = (24*60*60); /* limit to once per day */
static int __proc_dump_kernel(void *data, int write, static int __proc_dump_kernel(void *data, int write,
......
...@@ -53,7 +53,7 @@ char cfs_tracefile[TRACEFILE_NAME_SIZE]; ...@@ -53,7 +53,7 @@ char cfs_tracefile[TRACEFILE_NAME_SIZE];
long long cfs_tracefile_size = CFS_TRACEFILE_SIZE; long long cfs_tracefile_size = CFS_TRACEFILE_SIZE;
static struct tracefiled_ctl trace_tctl; static struct tracefiled_ctl trace_tctl;
struct mutex cfs_trace_thread_mutex; struct mutex cfs_trace_thread_mutex;
static int thread_running = 0; static int thread_running;
static atomic_t cfs_tage_allocated = ATOMIC_INIT(0); static atomic_t cfs_tage_allocated = ATOMIC_INIT(0);
......
...@@ -84,7 +84,7 @@ struct ll_sa_entry { ...@@ -84,7 +84,7 @@ struct ll_sa_entry {
struct qstr se_qstr; struct qstr se_qstr;
}; };
static unsigned int sai_generation = 0; static unsigned int sai_generation;
static DEFINE_SPINLOCK(sai_generation_lock); static DEFINE_SPINLOCK(sai_generation_lock);
static inline int ll_sa_entry_unhashed(struct ll_sa_entry *entry) static inline int ll_sa_entry_unhashed(struct ll_sa_entry *entry)
......
...@@ -479,7 +479,7 @@ int lprocfs_mgc_rd_ir_state(struct seq_file *m, void *data) ...@@ -479,7 +479,7 @@ int lprocfs_mgc_rd_ir_state(struct seq_file *m, void *data)
#define RQ_NOW 0x2 #define RQ_NOW 0x2
#define RQ_LATER 0x4 #define RQ_LATER 0x4
#define RQ_STOP 0x8 #define RQ_STOP 0x8
static int rq_state = 0; static int rq_state;
static wait_queue_head_t rq_waitq; static wait_queue_head_t rq_waitq;
static DECLARE_COMPLETION(rq_exit); static DECLARE_COMPLETION(rq_exit);
......
...@@ -1559,7 +1559,7 @@ void obd_exports_barrier(struct obd_device *obd) ...@@ -1559,7 +1559,7 @@ void obd_exports_barrier(struct obd_device *obd)
EXPORT_SYMBOL(obd_exports_barrier); EXPORT_SYMBOL(obd_exports_barrier);
/* Total amount of zombies to be destroyed */ /* Total amount of zombies to be destroyed */
static int zombies_count = 0; static int zombies_count;
/** /**
* kill zombie imports and exports * kill zombie imports and exports
......
...@@ -223,7 +223,7 @@ EXPORT_SYMBOL(lprocfs_write_frac_helper); ...@@ -223,7 +223,7 @@ EXPORT_SYMBOL(lprocfs_write_frac_helper);
#if defined (CONFIG_PROC_FS) #if defined (CONFIG_PROC_FS)
static int lprocfs_no_percpu_stats = 0; static int lprocfs_no_percpu_stats;
module_param(lprocfs_no_percpu_stats, int, 0644); module_param(lprocfs_no_percpu_stats, int, 0644);
MODULE_PARM_DESC(lprocfs_no_percpu_stats, "Do not alloc percpu data for lprocfs stats"); MODULE_PARM_DESC(lprocfs_no_percpu_stats, "Do not alloc percpu data for lprocfs stats");
......
...@@ -1308,7 +1308,7 @@ static DEFINE_SPINLOCK(lu_keys_guard); ...@@ -1308,7 +1308,7 @@ static DEFINE_SPINLOCK(lu_keys_guard);
* lu_context_refill(). No locking is provided, as initialization and shutdown * lu_context_refill(). No locking is provided, as initialization and shutdown
* are supposed to be externally serialized. * are supposed to be externally serialized.
*/ */
static unsigned key_set_version = 0; static unsigned key_set_version;
/** /**
* Register new key. * Register new key.
......
...@@ -117,7 +117,7 @@ EXPORT_SYMBOL(lustre_msg_check_version); ...@@ -117,7 +117,7 @@ EXPORT_SYMBOL(lustre_msg_check_version);
/* early reply size */ /* early reply size */
int lustre_msg_early_size(void) int lustre_msg_early_size(void)
{ {
static int size = 0; static int size;
if (!size) { if (!size) {
/* Always reply old ptlrpc_body_v2 to keep interoprability /* Always reply old ptlrpc_body_v2 to keep interoprability
* with the old client (< 2.3) which doesn't have pb_jobid * with the old client (< 2.3) which doesn't have pb_jobid
......
...@@ -545,7 +545,7 @@ void ptlrpc_pinger_wake_up(void) ...@@ -545,7 +545,7 @@ void ptlrpc_pinger_wake_up(void)
#define PET_READY 1 #define PET_READY 1
#define PET_TERMINATE 2 #define PET_TERMINATE 2
static int pet_refcount = 0; static int pet_refcount;
static int pet_state; static int pet_state;
static wait_queue_head_t pet_waitq; static wait_queue_head_t pet_waitq;
LIST_HEAD(pet_list); LIST_HEAD(pet_list);
......
...@@ -85,7 +85,7 @@ MODULE_PARM_DESC(ptlrpcd_bind_policy, "Ptlrpcd threads binding mode."); ...@@ -85,7 +85,7 @@ MODULE_PARM_DESC(ptlrpcd_bind_policy, "Ptlrpcd threads binding mode.");
static struct ptlrpcd *ptlrpcds; static struct ptlrpcd *ptlrpcds;
struct mutex ptlrpcd_mutex; struct mutex ptlrpcd_mutex;
static int ptlrpcd_users = 0; static int ptlrpcd_users;
void ptlrpcd_wake(struct ptlrpc_request *req) void ptlrpcd_wake(struct ptlrpc_request *req)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment