1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17#include <linux/errno.h>
18#include <linux/sched.h>
19#include <linux/kernel.h>
20#include <linux/mm.h>
21#include <linux/smp.h>
22#include <linux/stddef.h>
23#include <linux/unistd.h>
24#include <linux/ptrace.h>
25#include <linux/slab.h>
26#include <linux/user.h>
27#include <linux/elf.h>
28#include <linux/prctl.h>
29#include <linux/init_task.h>
30#include <linux/export.h>
31#include <linux/kallsyms.h>
32#include <linux/mqueue.h>
33#include <linux/hardirq.h>
34#include <linux/utsname.h>
35#include <linux/ftrace.h>
36#include <linux/kernel_stat.h>
37#include <linux/personality.h>
38#include <linux/random.h>
39#include <linux/hw_breakpoint.h>
40#include <linux/uaccess.h>
41
42#include <asm/pgtable.h>
43#include <asm/io.h>
44#include <asm/processor.h>
45#include <asm/mmu.h>
46#include <asm/prom.h>
47#include <asm/machdep.h>
48#include <asm/time.h>
49#include <asm/runlatch.h>
50#include <asm/syscalls.h>
51#include <asm/switch_to.h>
52#include <asm/tm.h>
53#include <asm/debug.h>
54#ifdef CONFIG_PPC64
55#include <asm/firmware.h>
56#endif
57#include <asm/code-patching.h>
58#include <linux/kprobes.h>
59#include <linux/kdebug.h>
60
61
62#ifdef TM_DEBUG_SW
63#define TM_DEBUG(x...) printk(KERN_INFO x)
64#else
65#define TM_DEBUG(x...) do { } while(0)
66#endif
67
68extern unsigned long _get_SP(void);
69
70#ifndef CONFIG_SMP
71struct task_struct *last_task_used_math = NULL;
72struct task_struct *last_task_used_altivec = NULL;
73struct task_struct *last_task_used_vsx = NULL;
74struct task_struct *last_task_used_spe = NULL;
75#endif
76
77#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
78void giveup_fpu_maybe_transactional(struct task_struct *tsk)
79{
80
81
82
83
84
85
86 if (tsk == current && tsk->thread.regs &&
87 MSR_TM_ACTIVE(tsk->thread.regs->msr) &&
88 !test_thread_flag(TIF_RESTORE_TM)) {
89 tsk->thread.ckpt_regs.msr = tsk->thread.regs->msr;
90 set_thread_flag(TIF_RESTORE_TM);
91 }
92
93 giveup_fpu(tsk);
94}
95
96void giveup_altivec_maybe_transactional(struct task_struct *tsk)
97{
98
99
100
101
102
103
104 if (tsk == current && tsk->thread.regs &&
105 MSR_TM_ACTIVE(tsk->thread.regs->msr) &&
106 !test_thread_flag(TIF_RESTORE_TM)) {
107 tsk->thread.ckpt_regs.msr = tsk->thread.regs->msr;
108 set_thread_flag(TIF_RESTORE_TM);
109 }
110
111 giveup_altivec(tsk);
112}
113
114#else
115#define giveup_fpu_maybe_transactional(tsk) giveup_fpu(tsk)
116#define giveup_altivec_maybe_transactional(tsk) giveup_altivec(tsk)
117#endif
118
119#ifdef CONFIG_PPC_FPU
120
121
122
123
124void flush_fp_to_thread(struct task_struct *tsk)
125{
126 if (tsk->thread.regs) {
127
128
129
130
131
132
133
134
135 preempt_disable();
136 if (tsk->thread.regs->msr & MSR_FP) {
137#ifdef CONFIG_SMP
138
139
140
141
142
143
144
145 BUG_ON(tsk != current);
146#endif
147 giveup_fpu_maybe_transactional(tsk);
148 }
149 preempt_enable();
150 }
151}
152EXPORT_SYMBOL_GPL(flush_fp_to_thread);
153#endif
154
155void enable_kernel_fp(void)
156{
157 WARN_ON(preemptible());
158
159#ifdef CONFIG_SMP
160 if (current->thread.regs && (current->thread.regs->msr & MSR_FP))
161 giveup_fpu_maybe_transactional(current);
162 else
163 giveup_fpu(NULL);
164#else
165 giveup_fpu_maybe_transactional(last_task_used_math);
166#endif
167}
168EXPORT_SYMBOL(enable_kernel_fp);
169
170#ifdef CONFIG_ALTIVEC
171void enable_kernel_altivec(void)
172{
173 WARN_ON(preemptible());
174
175#ifdef CONFIG_SMP
176 if (current->thread.regs && (current->thread.regs->msr & MSR_VEC))
177 giveup_altivec_maybe_transactional(current);
178 else
179 giveup_altivec_notask();
180#else
181 giveup_altivec_maybe_transactional(last_task_used_altivec);
182#endif
183}
184EXPORT_SYMBOL(enable_kernel_altivec);
185
186
187
188
189
190void flush_altivec_to_thread(struct task_struct *tsk)
191{
192 if (tsk->thread.regs) {
193 preempt_disable();
194 if (tsk->thread.regs->msr & MSR_VEC) {
195#ifdef CONFIG_SMP
196 BUG_ON(tsk != current);
197#endif
198 giveup_altivec_maybe_transactional(tsk);
199 }
200 preempt_enable();
201 }
202}
203EXPORT_SYMBOL_GPL(flush_altivec_to_thread);
204#endif
205
206#ifdef CONFIG_VSX
207void enable_kernel_vsx(void)
208{
209 WARN_ON(preemptible());
210
211#ifdef CONFIG_SMP
212 if (current->thread.regs && (current->thread.regs->msr & MSR_VSX))
213 giveup_vsx(current);
214 else
215 giveup_vsx(NULL);
216#else
217 giveup_vsx(last_task_used_vsx);
218#endif
219}
220EXPORT_SYMBOL(enable_kernel_vsx);
221
222void giveup_vsx(struct task_struct *tsk)
223{
224 giveup_fpu_maybe_transactional(tsk);
225 giveup_altivec_maybe_transactional(tsk);
226 __giveup_vsx(tsk);
227}
228EXPORT_SYMBOL(giveup_vsx);
229
230void flush_vsx_to_thread(struct task_struct *tsk)
231{
232 if (tsk->thread.regs) {
233 preempt_disable();
234 if (tsk->thread.regs->msr & MSR_VSX) {
235#ifdef CONFIG_SMP
236 BUG_ON(tsk != current);
237#endif
238 giveup_vsx(tsk);
239 }
240 preempt_enable();
241 }
242}
243EXPORT_SYMBOL_GPL(flush_vsx_to_thread);
244#endif
245
246#ifdef CONFIG_SPE
247
248void enable_kernel_spe(void)
249{
250 WARN_ON(preemptible());
251
252#ifdef CONFIG_SMP
253 if (current->thread.regs && (current->thread.regs->msr & MSR_SPE))
254 giveup_spe(current);
255 else
256 giveup_spe(NULL);
257#else
258 giveup_spe(last_task_used_spe);
259#endif
260}
261EXPORT_SYMBOL(enable_kernel_spe);
262
263void flush_spe_to_thread(struct task_struct *tsk)
264{
265 if (tsk->thread.regs) {
266 preempt_disable();
267 if (tsk->thread.regs->msr & MSR_SPE) {
268#ifdef CONFIG_SMP
269 BUG_ON(tsk != current);
270#endif
271 tsk->thread.spefscr = mfspr(SPRN_SPEFSCR);
272 giveup_spe(tsk);
273 }
274 preempt_enable();
275 }
276}
277#endif
278
279#ifndef CONFIG_SMP
280
281
282
283
284void discard_lazy_cpu_state(void)
285{
286 preempt_disable();
287 if (last_task_used_math == current)
288 last_task_used_math = NULL;
289#ifdef CONFIG_ALTIVEC
290 if (last_task_used_altivec == current)
291 last_task_used_altivec = NULL;
292#endif
293#ifdef CONFIG_VSX
294 if (last_task_used_vsx == current)
295 last_task_used_vsx = NULL;
296#endif
297#ifdef CONFIG_SPE
298 if (last_task_used_spe == current)
299 last_task_used_spe = NULL;
300#endif
301 preempt_enable();
302}
303#endif
304
305#ifdef CONFIG_PPC_ADV_DEBUG_REGS
306void do_send_trap(struct pt_regs *regs, unsigned long address,
307 unsigned long error_code, int signal_code, int breakpt)
308{
309 siginfo_t info;
310
311 current->thread.trap_nr = signal_code;
312 if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
313 11, SIGSEGV) == NOTIFY_STOP)
314 return;
315
316
317 info.si_signo = SIGTRAP;
318 info.si_errno = breakpt;
319 info.si_code = signal_code;
320 info.si_addr = (void __user *)address;
321 force_sig_info(SIGTRAP, &info, current);
322}
323#else
324void do_break (struct pt_regs *regs, unsigned long address,
325 unsigned long error_code)
326{
327 siginfo_t info;
328
329 current->thread.trap_nr = TRAP_HWBKPT;
330 if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
331 11, SIGSEGV) == NOTIFY_STOP)
332 return;
333
334 if (debugger_break_match(regs))
335 return;
336
337
338 hw_breakpoint_disable();
339
340
341 info.si_signo = SIGTRAP;
342 info.si_errno = 0;
343 info.si_code = TRAP_HWBKPT;
344 info.si_addr = (void __user *)address;
345 force_sig_info(SIGTRAP, &info, current);
346}
347#endif
348
349static DEFINE_PER_CPU(struct arch_hw_breakpoint, current_brk);
350
351#ifdef CONFIG_PPC_ADV_DEBUG_REGS
352
353
354
355static void set_debug_reg_defaults(struct thread_struct *thread)
356{
357 thread->debug.iac1 = thread->debug.iac2 = 0;
358#if CONFIG_PPC_ADV_DEBUG_IACS > 2
359 thread->debug.iac3 = thread->debug.iac4 = 0;
360#endif
361 thread->debug.dac1 = thread->debug.dac2 = 0;
362#if CONFIG_PPC_ADV_DEBUG_DVCS > 0
363 thread->debug.dvc1 = thread->debug.dvc2 = 0;
364#endif
365 thread->debug.dbcr0 = 0;
366#ifdef CONFIG_BOOKE
367
368
369
370 thread->debug.dbcr1 = DBCR1_IAC1US | DBCR1_IAC2US |
371 DBCR1_IAC3US | DBCR1_IAC4US;
372
373
374
375
376 thread->debug.dbcr2 = DBCR2_DAC1US | DBCR2_DAC2US;
377#else
378 thread->debug.dbcr1 = 0;
379#endif
380}
381
382static void prime_debug_regs(struct debug_reg *debug)
383{
384
385
386
387
388
389 mtmsr(mfmsr() & ~MSR_DE);
390
391 mtspr(SPRN_IAC1, debug->iac1);
392 mtspr(SPRN_IAC2, debug->iac2);
393#if CONFIG_PPC_ADV_DEBUG_IACS > 2
394 mtspr(SPRN_IAC3, debug->iac3);
395 mtspr(SPRN_IAC4, debug->iac4);
396#endif
397 mtspr(SPRN_DAC1, debug->dac1);
398 mtspr(SPRN_DAC2, debug->dac2);
399#if CONFIG_PPC_ADV_DEBUG_DVCS > 0
400 mtspr(SPRN_DVC1, debug->dvc1);
401 mtspr(SPRN_DVC2, debug->dvc2);
402#endif
403 mtspr(SPRN_DBCR0, debug->dbcr0);
404 mtspr(SPRN_DBCR1, debug->dbcr1);
405#ifdef CONFIG_BOOKE
406 mtspr(SPRN_DBCR2, debug->dbcr2);
407#endif
408}
409
410
411
412
413
414void switch_booke_debug_regs(struct debug_reg *new_debug)
415{
416 if ((current->thread.debug.dbcr0 & DBCR0_IDM)
417 || (new_debug->dbcr0 & DBCR0_IDM))
418 prime_debug_regs(new_debug);
419}
420EXPORT_SYMBOL_GPL(switch_booke_debug_regs);
421#else
422#ifndef CONFIG_HAVE_HW_BREAKPOINT
423static void set_debug_reg_defaults(struct thread_struct *thread)
424{
425 thread->hw_brk.address = 0;
426 thread->hw_brk.type = 0;
427 set_breakpoint(&thread->hw_brk);
428}
429#endif
430#endif
431
432#ifdef CONFIG_PPC_ADV_DEBUG_REGS
433static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
434{
435 mtspr(SPRN_DAC1, dabr);
436#ifdef CONFIG_PPC_47x
437 isync();
438#endif
439 return 0;
440}
441#elif defined(CONFIG_PPC_BOOK3S)
442static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
443{
444 mtspr(SPRN_DABR, dabr);
445 if (cpu_has_feature(CPU_FTR_DABRX))
446 mtspr(SPRN_DABRX, dabrx);
447 return 0;
448}
449#else
450static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
451{
452 return -EINVAL;
453}
454#endif
455
456static inline int set_dabr(struct arch_hw_breakpoint *brk)
457{
458 unsigned long dabr, dabrx;
459
460 dabr = brk->address | (brk->type & HW_BRK_TYPE_DABR);
461 dabrx = ((brk->type >> 3) & 0x7);
462
463 if (ppc_md.set_dabr)
464 return ppc_md.set_dabr(dabr, dabrx);
465
466 return __set_dabr(dabr, dabrx);
467}
468
469static inline int set_dawr(struct arch_hw_breakpoint *brk)
470{
471 unsigned long dawr, dawrx, mrd;
472
473 dawr = brk->address;
474
475 dawrx = (brk->type & (HW_BRK_TYPE_READ | HW_BRK_TYPE_WRITE)) \
476 << (63 - 58);
477 dawrx |= ((brk->type & (HW_BRK_TYPE_TRANSLATE)) >> 2) \
478 << (63 - 59);
479 dawrx |= (brk->type & (HW_BRK_TYPE_PRIV_ALL)) \
480 >> 3;
481
482
483
484
485
486
487 mrd = ((brk->len + 7) >> 3) - 1;
488 dawrx |= (mrd & 0x3f) << (63 - 53);
489
490 if (ppc_md.set_dawr)
491 return ppc_md.set_dawr(dawr, dawrx);
492 mtspr(SPRN_DAWR, dawr);
493 mtspr(SPRN_DAWRX, dawrx);
494 return 0;
495}
496
497void __set_breakpoint(struct arch_hw_breakpoint *brk)
498{
499 memcpy(this_cpu_ptr(¤t_brk), brk, sizeof(*brk));
500
501 if (cpu_has_feature(CPU_FTR_DAWR))
502 set_dawr(brk);
503 else
504 set_dabr(brk);
505}
506
507void set_breakpoint(struct arch_hw_breakpoint *brk)
508{
509 preempt_disable();
510 __set_breakpoint(brk);
511 preempt_enable();
512}
513
514#ifdef CONFIG_PPC64
515DEFINE_PER_CPU(struct cpu_usage, cpu_usage_array);
516#endif
517
518static inline bool hw_brk_match(struct arch_hw_breakpoint *a,
519 struct arch_hw_breakpoint *b)
520{
521 if (a->address != b->address)
522 return false;
523 if (a->type != b->type)
524 return false;
525 if (a->len != b->len)
526 return false;
527 return true;
528}
529
530#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
531static void tm_reclaim_thread(struct thread_struct *thr,
532 struct thread_info *ti, uint8_t cause)
533{
534 unsigned long msr_diff = 0;
535
536
537
538
539
540
541
542 if (test_ti_thread_flag(ti, TIF_RESTORE_TM)) {
543 msr_diff = thr->ckpt_regs.msr & ~thr->regs->msr;
544 if (msr_diff & MSR_FP)
545 memcpy(&thr->transact_fp, &thr->fp_state,
546 sizeof(struct thread_fp_state));
547 if (msr_diff & MSR_VEC)
548 memcpy(&thr->transact_vr, &thr->vr_state,
549 sizeof(struct thread_vr_state));
550 clear_ti_thread_flag(ti, TIF_RESTORE_TM);
551 msr_diff &= MSR_FP | MSR_VEC | MSR_VSX | MSR_FE0 | MSR_FE1;
552 }
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569 if (!MSR_TM_SUSPENDED(mfmsr()))
570 return;
571
572 tm_reclaim(thr, thr->regs->msr, cause);
573
574
575
576
577
578
579
580 thr->regs->msr |= msr_diff;
581}
582
583void tm_reclaim_current(uint8_t cause)
584{
585 tm_enable();
586 tm_reclaim_thread(¤t->thread, current_thread_info(), cause);
587}
588
589static inline void tm_reclaim_task(struct task_struct *tsk)
590{
591
592
593
594
595
596
597
598
599
600
601 struct thread_struct *thr = &tsk->thread;
602
603 if (!thr->regs)
604 return;
605
606 if (!MSR_TM_ACTIVE(thr->regs->msr))
607 goto out_and_saveregs;
608
609
610
611
612
613
614 if (!test_ti_thread_flag(task_thread_info(tsk), TIF_RESTORE_TM))
615 thr->ckpt_regs.msr = thr->regs->msr;
616
617 TM_DEBUG("--- tm_reclaim on pid %d (NIP=%lx, "
618 "ccr=%lx, msr=%lx, trap=%lx)\n",
619 tsk->pid, thr->regs->nip,
620 thr->regs->ccr, thr->regs->msr,
621 thr->regs->trap);
622
623 tm_reclaim_thread(thr, task_thread_info(tsk), TM_CAUSE_RESCHED);
624
625 TM_DEBUG("--- tm_reclaim on pid %d complete\n",
626 tsk->pid);
627
628out_and_saveregs:
629
630
631
632
633
634 tm_save_sprs(thr);
635}
636
637extern void __tm_recheckpoint(struct thread_struct *thread,
638 unsigned long orig_msr);
639
640void tm_recheckpoint(struct thread_struct *thread,
641 unsigned long orig_msr)
642{
643 unsigned long flags;
644
645
646
647
648
649 local_irq_save(flags);
650 hard_irq_disable();
651
652
653
654
655 tm_restore_sprs(thread);
656
657 __tm_recheckpoint(thread, orig_msr);
658
659 local_irq_restore(flags);
660}
661
662static inline void tm_recheckpoint_new_task(struct task_struct *new)
663{
664 unsigned long msr;
665
666 if (!cpu_has_feature(CPU_FTR_TM))
667 return;
668
669
670
671
672
673
674
675
676
677 if (!new->thread.regs)
678 return;
679
680 if (!MSR_TM_ACTIVE(new->thread.regs->msr)){
681 tm_restore_sprs(&new->thread);
682 return;
683 }
684 msr = new->thread.ckpt_regs.msr;
685
686 TM_DEBUG("*** tm_recheckpoint of pid %d "
687 "(new->msr 0x%lx, new->origmsr 0x%lx)\n",
688 new->pid, new->thread.regs->msr, msr);
689
690
691 tm_recheckpoint(&new->thread, msr);
692
693
694 if (msr & MSR_FP) {
695 do_load_up_transact_fpu(&new->thread);
696 new->thread.regs->msr |=
697 (MSR_FP | new->thread.fpexc_mode);
698 }
699#ifdef CONFIG_ALTIVEC
700 if (msr & MSR_VEC) {
701 do_load_up_transact_altivec(&new->thread);
702 new->thread.regs->msr |= MSR_VEC;
703 }
704#endif
705
706 if (msr & MSR_VSX)
707 new->thread.regs->msr |= MSR_VSX;
708
709 TM_DEBUG("*** tm_recheckpoint of pid %d complete "
710 "(kernel msr 0x%lx)\n",
711 new->pid, mfmsr());
712}
713
714static inline void __switch_to_tm(struct task_struct *prev)
715{
716 if (cpu_has_feature(CPU_FTR_TM)) {
717 tm_enable();
718 tm_reclaim_task(prev);
719 }
720}
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736void restore_tm_state(struct pt_regs *regs)
737{
738 unsigned long msr_diff;
739
740 clear_thread_flag(TIF_RESTORE_TM);
741 if (!MSR_TM_ACTIVE(regs->msr))
742 return;
743
744 msr_diff = current->thread.ckpt_regs.msr & ~regs->msr;
745 msr_diff &= MSR_FP | MSR_VEC | MSR_VSX;
746 if (msr_diff & MSR_FP) {
747 fp_enable();
748 load_fp_state(¤t->thread.fp_state);
749 regs->msr |= current->thread.fpexc_mode;
750 }
751 if (msr_diff & MSR_VEC) {
752 vec_enable();
753 load_vr_state(¤t->thread.vr_state);
754 }
755 regs->msr |= msr_diff;
756}
757
758#else
759#define tm_recheckpoint_new_task(new)
760#define __switch_to_tm(prev)
761#endif
762
763struct task_struct *__switch_to(struct task_struct *prev,
764 struct task_struct *new)
765{
766 struct thread_struct *new_thread, *old_thread;
767 struct task_struct *last;
768#ifdef CONFIG_PPC_BOOK3S_64
769 struct ppc64_tlb_batch *batch;
770#endif
771
772 WARN_ON(!irqs_disabled());
773
774
775
776
777
778
779
780
781
782 save_early_sprs(&prev->thread);
783
784 __switch_to_tm(prev);
785
786#ifdef CONFIG_SMP
787
788
789
790
791
792
793
794
795
796 if (prev->thread.regs && (prev->thread.regs->msr & MSR_FP))
797 giveup_fpu(prev);
798#ifdef CONFIG_ALTIVEC
799
800
801
802
803
804
805
806
807
808
809
810 if (prev->thread.regs && (prev->thread.regs->msr & MSR_VEC))
811 giveup_altivec(prev);
812#endif
813#ifdef CONFIG_VSX
814 if (prev->thread.regs && (prev->thread.regs->msr & MSR_VSX))
815
816 __giveup_vsx(prev);
817#endif
818#ifdef CONFIG_SPE
819
820
821
822
823
824
825
826 if ((prev->thread.regs && (prev->thread.regs->msr & MSR_SPE)))
827 giveup_spe(prev);
828#endif
829
830#else
831#ifdef CONFIG_ALTIVEC
832
833
834
835 if (new->thread.regs && last_task_used_altivec == new)
836 new->thread.regs->msr |= MSR_VEC;
837#endif
838#ifdef CONFIG_VSX
839 if (new->thread.regs && last_task_used_vsx == new)
840 new->thread.regs->msr |= MSR_VSX;
841#endif
842#ifdef CONFIG_SPE
843
844
845
846 if (new->thread.regs && last_task_used_spe == new)
847 new->thread.regs->msr |= MSR_SPE;
848#endif
849
850#endif
851
852#ifdef CONFIG_PPC_ADV_DEBUG_REGS
853 switch_booke_debug_regs(&new->thread.debug);
854#else
855
856
857
858
859#ifndef CONFIG_HAVE_HW_BREAKPOINT
860 if (unlikely(!hw_brk_match(this_cpu_ptr(¤t_brk), &new->thread.hw_brk)))
861 __set_breakpoint(&new->thread.hw_brk);
862#endif
863#endif
864
865
866 new_thread = &new->thread;
867 old_thread = ¤t->thread;
868
869#ifdef CONFIG_PPC64
870
871
872
873 if (firmware_has_feature(FW_FEATURE_SPLPAR)) {
874 struct cpu_usage *cu = this_cpu_ptr(&cpu_usage_array);
875 long unsigned start_tb, current_tb;
876 start_tb = old_thread->start_tb;
877 cu->current_tb = current_tb = mfspr(SPRN_PURR);
878 old_thread->accum_tb += (current_tb - start_tb);
879 new_thread->start_tb = current_tb;
880 }
881#endif
882
883#ifdef CONFIG_PPC_BOOK3S_64
884 batch = this_cpu_ptr(&ppc64_tlb_batch);
885 if (batch->active) {
886 current_thread_info()->local_flags |= _TLF_LAZY_MMU;
887 if (batch->index)
888 __flush_tlb_pending(batch);
889 batch->active = 0;
890 }
891#endif
892
893
894
895
896
897
898 hard_irq_disable();
899
900 tm_recheckpoint_new_task(new);
901
902 last = _switch(old_thread, new_thread);
903
904#ifdef CONFIG_PPC_BOOK3S_64
905 if (current_thread_info()->local_flags & _TLF_LAZY_MMU) {
906 current_thread_info()->local_flags &= ~_TLF_LAZY_MMU;
907 batch = this_cpu_ptr(&ppc64_tlb_batch);
908 batch->active = 1;
909 }
910#endif
911
912 return last;
913}
914
915static int instructions_to_print = 16;
916
917static void show_instructions(struct pt_regs *regs)
918{
919 int i;
920 unsigned long pc = regs->nip - (instructions_to_print * 3 / 4 *
921 sizeof(int));
922
923 printk("Instruction dump:");
924
925 for (i = 0; i < instructions_to_print; i++) {
926 int instr;
927
928 if (!(i % 8))
929 printk("\n");
930
931#if !defined(CONFIG_BOOKE)
932
933
934
935 if (!(regs->msr & MSR_IR))
936 pc = (unsigned long)phys_to_virt(pc);
937#endif
938
939 if (!__kernel_text_address(pc) ||
940 probe_kernel_address((unsigned int __user *)pc, instr)) {
941 printk(KERN_CONT "XXXXXXXX ");
942 } else {
943 if (regs->nip == pc)
944 printk(KERN_CONT "<%08x> ", instr);
945 else
946 printk(KERN_CONT "%08x ", instr);
947 }
948
949 pc += sizeof(int);
950 }
951
952 printk("\n");
953}
954
955static struct regbit {
956 unsigned long bit;
957 const char *name;
958} msr_bits[] = {
959#if defined(CONFIG_PPC64) && !defined(CONFIG_BOOKE)
960 {MSR_SF, "SF"},
961 {MSR_HV, "HV"},
962#endif
963 {MSR_VEC, "VEC"},
964 {MSR_VSX, "VSX"},
965#ifdef CONFIG_BOOKE
966 {MSR_CE, "CE"},
967#endif
968 {MSR_EE, "EE"},
969 {MSR_PR, "PR"},
970 {MSR_FP, "FP"},
971 {MSR_ME, "ME"},
972#ifdef CONFIG_BOOKE
973 {MSR_DE, "DE"},
974#else
975 {MSR_SE, "SE"},
976 {MSR_BE, "BE"},
977#endif
978 {MSR_IR, "IR"},
979 {MSR_DR, "DR"},
980 {MSR_PMM, "PMM"},
981#ifndef CONFIG_BOOKE
982 {MSR_RI, "RI"},
983 {MSR_LE, "LE"},
984#endif
985 {0, NULL}
986};
987
988static void printbits(unsigned long val, struct regbit *bits)
989{
990 const char *sep = "";
991
992 printk("<");
993 for (; bits->bit; ++bits)
994 if (val & bits->bit) {
995 printk("%s%s", sep, bits->name);
996 sep = ",";
997 }
998 printk(">");
999}
1000
1001#ifdef CONFIG_PPC64
1002#define REG "%016lx"
1003#define REGS_PER_LINE 4
1004#define LAST_VOLATILE 13
1005#else
1006#define REG "%08lx"
1007#define REGS_PER_LINE 8
1008#define LAST_VOLATILE 12
1009#endif
1010
1011void show_regs(struct pt_regs * regs)
1012{
1013 int i, trap;
1014
1015 show_regs_print_info(KERN_DEFAULT);
1016
1017 printk("NIP: "REG" LR: "REG" CTR: "REG"\n",
1018 regs->nip, regs->link, regs->ctr);
1019 printk("REGS: %p TRAP: %04lx %s (%s)\n",
1020 regs, regs->trap, print_tainted(), init_utsname()->release);
1021 printk("MSR: "REG" ", regs->msr);
1022 printbits(regs->msr, msr_bits);
1023 printk(" CR: %08lx XER: %08lx\n", regs->ccr, regs->xer);
1024 trap = TRAP(regs);
1025 if ((regs->trap != 0xc00) && cpu_has_feature(CPU_FTR_CFAR))
1026 printk("CFAR: "REG" ", regs->orig_gpr3);
1027 if (trap == 0x200 || trap == 0x300 || trap == 0x600)
1028#if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
1029 printk("DEAR: "REG" ESR: "REG" ", regs->dar, regs->dsisr);
1030#else
1031 printk("DAR: "REG" DSISR: %08lx ", regs->dar, regs->dsisr);
1032#endif
1033#ifdef CONFIG_PPC64
1034 printk("SOFTE: %ld ", regs->softe);
1035#endif
1036#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1037 if (MSR_TM_ACTIVE(regs->msr))
1038 printk("\nPACATMSCRATCH: %016llx ", get_paca()->tm_scratch);
1039#endif
1040
1041 for (i = 0; i < 32; i++) {
1042 if ((i % REGS_PER_LINE) == 0)
1043 printk("\nGPR%02d: ", i);
1044 printk(REG " ", regs->gpr[i]);
1045 if (i == LAST_VOLATILE && !FULL_REGS(regs))
1046 break;
1047 }
1048 printk("\n");
1049#ifdef CONFIG_KALLSYMS
1050
1051
1052
1053
1054 printk("NIP ["REG"] %pS\n", regs->nip, (void *)regs->nip);
1055 printk("LR ["REG"] %pS\n", regs->link, (void *)regs->link);
1056#endif
1057 show_stack(current, (unsigned long *) regs->gpr[1]);
1058 if (!user_mode(regs))
1059 show_instructions(regs);
1060}
1061
1062void exit_thread(void)
1063{
1064 discard_lazy_cpu_state();
1065}
1066
1067void flush_thread(void)
1068{
1069 discard_lazy_cpu_state();
1070
1071#ifdef CONFIG_HAVE_HW_BREAKPOINT
1072 flush_ptrace_hw_breakpoint(current);
1073#else
1074 set_debug_reg_defaults(¤t->thread);
1075#endif
1076}
1077
1078void
1079release_thread(struct task_struct *t)
1080{
1081}
1082
1083
1084
1085
1086
1087int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
1088{
1089 flush_fp_to_thread(src);
1090 flush_altivec_to_thread(src);
1091 flush_vsx_to_thread(src);
1092 flush_spe_to_thread(src);
1093
1094
1095
1096
1097
1098
1099
1100 __switch_to_tm(src);
1101 tm_recheckpoint_new_task(src);
1102
1103 *dst = *src;
1104
1105 clear_task_ebb(dst);
1106
1107 return 0;
1108}
1109
1110static void setup_ksp_vsid(struct task_struct *p, unsigned long sp)
1111{
1112#ifdef CONFIG_PPC_STD_MMU_64
1113 unsigned long sp_vsid;
1114 unsigned long llp = mmu_psize_defs[mmu_linear_psize].sllp;
1115
1116 if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
1117 sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_1T)
1118 << SLB_VSID_SHIFT_1T;
1119 else
1120 sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_256M)
1121 << SLB_VSID_SHIFT;
1122 sp_vsid |= SLB_VSID_KERNEL | llp;
1123 p->thread.ksp_vsid = sp_vsid;
1124#endif
1125}
1126
1127
1128
1129
1130
1131
1132
1133
1134int copy_thread(unsigned long clone_flags, unsigned long usp,
1135 unsigned long kthread_arg, struct task_struct *p)
1136{
1137 struct pt_regs *childregs, *kregs;
1138 extern void ret_from_fork(void);
1139 extern void ret_from_kernel_thread(void);
1140 void (*f)(void);
1141 unsigned long sp = (unsigned long)task_stack_page(p) + THREAD_SIZE;
1142
1143
1144 sp -= sizeof(struct pt_regs);
1145 childregs = (struct pt_regs *) sp;
1146 if (unlikely(p->flags & PF_KTHREAD)) {
1147
1148 struct thread_info *ti = (void *)task_stack_page(p);
1149 memset(childregs, 0, sizeof(struct pt_regs));
1150 childregs->gpr[1] = sp + sizeof(struct pt_regs);
1151
1152 if (usp)
1153 childregs->gpr[14] = ppc_function_entry((void *)usp);
1154#ifdef CONFIG_PPC64
1155 clear_tsk_thread_flag(p, TIF_32BIT);
1156 childregs->softe = 1;
1157#endif
1158 childregs->gpr[15] = kthread_arg;
1159 p->thread.regs = NULL;
1160 ti->flags |= _TIF_RESTOREALL;
1161 f = ret_from_kernel_thread;
1162 } else {
1163
1164 struct pt_regs *regs = current_pt_regs();
1165 CHECK_FULL_REGS(regs);
1166 *childregs = *regs;
1167 if (usp)
1168 childregs->gpr[1] = usp;
1169 p->thread.regs = childregs;
1170 childregs->gpr[3] = 0;
1171 if (clone_flags & CLONE_SETTLS) {
1172#ifdef CONFIG_PPC64
1173 if (!is_32bit_task())
1174 childregs->gpr[13] = childregs->gpr[6];
1175 else
1176#endif
1177 childregs->gpr[2] = childregs->gpr[6];
1178 }
1179
1180 f = ret_from_fork;
1181 }
1182 sp -= STACK_FRAME_OVERHEAD;
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192 ((unsigned long *)sp)[0] = 0;
1193 sp -= sizeof(struct pt_regs);
1194 kregs = (struct pt_regs *) sp;
1195 sp -= STACK_FRAME_OVERHEAD;
1196 p->thread.ksp = sp;
1197#ifdef CONFIG_PPC32
1198 p->thread.ksp_limit = (unsigned long)task_stack_page(p) +
1199 _ALIGN_UP(sizeof(struct thread_info), 16);
1200#endif
1201#ifdef CONFIG_HAVE_HW_BREAKPOINT
1202 p->thread.ptrace_bps[0] = NULL;
1203#endif
1204
1205 p->thread.fp_save_area = NULL;
1206#ifdef CONFIG_ALTIVEC
1207 p->thread.vr_save_area = NULL;
1208#endif
1209
1210 setup_ksp_vsid(p, sp);
1211
1212#ifdef CONFIG_PPC64
1213 if (cpu_has_feature(CPU_FTR_DSCR)) {
1214 p->thread.dscr_inherit = current->thread.dscr_inherit;
1215 p->thread.dscr = current->thread.dscr;
1216 }
1217 if (cpu_has_feature(CPU_FTR_HAS_PPR))
1218 p->thread.ppr = INIT_PPR;
1219#endif
1220 kregs->nip = ppc_function_entry(f);
1221 return 0;
1222}
1223
1224
1225
1226
1227void start_thread(struct pt_regs *regs, unsigned long start, unsigned long sp)
1228{
1229#ifdef CONFIG_PPC64
1230 unsigned long load_addr = regs->gpr[2];
1231#endif
1232
1233
1234
1235
1236
1237 if (!current->thread.regs) {
1238 struct pt_regs *regs = task_stack_page(current) + THREAD_SIZE;
1239 current->thread.regs = regs - 1;
1240 }
1241
1242 memset(regs->gpr, 0, sizeof(regs->gpr));
1243 regs->ctr = 0;
1244 regs->link = 0;
1245 regs->xer = 0;
1246 regs->ccr = 0;
1247 regs->gpr[1] = sp;
1248
1249
1250
1251
1252
1253
1254 regs->trap &= ~1UL;
1255
1256#ifdef CONFIG_PPC32
1257 regs->mq = 0;
1258 regs->nip = start;
1259 regs->msr = MSR_USER;
1260#else
1261 if (!is_32bit_task()) {
1262 unsigned long entry;
1263
1264 if (is_elf2_task()) {
1265
1266 entry = start;
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276 regs->gpr[12] = start;
1277
1278 set_thread_flag(TIF_RESTOREALL);
1279 } else {
1280 unsigned long toc;
1281
1282
1283
1284
1285
1286
1287
1288 __get_user(entry, (unsigned long __user *)start);
1289 __get_user(toc, (unsigned long __user *)start+1);
1290
1291
1292
1293
1294 if (load_addr != 0) {
1295 entry += load_addr;
1296 toc += load_addr;
1297 }
1298 regs->gpr[2] = toc;
1299 }
1300 regs->nip = entry;
1301 regs->msr = MSR_USER64;
1302 } else {
1303 regs->nip = start;
1304 regs->gpr[2] = 0;
1305 regs->msr = MSR_USER32;
1306 }
1307#endif
1308 discard_lazy_cpu_state();
1309#ifdef CONFIG_VSX
1310 current->thread.used_vsr = 0;
1311#endif
1312 memset(¤t->thread.fp_state, 0, sizeof(current->thread.fp_state));
1313 current->thread.fp_save_area = NULL;
1314#ifdef CONFIG_ALTIVEC
1315 memset(¤t->thread.vr_state, 0, sizeof(current->thread.vr_state));
1316 current->thread.vr_state.vscr.u[3] = 0x00010000;
1317 current->thread.vr_save_area = NULL;
1318 current->thread.vrsave = 0;
1319 current->thread.used_vr = 0;
1320#endif
1321#ifdef CONFIG_SPE
1322 memset(current->thread.evr, 0, sizeof(current->thread.evr));
1323 current->thread.acc = 0;
1324 current->thread.spefscr = 0;
1325 current->thread.used_spe = 0;
1326#endif
1327#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1328 if (cpu_has_feature(CPU_FTR_TM))
1329 regs->msr |= MSR_TM;
1330 current->thread.tm_tfhar = 0;
1331 current->thread.tm_texasr = 0;
1332 current->thread.tm_tfiar = 0;
1333#endif
1334}
1335EXPORT_SYMBOL(start_thread);
1336
1337#define PR_FP_ALL_EXCEPT (PR_FP_EXC_DIV | PR_FP_EXC_OVF | PR_FP_EXC_UND \
1338 | PR_FP_EXC_RES | PR_FP_EXC_INV)
1339
1340int set_fpexc_mode(struct task_struct *tsk, unsigned int val)
1341{
1342 struct pt_regs *regs = tsk->thread.regs;
1343
1344
1345
1346
1347
1348 if (val & PR_FP_EXC_SW_ENABLE) {
1349#ifdef CONFIG_SPE
1350 if (cpu_has_feature(CPU_FTR_SPE)) {
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363 tsk->thread.spefscr_last = mfspr(SPRN_SPEFSCR);
1364 tsk->thread.fpexc_mode = val &
1365 (PR_FP_EXC_SW_ENABLE | PR_FP_ALL_EXCEPT);
1366 return 0;
1367 } else {
1368 return -EINVAL;
1369 }
1370#else
1371 return -EINVAL;
1372#endif
1373 }
1374
1375
1376
1377
1378
1379
1380 if (val > PR_FP_EXC_PRECISE)
1381 return -EINVAL;
1382 tsk->thread.fpexc_mode = __pack_fe01(val);
1383 if (regs != NULL && (regs->msr & MSR_FP) != 0)
1384 regs->msr = (regs->msr & ~(MSR_FE0|MSR_FE1))
1385 | tsk->thread.fpexc_mode;
1386 return 0;
1387}
1388
1389int get_fpexc_mode(struct task_struct *tsk, unsigned long adr)
1390{
1391 unsigned int val;
1392
1393 if (tsk->thread.fpexc_mode & PR_FP_EXC_SW_ENABLE)
1394#ifdef CONFIG_SPE
1395 if (cpu_has_feature(CPU_FTR_SPE)) {
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408 tsk->thread.spefscr_last = mfspr(SPRN_SPEFSCR);
1409 val = tsk->thread.fpexc_mode;
1410 } else
1411 return -EINVAL;
1412#else
1413 return -EINVAL;
1414#endif
1415 else
1416 val = __unpack_fe01(tsk->thread.fpexc_mode);
1417 return put_user(val, (unsigned int __user *) adr);
1418}
1419
1420int set_endian(struct task_struct *tsk, unsigned int val)
1421{
1422 struct pt_regs *regs = tsk->thread.regs;
1423
1424 if ((val == PR_ENDIAN_LITTLE && !cpu_has_feature(CPU_FTR_REAL_LE)) ||
1425 (val == PR_ENDIAN_PPC_LITTLE && !cpu_has_feature(CPU_FTR_PPC_LE)))
1426 return -EINVAL;
1427
1428 if (regs == NULL)
1429 return -EINVAL;
1430
1431 if (val == PR_ENDIAN_BIG)
1432 regs->msr &= ~MSR_LE;
1433 else if (val == PR_ENDIAN_LITTLE || val == PR_ENDIAN_PPC_LITTLE)
1434 regs->msr |= MSR_LE;
1435 else
1436 return -EINVAL;
1437
1438 return 0;
1439}
1440
1441int get_endian(struct task_struct *tsk, unsigned long adr)
1442{
1443 struct pt_regs *regs = tsk->thread.regs;
1444 unsigned int val;
1445
1446 if (!cpu_has_feature(CPU_FTR_PPC_LE) &&
1447 !cpu_has_feature(CPU_FTR_REAL_LE))
1448 return -EINVAL;
1449
1450 if (regs == NULL)
1451 return -EINVAL;
1452
1453 if (regs->msr & MSR_LE) {
1454 if (cpu_has_feature(CPU_FTR_REAL_LE))
1455 val = PR_ENDIAN_LITTLE;
1456 else
1457 val = PR_ENDIAN_PPC_LITTLE;
1458 } else
1459 val = PR_ENDIAN_BIG;
1460
1461 return put_user(val, (unsigned int __user *)adr);
1462}
1463
1464int set_unalign_ctl(struct task_struct *tsk, unsigned int val)
1465{
1466 tsk->thread.align_ctl = val;
1467 return 0;
1468}
1469
1470int get_unalign_ctl(struct task_struct *tsk, unsigned long adr)
1471{
1472 return put_user(tsk->thread.align_ctl, (unsigned int __user *)adr);
1473}
1474
1475static inline int valid_irq_stack(unsigned long sp, struct task_struct *p,
1476 unsigned long nbytes)
1477{
1478 unsigned long stack_page;
1479 unsigned long cpu = task_cpu(p);
1480
1481
1482
1483
1484
1485 if (cpu < NR_CPUS && cpu_possible(cpu)) {
1486 stack_page = (unsigned long) hardirq_ctx[cpu];
1487 if (sp >= stack_page + sizeof(struct thread_struct)
1488 && sp <= stack_page + THREAD_SIZE - nbytes)
1489 return 1;
1490
1491 stack_page = (unsigned long) softirq_ctx[cpu];
1492 if (sp >= stack_page + sizeof(struct thread_struct)
1493 && sp <= stack_page + THREAD_SIZE - nbytes)
1494 return 1;
1495 }
1496 return 0;
1497}
1498
1499int validate_sp(unsigned long sp, struct task_struct *p,
1500 unsigned long nbytes)
1501{
1502 unsigned long stack_page = (unsigned long)task_stack_page(p);
1503
1504 if (sp >= stack_page + sizeof(struct thread_struct)
1505 && sp <= stack_page + THREAD_SIZE - nbytes)
1506 return 1;
1507
1508 return valid_irq_stack(sp, p, nbytes);
1509}
1510
1511EXPORT_SYMBOL(validate_sp);
1512
1513unsigned long get_wchan(struct task_struct *p)
1514{
1515 unsigned long ip, sp;
1516 int count = 0;
1517
1518 if (!p || p == current || p->state == TASK_RUNNING)
1519 return 0;
1520
1521 sp = p->thread.ksp;
1522 if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
1523 return 0;
1524
1525 do {
1526 sp = *(unsigned long *)sp;
1527 if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
1528 return 0;
1529 if (count > 0) {
1530 ip = ((unsigned long *)sp)[STACK_FRAME_LR_SAVE];
1531 if (!in_sched_functions(ip))
1532 return ip;
1533 }
1534 } while (count++ < 16);
1535 return 0;
1536}
1537
1538static int kstack_depth_to_print = CONFIG_PRINT_STACK_DEPTH;
1539
1540void show_stack(struct task_struct *tsk, unsigned long *stack)
1541{
1542 unsigned long sp, ip, lr, newsp;
1543 int count = 0;
1544 int firstframe = 1;
1545#ifdef CONFIG_FUNCTION_GRAPH_TRACER
1546 int curr_frame = current->curr_ret_stack;
1547 extern void return_to_handler(void);
1548 unsigned long rth = (unsigned long)return_to_handler;
1549#endif
1550
1551 sp = (unsigned long) stack;
1552 if (tsk == NULL)
1553 tsk = current;
1554 if (sp == 0) {
1555 if (tsk == current)
1556 sp = current_stack_pointer();
1557 else
1558 sp = tsk->thread.ksp;
1559 }
1560
1561 lr = 0;
1562 printk("Call Trace:\n");
1563 do {
1564 if (!validate_sp(sp, tsk, STACK_FRAME_OVERHEAD))
1565 return;
1566
1567 stack = (unsigned long *) sp;
1568 newsp = stack[0];
1569 ip = stack[STACK_FRAME_LR_SAVE];
1570 if (!firstframe || ip != lr) {
1571 printk("["REG"] ["REG"] %pS", sp, ip, (void *)ip);
1572#ifdef CONFIG_FUNCTION_GRAPH_TRACER
1573 if ((ip == rth) && curr_frame >= 0) {
1574 printk(" (%pS)",
1575 (void *)current->ret_stack[curr_frame].ret);
1576 curr_frame--;
1577 }
1578#endif
1579 if (firstframe)
1580 printk(" (unreliable)");
1581 printk("\n");
1582 }
1583 firstframe = 0;
1584
1585
1586
1587
1588
1589 if (validate_sp(sp, tsk, STACK_INT_FRAME_SIZE)
1590 && stack[STACK_FRAME_MARKER] == STACK_FRAME_REGS_MARKER) {
1591 struct pt_regs *regs = (struct pt_regs *)
1592 (sp + STACK_FRAME_OVERHEAD);
1593 lr = regs->link;
1594 printk("--- interrupt: %lx at %pS\n LR = %pS\n",
1595 regs->trap, (void *)regs->nip, (void *)lr);
1596 firstframe = 1;
1597 }
1598
1599 sp = newsp;
1600 } while (count++ < kstack_depth_to_print);
1601}
1602
1603#ifdef CONFIG_PPC64
1604
1605void notrace __ppc64_runlatch_on(void)
1606{
1607 struct thread_info *ti = current_thread_info();
1608 unsigned long ctrl;
1609
1610 ctrl = mfspr(SPRN_CTRLF);
1611 ctrl |= CTRL_RUNLATCH;
1612 mtspr(SPRN_CTRLT, ctrl);
1613
1614 ti->local_flags |= _TLF_RUNLATCH;
1615}
1616
1617
1618void notrace __ppc64_runlatch_off(void)
1619{
1620 struct thread_info *ti = current_thread_info();
1621 unsigned long ctrl;
1622
1623 ti->local_flags &= ~_TLF_RUNLATCH;
1624
1625 ctrl = mfspr(SPRN_CTRLF);
1626 ctrl &= ~CTRL_RUNLATCH;
1627 mtspr(SPRN_CTRLT, ctrl);
1628}
1629#endif
1630
1631unsigned long arch_align_stack(unsigned long sp)
1632{
1633 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
1634 sp -= get_random_int() & ~PAGE_MASK;
1635 return sp & ~0xf;
1636}
1637
1638static inline unsigned long brk_rnd(void)
1639{
1640 unsigned long rnd = 0;
1641
1642
1643 if (is_32bit_task())
1644 rnd = (long)(get_random_int() % (1<<(23-PAGE_SHIFT)));
1645 else
1646 rnd = (long)(get_random_int() % (1<<(30-PAGE_SHIFT)));
1647
1648 return rnd << PAGE_SHIFT;
1649}
1650
1651unsigned long arch_randomize_brk(struct mm_struct *mm)
1652{
1653 unsigned long base = mm->brk;
1654 unsigned long ret;
1655
1656#ifdef CONFIG_PPC_STD_MMU_64
1657
1658
1659
1660
1661
1662
1663
1664 if (!is_32bit_task() && (mmu_highuser_ssize == MMU_SEGSIZE_1T))
1665 base = max_t(unsigned long, mm->brk, 1UL << SID_SHIFT_1T);
1666#endif
1667
1668 ret = PAGE_ALIGN(base + brk_rnd());
1669
1670 if (ret < mm->brk)
1671 return mm->brk;
1672
1673 return ret;
1674}
1675
1676