mm/kasan: rename kasan_enabled() to kasan_report_enabled()
authorAneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Fri, 6 Nov 2015 02:50:43 +0000 (18:50 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 6 Nov 2015 03:34:48 +0000 (19:34 -0800)
The function only disable/enable reporting.  In the later patch we will be
adding a kasan early enable/disable.  Rename kasan_enabled to properly
reflect its function.

Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Reviewed-by: Andrey Ryabinin <ryabinin.a.a@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/kasan/kasan.h
mm/kasan/report.c

index c242adf6bc8578846e1cc54ad0a931b052668381..a6b46cc94907d1c96fb28173b9026e8f3c30ae9b 100644 (file)
@@ -63,7 +63,7 @@ static inline const void *kasan_shadow_to_mem(const void *shadow_addr)
                << KASAN_SHADOW_SCALE_SHIFT);
 }
 
-static inline bool kasan_enabled(void)
+static inline bool kasan_report_enabled(void)
 {
        return !current->kasan_depth;
 }
index e07c94fbd0ac5a141ecf95ab7d39d046fea13e67..6c3f82b0240b30c4a3f6abac573c904313a713d0 100644 (file)
@@ -220,7 +220,7 @@ void kasan_report(unsigned long addr, size_t size,
 {
        struct kasan_access_info info;
 
-       if (likely(!kasan_enabled()))
+       if (likely(!kasan_report_enabled()))
                return;
 
        info.access_addr = (void *)addr;
This page took 0.026977 seconds and 5 git commands to generate.