diff mbox series

[v2,5/5] mm: Remove stale comment from page struct

Message ID 20190313052030.13392-6-tobin@kernel.org (mailing list archive)
State New, archived
Headers show
Series ] mm: Use slab_list list_head instead of lru | expand

Commit Message

Tobin C. Harding March 13, 2019, 5:20 a.m. UTC
We now use the slab_list list_head instead of the lru list_head.  This
comment has become stale.

Remove stale comment from page struct slab_list list_head.

Signed-off-by: Tobin C. Harding <tobin@kernel.org>
---
 include/linux/mm_types.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Christoph Lameter (Ampere) March 13, 2019, 7:05 p.m. UTC | #1
Acked-by: Christoph Lameter <cl@linux.com>
diff mbox series

Patch

diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h
index 7eade9132f02..63a34e3d7c29 100644
--- a/include/linux/mm_types.h
+++ b/include/linux/mm_types.h
@@ -103,7 +103,7 @@  struct page {
 		};
 		struct {	/* slab, slob and slub */
 			union {
-				struct list_head slab_list;	/* uses lru */
+				struct list_head slab_list;
 				struct {	/* Partial pages */
 					struct page *next;
 #ifdef CONFIG_64BIT