linux-doc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 0/3] dns_resolver docs formatting cleanup
@ 2025-09-22  9:56 Bagas Sanjaya
  2025-09-22  9:56 ` [PATCH net-next 1/3] net: dns_resolver: Use reST bullet list for features list Bagas Sanjaya
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Bagas Sanjaya @ 2025-09-22  9:56 UTC (permalink / raw)
  To: Linux Kernel Mailing List, Linux Documentation, Linux Networking
  Cc: David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Simon Horman, Jonathan Corbet, Mauro Carvalho Chehab, Kees Cook,
	Bagas Sanjaya

Hi,

Here are reST cleanups for DNS Resolver Module documentation. The shortlog
below should be self-explanatory.

Enjoy!

Bagas Sanjaya (3):
  net: dns_resolver: Use reST bullet list for features list
  net: dns_resolver: Move dns_query() explanation out of code block
  net: dns_resolver: Fix request-key cross-reference

 Documentation/networking/dns_resolver.rst | 53 +++++++++++------------
 1 file changed, 26 insertions(+), 27 deletions(-)


base-commit: 312e6f7676e63bbb9b81e5c68e580a9f776cc6f0
-- 
An old man doll... just what I always wanted! - Clara


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

* [PATCH net-next 1/3] net: dns_resolver: Use reST bullet list for features list
  2025-09-22  9:56 [PATCH net-next 0/3] dns_resolver docs formatting cleanup Bagas Sanjaya
@ 2025-09-22  9:56 ` Bagas Sanjaya
  2025-09-23 10:07   ` Simon Horman
  2025-09-22  9:56 ` [PATCH net-next 2/3] net: dns_resolver: Move dns_query() explanation out of code block Bagas Sanjaya
  2025-09-22  9:56 ` [PATCH net-next 3/3] net: dns_resolver: Fix request-key cross-reference Bagas Sanjaya
  2 siblings, 1 reply; 10+ messages in thread
From: Bagas Sanjaya @ 2025-09-22  9:56 UTC (permalink / raw)
  To: Linux Kernel Mailing List, Linux Documentation, Linux Networking
  Cc: David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Simon Horman, Jonathan Corbet, Mauro Carvalho Chehab, Kees Cook,
	Bagas Sanjaya

Features overview list uses an asterisk in parentheses (``(*)``)
as bullet list marker, which isn't supported by Sphinx as proper
bullet. Replace it with just asterisk.

Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.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 c0364f7070af84..5cec37bedf9950 100644
--- a/Documentation/networking/dns_resolver.rst
+++ b/Documentation/networking/dns_resolver.rst
@@ -25,11 +25,11 @@ These routines must be supported by userspace tools dns.upcall, cifs.upcall and
 request-key.  It is under development and does not yet provide the full feature
 set.  The features it does support include:
 
- (*) Implements the dns_resolver key_type to contact userspace.
+ * Implements the dns_resolver key_type to contact userspace.
 
 It does not yet support the following AFS features:
 
- (*) Dns query support for AFSDB resource record.
+ * DNS query support for AFSDB resource record.
 
 This code is extracted from the CIFS filesystem.
 
-- 
An old man doll... just what I always wanted! - Clara


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

* [PATCH net-next 2/3] net: dns_resolver: Move dns_query() explanation out of code block
  2025-09-22  9:56 [PATCH net-next 0/3] dns_resolver docs formatting cleanup Bagas Sanjaya
  2025-09-22  9:56 ` [PATCH net-next 1/3] net: dns_resolver: Use reST bullet list for features list Bagas Sanjaya
