Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 18930
b: refs/heads/master
c: b631629
h: refs/heads/master
v: v3
  • Loading branch information
Paolo 'Blaisorblade' Giarrusso authored and Linus Torvalds committed Jan 19, 2006
1 parent 9067ada commit 6bcfc1a
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 12 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b6a2b13778873bd9edd0b4a7d24a7bd730369021
refs/heads/master: b63162939cd797c8269964ce856ed1f2fec5f70e
4 changes: 3 additions & 1 deletion trunk/arch/um/include/kern_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,10 @@ extern void machine_halt(void);
extern int is_syscall(unsigned long addr);
extern void arch_switch(void);
extern void free_irq(unsigned int, void *);
extern int um_in_interrupt(void);
extern int cpu(void);

/* Are we disallowed to sleep? Used to choose between GFP_KERNEL and GFP_ATOMIC. */
extern int __cant_sleep(void);
extern void segv_handler(int sig, union uml_pt_regs *regs);
extern void sigio_handler(int sig, union uml_pt_regs *regs);

Expand Down
1 change: 1 addition & 0 deletions trunk/arch/um/include/user.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ extern int open_gdb_chan(void);
extern unsigned long strlcpy(char *, const char *, unsigned long);
extern unsigned long strlcat(char *, const char *, unsigned long);
extern void *um_vmalloc(int size);
extern void *um_vmalloc_atomic(int size);
extern void vfree(void *ptr);

#endif
Expand Down
21 changes: 13 additions & 8 deletions trunk/arch/um/kernel/process_kern.c
Original file line number Diff line number Diff line change
Expand Up @@ -287,17 +287,27 @@ EXPORT_SYMBOL(disable_hlt);

void *um_kmalloc(int size)
{
return(kmalloc(size, GFP_KERNEL));
return kmalloc(size, GFP_KERNEL);
}

void *um_kmalloc_atomic(int size)
{
return(kmalloc(size, GFP_ATOMIC));
return kmalloc(size, GFP_ATOMIC);
}

void *um_vmalloc(int size)
{
return(vmalloc(size));
return vmalloc(size);
}

void *um_vmalloc_atomic(int size)
{
return __vmalloc(size, GFP_ATOMIC | __GFP_HIGHMEM, PAGE_KERNEL);
}

int __cant_sleep(void) {
return in_atomic() || irqs_disabled() || in_interrupt();
/* Is in_interrupt() really needed? */
}

unsigned long get_fault_addr(void)
Expand Down Expand Up @@ -369,11 +379,6 @@ int smp_sigio_handler(void)
return(0);
}

int um_in_interrupt(void)
{
return(in_interrupt());
}

int cpu(void)
{
return(current_thread->cpu);
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/um/os-Linux/helper.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ int run_helper(void (*pre_exec)(void *), void *pre_data, char **argv,

if((stack_out != NULL) && (*stack_out != 0))
stack = *stack_out;
else stack = alloc_stack(0, um_in_interrupt());
else stack = alloc_stack(0, __cant_sleep());
if(stack == 0)
return(-ENOMEM);

Expand Down Expand Up @@ -124,7 +124,7 @@ int run_helper_thread(int (*proc)(void *), void *arg, unsigned int flags,
unsigned long stack, sp;
int pid, status, err;

stack = alloc_stack(stack_order, um_in_interrupt());
stack = alloc_stack(stack_order, __cant_sleep());
if(stack == 0) return(-ENOMEM);

sp = stack + (page_size() << stack_order) - sizeof(void *);
Expand Down

0 comments on commit 6bcfc1a

Please sign in to comment.