All of lore.kernel.org
 help / color / mirror / Atom feed
From: Federico Vaga <federico.vaga@vaga.pv.it>
To: madhuparnabhowmik04@gmail.com
Cc: corbet@lwn.net, mchehab@kernel.org, linux-doc@vger.kernel.org,
	linux-kernel@vger.kernel.org,
	linux-kernel-mentees@lists.linuxfoundation.org
Subject: Re: [PATCH 2/2] Documentation: kernel-hacking: hacking.rst: Change reference to document namespaces.rst to symbol-namespaces.rst
Date: Wed, 04 Dec 2019 20:49:05 +0100	[thread overview]
Message-ID: <4850753.A3onD7O4GF@harkonnen> (raw)
In-Reply-To: <20191204104554.9100-1-madhuparnabhowmik04@gmail.com>

If you are interested there is a little discussion here about it

https://www.lkml.org/lkml/2019/11/22/1580

On Wednesday, December 4, 2019 11:45:54 AM CET madhuparnabhowmik04@gmail.com 
wrote:
> From: Madhuparna Bhowmik <madhuparnabhowmik04@gmail.com>
> 
> This patch fixes the following documentation build warning:
> Warning: Documentation/kernel-hacking/hacking.rst references
> a file that doesn't exist: Documentation/kbuild/namespaces.rst
> 
> According to the following patch:
> https://patchwork.kernel.org/patch/11178727/
> (doc: move namespaces.rst from kbuild/ to core-api/)
> 
> The file namespaces.rst was moved from kbuild to core-api
> and renamed to symbol-namespaces.rst.
> Therefore, this patch changes the reference to the document
> kbuild/namespaces.rst in hacking.rst to
> core-api/symbol-namespaces.rst
> 
> Signed-off-by: Madhuparna Bhowmik <madhuparnabhowmik04@gmail.com>
> ---
>  Documentation/kernel-hacking/hacking.rst | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/Documentation/kernel-hacking/hacking.rst
> b/Documentation/kernel-hacking/hacking.rst index a3ddb213a5e1..d62aacb2822a
> 100644
> --- a/Documentation/kernel-hacking/hacking.rst
> +++ b/Documentation/kernel-hacking/hacking.rst
> @@ -601,7 +601,7 @@ Defined in ``include/linux/export.h``
> 
>  This is the variant of `EXPORT_SYMBOL()` that allows specifying a symbol
>  namespace. Symbol Namespaces are documented in
> -``Documentation/kbuild/namespaces.rst``.
> +``Documentation/core-api/symbol-namespaces.rst``.
> 
>  :c:func:`EXPORT_SYMBOL_NS_GPL()`
> 
>  --------------------------------
> @@ -610,7 +610,7 @@ Defined in ``include/linux/export.h``
> 
>  This is the variant of `EXPORT_SYMBOL_GPL()` that allows specifying a
> symbol namespace. Symbol Namespaces are documented in
> -``Documentation/kbuild/namespaces.rst``.
> +``Documentation/core-api/symbol-namespaces.rst``.
> 
>  Routines and Conventions
>  ========================





WARNING: multiple messages have this Message-ID (diff)
From: Federico Vaga <federico.vaga@vaga.pv.it>
To: madhuparnabhowmik04@gmail.com
Cc: linux-kernel-mentees@lists.linuxfoundation.org,
	mchehab@kernel.org, linux-doc@vger.kernel.org,
	linux-kernel@vger.kernel.org, corbet@lwn.net
Subject: Re: [Linux-kernel-mentees] [PATCH 2/2] Documentation: kernel-hacking: hacking.rst: Change reference to document namespaces.rst to symbol-namespaces.rst
Date: Wed, 04 Dec 2019 20:49:05 +0100	[thread overview]
Message-ID: <4850753.A3onD7O4GF@harkonnen> (raw)
In-Reply-To: <20191204104554.9100-1-madhuparnabhowmik04@gmail.com>

If you are interested there is a little discussion here about it

https://www.lkml.org/lkml/2019/11/22/1580

On Wednesday, December 4, 2019 11:45:54 AM CET madhuparnabhowmik04@gmail.com 
wrote:
> From: Madhuparna Bhowmik <madhuparnabhowmik04@gmail.com>
> 
> This patch fixes the following documentation build warning:
> Warning: Documentation/kernel-hacking/hacking.rst references
> a file that doesn't exist: Documentation/kbuild/namespaces.rst
> 
> According to the following patch:
> https://patchwork.kernel.org/patch/11178727/
> (doc: move namespaces.rst from kbuild/ to core-api/)
> 
> The file namespaces.rst was moved from kbuild to core-api
> and renamed to symbol-namespaces.rst.
> Therefore, this patch changes the reference to the document
> kbuild/namespaces.rst in hacking.rst to
> core-api/symbol-namespaces.rst
> 
> Signed-off-by: Madhuparna Bhowmik <madhuparnabhowmik04@gmail.com>
> ---
>  Documentation/kernel-hacking/hacking.rst | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/Documentation/kernel-hacking/hacking.rst
> b/Documentation/kernel-hacking/hacking.rst index a3ddb213a5e1..d62aacb2822a
> 100644
> --- a/Documentation/kernel-hacking/hacking.rst
> +++ b/Documentation/kernel-hacking/hacking.rst
> @@ -601,7 +601,7 @@ Defined in ``include/linux/export.h``
> 
>  This is the variant of `EXPORT_SYMBOL()` that allows specifying a symbol
>  namespace. Symbol Namespaces are documented in
> -``Documentation/kbuild/namespaces.rst``.
> +``Documentation/core-api/symbol-namespaces.rst``.
> 
>  :c:func:`EXPORT_SYMBOL_NS_GPL()`
> 
>  --------------------------------
> @@ -610,7 +610,7 @@ Defined in ``include/linux/export.h``
> 
>  This is the variant of `EXPORT_SYMBOL_GPL()` that allows specifying a
> symbol namespace. Symbol Namespaces are documented in
> -``Documentation/kbuild/namespaces.rst``.
> +``Documentation/core-api/symbol-namespaces.rst``.
> 
>  Routines and Conventions
>  ========================




_______________________________________________
Linux-kernel-mentees mailing list
Linux-kernel-mentees@lists.linuxfoundation.org
https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees

  reply	other threads:[~2019-12-04 19:49 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-04 10:45 [PATCH 2/2] Documentation: kernel-hacking: hacking.rst: Change reference to document namespaces.rst to symbol-namespaces.rst madhuparnabhowmik04
2019-12-04 10:45 ` [Linux-kernel-mentees] " madhuparnabhowmik04
2019-12-04 19:49 ` Federico Vaga [this message]
2019-12-04 19:49   ` Federico Vaga
2019-12-04 20:31   ` Madhuparna Bhowmik

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=4850753.A3onD7O4GF@harkonnen \
    --to=federico.vaga@vaga.pv.it \
    --cc=corbet@lwn.net \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel-mentees@lists.linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=madhuparnabhowmik04@gmail.com \
    --cc=mchehab@kernel.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.