All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andrey Ryabinin <aryabinin@virtuozzo.com>
To: Shuah Khan <shuahkh@osg.samsung.com>,
	glider@google.com, dvyukov@google.com
Cc: kasan-dev@googlegroups.com, linux-mm@kvack.org,
	linux-kernel@vger.kernel.org,
	Andrew Morton <akpm@linux-foundation.org>
Subject: Re: [PATCH] kasan: change memory hot-add error messages to info messages
Date: Wed, 1 Jun 2016 18:36:50 +0300	[thread overview]
Message-ID: <574F0112.1060006@virtuozzo.com> (raw)
In-Reply-To: <1464794430-5486-1-git-send-email-shuahkh@osg.samsung.com>



On 06/01/2016 06:20 PM, Shuah Khan wrote:
> Change the following memory hot-add error messages to info messages. There
> is no need for these to be errors.
> 
> [    8.221108] kasan: WARNING: KASAN doesn't support memory hot-add
> [    8.221117] kasan: Memory hot-add will be disabled
> 
> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>

Acked-by: Andrey Ryabinin <aryabinin@virtuozzo.com>

> ---
> Note: This is applicable to 4.6 stable releases.
> 
>  mm/kasan/kasan.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/mm/kasan/kasan.c b/mm/kasan/kasan.c
> index 18b6a2b..28439ac 100644
> --- a/mm/kasan/kasan.c
> +++ b/mm/kasan/kasan.c
> @@ -763,8 +763,8 @@ static int kasan_mem_notifier(struct notifier_block *nb,
>  
>  static int __init kasan_memhotplug_init(void)
>  {
> -	pr_err("WARNING: KASAN doesn't support memory hot-add\n");
> -	pr_err("Memory hot-add will be disabled\n");
> +	pr_info("WARNING: KASAN doesn't support memory hot-add\n");
> +	pr_info("Memory hot-add will be disabled\n");
>  
>  	hotplug_memory_notifier(kasan_mem_notifier, 0);
>  
> 

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

WARNING: multiple messages have this Message-ID (diff)
From: Andrey Ryabinin <aryabinin@virtuozzo.com>
To: Shuah Khan <shuahkh@osg.samsung.com>, <glider@google.com>,
	<dvyukov@google.com>
Cc: <kasan-dev@googlegroups.com>, <linux-mm@kvack.org>,
	<linux-kernel@vger.kernel.org>,
	Andrew Morton <akpm@linux-foundation.org>
Subject: Re: [PATCH] kasan: change memory hot-add error messages to info messages
Date: Wed, 1 Jun 2016 18:36:50 +0300	[thread overview]
Message-ID: <574F0112.1060006@virtuozzo.com> (raw)
In-Reply-To: <1464794430-5486-1-git-send-email-shuahkh@osg.samsung.com>



On 06/01/2016 06:20 PM, Shuah Khan wrote:
> Change the following memory hot-add error messages to info messages. There
> is no need for these to be errors.
> 
> [    8.221108] kasan: WARNING: KASAN doesn't support memory hot-add
> [    8.221117] kasan: Memory hot-add will be disabled
> 
> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>

Acked-by: Andrey Ryabinin <aryabinin@virtuozzo.com>

> ---
> Note: This is applicable to 4.6 stable releases.
> 
>  mm/kasan/kasan.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/mm/kasan/kasan.c b/mm/kasan/kasan.c
> index 18b6a2b..28439ac 100644
> --- a/mm/kasan/kasan.c
> +++ b/mm/kasan/kasan.c
> @@ -763,8 +763,8 @@ static int kasan_mem_notifier(struct notifier_block *nb,
>  
>  static int __init kasan_memhotplug_init(void)
>  {
> -	pr_err("WARNING: KASAN doesn't support memory hot-add\n");
> -	pr_err("Memory hot-add will be disabled\n");
> +	pr_info("WARNING: KASAN doesn't support memory hot-add\n");
> +	pr_info("Memory hot-add will be disabled\n");
>  
>  	hotplug_memory_notifier(kasan_mem_notifier, 0);
>  
> 

  parent reply	other threads:[~2016-06-01 15:36 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-01 15:20 [PATCH] kasan: change memory hot-add error messages to info messages Shuah Khan
2016-06-01 15:20 ` Shuah Khan
2016-06-01 15:22 ` Alexander Potapenko
2016-06-01 15:22   ` Alexander Potapenko
2016-06-01 15:24   ` Shuah Khan
2016-06-01 15:24     ` Shuah Khan
2016-06-01 15:25   ` Alexander Potapenko
2016-06-01 15:25     ` Alexander Potapenko
2016-06-01 15:36 ` Andrey Ryabinin [this message]
2016-06-01 15:36   ` Andrey Ryabinin

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=574F0112.1060006@virtuozzo.com \
    --to=aryabinin@virtuozzo.com \
    --cc=akpm@linux-foundation.org \
    --cc=dvyukov@google.com \
    --cc=glider@google.com \
    --cc=kasan-dev@googlegroups.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=shuahkh@osg.samsung.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 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.