@ 2025-09-22  9:56 ` Bagas Sanjaya
  2025-09-23 10:14   ` Simon Horman
  2025-09-22  9:56 ` [PATCH net-next 3/3] net: dns_resolver: Fix request-key cross-reference Bagas Sanjaya
  2 siblings, 1 reply; 10+ messages in thread
From: Bagas Sanjaya @ 2025-09-22  9:56 UTC (permalink / raw)
  To: Linux Kernel Mailing List, Linux Documentation, Linux Networking
  Cc: David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Simon Horman, Jonathan Corbet, Mauro Carvalho Chehab, Kees Cook,
	Bagas Sanjaya

Documentation for dns_query() is placed in the function's literal code
block snippet instead. Move it out of there.

Fixes: 9dfe1361261b ("docs: networking: convert dns_resolver.txt to ReST")
Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>
---
 Documentation/networking/dns_resolver.rst | 45 +++++++++++------------
 1 file changed, 22 insertions(+), 23 deletions(-)

diff --git a/Documentation/networking/dns_resolver.rst b/Documentation/networking/dns_resolver.rst
index 5cec37bedf9950..329fb21d005ccd 100644
--- a/Documentation/networking/dns_resolver.rst
+++ b/Documentation/networking/dns_resolver.rst
@@ -64,44 +64,43 @@ before the more general line given above as the first match is the one taken::
 Usage
 =====
 
-To make use of this facility, one of the following functions that are
-implemented in the module can be called after doing::
+To make use of this facility, the appropriate header must be included first::
 
 	#include <linux/dns_resolver.h>
 
-     ::
+Then you can make queries by calling::
 
 	int dns_query(const char *type, const char *name, size_t namelen,
 		     const char *options, char **_result, time_t *_expiry);
 
-     This is the basic access function.  It looks for a cached DNS query and if
-     it doesn't find it, it upcalls to userspace to make a new DNS query, which
-     may then be cached.  The key description is constructed as a string of the
-     form::
+This is the basic access function.  It looks for a cached DNS query and if
+it doesn't find it, it upcalls to userspace to make a new DNS query, which
+may then be cached.  The key description is constructed as a string of the
+form::
 
 		[<type>:]<name>
 
-     where <type> optionally specifies the particular upcall program to invoke,
-     and thus the type of query to do, and <name> specifies the string to be
-     looked up.  The default query type is a straight hostname to IP address
-     set lookup.
+where <type> optionally specifies the particular upcall program to invoke,
+and thus the type of query to do, and <name> specifies the string to be
+looked up.  The default query type is a straight hostname to IP address
+set lookup.
 
-     The name parameter is not required to be a NUL-terminated string, and its
-     length should be given by the namelen argument.
+The name parameter is not required to be a NUL-terminated string, and its
+length should be given by the namelen argument.
 
-     The options parameter may be NULL or it may be a set of options
-     appropriate to the query type.
+The options parameter may be NULL or it may be a set of options
+appropriate to the query type.
 
-     The return value is a string appropriate to the query type.  For instance,
-     for the default query type it is just a list of comma-separated IPv4 and
-     IPv6 addresses.  The caller must free the result.
+The return value is a string appropriate to the query type.  For instance,
+for the default query type it is just a list of comma-separated IPv4 and
+IPv6 addresses.  The caller must free the result.
 
-     The length of the result string is returned on success, and a negative
-     error code is returned otherwise.  -EKEYREJECTED will be returned if the
-     DNS lookup failed.
+The length of the result string is returned on success, and a negative
+error code is returned otherwise.  -EKEYREJECTED will be returned if the
+DNS lookup failed.
 
-     If _expiry is non-NULL, the expiry time (TTL) of the result will be
-     returned also.
+If _expiry is non-NULL, the expiry time (TTL) of the result will be
+returned also.
 
 The kernel maintains an internal keyring in which it caches looked up keys.
 This can be cleared by any process that has the CAP_SYS_ADMIN capability by
-- 
An old man doll... just what I always wanted! - Clara


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

* [PATCH net-next 3/3] net: dns_resolver: Fix request-key cross-reference
  2025-09-22  9:56 [PATCH net-next 0/3] dns_resolver docs formatting cleanup Bagas Sanjaya
  2025-09-22  9:56 ` [PATCH net-next 1/3] net: dns_resolver: Use reST bullet list for features list Bagas Sanjaya
  2025-09-22  9:56 ` [PATCH net-next 2/3] net: dns_resolver: Move dns_query() explanation out of code block Bagas Sanjaya
@ 2025-09-22  9:56 ` Bagas Sanjaya
  2025-09-23 10:23   ` Simon Horman
  2 siblings, 1 reply; 10+ messages in thread
From: Bagas Sanjaya @ 2025-09-22  9:56 UTC (permalink / raw)
  To: Linux Kernel Mailing List, Linux Documentation, Linux Networking
  Cc: David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Simon Horman, Jonathan Corbet, Mauro Carvalho Chehab, Kees Cook,
	Bagas Sanjaya

Link to "Key Request Service" docs uses file:// scheme instead due to
angled brackets markup. Fix it to proper cross-reference.

Fixes: 3db38ed76890 ("doc: ReSTify keys-request-key.txt")
Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.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 329fb21d005ccd..18c2af83d5129c 100644
--- a/Documentation/networking/dns_resolver.rst
+++ b/Documentation/networking/dns_resolver.rst
@@ -141,8 +141,8 @@ the key will be discarded and recreated when the data it holds has expired.
 dns_query() returns a copy of the value attached to the key, or an error if
 that is indicated instead.
 
-See <file:Documentation/security/keys/request-key.rst> for further
-information about request-key function.
+See Documentation/security/keys/request-key.rst for further information about
+request-key function.
 
 
 Debugging
-- 
An old man doll... just what I always wanted! - Clara


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

* Re: [PATCH net-next 1/3] net: dns_resolver: Use reST bullet list for features list
  2025-09-22  9:56 ` [PATCH net-next 1/3] net: dns_resolver: Use reST bullet list for features list Bagas Sanjaya
