<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/net/core/request_sock.c, branch v2.6.17</title>
<subtitle>Linux kernel source tree</subtitle>
<id>https://git.amat.us/linux/atom/net/core/request_sock.c?h=v2.6.17</id>
<link rel='self' href='https://git.amat.us/linux/atom/net/core/request_sock.c?h=v2.6.17'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/'/>
<updated>2006-04-10T05:25:48Z</updated>
<entry>
<title>[NET]: More kzalloc conversions.</title>
<updated>2006-04-10T05:25:48Z</updated>
<author>
<name>Andrew Morton</name>
<email>akpm@osdl.org</email>
</author>
<published>2006-04-07T21:52:59Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=77d04bd957ddca9d48a664e28b40f33993f4550e'/>
<id>urn:sha1:77d04bd957ddca9d48a664e28b40f33993f4550e</id>
<content type='text'>
Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</content>
</entry>
<entry>
<title>[NET]: drop duplicate assignment in request_sock</title>
<updated>2006-03-27T01:39:55Z</updated>
<author>
<name>Norbert Kiesel</name>
<email>nkiesel@tbdnetworks.com</email>
</author>
<published>2006-03-27T01:39:55Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=3eb4801d7bde42b82f05137392a1ee0ece090bad'/>
<id>urn:sha1:3eb4801d7bde42b82f05137392a1ee0ece090bad</id>
<content type='text'>
Just noticed that request_sock.[ch] contain a useless assignment of
rskq_accept_head to itself.  I assume this is a typo and the 2nd one
was supposed to be _tail.  However, setting _tail to NULL is not
needed, so the patch below just drops the 2nd assignment.

Signed-off-By: Norbert Kiesel &lt;nkiesel@tbdnetworks.com&gt;
Signed-off-by: Adrian Bunk &lt;bunk@stusta.de&gt;
Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</content>
</entry>
<entry>
<title>[REQSK]: Don't reset rskq_defer_accept in reqsk_queue_alloc</title>
<updated>2006-02-27T21:30:43Z</updated>
<author>
<name>Arnaldo Carvalho de Melo</name>
<email>acme@mandriva.com</email>
</author>
<published>2006-02-27T21:30:43Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=ba13c98405ba44d37d148376c6615e6c8babbfdc'/>
<id>urn:sha1:ba13c98405ba44d37d148376c6615e6c8babbfdc</id>
<content type='text'>
In 295f7324ff8d9ea58b4d3ec93b1aaa1d80e048a9 I moved defer_accept from
tcp_sock to request_queue and mistakingly reset it at reqsl_queue_alloc, causing
calls to setsockopt(TCP_DEFER_ACCEPT ) to be lost after bind, the fix is to
remove the zeroing of rskq_defer_accept from reqsl_queue_alloc.

Thanks to Alexandra N. Kossovsky &lt;Alexandra.Kossovsky@oktetlabs.ru&gt; for
reporting and testing the suggested fix.

Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@mandriva.com&gt;
Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</content>
</entry>
<entry>
<title>[ICSK]: Introduce reqsk_queue_prune from code in tcp_synack_timer</title>
<updated>2005-08-29T22:49:29Z</updated>
<author>
<name>Arnaldo Carvalho de Melo</name>
<email>acme@ghostprotocols.net</email>
</author>
<published>2005-08-10T03:11:56Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=295f7324ff8d9ea58b4d3ec93b1aaa1d80e048a9'/>
<id>urn:sha1:295f7324ff8d9ea58b4d3ec93b1aaa1d80e048a9</id>
<content type='text'>
With this we're very close to getting all of the current TCP
refactorings in my dccp-2.6 tree merged, next changeset will export
some functions needed by the current DCCP code and then dccp-2.6.git
will be born!

Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@ghostprotocols.net&gt;
Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</content>
</entry>
<entry>
<title>[IPV4]: possible cleanups</title>
<updated>2005-08-29T22:33:20Z</updated>
<author>
<name>Adrian Bunk</name>
<email>bunk@stusta.de</email>
</author>
<published>2005-08-10T02:35:47Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=0742fd53a3774781255bd1e471e7aa2e4a82d5f7'/>
<id>urn:sha1:0742fd53a3774781255bd1e471e7aa2e4a82d5f7</id>
<content type='text'>
This patch contains the following possible cleanups:
- make needlessly global code static
- #if 0 the following unused global function:
  - xfrm4_state.c: xfrm4_state_fini
- remove the following unneeded EXPORT_SYMBOL's:
  - ip_output.c: ip_finish_output
  - ip_output.c: sysctl_ip_default_ttl
  - fib_frontend.c: ip_dev_find
  - inetpeer.c: inet_peer_idlock
  - ip_options.c: ip_options_compile
  - ip_options.c: ip_options_undo
  - net/core/request_sock.c: sysctl_max_syn_backlog

Signed-off-by: Adrian Bunk &lt;bunk@stusta.de&gt;
Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</content>
</entry>
<entry>
<title>[REQSK]: Move the syn_table destroy from tcp_listen_stop to reqsk_queue_destroy</title>
<updated>2005-08-29T22:32:11Z</updated>
<author>
<name>Arnaldo Carvalho de Melo</name>
<email>acme@ghostprotocols.net</email>
</author>
<published>2005-08-10T02:33:31Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=83e3609eba3818f6e18b8bf9442195169ac306b7'/>
<id>urn:sha1:83e3609eba3818f6e18b8bf9442195169ac306b7</id>
<content type='text'>
Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@ghostprotocols.net&gt;
Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</content>
</entry>
<entry>
<title>[NET]: Move sysctl_max_syn_backlog into request_sock.c</title>
<updated>2005-06-19T05:49:40Z</updated>
<author>
<name>David S. Miller</name>
<email>davem@davemloft.net</email>
</author>
<published>2005-06-19T05:49:40Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=e52c1f17e4ea8e61bd26eb25f1a184202693c2b9'/>
<id>urn:sha1:e52c1f17e4ea8e61bd26eb25f1a184202693c2b9</id>
<content type='text'>
This fixes the CONFIG_INET=n build failure noticed
by Andrew Morton.

Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</content>
</entry>
<entry>
<title>[NET] rename struct tcp_listen_opt to struct listen_sock</title>
<updated>2005-06-19T05:48:55Z</updated>
<author>
<name>Arnaldo Carvalho de Melo</name>
<email>acme@ghostprotocols.net</email>
</author>
<published>2005-06-19T05:48:55Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=2ad69c55a282315e6119cf7fd744f26a925bdfd2'/>
<id>urn:sha1:2ad69c55a282315e6119cf7fd744f26a925bdfd2</id>
<content type='text'>
Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@ghostprotocols.net&gt;
Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</content>
</entry>
<entry>
<title>[NET] Generalise tcp_listen_opt</title>
<updated>2005-06-19T05:47:59Z</updated>
<author>
<name>Arnaldo Carvalho de Melo</name>
<email>acme@ghostprotocols.net</email>
</author>
<published>2005-06-19T05:47:59Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=0e87506fcc734647c7b2497eee4eb81e785c857a'/>
<id>urn:sha1:0e87506fcc734647c7b2497eee4eb81e785c857a</id>
<content type='text'>
This chunks out the accept_queue and tcp_listen_opt code and moves
them to net/core/request_sock.c and include/net/request_sock.h, to
make it useful for other transport protocols, DCCP being the first one
to use it.

Next patches will rename tcp_listen_opt to accept_sock and remove the
inline tcp functions that just call a reqsk_queue_ function.

Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@ghostprotocols.net&gt;
Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</content>
</entry>
</feed>
