All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kasan: use IS_ALIGNED in memory_is_poisoned_8()
@ 2015-09-11  2:02 ` Xishi Qiu
  0 siblings, 0 replies; 8+ messages in thread
From: Xishi Qiu @ 2015-09-11  2:02 UTC (permalink / raw)
  To: Andrew Morton, Andrey Konovalov, Rusty Russell, Michal Marek,
	long.wanglong
  Cc: Linux MM, LKML

Use IS_ALIGNED() to determine whether the shadow span two bytes.
It generates less code and more readable.

Signed-off-by: Xishi Qiu <qiuxishi@huawei.com>
---
 mm/kasan/kasan.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mm/kasan/kasan.c b/mm/kasan/kasan.c
index 7b28e9c..c6ddff1 100644
--- a/mm/kasan/kasan.c
+++ b/mm/kasan/kasan.c
@@ -120,7 +120,7 @@ static __always_inline bool memory_is_poisoned_8(unsigned long addr)
 		if (memory_is_poisoned_1(addr + 7))
 			return true;
 
-		if (likely(((addr + 7) & KASAN_SHADOW_MASK) >= 7))
+		if (likely(IS_ALIGNED(addr, 8)))
 			return false;
 
 		return unlikely(*(u8 *)shadow_addr);
-- 
2.0.0



^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2015-09-14 13:19 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-11  2:02 [PATCH] kasan: use IS_ALIGNED in memory_is_poisoned_8() Xishi Qiu
2015-09-11  2:02 ` Xishi Qiu
2015-09-11 22:47 ` Andrew Morton
2015-09-11 22:47   ` Andrew Morton
2015-09-14  1:17   ` Xishi Qiu
2015-09-14  1:17     ` Xishi Qiu
2015-09-14 13:19   ` Andrey Ryabinin
2015-09-14 13:19     ` Andrey Ryabinin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.