@ 2025-09-23 10:07   ` Simon Horman
  0 siblings, 0 replies; 10+ messages in thread
From: Simon Horman @ 2025-09-23 10:07 UTC (permalink / raw)
  To: Bagas Sanjaya
  Cc: Linux Kernel Mailing List, Linux Documentation, Linux Networking,
	David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Jonathan Corbet, Mauro Carvalho Chehab, Kees Cook

On Mon, Sep 22, 2025 at 04:56:46PM +0700, Bagas Sanjaya wrote:
> Features overview list uses an asterisk in parentheses (``(*)``)
> as bullet list marker, which isn't supported by Sphinx as proper
> bullet. Replace it with just asterisk.
> 
> Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>

Thanks,

I visually inspected the html output in a browser and confirmed
that before '(*)' was rendered, and now a bullet is.

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

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

* Re: [PATCH net-next 2/3] net: dns_resolver: Move dns_query() explanation out of code block
  2025-09-22  9:56 ` [PATCH net-next 2/3] net: dns_resolver: Move dns_query() explanation out of code block Bagas Sanjaya
@ 2025-09-23 10:14   ` Simon Horman
  2025-09-24  0:44     ` Bagas Sanjaya
  2025-09-24  5:00     ` Randy Dunlap
  0 siblings, 2 replies; 10+ messages in thread
From: Simon Horman @ 2025-09-23 10:14 UTC (permalink / raw)
  To: Bagas Sanjaya
  Cc: Linux Kernel Mailing List, Linux Documentation, Linux Networking,
	David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Jonathan Corbet, Mauro Carvalho Chehab, Kees Cook

On Mon, Sep 22, 2025 at 04:56:47PM +0700, Bagas Sanjaya wrote:
> Documentation for dns_query() is placed in the function's literal code
> block snippet instead. Move it out of there.
> 
> Fixes: 9dfe1361261b ("docs: networking: convert dns_resolver.txt to ReST")
> Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>

Thanks, this renders much better. In a browser at least.

I've added a few comments below.

> ---
>  Documentation/networking/dns_resolver.rst | 45 +++++++++++------------
>  1 file changed, 22 insertions(+), 23 deletions(-)
> 
> diff --git a/Documentation/networking/dns_resolver.rst b/Documentation/networking/dns_resolver.rst
> index 5cec37bedf9950..329fb21d005ccd 100644
> --- a/Documentation/networking/dns_resolver.rst
> +++ b/Documentation/networking/dns_resolver.rst
> @@ -64,44 +64,43 @@ before the more general line given above as the first match is the one taken::
>  Usage
>  =====
>  
> -To make use of this facility, one of the following functions that are
> -implemented in the module can be called after doing::
> +To make use of this facility, the appropriate header must be included first::

Maybe: ..., first linux/dns_resolver.h must be included.

>  
>  	#include <linux/dns_resolver.h>
>  
> -     ::
> +Then you can make queries by calling::

Please use imperative mood:

Then queries may be made by calling::

>  
>  	int dns_query(const char *type, const char *name, size_t namelen,
>  		     const char *options, char **_result, time_t *_expiry);
>  
> -     This is the basic access function.  It looks for a cached DNS query and if
> -     it doesn't find it, it upcalls to userspace to make a new DNS query, which
> -     may then be cached.  The key description is constructed as a string of the
> -     form::
> +This is the basic access function.  It looks for a cached DNS query and if
> +it doesn't find it, it upcalls to userspace to make a new DNS query, which
> +may then be cached.  The key description is constructed as a string of the
> +form::
>  
>  		[<type>:]<name>
>  
> -     where <type> optionally specifies the particular upcall program to invoke,
> -     and thus the type of query to do, and <name> specifies the string to be
> -     looked up.  The default query type is a straight hostname to IP address
> -     set lookup.
> +where <type> optionally specifies the particular upcall program to invoke,
> +and thus the type of query to do, and <name> specifies the string to be

I think while we are here "to do" could be removed.
But maybe that's just me.

> +looked up.  The default query type is a straight hostname to IP address
> +set lookup.

...

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

* Re: [PATCH net-next 3/3] net: dns_resolver: Fix request-key cross-reference
  2025-09-22  9:56 ` [PATCH net-next 3/3] net: dns_resolver: Fix request-key cross-reference Bagas Sanjaya
