diff options
Diffstat (limited to 'arch/um/sys-i386/ldt.c')
-rw-r--r-- | arch/um/sys-i386/ldt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/um/sys-i386/ldt.c b/arch/um/sys-i386/ldt.c index 49057d8bc668..5db7737df0ff 100644 --- a/arch/um/sys-i386/ldt.c +++ b/arch/um/sys-i386/ldt.c | |||
@@ -166,7 +166,7 @@ static long read_ldt_from_host(void __user * ptr, unsigned long bytecount) | |||
166 | struct ptrace_ldt ptrace_ldt = (struct ptrace_ldt) { | 166 | struct ptrace_ldt ptrace_ldt = (struct ptrace_ldt) { |
167 | .func = 0, | 167 | .func = 0, |
168 | .bytecount = bytecount, | 168 | .bytecount = bytecount, |
169 | .ptr = (void *)kmalloc(bytecount, GFP_KERNEL)}; | 169 | .ptr = kmalloc(bytecount, GFP_KERNEL)}; |
170 | u32 cpu; | 170 | u32 cpu; |
171 | 171 | ||
172 | if(ptrace_ldt.ptr == NULL) | 172 | if(ptrace_ldt.ptr == NULL) |
@@ -426,7 +426,7 @@ void ldt_get_host_info(void) | |||
426 | host_ldt_entries = dummy_list; | 426 | host_ldt_entries = dummy_list; |
427 | else { | 427 | else { |
428 | size = (size + 1) * sizeof(dummy_list[0]); | 428 | size = (size + 1) * sizeof(dummy_list[0]); |
429 | host_ldt_entries = (short *)kmalloc(size, GFP_KERNEL); | 429 | host_ldt_entries = kmalloc(size, GFP_KERNEL); |
430 | if(host_ldt_entries == NULL) { | 430 | if(host_ldt_entries == NULL) { |
431 | printk("ldt_get_host_info: couldn't allocate host ldt list\n"); | 431 | printk("ldt_get_host_info: couldn't allocate host ldt list\n"); |
432 | goto out_free; | 432 | goto out_free; |