diff options
author | Eric Dumazet <edumazet@google.com> | 2015-10-02 11:43:30 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-10-03 04:32:40 -0700 |
commit | aa3a0c8ce651b5e16124866b0a10d1b90b9ef022 (patch) | |
tree | 0e39e3c55764f8d98917b18707283edf48a6c76e /include/net | |
parent | 9cfd08601f49a4536e4407286b5f07b24293e474 (diff) | |
download | linux-stable-aa3a0c8ce651b5e16124866b0a10d1b90b9ef022.tar.gz linux-stable-aa3a0c8ce651b5e16124866b0a10d1b90b9ef022.tar.bz2 linux-stable-aa3a0c8ce651b5e16124866b0a10d1b90b9ef022.zip |
tcp: get_openreq[46]() changes
When request sockets are no longer in a per listener hash table
but on regular TCP ehash, we need to access listener uid
through req->rsk_listener
get_openreq6() also gets a const for its request socket argument.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/tcp.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/net/tcp.h b/include/net/tcp.h index 2c7dfe52f473..a26341d2ad67 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h @@ -1637,7 +1637,6 @@ struct tcp_iter_state { enum tcp_seq_states state; struct sock *syn_wait_sk; int bucket, offset, sbucket, num; - kuid_t uid; loff_t last_pos; }; |