linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 4.15-rc8] net/core: Increase default optmem_max limit
@ 2018-01-16  0:04 Björn 'besser82' Esser
  0 siblings, 0 replies; 4+ messages in thread
From: Björn 'besser82' Esser @ 2018-01-16  0:04 UTC (permalink / raw)
  To: waltje, flla, A.Cox; +Cc: linux-kernel, netdev, trivial, labbott, zbyszek

[-- Attachment #1: Type: text/plain, Size: 1435 bytes --]

With the new Linux Kernel Crypto API User Space Interface and
its underlying socket interface, the current default value for
`net.core.optmem_max` can be exhausted pretty quick.
On 32 bit systems it is not even enough for sending 16 IOVECs
at once to the socket interface.

To provide consumers of this new user space interface a
sufficient and reasonable maximum ancillary buffer size per
socket by default, the limit is increased to four times of the
previous setting:

  * 32 bit systems:  from 10240 bytes to 40960 bytes
  * 64 bit systems:  from 20480 bytes to 81920 bytes

This allows for sending 32/64 (32/64 bit) parallel IOVECs at
once to the socket interface, which should be enough for use
in real world applications.

Signed-off-by: Björn Esser <besser82@fedoraproject.org>
---

Index: linux-4.15/net/core/sock.c
===================================================================
--- linux-4.15.orig/net/core/sock.c
+++ linux-4.15/net/core/sock.c
@@ -316,7 +316,7 @@ __u32 sysctl_wmem_default __read_mostly
 __u32 sysctl_rmem_default __read_mostly = SK_RMEM_MAX;
 
 /* Maximal space eaten by iovec or
ancillary data plus some space */
-int sysctl_optmem_max __read_mostly = sizeof(unsigned long)*(2*UIO_MAXIOV+512);
+int sysctl_optmem_max __read_mostly
= sizeof(unsigned long)*4*(2*UIO_MAXIOV+512);
 EXPORT_SYMBOL(sysctl_optmem_max);
 
 int sysctl_tstamp_allow_data __read_mostly = 1;

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 4.15-rc8] net/core: Increase default optmem_max limit
  2018-01-15 23:59 Björn 'besser82' Esser
  2018-01-16  0:16 ` Björn 'besser82' Esser
@ 2018-01-16 14:30 ` David Miller
  1 sibling, 0 replies; 4+ messages in thread
From: David Miller @ 2018-01-16 14:30 UTC (permalink / raw)
  To: besser82
  Cc: waltje, flla, A.Cox, linux-kernel, netdev, trivial, labbott, zbyszek

From: Björn 'besser82' Esser <besser82@fedoraproject.org>
Date: Tue, 16 Jan 2018 00:59:11 +0100

> @@ -316,7 +316,7 @@ __u32 sysctl_wmem_default __read_mostly
>  __u32 sysctl_rmem_default __read_mostly = SK_RMEM_MAX;
>  
>  /* Maximal
> space eaten by iovec or ancillary data plus some space */


This patch is corrupted by your email client, it has chopped up long
lines and turned TABs into a series of SPACE characters.

> -int sysctl_optmem_max __read_mostly = sizeof(unsigned long)*(2*UIO_MAXIOV+512);
> +int
> sysctl_optmem_max __read_mostly = sizeof(unsigned long)*4*(2*UIO_MAXIOV+512);
>  EXPORT_SYMBOL(sysctl_optmem_max);

Please style this in a more appropriate manner.

Thank you.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 4.15-rc8] net/core: Increase default optmem_max limit
  2018-01-15 23:59 Björn 'besser82' Esser
@ 2018-01-16  0:16 ` Björn 'besser82' Esser
  2018-01-16 14:30 ` David Miller
  1 sibling, 0 replies; 4+ messages in thread
From: Björn 'besser82' Esser @ 2018-01-16  0:16 UTC (permalink / raw)
  To: waltje, flla, A.Cox; +Cc: linux-kernel, netdev, trivial, labbott, zbyszek

