diff mbox series

mm/page_poison: update comment after code moved

Message ID 20190207191113.14039-1-mst@redhat.com (mailing list archive)
State New, archived
Headers show
Series mm/page_poison: update comment after code moved | expand

Commit Message

Michael S. Tsirkin Feb. 7, 2019, 7:11 p.m. UTC
mm/debug-pagealloc.c is no more, so of course header now needs to be
updated. This seems like something checkpatch should be
able to catch - worth looking into?

Cc: trivial@kernel.org
Cc: linux-mm@kvack.org
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: akpm@linux-foundation.org
Fixes: 8823b1dbc05f ("mm/page_poison.c: enable PAGE_POISONING as a separate option")
---
 include/linux/poison.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Andrew Morton Feb. 8, 2019, 5:01 a.m. UTC | #1
On Thu, 7 Feb 2019 14:11:16 -0500 "Michael S. Tsirkin" <mst@redhat.com> wrote:

> mm/debug-pagealloc.c is no more, so of course header now needs to be
> updated. This seems like something checkpatch should be
> able to catch - worth looking into?
> 
> Cc: trivial@kernel.org
> Cc: linux-mm@kvack.org
> Cc: Linus Torvalds <torvalds@linux-foundation.org>
> Cc: akpm@linux-foundation.org
> Fixes: 8823b1dbc05f ("mm/page_poison.c: enable PAGE_POISONING as a separate option")

Please send along a signed-off-by: for this.
Michael S. Tsirkin Feb. 8, 2019, 5:53 a.m. UTC | #2
On Thu, Feb 07, 2019 at 09:01:41PM -0800, Andrew Morton wrote:
> On Thu, 7 Feb 2019 14:11:16 -0500 "Michael S. Tsirkin" <mst@redhat.com> wrote:
> 
> > mm/debug-pagealloc.c is no more, so of course header now needs to be
> > updated. This seems like something checkpatch should be
> > able to catch - worth looking into?
> > 
> > Cc: trivial@kernel.org
> > Cc: linux-mm@kvack.org
> > Cc: Linus Torvalds <torvalds@linux-foundation.org>
> > Cc: akpm@linux-foundation.org
> > Fixes: 8823b1dbc05f ("mm/page_poison.c: enable PAGE_POISONING as a separate option")
> 
> Please send along a signed-off-by: for this.

Oh sorry.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

Good enough or should I repost?
diff mbox series

Patch

diff --git a/include/linux/poison.h b/include/linux/poison.h
index 15927ebc22f2..5046bad0c1c5 100644
--- a/include/linux/poison.h
+++ b/include/linux/poison.h
@@ -30,7 +30,7 @@ 
  */
 #define TIMER_ENTRY_STATIC	((void *) 0x300 + POISON_POINTER_DELTA)
 
-/********** mm/debug-pagealloc.c **********/
+/********** mm/page_poison.c **********/
 #ifdef CONFIG_PAGE_POISONING_ZERO
 #define PAGE_POISON 0x00
 #else