]> Pileus Git - ~andy/linux/commitdiff
Staging: lustre: Removal of Space between function name and parenthesis in timer.c
authorRashika Kheria <rashika.kheria@gmail.com>
Thu, 17 Oct 2013 14:30:09 +0000 (20:00 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 17 Oct 2013 16:06:44 +0000 (09:06 -0700)
The patch fixes the following checkpatch.pl warning in timer.c-
WARNING: space prohibited between function name and open parenthesis '(

Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lnet/selftest/timer.c

index 3bf4afb42ffe3c1bc03ea67bedbef87467b015d1..82fd363679cb94d9e5a2a0e1d28e8cdce8c048b3 100644 (file)
@@ -74,14 +74,14 @@ stt_add_timer(stt_timer_t *timer)
 
        spin_lock(&stt_data.stt_lock);
 
-       LASSERT (stt_data.stt_nthreads > 0);
-       LASSERT (!stt_data.stt_shuttingdown);
-       LASSERT (timer->stt_func != NULL);
-       LASSERT (list_empty(&timer->stt_list));
-       LASSERT (cfs_time_after(timer->stt_expires, cfs_time_current_sec()));
+       LASSERT(stt_data.stt_nthreads > 0);
+       LASSERT(!stt_data.stt_shuttingdown);
+       LASSERT(timer->stt_func != NULL);
+       LASSERT(list_empty(&timer->stt_list));
+       LASSERT(cfs_time_after(timer->stt_expires, cfs_time_current_sec()));
 
        /* a simple insertion sort */
-       list_for_each_prev (pos, STTIMER_SLOT(timer->stt_expires)) {
+       list_for_each_prev(pos, STTIMER_SLOT(timer->stt_expires)) {
                stt_timer_t *old = list_entry(pos, stt_timer_t, stt_list);
 
                if (cfs_time_aftereq(timer->stt_expires, old->stt_expires))
@@ -102,14 +102,14 @@ stt_add_timer(stt_timer_t *timer)
  * another CPU.
  */
 int
-stt_del_timer (stt_timer_t *timer)
+stt_del_timer(stt_timer_t *timer)
 {
        int ret = 0;
 
        spin_lock(&stt_data.stt_lock);
 
-       LASSERT (stt_data.stt_nthreads > 0);
-       LASSERT (!stt_data.stt_shuttingdown);
+       LASSERT(stt_data.stt_nthreads > 0);
+       LASSERT(!stt_data.stt_shuttingdown);
 
        if (!list_empty(&timer->stt_list)) {
                ret = 1;
@@ -122,7 +122,7 @@ stt_del_timer (stt_timer_t *timer)
 
 /* called with stt_data.stt_lock held */
 int
-stt_expire_list (struct list_head *slot, cfs_time_t now)
+stt_expire_list(struct list_head *slot, cfs_time_t now)
 {
        int       expired = 0;
        stt_timer_t *timer;
@@ -146,7 +146,7 @@ stt_expire_list (struct list_head *slot, cfs_time_t now)
 }
 
 int
-stt_check_timers (cfs_time_t *last)
+stt_check_timers(cfs_time_t *last)
 {
        int     expired = 0;
        cfs_time_t now;
@@ -169,7 +169,7 @@ stt_check_timers (cfs_time_t *last)
 
 
 int
-stt_timer_main (void *arg)
+stt_timer_main(void *arg)
 {
        int rc = 0;
        UNUSED(arg);
@@ -193,7 +193,7 @@ stt_timer_main (void *arg)
 }
 
 int
-stt_start_timer_thread (void)
+stt_start_timer_thread(void)
 {
        struct task_struct *task;
 
@@ -211,7 +211,7 @@ stt_start_timer_thread (void)
 
 
 int
-stt_startup (void)
+stt_startup(void)
 {
        int rc = 0;
        int i;
@@ -227,20 +227,20 @@ stt_startup (void)
        init_waitqueue_head(&stt_data.stt_waitq);
        rc = stt_start_timer_thread();
        if (rc != 0)
-               CERROR ("Can't spawn timer thread: %d\n", rc);
+               CERROR("Can't spawn timer thread: %d\n", rc);
 
        return rc;
 }
 
 void
-stt_shutdown (void)
+stt_shutdown(void)
 {
        int i;
 
        spin_lock(&stt_data.stt_lock);
 
        for (i = 0; i < STTIMER_NSLOTS; i++)
-               LASSERT (list_empty(&stt_data.stt_hash[i]));
+               LASSERT(list_empty(&stt_data.stt_hash[i]));
 
        stt_data.stt_shuttingdown = 1;