summaryrefslogtreecommitdiffstats
path: root/crypto/xor.c
diff options
context:
space:
mode:
authorLevin, Alexander (Sasha Levin) <alexander.levin@verizon.com>2017-11-15 20:35:54 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2017-11-15 21:21:04 -0500
commit75f296d93bcebcfe375884ddac79e30263a31766 (patch)
treed536ce2a9f7837c26644e14a0ea2ab7b01c07fed /crypto/xor.c
parent4950276672fce5c241857540f8561c440663673d (diff)
kmemcheck: stop using GFP_NOTRACK and SLAB_NOTRACK
Convert all allocations that used a NOTRACK flag to stop using it. Link: http://lkml.kernel.org/r/20171007030159.22241-3-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 'crypto/xor.c')
-rw-r--r--crypto/xor.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/crypto/xor.c b/crypto/xor.c
index 263af9fb45ea..bce9fe7af40a 100644
--- a/crypto/xor.c
+++ b/crypto/xor.c
@@ -122,12 +122,7 @@ calibrate_xor_blocks(void)
122 goto out; 122 goto out;
123 } 123 }
124 124
125 /* 125 b1 = (void *) __get_free_pages(GFP_KERNEL, 2);
126 * Note: Since the memory is not actually used for _anything_ but to
127 * test the XOR speed, we don't really want kmemcheck to warn about
128 * reading uninitialized bytes here.
129 */
130 b1 = (void *) __get_free_pages(GFP_KERNEL | __GFP_NOTRACK, 2);
131 if (!b1) { 126 if (!b1) {
132 printk(KERN_WARNING "xor: Yikes! No memory available.\n"); 127 printk(KERN_WARNING "xor: Yikes! No memory available.\n");
133 return -ENOMEM; 128 return -ENOMEM;