From: Stefan Metzmacher <metze@samba.org>
To: David Howells <dhowells@redhat.com>, Steve French <sfrench@samba.org>
Cc: Paulo Alcantara <pc@manguebit.org>, Tom Talpey <tom@talpey.com>,
linux-cifs@vger.kernel.org, linux-fsdevel@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] smbdirect: Fix error cleanup in smbdirect_map_sges_from_iter()
Date: Thu, 14 May 2026 13:02:38 +0200 [thread overview]
Message-ID: <7de22a6a-478a-4bb8-a023-d186eea26bf5@samba.org> (raw)
In-Reply-To: <1927248.1778698202@warthog.procyon.org.uk>
Am 13.05.26 um 20:50 schrieb David Howells:
> Fix smbdirect_map_sges_from_iter() to use pre-decrement, not post-decrement
> so that it cleans up the correct slots.
>
> Fixes: e5fbdde43017 ("cifs: Add a function to build an RDMA SGE list from an iterator")
> Closes: https://sashiko.dev/#/patchset/20260326104544.509518-1-dhowells%40redhat.com
> Signed-off-by: David Howells <dhowells@redhat.com>
> cc: Steve French <sfrench@samba.org>
> cc: Stefan Metzmacher <metze@samba.org>
> cc: Paulo Alcantara <pc@manguebit.org>
> cc: Tom Talpey <tom@talpey.com>
> cc: linux-cifs@vger.kernel.org
> cc: linux-fsdevel@vger.kernel.org
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Thanks!
metze
> ---
> fs/smb/smbdirect/connection.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/fs/smb/smbdirect/connection.c b/fs/smb/smbdirect/connection.c
> index fe9912e53da6..8adf58097534 100644
> --- a/fs/smb/smbdirect/connection.c
> +++ b/fs/smb/smbdirect/connection.c
> @@ -2168,7 +2168,7 @@ static ssize_t smbdirect_map_sges_from_iter(struct iov_iter *iter, size_t len,
>
> if (ret < 0) {
> while (state->num_sge > before) {
> - struct ib_sge *sge = &state->sge[state->num_sge--];
> + struct ib_sge *sge = &state->sge[--state->num_sge];
>
> ib_dma_unmap_page(state->device,
> sge->addr,
>
prev parent reply other threads:[~2026-05-14 11:02 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-13 18:50 [PATCH] smbdirect: Fix error cleanup in smbdirect_map_sges_from_iter() David Howells
2026-05-14 11:02 ` Stefan Metzmacher [this message]
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=7de22a6a-478a-4bb8-a023-d186eea26bf5@samba.org \
--to=metze@samba.org \
--cc=dhowells@redhat.com \
--cc=linux-cifs@vger.kernel.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=pc@manguebit.org \
--cc=sfrench@samba.org \
--cc=tom@talpey.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