@ 2025-09-23 10:23   ` Simon Horman
  0 siblings, 0 replies; 10+ messages in thread
From: Simon Horman @ 2025-09-23 10:23 UTC (permalink / raw)
  To: Bagas Sanjaya
  Cc: Linux Kernel Mailing List, Linux Documentation, Linux Networking,
	David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Jonathan Corbet, Mauro Carvalho Chehab, Kees Cook

On Mon, Sep 22, 2025 at 04:56:48PM +0700, Bagas Sanjaya wrote:
> Link to "Key Request Service" docs uses file:// scheme instead due to
> angled brackets markup. Fix it to proper cross-reference.
> 
> Fixes: 3db38ed76890 ("doc: ReSTify keys-request-key.txt")
> Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>

Thanks,

I visually inspected the html output in a browser and confirmed
the both the name and link for cross-reference is now correct.

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

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

* Re: [PATCH net-next 2/3] net: dns_resolver: Move dns_query() explanation out of code block
  2025-09-23 10:14   ` Simon Horman
@ 2025-09-24  0:44     ` Bagas Sanjaya
  2025-09-24  5:00     ` Randy Dunlap
  1 sibling, 0 replies; 10+ messages in thread
From: Bagas Sanjaya @ 2025-09-24  0:44 UTC (permalink / raw)
  To: Simon Horman
  Cc: Linux Kernel Mailing List, Linux Documentation, Linux Networking,
	David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Jonathan Corbet, Mauro Carvalho Chehab, Kees Cook

