Lines Matching refs:stack
960 * The size of the copied stack pool is explicitly 2 longs so that we
977 * Copy the pool to the stack so that the mixer always has a
1141 * CPU, the timer activity will be touching the stack of the CPU that is
1165 } stack;
1167 stack.entropy = random_get_entropy();
1170 if (stack.entropy == random_get_entropy())
1173 timer_setup_on_stack(&stack.timer, entropy_timer, 0);
1175 if (!timer_pending(&stack.timer))
1176 mod_timer(&stack.timer, jiffies + 1);
1177 mix_pool_bytes(&stack.entropy, sizeof(stack.entropy));
1179 stack.entropy = random_get_entropy();
1182 del_timer_sync(&stack.timer);
1183 destroy_timer_on_stack(&stack.timer);
1184 mix_pool_bytes(&stack.entropy, sizeof(stack.entropy));