All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andrey Konovalov <andreyknvl@google.com>
To: Andrey Ryabinin <aryabinin@virtuozzo.com>,
	Alexander Potapenko <glider@google.com>,
	Dmitry Vyukov <dvyukov@google.com>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Will Deacon <will.deacon@arm.com>,
	Christoph Lameter <cl@linux.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Mark Rutland <mark.rutland@arm.com>,
	Nick Desaulniers <ndesaulniers@google.com>,
	Marc Zyngier <marc.zyngier@arm.com>,
	Dave Martin <dave.martin@arm.com>,
	Ard Biesheuvel <ard.biesheuvel@linaro.org>,
	"Eric W . Biederman" <ebiederm@xmission.com>,
	Ingo Molnar <mingo@kernel.org>,
	Paul Lawrence <paullawrence@google.com>,
	Geert Uytterhoeven <geert@linux-m68k.org>,
	Arnd Bergmann <arnd@arndb.de>,
	"Kirill A . Shutemov" <kirill.shutemov@linux.intel.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Kate Stewart <kstewart@linuxfoundation.org>,
	Mike Rapoport <rppt@linux.vnet.ibm.com>,
	kasan-dev@googlegroups.com, linux-doc@vger.kernel.org,
	linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-sparse@vger.kernel.org, linux-mm@kvack.org,
	linux-kbuild@vger.kernel.org
Cc: Kostya Serebryany <kcc@google.com>,
	Evgeniy Stepanov <eugenis@google.com>,
	Lee Smith <Lee.Smith@arm.com>,
	Ramana Radhakrishnan <Ramana.Radhakrishnan@arm.com>,
	Jacob Bramley <Jacob.Bramley@arm.com>,
	Ruben Ayrapetyan <Ruben.Ayrapetyan@arm.com>,
	Jann Horn <jannh@google.com>, Mark Brand <markbrand@google.com>,
	Chintan Pandya <cpandya@codeaurora.org>,
	Andrey Konovalov <andreyknvl@google.com>
Subject: [PATCH v4 09/17] khwasan, arm64: enable top byte ignore for the kernel
Date: Tue, 26 Jun 2018 15:15:19 +0200	[thread overview]
Message-ID: <82571a6721547446b789f759f93bf7f3930541be.1530018818.git.andreyknvl@google.com> (raw)
In-Reply-To: <cover.1530018818.git.andreyknvl@google.com>

KHWASAN uses the Top Byte Ignore feature of arm64 CPUs to store a pointer
tag in the top byte of each pointer. This commit enables the TCR_TBI1 bit,
which enables Top Byte Ignore for the kernel, when KHWASAN is used.

Signed-off-by: Andrey Konovalov <andreyknvl@google.com>
---
 arch/arm64/include/asm/pgtable-hwdef.h | 1 +
 arch/arm64/mm/proc.S                   | 8 +++++++-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/arch/arm64/include/asm/pgtable-hwdef.h b/arch/arm64/include/asm/pgtable-hwdef.h
index fd208eac9f2a..483aceedad76 100644
--- a/arch/arm64/include/asm/pgtable-hwdef.h
+++ b/arch/arm64/include/asm/pgtable-hwdef.h
@@ -289,6 +289,7 @@
 #define TCR_A1			(UL(1) << 22)
 #define TCR_ASID16		(UL(1) << 36)
 #define TCR_TBI0		(UL(1) << 37)
+#define TCR_TBI1		(UL(1) << 38)
 #define TCR_HA			(UL(1) << 39)
 #define TCR_HD			(UL(1) << 40)
 #define TCR_NFD1		(UL(1) << 54)
diff --git a/arch/arm64/mm/proc.S b/arch/arm64/mm/proc.S
index 03646e6a2ef4..c5175e098d02 100644
--- a/arch/arm64/mm/proc.S
+++ b/arch/arm64/mm/proc.S
@@ -47,6 +47,12 @@
 /* PTWs cacheable, inner/outer WBWA */
 #define TCR_CACHE_FLAGS	TCR_IRGN_WBWA | TCR_ORGN_WBWA
 