With the new Linux Kernel Crypto API User Space Interface and
its underlying socket interface, the current default value for
`net.core.optmem_max` can be exhausted pretty quick.
On 32 bit systems it is not even enough for sending 16 IOVECs
at once to the socket interface.

To provide consumers of this new user space interface a
sufficient and reasonable maximum ancillary buffer size per
socket by default, the limit is increased to four times of the
previous setting:

  * 32 bit systems:  from 10240 bytes to 40960 bytes
  * 64 bit systems:  from 20480 bytes to 81920 bytes

This allows for sending 32/64 (32/64 bit) parallel IOVECs at
once to the socket interface, which should be enough for use
in real world applications.

Signed-off-by: Björn Esser <besser82@fedoraproject.org>
---

Index: linux-4.15/net/core/sock.c
===================================================================
--- linux-4.15.orig/net/core/sock.c
+++ linux-4.15/net/core/sock.c
@@ -316,7 +316,7 @@ __u32 sysctl_wmem_default __read_mostly
 __u32 sysctl_rmem_default __read_mostly = SK_RMEM_MAX;
 
 /* Maximal space eaten by iovec or ancillary data plus some space */
-int sysctl_optmem_max __read_mostly = sizeof(unsigned long)*(2*UIO_MAXIOV+512);
+int sysctl_optmem_max __read_mostly = sizeof(unsigned long)*4*(2*UIO_MAXIOV+512);
 EXPORT_SYMBOL(sysctl_optmem_max);
 
 int sysctl_tstamp_allow_data __read_mostly = 1;

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 4.15-rc8] net/core: Increase default optmem_max limit
@ 2018-01-15 23:59 Björn 'besser82' Esser
  2018-01-16  0:16 ` Björn 'besser82' Esser
  2018-01-16 14:30 ` David Miller
  0 siblings, 2 replies; 4+ messages in thread
From: Björn 'besser82' Esser @ 2018-01-15 23:59 UTC (permalink / raw)
  To: waltje, flla, A.Cox; +Cc: linux-kernel, netdev, trivial, labbott, zbyszek

With the new Linux Kernel Crypto API User Space Interface and
its underlying socket interface, the current default value for
`net.core.optmem_max` can be exhausted pretty quick.
On 32 bit systems it is not even enough for sending 16 IOVECs
at once to the socket interface.

To provide consumers of this new user space interface a
sufficient and reasonable maximum ancillary buffer size per
socket by default, the limit is increased to four times of the
previous setting:

  * 32 bit systems:  from 10240 bytes to 40960 bytes
  * 64 bit systems:  from 20480 bytes to 81920 bytes

This allows for sending 32/64 (32/64 bit) parallel IOVECs at
once to the socket interface, which should be enough for use
in real world applications.

Signed-off-by: Björn Esser <besser82@fedoraproject.org>
---

Index: linux-4.15/net/core/sock.c
===================================================================
--- linux-4.15.orig/net/core/sock.c
+++ linux-
4.15/net/core/sock.c
@@ -316,7 +316,7 @@ __u32 sysctl_wmem_default __read_mostly
 __u32 sysctl_rmem_default __read_mostly = SK_RMEM_MAX;
 
 /* Maximal
space eaten by iovec or ancillary data plus some space */
-int sysctl_optmem_max __read_mostly = sizeof(unsigned long)*(2*UIO_MAXIOV+512);
+int
sysctl_optmem_max __read_mostly = sizeof(unsigned long)*4*(2*UIO_MAXIOV+512);
 EXPORT_SYMBOL(sysctl_optmem_max);
 
 int sysctl_tstamp_allow_data
__read_mostly = 1;

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-01-16 14:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-16  0:04 [PATCH 4.15-rc8] net/core: Increase default optmem_max limit Björn 'besser82' Esser
  -- strict thread matches above, loose matches on Subject: below --
2018-01-15 23:59 Björn 'besser82' Esser
2018-01-16  0:16 ` Björn 'besser82' Esser
2018-01-16 14:30 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).