[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20141104.113203.432907272611801931.davem@davemloft.net>
Date: Tue, 04 Nov 2014 11:32:03 -0500 (EST)
From: David Miller <davem@...emloft.net>
To: mleitner@...hat.com
Cc: netdev@...r.kernel.org, stephen@...workplumber.org
Subject: Re: [PATCH net] vxlan: Do not reuse sockets for a different
address family
From: Marcelo Ricardo Leitner <mleitner@...hat.com>
Date: Tue, 4 Nov 2014 11:46:49 -0200
> hlist_for_each_entry_rcu(vs, vs_head(net, port), hlist) {
> - if (inet_sk(vs->sock->sk)->inet_sport == port)
> + if ((inet_sk(vs->sock->sk)->inet_sport == port) &&
> + (inet_sk(vs->sock->sk)->sk.sk_family == family))
This is not indented properly.
For a multi-line conditional, the second and subsequent lines
should start precisely at the first column after the openning
parenthesis on the first line.
You must use the appropriate number of TAB and SPACE characters
necessary to achieve this. If you are only using TAB characters, you
are most likely doing it wrong.
Please fix this up and resubmit, thanks.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists