public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
From: Jan Stancek <jstancek@redhat.com>
To: Simon Xu <xu.simon@oracle.com>
Cc: ltp-list@lists.sourceforge.net
Subject: Re: [LTP] [PATCH] sctp: enlarge SO_RCVBUF option value
Date: Mon, 4 Nov 2013 03:18:03 -0500 (EST)	[thread overview]
Message-ID: <1568770588.18698492.1383553083237.JavaMail.root@redhat.com> (raw)
In-Reply-To: <1383542895-14069-1-git-send-email-xu.simon@oracle.com>



----- Original Message -----
> From: "Simon Xu" <xu.simon@oracle.com>
> To: ltp-list@lists.sourceforge.net
> Sent: Monday, 4 November, 2013 6:28:15 AM
> Subject: [LTP] [PATCH] sctp: enlarge SO_RCVBUF option value
> 
> When using setsockopt() with recent Linux kernels, it doesn't make sense to
> use a value smaller than SOCK_MIN_RCVBUF/2 for SO_RCVBUF and expect getting
> a SO_RCVBUF value by getsockopt() which is doubled.  See the following code
> in linux/net/core/sock.c:
> 
> 	if ((val * 2) < SOCK_MIN_RCVBUF)
> 		sk->sk_rcvbuf = SOCK_MIN_RCVBUF;
> 	else
> 		sk->sk_rcvbuf = val * 2;
> 	break;
> 
> SOCK_MIN_RCVBUF is defined as (2048 + sizeof(struct sk_buff)) which is 2240.
> ---

You are missing 'Signed-off-by', but patch looks good to me.

Reviewed-by: Jan Stancek <jstancek@redhat.com>

Regards,
Jan

>  testcases/network/sctp/func_tests/test_1_to_1_sockopt.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/testcases/network/sctp/func_tests/test_1_to_1_sockopt.c
> b/testcases/network/sctp/func_tests/test_1_to_1_sockopt.c
> index b12313b..c36f502 100644
> --- a/testcases/network/sctp/func_tests/test_1_to_1_sockopt.c
> +++ b/testcases/network/sctp/func_tests/test_1_to_1_sockopt.c
> @@ -299,9 +299,9 @@ int main(void)
>  	tst_resm(TPASS, "getsockopt() SCTP_STATUS - SUCCESS");
>  
>  	/* Reducing the SO_RCVBUF value using setsockopt() */
> -	/*Minimum value is 128 and hence I am using it */
>  	len = sizeof(int);
> -	rcvbuf_val_set = 128;
> +	/* (rcvbuf len)*2 should be no less than SOCK_MIN_RCVBUF in kernel */
> +	rcvbuf_val_set = 1500;
>  	/* TEST16: Test case for setsockopt SO_RCVBUF */
>  	error = setsockopt(sk2, SOL_SOCKET, SO_RCVBUF, &rcvbuf_val_set, len);
>  	if (error < 0)
> --
> 1.8.1.2
> 
> 
> ------------------------------------------------------------------------------
> Android is increasing in popularity, but the open development platform that
> developers love is also attractive to malware creators. Download this white
> paper to learn more about secure code signing practices that can help keep
> Android apps secure.
> http://pubads.g.doubleclick.net/gampad/clk?id=65839951&iu=/4140/ostg.clktrk
> _______________________________________________
> Ltp-list mailing list
> Ltp-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/ltp-list
> 

------------------------------------------------------------------------------
Android is increasing in popularity, but the open development platform that
developers love is also attractive to malware creators. Download this white
paper to learn more about secure code signing practices that can help keep
Android apps secure.
http://pubads.g.doubleclick.net/gampad/clk?id=65839951&iu=/4140/ostg.clktrk
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

  reply	other threads:[~2013-11-04  8:18 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-11-04  5:28 [LTP] [PATCH] sctp: enlarge SO_RCVBUF option value Simon Xu
2013-11-04  8:18 ` Jan Stancek [this message]
2013-11-04  8:25 ` Wanlong Gao

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1568770588.18698492.1383553083237.JavaMail.root@redhat.com \
    --to=jstancek@redhat.com \
    --cc=ltp-list@lists.sourceforge.net \
    --cc=xu.simon@oracle.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox