On Wed, May 14, 2014 at 04:00:34PM +0200, Peter Zijlstra wrote:
> The below is a mostly no thought involved conversion of cpudl which
                        ^^^^^^^^^^^^^^^^^^^

> boots, I'll also do cpupri and then actually stare at the algorithms to
> see if I didn't make any obvious fails.
> 
> Juri?
> 
> ---
> @@ -195,10 +193,21 @@ int cpudl_init(struct cpudl *cp)
>       memset(cp, 0, sizeof(*cp));
>       raw_spin_lock_init(&cp->lock);
>       cp->size = 0;
> -     for (i = 0; i < NR_CPUS; i++)
> -             cp->cpu_to_idx[i] = IDX_INVALID;
> -     if (!alloc_cpumask_var(&cp->free_cpus, GFP_KERNEL))
> +
> +     cp->elements = kcalloc(num_possible_cpus(),
> +                            sizeof(struct cpudl_item),
> +                            GFP_KERNEL);
> +     if (!cp->elements)
> +             return -ENOMEM;
> +
> +     if (!alloc_cpumask_var(&cp->free_cpus, GFP_KERNEL)) {
> +             kfree(cp->elements);
>               return -ENOMEM;
> +     }
> +
> +     for_each_possible_cpu(i)
> +             cp->elements[i].idx = IDX_INVALID;
> +
>       cpumask_setall(cp->free_cpus);
>  
>       return 0;

Also add:

---
--- a/kernel/sched/cpudeadline.c
+++ b/kernel/sched/cpudeadline.c
@@ -220,4 +220,5 @@ int cpudl_init(struct cpudl *cp)
 void cpudl_cleanup(struct cpudl *cp)
 {
        free_cpumask_var(cp->free_cpus);
+       kfree(cp->elements);
 }

Attachment: pgp_4SJbQ3T1g.pgp
Description: PGP signature

Reply via email to