Linux-HyperV List
 help / color / mirror / Atom feed
From: Leon Romanovsky <leon@kernel.org>
To: Abhijit Gangurde <abhijit.gangurde@amd.com>,
	 Allen Hubbe <allen.hubbe@amd.com>,
	 Broadcom internal kernel review list
	<bcm-kernel-feedback-list@broadcom.com>,
	 Bernard Metzler <bernard.metzler@linux.dev>,
	 Potnuri Bharat Teja <bharat@chelsio.com>,
	 Bryan Tan <bryan-bt.tan@broadcom.com>,
	 Cheng Xu <chengyou@linux.alibaba.com>,
	 Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>,
	 Gal Pressman <gal.pressman@linux.dev>,
	 Junxian Huang <huangjunxian6@hisilicon.com>,
	 Kai Shen <kaishen@linux.alibaba.com>,
	 Kalesh AP <kalesh-anakkur.purayil@broadcom.com>,
	 Konstantin Taranov <kotaranov@microsoft.com>,
	 Krzysztof Czurylo <krzysztof.czurylo@intel.com>,
	 linux-hyperv@vger.kernel.org, linux-rdma@vger.kernel.org,
	 Long Li <longli@microsoft.com>,
	Michal Kalderon <mkalderon@marvell.com>,
	 Michael Margolin <mrgolin@amazon.com>,
	Nelson Escobar <neescoba@cisco.com>,
	 Satish Kharat <satishkh@cisco.com>,
	 Selvin Xavier <selvin.xavier@broadcom.com>,
	 Yossi Leybovich <sleybo@amazon.com>,
	 Chengchang Tang <tangchengchang@huawei.com>,
	 Tatyana Nikolova <tatyana.e.nikolova@intel.com>,
	 Vishnu Dasa <vishnu.dasa@broadcom.com>,
	Yishai Hadas <yishaih@nvidia.com>,
	 Jason Gunthorpe <jgg@ziepe.ca>
Cc: patches@lists.linux.dev
Subject: Re: [PATCH v3 00/10] Convert all drivers to the new udata response flow
Date: Thu, 14 May 2026 04:22:32 -0400	[thread overview]
Message-ID: <177874695251.2400877.15097809543783345689.b4-ty@kernel.org> (raw)
In-Reply-To: <0-v3-4effdebad75a+e1-rdma_udata_rep_jgg@nvidia.com>


On Mon, 11 May 2026 21:09:29 -0300, Jason Gunthorpe wrote:
> Go through the drivers and migrate them to use ib_respond_udata(). Remove
> debugging prints on failure paths.  Ensure the error propagates from
> ib_respond_udata(). Use the = {} pattern to initialize the uresp.
> 
> There are a couple of oddball cases which are fixed up in their own
> commits, but otherwise this is fairly straightforward.
> 
> [...]

Applied, thanks!

[01/10] RDMA: Use ib_is_udata_in_empty() for places calling ib_is_udata_cleared()
        https://git.kernel.org/rdma/rdma/c/41480529abf89b
[02/10] IB/rdmavt: Don't abuse udata and ib_respond_udata()
        https://git.kernel.org/rdma/rdma/c/34705a1ae3e700
[03/10] RDMA: Convert drivers using min to ib_respond_udata()
        https://git.kernel.org/rdma/rdma/c/0d1e825104e8bd
[04/10] RDMA: Convert drivers using sizeof() to ib_respond_udata()
        https://git.kernel.org/rdma/rdma/c/051ac78d04654f
[05/10] RDMA/cxgb4: Convert to ib_respond_udata()
        https://git.kernel.org/rdma/rdma/c/07a642d0284c48
[06/10] RDMA/qedr: Replace qedr_ib_copy_to_udata() with ib_respond_udata()
        https://git.kernel.org/rdma/rdma/c/17bf245156ac71
[07/10] RDMA/mlx: Replace response_len with ib_respond_udata()
        https://git.kernel.org/rdma/rdma/c/f2d022ef99ec62
[08/10] RDMA: Use proper driver data response structs instead of open coding
        https://git.kernel.org/rdma/rdma/c/d06310eda43097
