* [PATCH v2] socket.7: add description for SO_BUSY_POLL
@ 2013-07-10 14:18 Eliezer Tamir
2013-07-10 18:03 ` Michael Kerrisk
[not found] ` <20130710141835.15799.61657.stgit-vd+Q285fAQQAP1VksDEriRL4W9x8LtSr@public.gmane.org>
0 siblings, 2 replies; 16+ messages in thread
From: Eliezer Tamir @ 2013-07-10 14:18 UTC (permalink / raw)
To: Micahel Kerrisk
Cc: linux-man, David Miller, linux-kernel, netdev, Andrew Morton,
Eliezer Tamir
Add description for the SO_BUSY_POLL socket option to the socket(7) manpage.
v2
fixed typos reported by Rasmus Villemoes
Signed-off-by: Eliezer Tamir <eliezer.tamir@linux.intel.com>
---
man7/socket.7 | 25 +++++++++++++++++++++++++
1 files changed, 25 insertions(+), 0 deletions(-)
diff --git a/man7/socket.7 b/man7/socket.7
index f2213eb..5edcb09 100644
--- a/man7/socket.7
+++ b/man7/socket.7
@@ -694,6 +694,31 @@ for details on control messages.
Gets the socket type as an integer (e.g.,
.BR SOCK_STREAM ).
This socket option is read-only.
+.TP
+.B SO_BUSY_POLL
+Sets the approximate time in microseconds to busy poll on a blocking receive
+when there is no data. Increasing this value requires
+.BR CAP_NET_ADMIN .
+The default for this option is controlled by the
+.I /proc/sys/net/core/busy_read
+file.
+
+The value in the
+.I /proc/sys/net/core/busy_poll
+file determines how long
+.BR select (2)
+and
+.BR poll (2)
+will busy poll when they operate on sockets with
+.BR SO_BUSY_POLL
+set and no events to report are found.
+
+In both cases busy polling will only be done when the socket last received data
+from a network device that supports this option.
+
+While busy polling may improve latency of some applications, care must be
+taken when using it since this will increase both CPU utilization and power usage.
+
.SS Signals
When writing onto a connection-oriented socket that has been shut down
(by the local or the remote end)
^ permalink raw reply related [flat|nested] 16+ messages in thread* Re: [PATCH v2] socket.7: add description for SO_BUSY_POLL
2013-07-10 14:18 [PATCH v2] socket.7: add description for SO_BUSY_POLL Eliezer Tamir
@ 2013-07-10 18:03 ` Michael Kerrisk
[not found] ` <51DDA1DC.2020306-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
[not found] ` <20130710141835.15799.61657.stgit-vd+Q285fAQQAP1VksDEriRL4W9x8LtSr@public.gmane.org>
1 sibling, 1 reply; 16+ messages in thread
From: Michael Kerrisk @ 2013-07-10 18:03 UTC (permalink / raw)
To: Eliezer Tamir
Cc: Micahel Kerrisk, linux-man, David Miller, linux-kernel, netdev,
Andrew Morton, Eliezer Tamir
On 07/10/13 16:18, Eliezer Tamir wrote:
> Add description for the SO_BUSY_POLL socket option to the socket(7) manpage.
>
> v2
> fixed typos reported by Rasmus Villemoes
Eliezer,
What's the status of this feature. A quick grep seems to show
that the feature is not yet in mainline. What is the plan?
Thanks,
Michael
> Signed-off-by: Eliezer Tamir <eliezer.tamir@linux.intel.com>
> ---
>
> man7/socket.7 | 25 +++++++++++++++++++++++++
> 1 files changed, 25 insertions(+), 0 deletions(-)
>
> diff --git a/man7/socket.7 b/man7/socket.7
> index f2213eb..5edcb09 100644
> --- a/man7/socket.7
> +++ b/man7/socket.7
> @@ -694,6 +694,31 @@ for details on control messages.
> Gets the socket type as an integer (e.g.,
> .BR SOCK_STREAM ).
> This socket option is read-only.
> +.TP
> +.B SO_BUSY_POLL
> +Sets the approximate time in microseconds to busy poll on a blocking receive
> +when there is no data. Increasing this value requires
> +.BR CAP_NET_ADMIN .
> +The default for this option is controlled by the
> +.I /proc/sys/net/core/busy_read
> +file.
> +
> +The value in the
> +.I /proc/sys/net/core/busy_poll
> +file determines how long
> +.BR select (2)
> +and
> +.BR poll (2)
> +will busy poll when they operate on sockets with
> +.BR SO_BUSY_POLL
> +set and no events to report are found.
> +
> +In both cases busy polling will only be done when the socket last received data
> +from a network device that supports this option.
> +
> +While busy polling may improve latency of some applications, care must be
> +taken when using it since this will increase both CPU utilization and power usage.
> +
> .SS Signals
> When writing onto a connection-oriented socket that has been shut down
> (by the local or the remote end)
>
>
^ permalink raw reply [flat|nested] 16+ messages in thread[parent not found: <20130710141835.15799.61657.stgit-vd+Q285fAQQAP1VksDEriRL4W9x8LtSr@public.gmane.org>]
* Re: [PATCH v2] socket.7: add description for SO_BUSY_POLL
2013-07-10 14:18 [PATCH v2] socket.7: add description for SO_BUSY_POLL Eliezer Tamir
@ 2014-01-20 16:28 ` Michael Kerrisk (man-pages)
[not found] ` <20130710141835.15799.61657.stgit-vd+Q285fAQQAP1VksDEriRL4W9x8LtSr@public.gmane.org>
1 sibling, 0 replies; 16+ messages in thread
From: Michael Kerrisk (man-pages) @ 2014-01-20 16:28 UTC (permalink / raw)
To: Eliezer Tamir
Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w,
linux-man-u79uwXL29TY76Z2rM5mHXA, David Miller,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
netdev-u79uwXL29TY76Z2rM5mHXA, Andrew Morton, Eliezer Tamir
On 07/10/2013 04:18 PM, Eliezer Tamir wrote:
> Add description for the SO_BUSY_POLL socket option to the socket(7) manpage.
Long after the fact, I've applied this. Thanks, Eliezer.
Would you be willing also to write a patch for the POLL_BUSY_LOOP flag of
poll()?
Cheers,
Michael
> v2
> fixed typos reported by Rasmus Villemoes
>
> Signed-off-by: Eliezer Tamir <eliezer.tamir-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
> ---
>
> man7/socket.7 | 25 +++++++++++++++++++++++++
> 1 files changed, 25 insertions(+), 0 deletions(-)
>
> diff --git a/man7/socket.7 b/man7/socket.7
> index f2213eb..5edcb09 100644
> --- a/man7/socket.7
> +++ b/man7/socket.7
> @@ -694,6 +694,31 @@ for details on control messages.
> Gets the socket type as an integer (e.g.,
> .BR SOCK_STREAM ).
> This socket option is read-only.
> +.TP
> +.B SO_BUSY_POLL
> +Sets the approximate time in microseconds to busy poll on a blocking receive
> +when there is no data. Increasing this value requires
> +.BR CAP_NET_ADMIN .
> +The default for this option is controlled by the
> +.I /proc/sys/net/core/busy_read
> +file.
> +
> +The value in the
> +.I /proc/sys/net/core/busy_poll
> +file determines how long
> +.BR select (2)
> +and
> +.BR poll (2)
> +will busy poll when they operate on sockets with
> +.BR SO_BUSY_POLL
> +set and no events to report are found.
> +
> +In both cases busy polling will only be done when the socket last received data
> +from a network device that supports this option.
> +
> +While busy polling may improve latency of some applications, care must be
> +taken when using it since this will increase both CPU utilization and power usage.
> +
> .SS Signals
> When writing onto a connection-oriented socket that has been shut down
> (by the local or the remote end)
>
>
--
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 16+ messages in thread* Re: [PATCH v2] socket.7: add description for SO_BUSY_POLL
@ 2014-01-20 16:28 ` Michael Kerrisk (man-pages)
0 siblings, 0 replies; 16+ messages in thread
From: Michael Kerrisk (man-pages) @ 2014-01-20 16:28 UTC (permalink / raw)
To: Eliezer Tamir
Cc: mtk.manpages, linux-man, David Miller, linux-kernel, netdev,
Andrew Morton, Eliezer Tamir
On 07/10/2013 04:18 PM, Eliezer Tamir wrote:
> Add description for the SO_BUSY_POLL socket option to the socket(7) manpage.
Long after the fact, I've applied this. Thanks, Eliezer.
Would you be willing also to write a patch for the POLL_BUSY_LOOP flag of
poll()?
Cheers,
Michael
> v2
> fixed typos reported by Rasmus Villemoes
>
> Signed-off-by: Eliezer Tamir <eliezer.tamir@linux.intel.com>
> ---
>
> man7/socket.7 | 25 +++++++++++++++++++++++++
> 1 files changed, 25 insertions(+), 0 deletions(-)
>
> diff --git a/man7/socket.7 b/man7/socket.7
> index f2213eb..5edcb09 100644
> --- a/man7/socket.7
> +++ b/man7/socket.7
> @@ -694,6 +694,31 @@ for details on control messages.
> Gets the socket type as an integer (e.g.,
> .BR SOCK_STREAM ).
> This socket option is read-only.
> +.TP
> +.B SO_BUSY_POLL
> +Sets the approximate time in microseconds to busy poll on a blocking receive
> +when there is no data. Increasing this value requires
> +.BR CAP_NET_ADMIN .
> +The default for this option is controlled by the
> +.I /proc/sys/net/core/busy_read
> +file.
> +
> +The value in the
> +.I /proc/sys/net/core/busy_poll
> +file determines how long
> +.BR select (2)
> +and
> +.BR poll (2)
> +will busy poll when they operate on sockets with
> +.BR SO_BUSY_POLL
> +set and no events to report are found.
> +
> +In both cases busy polling will only be done when the socket last received data
> +from a network device that supports this option.
> +
> +While busy polling may improve latency of some applications, care must be
> +taken when using it since this will increase both CPU utilization and power usage.
> +
> .SS Signals
> When writing onto a connection-oriented socket that has been shut down
> (by the local or the remote end)
>
>
--
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
^ permalink raw reply [flat|nested] 16+ messages in thread
[parent not found: <52DD4EC6.7080208-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>]
* Re: [PATCH v2] socket.7: add description for SO_BUSY_POLL
2014-01-20 16:28 ` Michael Kerrisk (man-pages)
@ 2014-01-20 17:28 ` Eliezer Tamir
-1 siblings, 0 replies; 16+ messages in thread
From: Eliezer Tamir @ 2014-01-20 17:28 UTC (permalink / raw)
To: Michael Kerrisk (man-pages)
Cc: linux-man-u79uwXL29TY76Z2rM5mHXA, David Miller,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
netdev-u79uwXL29TY76Z2rM5mHXA, Andrew Morton, Eliezer Tamir
On 20/01/2014 18:28, Michael Kerrisk (man-pages) wrote:
> On 07/10/2013 04:18 PM, Eliezer Tamir wrote:
>> Add description for the SO_BUSY_POLL socket option to the socket(7) manpage.
>
> Long after the fact, I've applied this. Thanks, Eliezer.
>
> Would you be willing also to write a patch for the POLL_BUSY_LOOP flag of
> poll()?
Yes, Me or someone from our team will do that.
-Eliezer
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v2] socket.7: add description for SO_BUSY_POLL
@ 2014-01-20 17:28 ` Eliezer Tamir
0 siblings, 0 replies; 16+ messages in thread
From: Eliezer Tamir @ 2014-01-20 17:28 UTC (permalink / raw)
To: Michael Kerrisk (man-pages)
Cc: linux-man, David Miller, linux-kernel, netdev, Andrew Morton,
Eliezer Tamir
On 20/01/2014 18:28, Michael Kerrisk (man-pages) wrote:
> On 07/10/2013 04:18 PM, Eliezer Tamir wrote:
>> Add description for the SO_BUSY_POLL socket option to the socket(7) manpage.
>
> Long after the fact, I've applied this. Thanks, Eliezer.
>
> Would you be willing also to write a patch for the POLL_BUSY_LOOP flag of
> poll()?
Yes, Me or someone from our team will do that.
-Eliezer
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v2] socket.7: add description for SO_BUSY_POLL
2014-01-20 17:28 ` Eliezer Tamir
(?)
@ 2015-02-05 13:17 ` Michael Kerrisk (man-pages)
[not found] ` <CAKgNAki16GXAs5J5cXPzftxxrvaugOvQSamVsGe4jFQF9V=fAQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
-1 siblings, 1 reply; 16+ messages in thread
From: Michael Kerrisk (man-pages) @ 2015-02-05 13:17 UTC (permalink / raw)
To: Eliezer Tamir
Cc: linux-man, David Miller, lkml, netdev, Andrew Morton,
Eliezer Tamir
On 20 January 2014 at 18:28, Eliezer Tamir
<eliezer.tamir@linux.intel.com> wrote:
> On 20/01/2014 18:28, Michael Kerrisk (man-pages) wrote:
>> On 07/10/2013 04:18 PM, Eliezer Tamir wrote:
>>> Add description for the SO_BUSY_POLL socket option to the socket(7) manpage.
>>
>> Long after the fact, I've applied this. Thanks, Eliezer.
>>
>> Would you be willing also to write a patch for the POLL_BUSY_LOOP flag of
>> poll()?
>
> Yes, Me or someone from our team will do that.
Hi Eliezer,
Could you or someone from your team send me a POLL_BUSY_LOOP doc patch?
Thanks,
Michael
--
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2015-02-05 17:48 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-10 14:18 [PATCH v2] socket.7: add description for SO_BUSY_POLL Eliezer Tamir
2013-07-10 18:03 ` Michael Kerrisk
[not found] ` <51DDA1DC.2020306-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-07-10 18:52 ` David Miller
2013-07-10 18:52 ` David Miller
2013-07-10 18:57 ` Michael Kerrisk (man-pages)
[not found] ` <CAKgNAkhk+K=t0fu12Q03wcp18JrNsudTpEYs4=XP8KF81918ZQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-07-10 19:01 ` David Miller
2013-07-10 19:01 ` David Miller
2013-07-10 18:56 ` Eliezer Tamir
2013-07-10 18:56 ` Eliezer Tamir
[not found] ` <20130710141835.15799.61657.stgit-vd+Q285fAQQAP1VksDEriRL4W9x8LtSr@public.gmane.org>
2014-01-20 16:28 ` Michael Kerrisk (man-pages)
2014-01-20 16:28 ` Michael Kerrisk (man-pages)
[not found] ` <52DD4EC6.7080208-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2014-01-20 17:28 ` Eliezer Tamir
2014-01-20 17:28 ` Eliezer Tamir
2015-02-05 13:17 ` Michael Kerrisk (man-pages)
[not found] ` <CAKgNAki16GXAs5J5cXPzftxxrvaugOvQSamVsGe4jFQF9V=fAQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-02-05 17:48 ` Eliezer Tamir
2015-02-05 17:48 ` Eliezer Tamir
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.