Netdev Archive mirror
 help / color / mirror / Atom feed
* [PATCH] dns_resolver: correct sysfs path name in dns resolver documentation
@ 2024-03-23  8:11 Bharath SM
  2024-03-23 16:29 ` Simon Horman
  2024-03-24 10:43 ` [PATCH v2] dns_resolver: correct module " Bharath SM
  0 siblings, 2 replies; 6+ messages in thread
From: Bharath SM @ 2024-03-23  8:11 UTC (permalink / raw
  To: davem, dhowells, edumazet, kuba, linux-doc, netdev, corbet,
	pabeni
  Cc: Bharath SM

Fix an incorrect sysfs path in dns resolver documentation

Signed-off-by: Bharath SM <bharathsm@microsoft.com>
---
 Documentation/networking/dns_resolver.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/networking/dns_resolver.rst b/Documentation/networking/dns_resolver.rst
index add4d59a99a5..99bf72a6ed45 100644
--- a/Documentation/networking/dns_resolver.rst
+++ b/Documentation/networking/dns_resolver.rst
@@ -152,4 +152,4 @@ Debugging
 Debugging messages can be turned on dynamically by writing a 1 into the
 following file::
 
-	/sys/module/dnsresolver/parameters/debug
+	/sys/module/dns_resolver/parameters/debug
-- 
2.34.1


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

* Re: [PATCH] dns_resolver: correct sysfs path name in dns resolver documentation
  2024-03-23  8:11 [PATCH] dns_resolver: correct sysfs path name in dns resolver documentation Bharath SM
@ 2024-03-23 16:29 ` Simon Horman
  2024-03-24 10:48   ` Bharath SM
  2024-03-24 10:43 ` [PATCH v2] dns_resolver: correct module " Bharath SM
  1 sibling, 1 reply; 6+ messages in thread
From: Simon Horman @ 2024-03-23 16:29 UTC (permalink / raw
  To: Bharath SM
  Cc: davem, dhowells, edumazet, kuba, linux-doc, netdev, corbet,
	pabeni, Bharath SM

On Sat, Mar 23, 2024 at 01:41:40PM +0530, Bharath SM wrote:
> Fix an incorrect sysfs path in dns resolver documentation
> 
> Signed-off-by: Bharath SM <bharathsm@microsoft.com>

Hi,

There is another instance of "dnsresolver" in the same file.
Should it also be changed?

> ---
>  Documentation/networking/dns_resolver.rst | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/networking/dns_resolver.rst b/Documentation/networking/dns_resolver.rst
> index add4d59a99a5..99bf72a6ed45 100644
> --- a/Documentation/networking/dns_resolver.rst
> +++ b/Documentation/networking/dns_resolver.rst
> @@ -152,4 +152,4 @@ Debugging
>  Debugging messages can be turned on dynamically by writing a 1 into the
>  following file::
>  
> -	/sys/module/dnsresolver/parameters/debug
> +	/sys/module/dns_resolver/parameters/debug
> -- 
> 2.34.1
> 
> 

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

* [PATCH v2] dns_resolver: correct module name in dns resolver documentation
  2024-03-23  8:11 [PATCH] dns_resolver: correct sysfs path name in dns resolver documentation Bharath SM
  2024-03-23 16:29 ` Simon Horman
@ 2024-03-24 10:43 ` Bharath SM
  2024-03-25 17:17   ` Simon Horman
  2024-03-26  9:24   ` patchwork-bot+netdevbpf
  1 sibling, 2 replies; 6+ messages in thread
From: Bharath SM @ 2024-03-24 10:43 UTC (permalink / raw
  To: davem, dhowells, edumazet, kuba, linux-doc, netdev, corbet,
	pabeni, horms
  Cc: Bharath SM

Fix an incorrect module name and sysfs path in dns resolver
documentation.

Signed-off-by: Bharath SM <bharathsm@microsoft.com>
---
 Documentation/networking/dns_resolver.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/networking/dns_resolver.rst b/Documentation/networking/dns_resolver.rst
index add4d59a99a5..c0364f7070af 100644
--- a/Documentation/networking/dns_resolver.rst
+++ b/Documentation/networking/dns_resolver.rst
@@ -118,7 +118,7 @@ Keys of dns_resolver type can be read from userspace using keyctl_read() or
 Mechanism
 =========
 
-The dnsresolver module registers a key type called "dns_resolver".  Keys of
+The dns_resolver module registers a key type called "dns_resolver".  Keys of
 this type are used to transport and cache DNS lookup results from userspace.
 
 When dns_query() is invoked, it calls request_key() to search the local
@@ -152,4 +152,4 @@ Debugging
 Debugging messages can be turned on dynamically by writing a 1 into the
 following file::
 
-	/sys/module/dnsresolver/parameters/debug
+	/sys/module/dns_resolver/parameters/debug
-- 
2.34.1


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

* Re: [PATCH] dns_resolver: correct sysfs path name in dns resolver documentation
  2024-03-23 16:29 ` Simon Horman
@ 2024-03-24 10:48   ` Bharath SM
  0 siblings, 0 replies; 6+ messages in thread
From: Bharath SM @ 2024-03-24 10:48 UTC (permalink / raw
  To: Simon Horman
  Cc: davem, dhowells, edumazet, kuba, linux-doc, netdev, corbet,
	pabeni, Bharath SM

On Sat, Mar 23, 2024 at 10:00 PM Simon Horman <horms@kernel.org> wrote:
>
> On Sat, Mar 23, 2024 at 01:41:40PM +0530, Bharath SM wrote:
> > Fix an incorrect sysfs path in dns resolver documentation
> >
> > Signed-off-by: Bharath SM <bharathsm@microsoft.com>
>
> Hi,
>
> There is another instance of "dnsresolver" in the same file.
> Should it also be changed?
>

Thanks for suggestion,
sent updated patch with subject "[PATCH v2] dns_resolver: correct
module name in dns resolver documentation"

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

* Re: [PATCH v2] dns_resolver: correct module name in dns resolver documentation
  2024-03-24 10:43 ` [PATCH v2] dns_resolver: correct module " Bharath SM
@ 2024-03-25 17:17   ` Simon Horman
  2024-03-26  9:24   ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 6+ messages in thread
From: Simon Horman @ 2024-03-25 17:17 UTC (permalink / raw
  To: Bharath SM
  Cc: davem, dhowells, edumazet, kuba, linux-doc, netdev, corbet,
	pabeni, Bharath SM

On Sun, Mar 24, 2024 at 04:13:38PM +0530, Bharath SM wrote:
> Fix an incorrect module name and sysfs path in dns resolver
> documentation.
> 
> Signed-off-by: Bharath SM <bharathsm@microsoft.com>

Reviewed-by: Simon Horman <horms@kernel.org>


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

* Re: [PATCH v2] dns_resolver: correct module name in dns resolver documentation
  2024-03-24 10:43 ` [PATCH v2] dns_resolver: correct module " Bharath SM
  2024-03-25 17:17   ` Simon Horman
@ 2024-03-26  9:24   ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 6+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-03-26  9:24 UTC (permalink / raw
  To: Bharath SM
  Cc: davem, dhowells, edumazet, kuba, linux-doc, netdev, corbet,
	pabeni, horms, bharathsm

Hello:

This patch was applied to netdev/net-next.git (main)
by Paolo Abeni <pabeni@redhat.com>:

On Sun, 24 Mar 2024 16:13:38 +0530 you wrote:
> Fix an incorrect module name and sysfs path in dns resolver
> documentation.
> 
> Signed-off-by: Bharath SM <bharathsm@microsoft.com>
> ---
>  Documentation/networking/dns_resolver.rst | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Here is the summary with links:
  - [v2] dns_resolver: correct module name in dns resolver documentation
    https://git.kernel.org/netdev/net-next/c/75925fafb4f6

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

end of thread, other threads:[~2024-03-26  9:24 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-23  8:11 [PATCH] dns_resolver: correct sysfs path name in dns resolver documentation Bharath SM
2024-03-23 16:29 ` Simon Horman
2024-03-24 10:48   ` Bharath SM
2024-03-24 10:43 ` [PATCH v2] dns_resolver: correct module " Bharath SM
2024-03-25 17:17   ` Simon Horman
2024-03-26  9:24   ` patchwork-bot+netdevbpf

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 read-only IMAP folder(s) and NNTP newsgroup(s).