+#ifdef CONFIG_KASAN_HW
+#define TCR_KASAN_FLAGS TCR_TBI1
+#else
+#define TCR_KASAN_FLAGS 0
+#endif
+
 #define MAIR(attr, mt)	((attr) << ((mt) * 8))
 
 /*
@@ -440,7 +446,7 @@ ENTRY(__cpu_setup)
 	 */
 	ldr	x10, =TCR_TxSZ(VA_BITS) | TCR_CACHE_FLAGS | TCR_SMP_FLAGS | \
 			TCR_TG_FLAGS | TCR_KASLR_FLAGS | TCR_ASID16 | \
-			TCR_TBI0 | TCR_A1
+			TCR_TBI0 | TCR_A1 | TCR_KASAN_FLAGS
 	tcr_set_idmap_t0sz	x10, x9
 
 	/*
-- 
2.18.0.rc2.346.g013aa6912e-goog


WARNING: multiple messages have this Message-ID (diff)
From: Andrey Konovalov <andreyknvl@google.com>
To: Andrey Ryabinin <aryabinin@virtuozzo.com>,
	Alexander Potapenko <glider@google.com>,
	Dmitry Vyukov <dvyukov@google.com>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Will Deacon <will.deacon@arm.com>,
	Christoph Lameter <cl@linux.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Mark Rutland <mark.rutland@arm.com>,
	Nick Desaulniers <ndesaulniers@google.com>,
	Marc Zyngier <marc.zyngier@arm.com>,
	Dave Martin <dave.martin@arm.com>,
	Ard Biesheuvel <ard.biesheuvel@linaro.org>,
	"Eric W . Biederman" <ebiederm@xmission.com>,
	Ingo Molnar <mingo@kernel.org>,
	Paul Lawrence <paullawrence@google.com>,
	Geert Uytterhoeven <geert@linux-m68k.org>,
	Arnd Bergmann <arnd@arndb.de>,
	"Kirill A . Shutemov" <kirill.shutemov@linux.intel.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Kate Stewart <kstewart@linuxfoundation.org>,
	Mike Rapoport <rppt@linux.vnet.ibm.com>,
	kasan-dev@googlegroups.com, linux-doc@vger.kernel.org,
	linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-sparse@vger.kernel.org, linux-mm@kvack.org,
	linux-kbuild@vger.kernel.org
Cc: Kostya Serebryany <kcc@google.com>,
	Evgeniy Stepanov <eugenis@google.com>,
	Lee Smith <Lee.Smith@arm.com>,
	Ramana Radhakrishnan <Ramana.Radhakrishnan@arm.com>,
	Jacob Bramley <Jacob.Bramley@arm.com>,
	Ruben Ayrapetyan <Ruben.Ayrapetyan@arm.com>,
	Jann Horn <jannh@google.com>, Mark Brand <markbrand@google.com>,
	Chintan Pandya <cpandya@codeaurora.org>,
	Andrey Konovalov <andreyknvl@google.com>
Subject: [PATCH v4 09/17] khwasan, arm64: enable top byte ignore for the kernel
Date: Tue, 26 Jun 2018 15:15:19 +0200	[thread overview]
Message-ID: <82571a6721547446b789f759f93bf7f3930541be.1530018818.git.andreyknvl@google.com> (raw)
In-Reply-To: <cover.1530018818.git.andreyknvl@google.com>

KHWASAN uses the Top Byte Ignore feature of arm64 CPUs to store a pointer
tag in the top byte of each pointer. This commit enables the TCR_TBI1 bit,
which enables Top Byte Ignore for the kernel, when KHWASAN is used.

Signed-off-by: Andrey Konovalov <andreyknvl@google.com>
---
 arch/arm64/include/asm/pgtable-hwdef.h | 1 +
 arch/arm64/mm/proc.S                   | 8 +++++++-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/arch/arm64/include/asm/pgtable-hwdef.h b/arch/arm64/include/asm/pgtable-hwdef.h
index fd208eac9f2a..483aceedad76 100644
--- a/arch/arm64/include/asm/pgtable-hwdef.h
+++ b/arch/arm64/include/asm/pgtable-hwdef.h
@@ -289,6 +289,7 @@
 #define TCR_A1			(UL(1) << 22)
 #define TCR_ASID16		(UL(1) << 36)
 #define TCR_TBI0		(UL(1) << 37)
+#define TCR_TBI1		(UL(1) << 38)
 #define TCR_HA			(UL(1) << 39)
 #define TCR_HD			(UL(1) << 40)
 #define TCR_NFD1		(UL(1) << 54)
diff --git a/arch/arm64/mm/proc.S b/arch/arm64/mm/proc.S
index 03646e6a2ef4..c5175e098d02 100644
--- a/arch/arm64/mm/proc.S
+++ b/arch/arm64/mm/proc.S
@@ -47,6 +47,12 @@
 /* PTWs cacheable, inner/outer WBWA */
 #define TCR_CACHE_FLAGS	TCR_IRGN_WBWA | TCR_ORGN_WBWA
 
