Merge branch 'iommu/fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/joro...
[linux-2.6-block.git] / arch / x86 / kernel / process.c
CommitLineData
61c4628b
SS
1#include <linux/errno.h>
2#include <linux/kernel.h>
3#include <linux/mm.h>
4#include <linux/smp.h>
389d1fb1 5#include <linux/prctl.h>
61c4628b
SS
6#include <linux/slab.h>
7#include <linux/sched.h>
7f424a8b
PZ
8#include <linux/module.h>
9#include <linux/pm.h>
aa276e1c 10#include <linux/clockchips.h>
9d62dcdf 11#include <linux/random.h>
7c68af6e 12#include <linux/user-return-notifier.h>
814e2c84
AI
13#include <linux/dmi.h>
14#include <linux/utsname.h>
61613521 15#include <trace/events/power.h>
24f1e32c 16#include <linux/hw_breakpoint.h>
c1e3b377 17#include <asm/system.h>
d3ec5cae 18#include <asm/apic.h>
2c1b284e 19#include <asm/syscalls.h>
389d1fb1
JF
20#include <asm/idle.h>
21#include <asm/uaccess.h>
22#include <asm/i387.h>
2311f0de 23#include <asm/ds.h>
66cb5917 24#include <asm/debugreg.h>
c1e3b377
ZY
25
26unsigned long idle_halt;
27EXPORT_SYMBOL(idle_halt);
da5e09a1
ZY
28unsigned long idle_nomwait;
29EXPORT_SYMBOL(idle_nomwait);
61c4628b 30
aa283f49 31struct kmem_cache *task_xstate_cachep;
61c4628b
SS
32
33int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
34{
35 *dst = *src;
aa283f49
SS
36 if (src->thread.xstate) {
37 dst->thread.xstate = kmem_cache_alloc(task_xstate_cachep,
38 GFP_KERNEL);
39 if (!dst->thread.xstate)
40 return -ENOMEM;
41 WARN_ON((unsigned long)dst->thread.xstate & 15);
42 memcpy(dst->thread.xstate, src->thread.xstate, xstate_size);
43 }
61c4628b
SS
44 return 0;
45}
46
aa283f49 47void free_thread_xstate(struct task_struct *tsk)
61c4628b 48{
aa283f49
SS
49 if (tsk->thread.xstate) {
50 kmem_cache_free(task_xstate_cachep, tsk->thread.xstate);
51 tsk->thread.xstate = NULL;
52 }
2311f0de
MM
53
54 WARN(tsk->thread.ds_ctx, "leaking DS context\n");
aa283f49
SS
55}
56
aa283f49
SS
57void free_thread_info(struct thread_info *ti)
58{
59 free_thread_xstate(ti->task);
1679f271 60 free_pages((unsigned long)ti, get_order(THREAD_SIZE));
61c4628b
SS
61}
62
63void arch_task_cache_init(void)
64{
65 task_xstate_cachep =
66 kmem_cache_create("task_xstate", xstate_size,
67 __alignof__(union thread_xstate),
2dff4405 68 SLAB_PANIC | SLAB_NOTRACK, NULL);
61c4628b 69}
7f424a8b 70
389d1fb1
JF
71/*
72 * Free current thread data structures etc..
73 */
74void exit_thread(void)
75{
76 struct task_struct *me = current;
77 struct thread_struct *t = &me->thread;
250981e6 78 unsigned long *bp = t->io_bitmap_ptr;
389d1fb1 79
250981e6 80 if (bp) {
389d1fb1
JF
81 struct tss_struct *tss = &per_cpu(init_tss, get_cpu());
82
389d1fb1
JF
83 t->io_bitmap_ptr = NULL;
84 clear_thread_flag(TIF_IO_BITMAP);
85 /*
86 * Careful, clear this in the TSS too:
87 */
88 memset(tss->io_bitmap, 0xff, t->io_bitmap_max);
89 t->io_bitmap_max = 0;
90 put_cpu();
250981e6 91 kfree(bp);
389d1fb1 92 }
389d1fb1
JF
93}
94
814e2c84
AI
95void show_regs_common(void)
96{
a1884b8e 97 const char *board, *product;
814e2c84 98
a1884b8e 99 board = dmi_get_system_info(DMI_BOARD_NAME);
814e2c84
AI
100 if (!board)
101 board = "";
a1884b8e
AI
102 product = dmi_get_system_info(DMI_PRODUCT_NAME);
103 if (!product)
104 product = "";
814e2c84
AI
105
106 printk("\n");
a1884b8e 107 printk(KERN_INFO "Pid: %d, comm: %.20s %s %s %.*s %s/%s\n",
814e2c84
AI
108 current->pid, current->comm, print_tainted(),
109 init_utsname()->release,
110 (int)strcspn(init_utsname()->version, " "),
a1884b8e 111 init_utsname()->version, board, product);
814e2c84
AI
112}
113
389d1fb1
JF
114void flush_thread(void)
115{
116 struct task_struct *tsk = current;
117
118#ifdef CONFIG_X86_64
119 if (test_tsk_thread_flag(tsk, TIF_ABI_PENDING)) {
120 clear_tsk_thread_flag(tsk, TIF_ABI_PENDING);
121 if (test_tsk_thread_flag(tsk, TIF_IA32)) {
122 clear_tsk_thread_flag(tsk, TIF_IA32);
123 } else {
124 set_tsk_thread_flag(tsk, TIF_IA32);
125 current_thread_info()->status |= TS_COMPAT;
126 }
127 }
128#endif
129
24f1e32c 130 flush_ptrace_hw_breakpoint(tsk);
389d1fb1
JF
131 memset(tsk->thread.tls_array, 0, sizeof(tsk->thread.tls_array));
132 /*
133 * Forget coprocessor state..
134 */
135 tsk->fpu_counter = 0;
136 clear_fpu(tsk);
137 clear_used_math();
138}
139
140static void hard_disable_TSC(void)
141{
142 write_cr4(read_cr4() | X86_CR4_TSD);
143}
144
145void disable_TSC(void)
146{
147 preempt_disable();
148 if (!test_and_set_thread_flag(TIF_NOTSC))
149 /*
150 * Must flip the CPU state synchronously with
151 * TIF_NOTSC in the current running context.
152 */
153 hard_disable_TSC();
154 preempt_enable();
155}
156
157static void hard_enable_TSC(void)
158{
159 write_cr4(read_cr4() & ~X86_CR4_TSD);
160}
161
162static void enable_TSC(void)
163{
164 preempt_disable();
165 if (test_and_clear_thread_flag(TIF_NOTSC))
166 /*
167 * Must flip the CPU state synchronously with
168 * TIF_NOTSC in the current running context.
169 */
170 hard_enable_TSC();
171 preempt_enable();
172}
173
174int get_tsc_mode(unsigned long adr)
175{
176 unsigned int val;
177
178 if (test_thread_flag(TIF_NOTSC))
179 val = PR_TSC_SIGSEGV;
180 else
181 val = PR_TSC_ENABLE;
182
183 return put_user(val, (unsigned int __user *)adr);
184}
185
186int set_tsc_mode(unsigned int val)
187{
188 if (val == PR_TSC_SIGSEGV)
189 disable_TSC();
190 else if (val == PR_TSC_ENABLE)
191 enable_TSC();
192 else
193 return -EINVAL;
194
195 return 0;
196}
197
198void __switch_to_xtra(struct task_struct *prev_p, struct task_struct *next_p,
199 struct tss_struct *tss)
200{
201 struct thread_struct *prev, *next;
202
203 prev = &prev_p->thread;
204 next = &next_p->thread;
205
206 if (test_tsk_thread_flag(next_p, TIF_DS_AREA_MSR) ||
207 test_tsk_thread_flag(prev_p, TIF_DS_AREA_MSR))
208 ds_switch_to(prev_p, next_p);
209 else if (next->debugctlmsr != prev->debugctlmsr)
210 update_debugctlmsr(next->debugctlmsr);
211
389d1fb1
JF
212 if (test_tsk_thread_flag(prev_p, TIF_NOTSC) ^
213 test_tsk_thread_flag(next_p, TIF_NOTSC)) {
214 /* prev and next are different */
215 if (test_tsk_thread_flag(next_p, TIF_NOTSC))
216 hard_disable_TSC();
217 else
218 hard_enable_TSC();
219 }
220
221 if (test_tsk_thread_flag(next_p, TIF_IO_BITMAP)) {
222 /*
223 * Copy the relevant range of the IO bitmap.
224 * Normally this is 128 bytes or less:
225 */
226 memcpy(tss->io_bitmap, next->io_bitmap_ptr,
227 max(prev->io_bitmap_max, next->io_bitmap_max));
228 } else if (test_tsk_thread_flag(prev_p, TIF_IO_BITMAP)) {
229 /*
230 * Clear any possible leftover bits:
231 */
232 memset(tss->io_bitmap, 0xff, prev->io_bitmap_max);
233 }
7c68af6e 234 propagate_user_return_notify(prev_p, next_p);
389d1fb1
JF
235}
236
237int sys_fork(struct pt_regs *regs)
238{
239 return do_fork(SIGCHLD, regs->sp, regs, 0, NULL, NULL);
240}
241
242/*
243 * This is trivial, and on the face of it looks like it
244 * could equally well be done in user mode.
245 *
246 * Not so, for quite unobvious reasons - register pressure.
247 * In user mode vfork() cannot have a stack frame, and if
248 * done by calling the "clone()" system call directly, you
249 * do not have enough call-clobbered registers to hold all
250 * the information you need.
251 */
252int sys_vfork(struct pt_regs *regs)
253{
254 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs->sp, regs, 0,
255 NULL, NULL);
256}
257
f839bbc5
BG
258long
259sys_clone(unsigned long clone_flags, unsigned long newsp,
260 void __user *parent_tid, void __user *child_tid, struct pt_regs *regs)
261{
262 if (!newsp)
263 newsp = regs->sp;
264 return do_fork(clone_flags, newsp, regs, 0, parent_tid, child_tid);
265}
266
df59e7bf
BG
267/*
268 * This gets run with %si containing the
269 * function to call, and %di containing
270 * the "args".
271 */
272extern void kernel_thread_helper(void);
273
274/*
275 * Create a kernel thread
276 */
277int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags)
278{
279 struct pt_regs regs;
280
281 memset(&regs, 0, sizeof(regs));
282
283 regs.si = (unsigned long) fn;
284 regs.di = (unsigned long) arg;
285
286#ifdef CONFIG_X86_32
287 regs.ds = __USER_DS;
288 regs.es = __USER_DS;
289 regs.fs = __KERNEL_PERCPU;
290 regs.gs = __KERNEL_STACK_CANARY;
291#endif
292
293 regs.orig_ax = -1;
294 regs.ip = (unsigned long) kernel_thread_helper;
295 regs.cs = __KERNEL_CS | get_kernel_rpl();
296 regs.flags = X86_EFLAGS_IF | 0x2;
297
298 /* Ok, create the new process.. */
299 return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, &regs, 0, NULL, NULL);
300}
301EXPORT_SYMBOL(kernel_thread);
389d1fb1 302
11cf88bd
BG
303/*
304 * sys_execve() executes a new program.
305 */
306long sys_execve(char __user *name, char __user * __user *argv,
307 char __user * __user *envp, struct pt_regs *regs)
308{
309 long error;
310 char *filename;
311
312 filename = getname(name);
313 error = PTR_ERR(filename);
314 if (IS_ERR(filename))
315 return error;
316 error = do_execve(filename, argv, envp, regs);
317
318#ifdef CONFIG_X86_32
319 if (error == 0) {
320 /* Make sure we don't return using sysenter.. */
321 set_thread_flag(TIF_IRET);
322 }
323#endif
324
325 putname(filename);
326 return error;
327}
389d1fb1 328
00dba564
TG
329/*
330 * Idle related variables and functions
331 */
332unsigned long boot_option_idle_override = 0;
333EXPORT_SYMBOL(boot_option_idle_override);
334
335/*
336 * Powermanagement idle function, if any..
337 */
338void (*pm_idle)(void);
339EXPORT_SYMBOL(pm_idle);
340
341#ifdef CONFIG_X86_32
342/*
343 * This halt magic was a workaround for ancient floppy DMA
344 * wreckage. It should be safe to remove.
345 */
346static int hlt_counter;
347void disable_hlt(void)
348{
349 hlt_counter++;
350}
351EXPORT_SYMBOL(disable_hlt);
352
353void enable_hlt(void)
354{
355 hlt_counter--;
356}
357EXPORT_SYMBOL(enable_hlt);
358
359static inline int hlt_use_halt(void)
360{
361 return (!hlt_counter && boot_cpu_data.hlt_works_ok);
362}
363#else
364static inline int hlt_use_halt(void)
365{
366 return 1;
367}
368#endif
369
370/*
371 * We use this if we don't have any better
372 * idle routine..
373 */
374void default_idle(void)
375{
376 if (hlt_use_halt()) {
61613521 377 trace_power_start(POWER_CSTATE, 1);
00dba564
TG
378 current_thread_info()->status &= ~TS_POLLING;
379 /*
380 * TS_POLLING-cleared state must be visible before we
381 * test NEED_RESCHED:
382 */
383 smp_mb();
384
385 if (!need_resched())
386 safe_halt(); /* enables interrupts racelessly */
387 else
388 local_irq_enable();
389 current_thread_info()->status |= TS_POLLING;
390 } else {
391 local_irq_enable();
392 /* loop is done by the caller */
393 cpu_relax();
394 }
395}
396#ifdef CONFIG_APM_MODULE
397EXPORT_SYMBOL(default_idle);
398#endif
399
d3ec5cae
IV
400void stop_this_cpu(void *dummy)
401{
402 local_irq_disable();
403 /*
404 * Remove this CPU:
405 */
4f062896 406 set_cpu_online(smp_processor_id(), false);
d3ec5cae
IV
407 disable_local_APIC();
408
409 for (;;) {
410 if (hlt_works(smp_processor_id()))
411 halt();
412 }
413}
414
7f424a8b
PZ
415static void do_nothing(void *unused)
416{
417}
418
419/*
420 * cpu_idle_wait - Used to ensure that all the CPUs discard old value of
421 * pm_idle and update to new pm_idle value. Required while changing pm_idle
422 * handler on SMP systems.
423 *
424 * Caller must have changed pm_idle to the new value before the call. Old
425 * pm_idle value will not be used by any CPU after the return of this function.
426 */
427void cpu_idle_wait(void)
428{
429 smp_mb();
430 /* kick all the CPUs so that they exit out of pm_idle */
127a237a 431 smp_call_function(do_nothing, NULL, 1);
7f424a8b
PZ
432}
433EXPORT_SYMBOL_GPL(cpu_idle_wait);
434
435/*
436 * This uses new MONITOR/MWAIT instructions on P4 processors with PNI,
437 * which can obviate IPI to trigger checking of need_resched.
438 * We execute MONITOR against need_resched and enter optimized wait state
439 * through MWAIT. Whenever someone changes need_resched, we would be woken
440 * up from MWAIT (without an IPI).
441 *
442 * New with Core Duo processors, MWAIT can take some hints based on CPU
443 * capability.
444 */
445void mwait_idle_with_hints(unsigned long ax, unsigned long cx)
446{
61613521 447 trace_power_start(POWER_CSTATE, (ax>>4)+1);
7f424a8b 448 if (!need_resched()) {
e736ad54
PV
449 if (cpu_has(&current_cpu_data, X86_FEATURE_CLFLUSH_MONITOR))
450 clflush((void *)&current_thread_info()->flags);
451
7f424a8b
PZ
452 __monitor((void *)&current_thread_info()->flags, 0, 0);
453 smp_mb();
454 if (!need_resched())
455 __mwait(ax, cx);
456 }
457}
458
459/* Default MONITOR/MWAIT with no hints, used for default C1 state */
460static void mwait_idle(void)
461{
462 if (!need_resched()) {
61613521 463 trace_power_start(POWER_CSTATE, 1);
e736ad54
PV
464 if (cpu_has(&current_cpu_data, X86_FEATURE_CLFLUSH_MONITOR))
465 clflush((void *)&current_thread_info()->flags);
466
7f424a8b
PZ
467 __monitor((void *)&current_thread_info()->flags, 0, 0);
468 smp_mb();
469 if (!need_resched())
470 __sti_mwait(0, 0);
471 else
472 local_irq_enable();
473 } else
474 local_irq_enable();
475}
476
7f424a8b
PZ
477/*
478 * On SMP it's slightly faster (but much more power-consuming!)
479 * to poll the ->work.need_resched flag instead of waiting for the
480 * cross-CPU IPI to arrive. Use this option with caution.
481 */
482static void poll_idle(void)
483{
61613521 484 trace_power_start(POWER_CSTATE, 0);
7f424a8b 485 local_irq_enable();
2c7e9fd4
JK
486 while (!need_resched())
487 cpu_relax();
61613521 488 trace_power_end(0);
7f424a8b
PZ
489}
490
e9623b35
TG
491/*
492 * mwait selection logic:
493 *
494 * It depends on the CPU. For AMD CPUs that support MWAIT this is
495 * wrong. Family 0x10 and 0x11 CPUs will enter C1 on HLT. Powersavings
496 * then depend on a clock divisor and current Pstate of the core. If
497 * all cores of a processor are in halt state (C1) the processor can
498 * enter the C1E (C1 enhanced) state. If mwait is used this will never
499 * happen.
500 *
501 * idle=mwait overrides this decision and forces the usage of mwait.
502 */
08ad8afa 503static int __cpuinitdata force_mwait;
09fd4b4e
TG
504
505#define MWAIT_INFO 0x05
506#define MWAIT_ECX_EXTENDED_INFO 0x01
507#define MWAIT_EDX_C1 0xf0
508
e9623b35
TG
509static int __cpuinit mwait_usable(const struct cpuinfo_x86 *c)
510{
09fd4b4e
TG
511 u32 eax, ebx, ecx, edx;
512
e9623b35
TG
513 if (force_mwait)
514 return 1;
515
09fd4b4e
TG
516 if (c->cpuid_level < MWAIT_INFO)
517 return 0;
518
519 cpuid(MWAIT_INFO, &eax, &ebx, &ecx, &edx);
520 /* Check, whether EDX has extended info about MWAIT */
521 if (!(ecx & MWAIT_ECX_EXTENDED_INFO))
522 return 1;
523
524 /*
525 * edx enumeratios MONITOR/MWAIT extensions. Check, whether
526 * C1 supports MWAIT
527 */
528 return (edx & MWAIT_EDX_C1);
e9623b35
TG
529}
530
aa276e1c
TG
531/*
532 * Check for AMD CPUs, which have potentially C1E support
533 */
534static int __cpuinit check_c1e_idle(const struct cpuinfo_x86 *c)
535{
536 if (c->x86_vendor != X86_VENDOR_AMD)
537 return 0;
538
539 if (c->x86 < 0x0F)
540 return 0;
541
542 /* Family 0x0f models < rev F do not have C1E */
543 if (c->x86 == 0x0f && c->x86_model < 0x40)
544 return 0;
545
546 return 1;
547}
548
bc9b83dd 549static cpumask_var_t c1e_mask;
4faac97d
TG
550static int c1e_detected;
551
552void c1e_remove_cpu(int cpu)
553{
30e1e6d1
RR
554 if (c1e_mask != NULL)
555 cpumask_clear_cpu(cpu, c1e_mask);
4faac97d
TG
556}
557
aa276e1c
TG
558/*
559 * C1E aware idle routine. We check for C1E active in the interrupt
560 * pending message MSR. If we detect C1E, then we handle it the same
561 * way as C3 power states (local apic timer and TSC stop)
562 */
563static void c1e_idle(void)
564{
aa276e1c
TG
565 if (need_resched())
566 return;
567
568 if (!c1e_detected) {
569 u32 lo, hi;
570
571 rdmsr(MSR_K8_INT_PENDING_MSG, lo, hi);
572 if (lo & K8_INTP_C1E_ACTIVE_MASK) {
573 c1e_detected = 1;
40fb1715 574 if (!boot_cpu_has(X86_FEATURE_NONSTOP_TSC))
09bfeea1
AH
575 mark_tsc_unstable("TSC halt in AMD C1E");
576 printk(KERN_INFO "System has AMD C1E enabled\n");
a8d68290 577 set_cpu_cap(&boot_cpu_data, X86_FEATURE_AMDC1E);
aa276e1c
TG
578 }
579 }
580
581 if (c1e_detected) {
582 int cpu = smp_processor_id();
583
bc9b83dd
RR
584 if (!cpumask_test_cpu(cpu, c1e_mask)) {
585 cpumask_set_cpu(cpu, c1e_mask);
0beefa20 586 /*
f833bab8 587 * Force broadcast so ACPI can not interfere.
0beefa20 588 */
aa276e1c
TG
589 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_FORCE,
590 &cpu);
591 printk(KERN_INFO "Switch to broadcast mode on CPU%d\n",
592 cpu);
593 }
594 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, &cpu);
0beefa20 595
aa276e1c 596 default_idle();
0beefa20
TG
597
598 /*
599 * The switch back from broadcast mode needs to be
600 * called with interrupts disabled.
601 */
602 local_irq_disable();
603 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, &cpu);
604 local_irq_enable();
aa276e1c
TG
605 } else
606 default_idle();
607}
608
7f424a8b
PZ
609void __cpuinit select_idle_routine(const struct cpuinfo_x86 *c)
610{
3e5095d1 611#ifdef CONFIG_SMP
7f424a8b
PZ
612 if (pm_idle == poll_idle && smp_num_siblings > 1) {
613 printk(KERN_WARNING "WARNING: polling idle and HT enabled,"
614 " performance may degrade.\n");
615 }
616#endif
6ddd2a27
TG
617 if (pm_idle)
618 return;
619
e9623b35 620 if (cpu_has(c, X86_FEATURE_MWAIT) && mwait_usable(c)) {
7f424a8b 621 /*
7f424a8b
PZ
622 * One CPU supports mwait => All CPUs supports mwait
623 */
6ddd2a27
TG
624 printk(KERN_INFO "using mwait in idle threads.\n");
625 pm_idle = mwait_idle;
aa276e1c
TG
626 } else if (check_c1e_idle(c)) {
627 printk(KERN_INFO "using C1E aware idle routine\n");
628 pm_idle = c1e_idle;
6ddd2a27
TG
629 } else
630 pm_idle = default_idle;
7f424a8b
PZ
631}
632
30e1e6d1
RR
633void __init init_c1e_mask(void)
634{
635 /* If we're using c1e_idle, we need to allocate c1e_mask. */
79f55997
LZ
636 if (pm_idle == c1e_idle)
637 zalloc_cpumask_var(&c1e_mask, GFP_KERNEL);
30e1e6d1
RR
638}
639
7f424a8b
PZ
640static int __init idle_setup(char *str)
641{
ab6bc3e3
CG
642 if (!str)
643 return -EINVAL;
644
7f424a8b
PZ
645 if (!strcmp(str, "poll")) {
646 printk("using polling idle threads.\n");
647 pm_idle = poll_idle;
648 } else if (!strcmp(str, "mwait"))
649 force_mwait = 1;
c1e3b377
ZY
650 else if (!strcmp(str, "halt")) {
651 /*
652 * When the boot option of idle=halt is added, halt is
653 * forced to be used for CPU idle. In such case CPU C2/C3
654 * won't be used again.
655 * To continue to load the CPU idle driver, don't touch
656 * the boot_option_idle_override.
657 */
658 pm_idle = default_idle;
659 idle_halt = 1;
660 return 0;
da5e09a1
ZY
661 } else if (!strcmp(str, "nomwait")) {
662 /*
663 * If the boot option of "idle=nomwait" is added,
664 * it means that mwait will be disabled for CPU C2/C3
665 * states. In such case it won't touch the variable
666 * of boot_option_idle_override.
667 */
668 idle_nomwait = 1;
669 return 0;
c1e3b377 670 } else
7f424a8b
PZ
671 return -1;
672
673 boot_option_idle_override = 1;
674 return 0;
675}
676early_param("idle", idle_setup);
677
9d62dcdf
AW
678unsigned long arch_align_stack(unsigned long sp)
679{
680 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
681 sp -= get_random_int() % 8192;
682 return sp & ~0xf;
683}
684
685unsigned long arch_randomize_brk(struct mm_struct *mm)
686{
687 unsigned long range_end = mm->brk + 0x02000000;
688 return randomize_range(mm->brk, range_end, 0) ? : mm->brk;
689}
690