stackptr = _stack;                                      \
        *stackptr++ = &_base->root;                             \
        for (u = rcu_deref_locked(_base->root, _base);          \
-            u != peer_avl_empty; ) {                           \
+            u != peer_avl_empty;) {                            \
                int cmp = addr_compare(_daddr, &u->daddr);      \
                if (cmp == 0)                                   \
                        break;                                  \
        *stackptr++ = &start->avl_left;                         \
        v = &start->avl_left;                                   \
        for (u = rcu_deref_locked(*v, base);                    \
-            u->avl_right != peer_avl_empty_rcu; ) {            \
+            u->avl_right != peer_avl_empty_rcu;) {             \
                v = &u->avl_right;                              \
                *stackptr++ = v;                                \
                u = rcu_deref_locked(*v, base);                 \
 
        }
 
        if (subid < 40) {
-               optr [0] = 0;
-               optr [1] = subid;
+               optr[0] = 0;
+               optr[1] = subid;
        } else if (subid < 80) {
-               optr [0] = 1;
-               optr [1] = subid - 40;
+               optr[0] = 1;
+               optr[1] = subid - 40;
        } else {
-               optr [0] = 2;
-               optr [1] = subid - 80;
+               optr[0] = 2;
+               optr[1] = subid - 80;
        }
 
        *len = 2;
 
        cookie -= cookie_hash(saddr, daddr, sport, dport, 0, 0) + sseq;
 
        /* Cookie is now reduced to (count * 2^24) ^ (hash % 2^24) */
-       diff = (count - (cookie >> COOKIEBITS)) & ((__u32) - 1 >> COOKIEBITS);
+       diff = (count - (cookie >> COOKIEBITS)) & ((__u32) -1 >> COOKIEBITS);
        if (diff >= MAX_SYNCOOKIE_AGE)
                return (__u32)-1;
 
 
        if (yeah->doing_reno_now < TCP_YEAH_RHO) {
                reduction = yeah->lastQ;
 
-               reduction = min( reduction, max(tp->snd_cwnd>>1, 2U) );
+               reduction = min(reduction, max(tp->snd_cwnd>>1, 2U));
 
-               reduction = max( reduction, tp->snd_cwnd >> TCP_YEAH_DELTA);
+               reduction = max(reduction, tp->snd_cwnd >> TCP_YEAH_DELTA);
        } else
                reduction = max(tp->snd_cwnd>>1, 2U);