+#ifdef CONFIG_KASAN_HW
+#define TCR_KASAN_FLAGS TCR_TBI1
+#else
+#define TCR_KASAN_FLAGS 0
+#endif
+
 #define MAIR(attr, mt)	((attr) << ((mt) * 8))
 
 /*
@@ -440,7 +446,7 @@ ENTRY(__cpu_setup)
 	 */
 	ldr	x10, =TCR_TxSZ(VA_BITS) | TCR_CACHE_FLAGS | TCR_SMP_FLAGS | \
 			TCR_TG_FLAGS | TCR_KASLR_FLAGS | TCR_ASID16 | \
-			TCR_TBI0 | TCR_A1
+			TCR_TBI0 | TCR_A1 | TCR_KASAN_FLAGS
 	tcr_set_idmap_t0sz	x10, x9
 
 	/*
-- 
2.18.0.rc2.346.g013aa6912e-goog

--
To unsubscribe from this list: send the line "unsubscribe linux-doc" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

WARNING: multiple messages have this Message-ID (diff)
From: andreyknvl@google.com (Andrey Konovalov)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v4 09/17] khwasan, arm64: enable top byte ignore for the kernel
Date: Tue, 26 Jun 2018 15:15:19 +0200	[thread overview]
Message-ID: <82571a6721547446b789f759f93bf7f3930541be.1530018818.git.andreyknvl@google.com> (raw)
In-Reply-To: <cover.1530018818.git.andreyknvl@google.com>

KHWASAN uses the Top Byte Ignore feature of arm64 CPUs to store a pointer
tag in the top byte of each pointer. This commit enables the TCR_TBI1 bit,
which enables Top Byte Ignore for the kernel, when KHWASAN is used.

Signed-off-by: Andrey Konovalov <andreyknvl@google.com>
---
 arch/arm64/include/asm/pgtable-hwdef.h | 1 +
 arch/arm64/mm/proc.S                   | 8 +++++++-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/arch/arm64/include/asm/pgtable-hwdef.h b/arch/arm64/include/asm/pgtable-hwdef.h
index fd208eac9f2a..483aceedad76 100644
--- a/arch/arm64/include/asm/pgtable-hwdef.h
+++ b/arch/arm64/include/asm/pgtable-hwdef.h
@@ -289,6 +289,7 @@
 #define TCR_A1			(UL(1) << 22)
 #define TCR_ASID16		(UL(1) << 36)
 #define TCR_TBI0		(UL(1) << 37)
+#define TCR_TBI1		(UL(1) << 38)
 #define TCR_HA			(UL(1) << 39)
 #define TCR_HD			(UL(1) << 40)
 #define TCR_NFD1		(UL(1) << 54)
diff --git a/arch/arm64/mm/proc.S b/arch/arm64/mm/proc.S
index 03646e6a2ef4..c5175e098d02 100644
--- a/arch/arm64/mm/proc.S
+++ b/arch/arm64/mm/proc.S
@@ -47,6 +47,12 @@
 /* PTWs cacheable, inner/outer WBWA */
 #define TCR_CACHE_FLAGS	TCR_IRGN_WBWA | TCR_ORGN_WBWA
 
