Linux Documentation
 help / color / mirror / Atom feed
* [PATCH] docs: infiniband: correct name of option to enable the ib_uverbs module
@ 2026-06-16  0:20 Ethan Nelson-Moore
  2026-06-16  1:18 ` Dongliang Mu
  2026-06-16 17:48 ` Jason Gunthorpe
  0 siblings, 2 replies; 3+ messages in thread
From: Ethan Nelson-Moore @ 2026-06-16  0:20 UTC (permalink / raw)
  To: Shuah Khan, Dongliang Mu, linux-rdma, linux-doc
  Cc: Ethan Nelson-Moore, Jason Gunthorpe, Leon Romanovsky,
	Jonathan Corbet, Alex Shi, Yanteng Si

The Infiniband documentation states that CONFIG_INFINIBAND_USER_VERBS
should be used to enable the ib_uverbs module. However, this option was
renamed to CONFIG_INFINIBAND_USER_ACCESS in commit 17781cd6186c
("[PATCH] IB: clean up user access config options"). Update the
documentation to reflect this.

Signed-off-by: Ethan Nelson-Moore <enelsonmoore@gmail.com>
---
 Documentation/infiniband/user_verbs.rst                    | 2 +-
 Documentation/translations/zh_CN/infiniband/user_verbs.rst | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/infiniband/user_verbs.rst b/Documentation/infiniband/user_verbs.rst
index 8ddc4b1cfef2..96bcd1bd37ad 100644
--- a/Documentation/infiniband/user_verbs.rst
+++ b/Documentation/infiniband/user_verbs.rst
@@ -2,7 +2,7 @@
 Userspace verbs access
 ======================
 
-  The ib_uverbs module, built by enabling CONFIG_INFINIBAND_USER_VERBS,
+  The ib_uverbs module, built by enabling CONFIG_INFINIBAND_USER_ACCESS,
   enables direct userspace access to IB hardware via "verbs," as
   described in chapter 11 of the InfiniBand Architecture Specification.
 
diff --git a/Documentation/translations/zh_CN/infiniband/user_verbs.rst b/Documentation/translations/zh_CN/infiniband/user_verbs.rst
index 970bc1a4e396..31534681654b 100644
--- a/Documentation/translations/zh_CN/infiniband/user_verbs.rst
+++ b/Documentation/translations/zh_CN/infiniband/user_verbs.rst
@@ -17,7 +17,7 @@
 用户空间verbs访问
 =================
 
-  ib_uverbs模块,通过启用CONFIG_INFINIBAND_USER_VERBS构建,使用户空间
+  ib_uverbs模块,通过启用CONFIG_INFINIBAND_USER_ACCESS构建,使用户空间
   通过“verbs”直接访问IB硬件,如InfiniBand架构规范第11章所述。
 
   要使用verbs,需要libibverbs库,可从https://github.com/linux-rdma/rdma-core。
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] docs: infiniband: correct name of option to enable the ib_uverbs module
  2026-06-16  0:20 [PATCH] docs: infiniband: correct name of option to enable the ib_uverbs module Ethan Nelson-Moore
@ 2026-06-16  1:18 ` Dongliang Mu
  2026-06-16 17:48 ` Jason Gunthorpe
  1 sibling, 0 replies; 3+ messages in thread
From: Dongliang Mu @ 2026-06-16  1:18 UTC (permalink / raw)
  To: Ethan Nelson-Moore, Shuah Khan, Jonathan Corbet, linux-rdma,
	linux-doc
  Cc: Jason Gunthorpe, Leon Romanovsky, Alex Shi, Yanteng Si


On 6/16/26 8:20 AM, Ethan Nelson-Moore wrote:
> The Infiniband documentation states that CONFIG_INFINIBAND_USER_VERBS
> should be used to enable the ib_uverbs module. However, this option was
> renamed to CONFIG_INFINIBAND_USER_ACCESS in commit 17781cd6186c
> ("[PATCH] IB: clean up user access config options"). Update the
> documentation to reflect this.

