On Wed, 2020-11-18 at 11:58 -0500, Armin Gholampoor wrote:
> Fixed bracings for if statements
> 
> Fixed spacings around operators

Do you really think this new code looks better:

> diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c

[old]

static const unsigned char new_state[16] = {
  /* current state:        new state:      action:      */
  [0 /* (Invalid) */]   = TCP_CLOSE,
  [TCP_ESTABLISHED]     = TCP_FIN_WAIT1 | TCP_ACTION_FIN,
  [TCP_SYN_SENT]        = TCP_CLOSE,
  [TCP_SYN_RECV]        = TCP_FIN_WAIT1 | TCP_ACTION_FIN,
  [TCP_FIN_WAIT1]       = TCP_FIN_WAIT1,
  [TCP_FIN_WAIT2]       = TCP_FIN_WAIT2,
  [TCP_TIME_WAIT]       = TCP_CLOSE,
  [TCP_CLOSE]           = TCP_CLOSE,
  [TCP_CLOSE_WAIT]      = TCP_LAST_ACK  | TCP_ACTION_FIN,
  [TCP_LAST_ACK]        = TCP_LAST_ACK,
  [TCP_LISTEN]          = TCP_CLOSE,
  [TCP_CLOSING]         = TCP_CLOSING,
  [TCP_NEW_SYN_RECV]    = TCP_CLOSE,    /* should not happen ! */

[new]

        /* current state:        new state:      action:        */
        [0 /* (Invalid) */]     = TCP_CLOSE,
        [TCP_ESTABLISHED]       = TCP_FIN_WAIT1 | TCP_ACTION_FIN,
        [TCP_SYN_SENT]  = TCP_CLOSE,
        [TCP_SYN_RECV]  = TCP_FIN_WAIT1 | TCP_ACTION_FIN,
        [TCP_FIN_WAIT1] = TCP_FIN_WAIT1,
        [TCP_FIN_WAIT2] = TCP_FIN_WAIT2,
        [TCP_TIME_WAIT] = TCP_CLOSE,
        [TCP_CLOSE]             = TCP_CLOSE,
        [TCP_CLOSE_WAIT]        = TCP_LAST_ACK  | TCP_ACTION_FIN,
        [TCP_LAST_ACK]  = TCP_LAST_ACK,
        [TCP_LISTEN]            = TCP_CLOSE,
        [TCP_CLOSING]           = TCP_CLOSING,
        [TCP_NEW_SYN_RECV]      = TCP_CLOSE,    /* should not happen ! */


Reply via email to