+#ifdef CONFIG_KASAN_HW
+#define TCR_KASAN_FLAGS TCR_TBI1
+#else
+#define TCR_KASAN_FLAGS 0
+#endif
+
 #define MAIR(attr, mt)	((attr) << ((mt) * 8))
 
 /*
@@ -440,7 +446,7 @@ ENTRY(__cpu_setup)
 	 */
 	ldr	x10, =TCR_TxSZ(VA_BITS) | TCR_CACHE_FLAGS | TCR_SMP_FLAGS | \
 			TCR_TG_FLAGS | TCR_KASLR_FLAGS | TCR_ASID16 | \
-			TCR_TBI0 | TCR_A1
+			TCR_TBI0 | TCR_A1 | TCR_KASAN_FLAGS
 	tcr_set_idmap_t0sz	x10, x9
 
 	/*
-- 
2.18.0.rc2.346.g013aa6912e-goog

  parent reply	other threads:[~2018-06-26 13:18 UTC|newest]

Thread overview: 257+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-26 13:15 [PATCH v4 00/17] khwasan: kernel hardware assisted address sanitizer Andrey Konovalov
2018-06-26 13:15 ` Andrey Konovalov
2018-06-26 13:15 ` Andrey Konovalov
2018-06-26 13:15 ` Andrey Konovalov
2018-06-26 13:15 ` [PATCH v4 01/17] khwasan, mm: change kasan hooks signatures Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15 ` [PATCH v4 02/17] khwasan: move common kasan and khwasan code to common.c Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15 ` [PATCH v4 03/17] khwasan: add CONFIG_KASAN_GENERIC and CONFIG_KASAN_HW Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15 ` [PATCH v4 04/17] khwasan, arm64: adjust shadow size for CONFIG_KASAN_HW Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15 ` [PATCH v4 05/17] khwasan: initialize shadow to 0xff Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15 ` [PATCH v4 06/17] khwasan, arm64: untag virt address in __kimg_to_phys and _virt_addr_is_linear Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15 ` [PATCH v4 07/17] khwasan: add tag related helper functions Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15 ` [PATCH v4 08/17] khwasan, arm64: fix up fault handling logic Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15 ` Andrey Konovalov [this message]
2018-06-26 13:15   ` [PATCH v4 09/17] khwasan, arm64: enable top byte ignore for the kernel Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15 ` [PATCH v4 10/17] khwasan, mm: perform untagged pointers comparison in krealloc Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15 ` [PATCH v4 11/17] khwasan: split out kasan_report.c from report.c Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15 ` [PATCH v4 12/17] khwasan: add bug reporting routines Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15 ` [PATCH v4 13/17] khwasan: add hooks implementation Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-07-25 13:44   ` Vincenzo Frascino@Foss
2018-07-25 13:44     ` Vincenzo Frascino@Foss
2018-07-25 13:44     ` Vincenzo Frascino@Foss
2018-07-31 13:05     ` Andrey Konovalov
2018-07-31 13:05       ` Andrey Konovalov
2018-07-31 13:05       ` Andrey Konovalov
2018-07-31 13:05       ` Andrey Konovalov
2018-07-31 14:50       ` Andrey Ryabinin
2018-07-31 14:50         ` Andrey Ryabinin
2018-07-31 14:50         ` Andrey Ryabinin
2018-07-31 14:50         ` Andrey Ryabinin
2018-07-31 15:03         ` Dmitry Vyukov
2018-07-31 15:03           ` Dmitry Vyukov
2018-07-31 15:03           ` Dmitry Vyukov
2018-07-31 15:03           ` Dmitry Vyukov
2018-07-31 15:38           ` Christopher Lameter
2018-07-31 15:38             ` Christopher Lameter
2018-07-31 15:38             ` Christopher Lameter
2018-07-31 15:38             ` Christopher Lameter
2018-07-31 16:03             ` Dmitry Vyukov
2018-07-31 16:03               ` Dmitry Vyukov
2018-07-31 16:03               ` Dmitry Vyukov
2018-07-31 16:03               ` Dmitry Vyukov
2018-07-31 16:04           ` Andrey Ryabinin
2018-07-31 16:04             ` Andrey Ryabinin
2018-07-31 16:04             ` Andrey Ryabinin
2018-07-31 16:04             ` Andrey Ryabinin
2018-07-31 16:08             ` Dmitry Vyukov
2018-07-31 16:08               ` Dmitry Vyukov
2018-07-31 16:08               ` Dmitry Vyukov
2018-07-31 16:08               ` Dmitry Vyukov
2018-07-31 16:18               ` Andrey Ryabinin
2018-07-31 16:18                 ` Andrey Ryabinin
2018-07-31 16:18                 ` Andrey Ryabinin
2018-07-31 16:18                 ` Andrey Ryabinin
2018-07-31 15:21         ` Andrey Konovalov
2018-07-31 15:21           ` Andrey Konovalov
2018-07-31 15:21           ` Andrey Konovalov
2018-07-31 15:21           ` Andrey Konovalov
2018-06-26 13:15 ` [PATCH v4 14/17] khwasan, arm64: add brk handler for inline instrumentation Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15 ` [PATCH v4 15/17] khwasan, mm, arm64: tag non slab memory allocated via pagealloc Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15 ` [PATCH v4 16/17] khwasan: update kasan documentation Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15 ` [PATCH v4 17/17] kasan: add SPDX-License-Identifier mark to source files Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-26 13:15   ` Andrey Konovalov
2018-06-27 23:08 ` [PATCH v4 00/17] khwasan: kernel hardware assisted address sanitizer Andrew Morton
2018-06-27 23:08   ` Andrew Morton
2018-06-27 23:08   ` Andrew Morton
2018-06-27 23:08   ` Andrew Morton
2018-06-28  0:04   ` Kostya Serebryany
2018-06-28  0:04     ` Kostya Serebryany
2018-06-28  0:04     ` Kostya Serebryany
2018-06-28  0:04     ` Kostya Serebryany
2018-06-28  0:59     ` Vishwath Mohan
2018-06-28  1:11       ` Andrew Morton
2018-06-28  1:11         ` Andrew Morton
2018-06-28  1:11         ` Andrew Morton
2018-06-28  1:11         ` Andrew Morton
2018-06-28 18:26         ` Andrey Konovalov
2018-06-28 18:26           ` Andrey Konovalov
2018-06-28 18:26           ` Andrey Konovalov
2018-06-28 18:26           ` Andrey Konovalov
2018-06-28  7:01     ` Geert Uytterhoeven
2018-06-28  7:01       ` Geert Uytterhoeven
2018-06-28  7:01       ` Geert Uytterhoeven
2018-06-28  7:01       ` Geert Uytterhoeven
2018-07-02 20:33     ` Matthew Wilcox
2018-07-02 20:33       ` Matthew Wilcox
2018-07-02 20:33       ` Matthew Wilcox
2018-07-02 20:33       ` Matthew Wilcox
2018-07-02 23:39       ` Evgenii Stepanov
2018-07-02 23:39         ` Evgenii Stepanov
2018-07-02 23:39         ` Evgenii Stepanov
2018-07-02 23:39         ` Evgenii Stepanov
2018-06-28 18:29   ` Andrey Konovalov
2018-06-28 18:29     ` Andrey Konovalov
2018-06-28 18:29     ` Andrey Konovalov
2018-06-28 18:29     ` Andrey Konovalov
2018-06-28 19:40     ` Andrew Morton
2018-06-28 19:40       ` Andrew Morton
2018-06-28 19:40       ` Andrew Morton
2018-06-28 19:40       ` Andrew Morton
2018-06-29 12:45       ` Andrey Konovalov
2018-06-29 12:45         ` Andrey Konovalov
2018-06-29 12:45         ` Andrey Konovalov
2018-06-29 12:45         ` Andrey Konovalov
2018-06-29 13:01         ` Mark Rutland
2018-06-29 13:01           ` Mark Rutland
2018-06-29 13:01           ` Mark Rutland
2018-06-29 13:01           ` Mark Rutland
2018-06-29 14:40           ` Andrey Konovalov
2018-06-29 14:40             ` Andrey Konovalov
2018-06-29 14:40             ` Andrey Konovalov
2018-06-29 14:40             ` Andrey Konovalov
2018-06-30  2:41         ` Andrew Morton
2018-06-30  2:41           ` Andrew Morton
2018-06-30  2:41           ` Andrew Morton
2018-06-30  2:41           ` Andrew Morton
2018-07-02 19:16           ` Evgenii Stepanov
2018-07-02 19:16             ` Evgenii Stepanov
2018-07-02 19:16             ` Evgenii Stepanov
2018-07-02 19:16             ` Evgenii Stepanov
2018-07-02 19:21             ` Andrew Morton
2018-07-02 19:21               ` Andrew Morton
2018-07-02 19:21               ` Andrew Morton
2018-07-02 19:21               ` Andrew Morton
2018-07-02 20:22               ` Evgenii Stepanov
2018-07-02 20:22                 ` Evgenii Stepanov
2018-07-02 20:22                 ` Evgenii Stepanov
2018-07-02 20:22                 ` Evgenii Stepanov
2018-07-02 20:30                 ` Andrew Morton
2018-07-02 20:30                   ` Andrew Morton
2018-07-02 20:30                   ` Andrew Morton
2018-07-02 20:30                   ` Andrew Morton
2018-07-05 21:02                 ` Nick Desaulniers
2018-06-28 10:51 ` Dave Martin
2018-06-28 10:51   ` Dave Martin
2018-06-28 10:51   ` Dave Martin
2018-06-28 10:51   ` Dave Martin
2018-06-28 18:56   ` Andrey Konovalov
2018-06-28 18:56     ` Andrey Konovalov
2018-06-28 18:56     ` Andrey Konovalov
2018-06-28 18:56     ` Andrey Konovalov
2018-06-29 10:14     ` Mark Rutland
2018-06-29 10:14       ` Mark Rutland
2018-06-29 10:14       ` Mark Rutland
2018-06-29 10:14       ` Mark Rutland
2018-06-29 11:04     ` Dave Martin
2018-06-29 11:04       ` Dave Martin
2018-06-29 11:04       ` Dave Martin
2018-06-29 11:04       ` Dave Martin
2018-06-29 11:26       ` Luc Van Oostenryck
2018-06-29 11:26         ` Luc Van Oostenryck
2018-06-29 11:26         ` Luc Van Oostenryck
2018-06-29 11:26         ` Luc Van Oostenryck
2018-06-29 13:18         ` Andrey Konovalov
2018-06-29 13:18           ` Andrey Konovalov
2018-06-29 13:18           ` Andrey Konovalov
2018-06-29 13:18           ` Andrey Konovalov
2018-06-29 13:42         ` Dan Carpenter
2018-06-29 13:42           ` Dan Carpenter
2018-06-29 13:42           ` Dan Carpenter
2018-06-29 13:42           ` Dan Carpenter
2018-06-29 11:07     ` Catalin Marinas
2018-06-29 11:07       ` Catalin Marinas
2018-06-29 11:07       ` Catalin Marinas
2018-06-29 11:07       ` Catalin Marinas
2018-06-29 11:07     ` Will Deacon
2018-06-29 11:07       ` Will Deacon
2018-06-29 11:07       ` Will Deacon
2018-06-29 11:07       ` Will Deacon
2018-06-29 16:36       ` Andrey Konovalov
2018-06-29 16:36         ` Andrey Konovalov
2018-06-29 16:36         ` Andrey Konovalov
2018-06-29 16:36         ` Andrey Konovalov
2018-07-03 17:36         ` Will Deacon
2018-07-03 17:36           ` Will Deacon
2018-07-03 17:36           ` Will Deacon
2018-07-03 17:36           ` Will Deacon
2018-07-18 17:16           ` Andrey Konovalov
2018-07-18 17:16             ` Andrey Konovalov
2018-07-18 17:16             ` Andrey Konovalov
2018-07-18 17:16             ` Andrey Konovalov
2018-07-31 13:22             ` Andrey Konovalov
2018-07-31 13:22               ` Andrey Konovalov
2018-07-31 13:22               ` Andrey Konovalov
2018-07-31 13:22               ` Andrey Konovalov
2018-08-01 16:35               ` Will Deacon
2018-08-01 16:35                 ` Will Deacon
2018-08-01 16:35                 ` Will Deacon
2018-08-01 16:35                 ` Will Deacon
2018-08-01 16:52                 ` Dmitry Vyukov
2018-08-01 16:52                   ` Dmitry Vyukov
2018-08-01 16:52                   ` Dmitry Vyukov
2018-08-01 16:52                   ` Dmitry Vyukov
2018-08-02 11:10                   ` Catalin Marinas
2018-08-02 11:10                     ` Catalin Marinas
2018-08-02 11:10                     ` Catalin Marinas
2018-08-02 11:10                     ` Catalin Marinas
2018-08-02 11:36                     ` Dmitry Vyukov
2018-08-02 11:36                       ` Dmitry Vyukov
2018-08-02 11:36                       ` Dmitry Vyukov
2018-08-02 11:36                       ` Dmitry Vyukov
2018-08-02 13:52                       ` Catalin Marinas
2018-08-02 13:52                         ` Catalin Marinas
2018-08-02 13:52                         ` Catalin Marinas
2018-08-02 13:52                         ` Catalin Marinas
2018-08-02 14:11                         ` Andrey Ryabinin
2018-08-02 14:11                           ` Andrey Ryabinin
2018-08-02 14:11                           ` Andrey Ryabinin
2018-08-02 14:11                           ` Andrey Ryabinin
2018-08-03  9:23                   ` Will Deacon
2018-08-03  9:23                     ` Will Deacon
2018-08-03  9:23                     ` Will Deacon
2018-08-03  9:23                     ` Will Deacon
2018-08-03  9:42                     ` Dmitry Vyukov
2018-08-03  9:42                       ` Dmitry Vyukov
2018-08-03  9:42                       ` Dmitry Vyukov
2018-08-03  9:42                       ` Dmitry Vyukov
2018-08-08 16:27                       ` Will Deacon
2018-08-08 16:27                         ` Will Deacon
2018-08-08 16:27                         ` Will Deacon
2018-08-08 16:27                         ` Will Deacon
2018-08-08 16:53                         ` Dmitry Vyukov
2018-08-08 16:53                           ` Dmitry Vyukov
2018-08-08 16:53                           ` Dmitry Vyukov
2018-08-08 16:53                           ` Dmitry Vyukov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=82571a6721547446b789f759f93bf7f3930541be.1530018818.git.andreyknvl@google.com \
    --to=andreyknvl@google.com \
    --cc=Jacob.Bramley@arm.com \
    --cc=Lee.Smith@arm.com \
    --cc=Ramana.Radhakrishnan@arm.com \
    --cc=Ruben.Ayrapetyan@arm.com \
    --cc=akpm@linux-foundation.org \
    --cc=ard.biesheuvel@linaro.org \
    --cc=arnd@arndb.de \
    --cc=aryabinin@virtuozzo.com \
    --cc=catalin.marinas@arm.com \
    --cc=cl@linux.com \
    --cc=cpandya@codeaurora.org \
    --cc=dave.martin@arm.com \
    --cc=dvyukov@google.com \
    --cc=ebiederm@xmission.com \
    --cc=eugenis@google.com \
    --cc=geert@linux-m68k.org \
    --cc=glider@google.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=jannh@google.com \
    --cc=kasan-dev@googlegroups.com \
    --cc=kcc@google.com \
    --cc=kirill.shutemov@linux.intel.com \
    --cc=kstewart@linuxfoundation.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kbuild@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=linux-sparse@vger.kernel.org \
    --cc=marc.zyngier@arm.com \
    --cc=mark.rutland@arm.com \
    --cc=markbrand@google.com \
    --cc=mingo@kernel.org \
    --cc=ndesaulniers@google.com \
    --cc=paullawrence@google.com \
    --cc=rppt@linux.vnet.ibm.com \
    --cc=will.deacon@arm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.