[-- Attachment #1: Type: text/plain, Size: 3014 bytes --]

On Tue, Sep 23, 2025 at 11:14:56AM +0100, Simon Horman wrote:
> On Mon, Sep 22, 2025 at 04:56:47PM +0700, Bagas Sanjaya wrote:
> > Documentation for dns_query() is placed in the function's literal code
> > block snippet instead. Move it out of there.
> > 
> > Fixes: 9dfe1361261b ("docs: networking: convert dns_resolver.txt to ReST")
> > Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>
> 
> Thanks, this renders much better. In a browser at least.
> 
> I've added a few comments below.
> 
> > ---
> >  Documentation/networking/dns_resolver.rst | 45 +++++++++++------------
> >  1 file changed, 22 insertions(+), 23 deletions(-)
> > 
> > diff --git a/Documentation/networking/dns_resolver.rst b/Documentation/networking/dns_resolver.rst
> > index 5cec37bedf9950..329fb21d005ccd 100644
> > --- a/Documentation/networking/dns_resolver.rst
> > +++ b/Documentation/networking/dns_resolver.rst
> > @@ -64,44 +64,43 @@ before the more general line given above as the first match is the one taken::
> >  Usage
> >  =====
> >  
> > -To make use of this facility, one of the following functions that are
> > -implemented in the module can be called after doing::
> > +To make use of this facility, the appropriate header must be included first::
> 
> Maybe: ..., first linux/dns_resolver.h must be included.
> 
> >  
> >  	#include <linux/dns_resolver.h>
> >  
> > -     ::
> > +Then you can make queries by calling::
> 
> Please use imperative mood:
> 
> Then queries may be made by calling::
> 
> >  
> >  	int dns_query(const char *type, const char *name, size_t namelen,
> >  		     const char *options, char **_result, time_t *_expiry);
> >  
> > -     This is the basic access function.  It looks for a cached DNS query and if
> > -     it doesn't find it, it upcalls to userspace to make a new DNS query, which
> > -     may then be cached.  The key description is constructed as a string of the
> > -     form::
> > +This is the basic access function.  It looks for a cached DNS query and if
> > +it doesn't find it, it upcalls to userspace to make a new DNS query, which
> > +may then be cached.  The key description is constructed as a string of the
> > +form::
> >  
> >  		[<type>:]<name>
> >  
> > -     where <type> optionally specifies the particular upcall program to invoke,
> > -     and thus the type of query to do, and <name> specifies the string to be
> > -     looked up.  The default query type is a straight hostname to IP address
> > -     set lookup.
> > +where <type> optionally specifies the particular upcall program to invoke,
> > +and thus the type of query to do, and <name> specifies the string to be
> 
> I think while we are here "to do" could be removed.
> But maybe that's just me.
> 
> > +looked up.  The default query type is a straight hostname to IP address
> > +set lookup.
> 
> ...

Thanks for the wording suggestions! I'll apply them in v2.

-- 
An old man doll... just what I always wanted! - Clara

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

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

* Re: [PATCH net-next 2/3] net: dns_resolver: Move dns_query() explanation out of code block
  2025-09-23 10:14   ` Simon Horman
  2025-09-24  0:44     ` Bagas Sanjaya
@ 2025-09-24  5:00     ` Randy Dunlap
  2025-09-25  9:08       ` Simon Horman
  1 sibling, 1 reply; 10+ messages in thread
From: Randy Dunlap @ 2025-09-24  5:00 UTC (permalink / raw)
  To: Simon Horman, Bagas Sanjaya
  Cc: Linux Kernel Mailing List, Linux Documentation, Linux Networking,
	David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Jonathan Corbet, Mauro Carvalho Chehab, Kees Cook

Hi,

On 9/23/25 3:14 AM, Simon Horman wrote:
> On Mon, Sep 22, 2025 at 04:56:47PM +0700, Bagas Sanjaya wrote:
>> Documentation for dns_query() is placed in the function's literal code
>> block snippet instead. Move it out of there.
>>
>> Fixes: 9dfe1361261b ("docs: networking: convert dns_resolver.txt to ReST")
>> Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>
> 
> Thanks, this renders much better. In a browser at least.Hi
> 
> I've added a few comments below.
> 
>> ---
>>   Documentation/networking/dns_resolver.rst | 45 +++++++++++------------
>>   1 file changed, 22 insertions(+), 23 deletions(-)
>>
>> diff --git a/Documentation/networking/dns_resolver.rst b/Documentation/networking/dns_resolver.rst
>> index 5cec37bedf9950..329fb21d005ccd 100644
>> --- a/Documentation/networking/dns_resolver.rst
>> +++ b/Documentation/networking/dns_resolver.rst
>> @@ -64,44 +64,43 @@ before the more general line given above as the first match is the one taken::
>>   Usage
>>   =====
>>   
>> -To make use of this facility, one of the following functions that are
>> -implemented in the module can be called after doing::
>> +To make use of this facility, the appropriate header must be included first::
> 
> Maybe: ..., first linux/dns_resolver.h must be included.
> 
>>   
>>   	#include <linux/dns_resolver.h>
>>   
>> -     ::
>> +Then you can make queries by calling::
> 
> Please use imperative mood:
> 
> Then queries may be made by calling::
> 

I think imperative mood would be more like:

   Then make queries by calling::

but I'm not asking for a v3 patch.


-- 
~Randy


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

* Re: [PATCH net-next 2/3] net: dns_resolver: Move dns_query() explanation out of code block
  2025-09-24  5:00     ` Randy Dunlap
@ 2025-09-25  9:08       ` Simon Horman
  0 siblings, 0 replies; 10+ messages in thread
From: Simon Horman @ 2025-09-25  9:08 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: Bagas Sanjaya, Linux Kernel Mailing List, Linux Documentation,
	Linux Networking, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Jonathan Corbet, Mauro Carvalho Chehab, Kees Cook

On Tue, Sep 23, 2025 at 10:00:55PM -0700, Randy Dunlap wrote:
> Hi,
> 
> On 9/23/25 3:14 AM, Simon Horman wrote:
> > On Mon, Sep 22, 2025 at 04:56:47PM +0700, Bagas Sanjaya wrote:

...

> > > +Then you can make queries by calling::
> > 
> > Please use imperative mood:
> > 
> > Then queries may be made by calling::
> > 
> 
> I think imperative mood would be more like:
> 
>   Then make queries by calling::
> 
> but I'm not asking for a v3 patch.

Thanks Randy,

Sorry for my incorrect advice.

I also agree that a v3 isn't necessary just for this.

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

end of thread, other threads:[~2025-09-25  9:08 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-22  9:56 [PATCH net-next 0/3] dns_resolver docs formatting cleanup Bagas Sanjaya
2025-09-22  9:56 ` [PATCH net-next 1/3] net: dns_resolver: Use reST bullet list for features list Bagas Sanjaya
2025-09-23 10:07   ` Simon Horman
2025-09-22  9:56 ` [PATCH net-next 2/3] net: dns_resolver: Move dns_query() explanation out of code block Bagas Sanjaya
2025-09-23 10:14   ` Simon Horman
2025-09-24  0:44     ` Bagas Sanjaya
2025-09-24  5:00     ` Randy Dunlap
2025-09-25  9:08       ` Simon Horman
2025-09-22  9:56 ` [PATCH net-next 3/3] net: dns_resolver: Fix request-key cross-reference Bagas Sanjaya
2025-09-23 10:23   ` Simon Horman

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).