Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1742721
| From | Min-Hua Chen <orca.chen@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] mn10300: Use is_vmalloc_addr |
| Date | 2017-10-01 03:30 +0200 |
| Message-ID | <uvBeV-3IX-3@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
To is_vmalloc_addr() to check if an address is a vmalloc address
instead of checking VMALLOC_START and VMALLOC_END manually.
Signed-off-by: Min-Hua Chen <orca.chen@gmail.com>
---
arch/mn10300/kernel/gdb-stub.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/mn10300/kernel/gdb-stub.c b/arch/mn10300/kernel/gdb-stub.c
index a128c57..f69026a 100644
--- a/arch/mn10300/kernel/gdb-stub.c
+++ b/arch/mn10300/kernel/gdb-stub.c
@@ -441,7 +441,7 @@ static const unsigned char gdbstub_insn_sizes[256] =
static int __gdbstub_mark_bp(u8 *addr, int ix)
{
/* vmalloc area */
- if (((u8 *) VMALLOC_START <= addr) && (addr < (u8 *) VMALLOC_END))
+ if (is_vmalloc_addr((void *)addr))
goto okay;
/* SRAM, SDRAM */
if (((u8 *) 0x80000000UL <= addr) && (addr < (u8 *) 0xa0000000UL))
--
2.7.4
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH] mn10300: Use is_vmalloc_addr Min-Hua Chen <orca.chen@gmail.com> - 2017-10-01 03:30 +0200
csiph-web