diff options
author | Levin, Alexander (Sasha Levin) <alexander.levin@verizon.com> | 2017-11-15 20:35:58 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-11-15 21:21:05 -0500 |
commit | d8be75663cec0069b85f80191abd2682ce4a512f (patch) | |
tree | 9f239fc2e6c3bedc3c72150ac14ea26b4d191ad3 /mm/slub.c | |
parent | 75f296d93bcebcfe375884ddac79e30263a31766 (diff) |
kmemcheck: remove whats left of NOTRACK flags
Now that kmemcheck is gone, we don't need the NOTRACK flags.
Link: http://lkml.kernel.org/r/20171007030159.22241-5-alexander.levin@verizon.com
Signed-off-by: Sasha Levin <alexander.levin@verizon.com>
Cc: Alexander Potapenko <glider@google.com>
Cc: Eric W. Biederman <ebiederm@xmission.com>
Cc: Michal Hocko <mhocko@kernel.org>
Cc: Pekka Enberg <penberg@kernel.org>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Tim Hansen <devtimhansen@gmail.com>
Cc: Vegard Nossum <vegardno@ifi.uio.no>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/slub.c')
-rw-r--r-- | mm/slub.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -5635,8 +5635,6 @@ static char *create_unique_id(struct kmem_cache *s) | |||
5635 | *p++ = 'a'; | 5635 | *p++ = 'a'; |
5636 | if (s->flags & SLAB_CONSISTENCY_CHECKS) | 5636 | if (s->flags & SLAB_CONSISTENCY_CHECKS) |
5637 | *p++ = 'F'; | 5637 | *p++ = 'F'; |
5638 | if (!(s->flags & SLAB_NOTRACK)) | ||
5639 | *p++ = 't'; | ||
5640 | if (s->flags & SLAB_ACCOUNT) | 5638 | if (s->flags & SLAB_ACCOUNT) |
5641 | *p++ = 'A'; | 5639 | *p++ = 'A'; |
5642 | if (p != name + 1) | 5640 | if (p != name + 1) |