From c2198b52bdcf963fb540f160b357e97b1d42a042 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Mon, 11 Feb 2002 10:02:24 -0800 Subject: Update for the -K3 scheduler. --- include/asm-alpha/mmu_context.h | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'include') diff --git a/include/asm-alpha/mmu_context.h b/include/asm-alpha/mmu_context.h index 94d26e7b60f3..8bfa7d172fb5 100644 --- a/include/asm-alpha/mmu_context.h +++ b/include/asm-alpha/mmu_context.h @@ -24,13 +24,10 @@ /* ??? This does not belong here. */ /* * Every architecture must define this function. It's the fastest - * way of searching a 168-bit bitmap where the first 128 bits are - * unlikely to be set. It's guaranteed that at least one of the 168 - * bits is set. + * way of searching a 140-bit bitmap where the first 100 bits are + * unlikely to be set. It's guaranteed that at least one of the 140 + * bits is cleared. */ -#if MAX_RT_PRIO != 128 || MAX_PRIO > 192 -# error update this function. -#endif static inline int sched_find_first_bit(unsigned long *b) -- cgit v1.2.3 From 7d60ecdc01a8c011a7dd5906da0d231216b98c25 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Mon, 11 Feb 2002 21:21:06 -0800 Subject: Fix typo in math-emu. Patch from timball@tux.org. --- include/math-emu/op-4.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/math-emu/op-4.h b/include/math-emu/op-4.h index 2aa1356325ad..bb0305e59f63 100644 --- a/include/math-emu/op-4.h +++ b/include/math-emu/op-4.h @@ -645,7 +645,7 @@ X##_f[1] = (rsize <= _FP_W_TYPE_SIZE ? 0 : r >> _FP_W_TYPE_SIZE); \ X##_f[2] = (rsize <= 2*_FP_W_TYPE_SIZE ? 0 : r >> 2*_FP_W_TYPE_SIZE); \ X##_f[3] = (rsize <= 3*_FP_W_TYPE_SIZE ? 0 : r >> 3*_FP_W_TYPE_SIZE); \ - } while (0); + } while (0) #define _FP_FRAC_CONV_4_1(dfs, sfs, D, S) \ do { \ -- cgit v1.2.3