Reviewed-by: Dongliang Mu <dzm91@hust.edu.cn>

For patch that mixes English and translation update, should it directly 
be merged into Jon's kernel tree?

>
> Signed-off-by: Ethan Nelson-Moore <enelsonmoore@gmail.com>
> ---
>   Documentation/infiniband/user_verbs.rst                    | 2 +-
>   Documentation/translations/zh_CN/infiniband/user_verbs.rst | 2 +-
>   2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/Documentation/infiniband/user_verbs.rst b/Documentation/infiniband/user_verbs.rst
> index 8ddc4b1cfef2..96bcd1bd37ad 100644
> --- a/Documentation/infiniband/user_verbs.rst
> +++ b/Documentation/infiniband/user_verbs.rst
> @@ -2,7 +2,7 @@
>   Userspace verbs access
>   ======================
>   
> -  The ib_uverbs module, built by enabling CONFIG_INFINIBAND_USER_VERBS,
> +  The ib_uverbs module, built by enabling CONFIG_INFINIBAND_USER_ACCESS,
>     enables direct userspace access to IB hardware via "verbs," as
>     described in chapter 11 of the InfiniBand Architecture Specification.
>   
> diff --git a/Documentation/translations/zh_CN/infiniband/user_verbs.rst b/Documentation/translations/zh_CN/infiniband/user_verbs.rst
> index 970bc1a4e396..31534681654b 100644
> --- a/Documentation/translations/zh_CN/infiniband/user_verbs.rst
> +++ b/Documentation/translations/zh_CN/infiniband/user_verbs.rst
> @@ -17,7 +17,7 @@
>   用户空间verbs访问
>   =================
>   
> -  ib_uverbs模块,通过启用CONFIG_INFINIBAND_USER_VERBS构建,使用户空间
> +  ib_uverbs模块,通过启用CONFIG_INFINIBAND_USER_ACCESS构建,使用户空间
>     通过“verbs”直接访问IB硬件,如InfiniBand架构规范第11章所述。
>   
>     要使用verbs,需要libibverbs库,可从https://github.com/linux-rdma/rdma-core。


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] docs: infiniband: correct name of option to enable the ib_uverbs module
  2026-06-16  0:20 [PATCH] docs: infiniband: correct name of option to enable the ib_uverbs module Ethan Nelson-Moore
  2026-06-16  1:18 ` Dongliang Mu
@ 2026-06-16 17:48 ` Jason Gunthorpe
  1 sibling, 0 replies; 3+ messages in thread
From: Jason Gunthorpe @ 2026-06-16 17:48 UTC (permalink / raw)
  To: Ethan Nelson-Moore
  Cc: Shuah Khan, Dongliang Mu, linux-rdma, linux-doc, Leon Romanovsky,
	Jonathan Corbet, Alex Shi, Yanteng Si

On Mon, Jun 15, 2026 at 05:20:23PM -0700, Ethan Nelson-Moore wrote:
> The Infiniband documentation states that CONFIG_INFINIBAND_USER_VERBS
> should be used to enable the ib_uverbs module. However, this option was
> renamed to CONFIG_INFINIBAND_USER_ACCESS in commit 17781cd6186c
> ("[PATCH] IB: clean up user access config options"). Update the
> documentation to reflect this.
> 
> Signed-off-by: Ethan Nelson-Moore <enelsonmoore@gmail.com>
> Reviewed-by: Dongliang Mu <dzm91@hust.edu.cn>
> ---
>  Documentation/infiniband/user_verbs.rst                    | 2 +-
>  Documentation/translations/zh_CN/infiniband/user_verbs.rst | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)

It seems simple enough I picked it up

Thanks,
Jason

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-06-16 17:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-16  0:20 [PATCH] docs: infiniband: correct name of option to enable the ib_uverbs module Ethan Nelson-Moore
2026-06-16  1:18 ` Dongliang Mu
2026-06-16 17:48 ` Jason Gunthorpe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox