Re: [PATCH net-next] tcp: fix build fong CONFIG_MPTCP=n

2020-08-01 Thread David Miller
From: Eric Dumazet Date: Fri, 31 Jul 2020 19:09:29 -0700 > Fixes these errors: > > net/ipv4/syncookies.c: In function 'tcp_get_cookie_sock': > net/ipv4/syncookies.c:216:19: error: 'struct tcp_request_sock' has no > member named 'drop_req' > 216 | if (tcp_rsk(req)->drop_req) { > |

Re: [PATCH net-next] tcp: fix build fong CONFIG_MPTCP=n

2020-08-01 Thread Florian Westphal
Florian Westphal wrote: > Eric Dumazet wrote: > > Fixes these errors: > > > > net/ipv4/syncookies.c: In function 'tcp_get_cookie_sock': > > net/ipv4/syncookies.c:216:19: error: 'struct tcp_request_sock' has no > > member named 'drop_req' > > 216 | if (tcp_rsk(req)->drop_req) { > > |

Re: [PATCH net-next] tcp: fix build fong CONFIG_MPTCP=n

2020-08-01 Thread Florian Westphal
Eric Dumazet wrote: > Fixes these errors: > > net/ipv4/syncookies.c: In function 'tcp_get_cookie_sock': > net/ipv4/syncookies.c:216:19: error: 'struct tcp_request_sock' has no > member named 'drop_req' > 216 | if (tcp_rsk(req)->drop_req) { > | ^~ > net/ipv4/syncookies.