[09/10] RDMA: Add missed = {} initialization to uresp structs
        https://git.kernel.org/rdma/rdma/c/b0e60caf6c9d0c
[10/10] RDMA: Replace memset with = {} pattern for ib_respond_udata()
        https://git.kernel.org/rdma/rdma/c/be4bca92cb86a6

Best regards,
-- 
Leon Romanovsky <leon@kernel.org>


      parent reply	other threads:[~2026-05-14  8:22 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-12  0:09 [PATCH v3 00/10] Convert all drivers to the new udata response flow Jason Gunthorpe
2026-05-12  0:09 ` [PATCH v3 01/10] RDMA: Use ib_is_udata_in_empty() for places calling ib_is_udata_cleared() Jason Gunthorpe
2026-05-12  0:09 ` [PATCH v3 02/10] IB/rdmavt: Don't abuse udata and ib_respond_udata() Jason Gunthorpe
2026-05-13  3:12   ` sashiko-bot
2026-05-13 11:38     ` Jason Gunthorpe
2026-05-13 13:45       ` Dennis Dalessandro
2026-05-12  0:09 ` [PATCH v3 03/10] RDMA: Convert drivers using min to ib_respond_udata() Jason Gunthorpe
2026-05-12  0:09 ` [PATCH v3 04/10] RDMA: Convert drivers using sizeof() " Jason Gunthorpe
2026-05-12  0:09 ` [PATCH v3 05/10] RDMA/cxgb4: Convert " Jason Gunthorpe
2026-05-12  0:09 ` [PATCH v3 06/10] RDMA/qedr: Replace qedr_ib_copy_to_udata() with ib_respond_udata() Jason Gunthorpe
2026-05-13 19:07   ` sashiko-bot
2026-05-12  0:09 ` [PATCH v3 07/10] RDMA/mlx: Replace response_len " Jason Gunthorpe
2026-05-12  0:09 ` [PATCH v3 08/10] RDMA: Use proper driver data response structs instead of open coding Jason Gunthorpe
2026-05-12  0:09 ` [PATCH v3 09/10] RDMA: Add missed = {} initialization to uresp structs Jason Gunthorpe
2026-05-12  0:09 ` [PATCH v3 10/10] RDMA: Replace memset with = {} pattern for ib_respond_udata() Jason Gunthorpe
2026-05-13 20:59   ` sashiko-bot
2026-05-13 23:23     ` Jason Gunthorpe
2026-05-14  8:22 ` Leon Romanovsky [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=177874695251.2400877.15097809543783345689.b4-ty@kernel.org \
    --to=leon@kernel.org \
    --cc=abhijit.gangurde@amd.com \
    --cc=allen.hubbe@amd.com \
    --cc=bcm-kernel-feedback-list@broadcom.com \
    --cc=bernard.metzler@linux.dev \
    --cc=bharat@chelsio.com \
    --cc=bryan-bt.tan@broadcom.com \
    --cc=chengyou@linux.alibaba.com \
    --cc=dennis.dalessandro@cornelisnetworks.com \
    --cc=gal.pressman@linux.dev \
    --cc=huangjunxian6@hisilicon.com \
    --cc=jgg@ziepe.ca \
    --cc=kaishen@linux.alibaba.com \
    --cc=kalesh-anakkur.purayil@broadcom.com \
    --cc=kotaranov@microsoft.com \
    --cc=krzysztof.czurylo@intel.com \
    --cc=linux-hyperv@vger.kernel.org \
    --cc=linux-rdma@vger.kernel.org \
    --cc=longli@microsoft.com \
    --cc=mkalderon@marvell.com \
    --cc=mrgolin@amazon.com \
    --cc=neescoba@cisco.com \
    --cc=patches@lists.linux.dev \
    --cc=satishkh@cisco.com \
    --cc=selvin.xavier@broadcom.com \
    --cc=sleybo@amazon.com \
    --cc=tangchengchang@huawei.com \
    --cc=tatyana.e.nikolova@intel.com \
    --cc=vishnu.dasa@broadcom.com \
    --cc=yishaih@nvidia.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