stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg KH <greg@kroah.com>
To: longli@microsoft.com
Cc: Steve French <sfrench@samba.org>,
	linux-cifs@vger.kernel.org, samba-technical@lists.samba.org,
	linux-kernel@vger.kernel.org, linux-rdma@vger.kernel.org,
	stable@vger.kernel.org
Subject: Re: [PATCH 3/6] cifs: smbd: Avoid allocating iov on the stack
Date: Tue, 17 Apr 2018 09:29:32 +0200	[thread overview]
Message-ID: <20180417072932.GB15310@kroah.com> (raw)
In-Reply-To: <20180417004918.29213-3-longli@linuxonhyperv.com>

On Mon, Apr 16, 2018 at 05:49:15PM -0700, Long Li wrote:
> From: Long Li <longli@microsoft.com>
> 
> It's not necessary to allocate another iov when going through the buffers
> in smbd_send() through RDMA send.
> 
> Remove it to reduce stack size.
> 
> Signed-off-by: Long Li <longli@microsoft.com>
> ---
>  fs/cifs/smbdirect.c | 36 ++++++++++++------------------------
>  1 file changed, 12 insertions(+), 24 deletions(-)
> 
> diff --git a/fs/cifs/smbdirect.c b/fs/cifs/smbdirect.c
> index b5c6c0d..f575e9a 100644
> --- a/fs/cifs/smbdirect.c
> +++ b/fs/cifs/smbdirect.c
> @@ -2088,7 +2088,7 @@ int smbd_send(struct smbd_connection *info, struct smb_rqst *rqst)
>  	int start, i, j;
>  	int max_iov_size =
>  		info->max_send_size - sizeof(struct smbd_data_transfer);
> -	struct kvec iov[SMBDIRECT_MAX_SGE];
> +	struct kvec *iov;
>  	int rc;
>  
>  	info->smbd_send_pending++;
> @@ -2099,32 +2099,20 @@ int smbd_send(struct smbd_connection *info, struct smb_rqst *rqst)
>  	}
>  
>  	/*
> -	 * This usually means a configuration error
> -	 * We use RDMA read/write for packet size > rdma_readwrite_threshold
> -	 * as long as it's properly configured we should never get into this
> -	 * situation
> -	 */
> -	if (rqst->rq_nvec + rqst->rq_npages > SMBDIRECT_MAX_SGE) {
> -		log_write(ERR, "maximum send segment %x exceeding %x\n",
> -			 rqst->rq_nvec + rqst->rq_npages, SMBDIRECT_MAX_SGE);
> -		rc = -EINVAL;
> -		goto done;
> -	}
> -
> -	/*
> -	 * Remove the RFC1002 length defined in MS-SMB2 section 2.1
> -	 * It is used only for TCP transport
> +	 * Skip the RFC1002 length defined in MS-SMB2 section 2.1
> +	 * It is used only for TCP transport in the iov[0]
>  	 * In future we may want to add a transport layer under protocol
>  	 * layer so this will only be issued to TCP transport
>  	 */
> -	iov[0].iov_base = (char *)rqst->rq_iov[0].iov_base + 4;
> -	iov[0].iov_len = rqst->rq_iov[0].iov_len - 4;
> -	buflen += iov[0].iov_len;
> +
> +	if (rqst->rq_iov[0].iov_len != 4) {
> +		log_write(ERR, "expected the pdu length in 1st iov, but got 0x%lu\n", rqst->rq_iov[0].iov_len);
> +		return -EINVAL;
> +	}
> +	iov = &rqst->rq_iov[1];
>  
>  	/* total up iov array first */
> -	for (i = 1; i < rqst->rq_nvec; i++) {
> -		iov[i].iov_base = rqst->rq_iov[i].iov_base;
> -		iov[i].iov_len = rqst->rq_iov[i].iov_len;
> +	for (i = 0; i < rqst->rq_nvec-1; i++) {
>  		buflen += iov[i].iov_len;
>  	}
>  
> @@ -2197,14 +2185,14 @@ int smbd_send(struct smbd_connection *info, struct smb_rqst *rqst)
>  						goto done;
>  				}
>  				i++;
> -				if (i == rqst->rq_nvec)
> +				if (i == rqst->rq_nvec-1)
>  					break;
>  			}
>  			start = i;
>  			buflen = 0;
>  		} else {
>  			i++;
> -			if (i == rqst->rq_nvec) {
> +			if (i == rqst->rq_nvec-1) {
>  				/* send out all remaining vecs */
>  				remaining_data_length -= buflen;
>  				log_write(INFO,
> -- 
> 2.7.4

<formletter>

This is not the correct way to submit patches for inclusion in the
stable kernel tree.  Please read:
    https://www.kernel.org/doc/html/latest/process/stable-kernel-rules.html
for how to do this properly.

</formletter>

  reply	other threads:[~2018-04-17  7:29 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-04-17  0:49 [PATCH 1/6] cifs: smbd: Check for iov length on sending the last iov Long Li
2018-04-17  0:49 ` [PATCH 2/6] cifs: Allocate validate negoation request through kmalloc Long Li
2018-04-17  4:01   ` Parav Pandit
2018-04-17 18:11     ` Long Li
2018-04-17  7:30   ` Greg KH
2018-04-17  0:49 ` [PATCH 3/6] cifs: smbd: Avoid allocating iov on the stack Long Li
2018-04-17  7:29   ` Greg KH [this message]
2018-04-17  0:49 ` [PATCH 4/6] cifs: smbd: Don't use RDMA read/write when signing is used Long Li
2018-04-17  7:29   ` Greg KH
2018-04-17  0:49 ` [PATCH 5/6] cifs: smbd: Enable signing with smbdirect Long Li
2018-04-17  7:29   ` Greg KH
2018-04-17  0:49 ` [PATCH 6/6] cifs: smbd: Dump SMB packet when configured Long Li
2018-04-17  7:29   ` Greg KH
2018-04-17  7:29 ` [PATCH 1/6] cifs: smbd: Check for iov length on sending the last iov Greg KH
2018-04-17 17:55   ` Long Li

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=20180417072932.GB15310@kroah.com \
    --to=greg@kroah.com \
    --cc=linux-cifs@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-rdma@vger.kernel.org \
    --cc=longli@microsoft.com \
    --cc=samba-technical@lists.samba.org \
    --cc=sfrench@samba.org \
    --cc=stable@vger.kernel.org \
    /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;
as well as URLs for NNTP newsgroup(s).