> +
> +void __put_beancounter(struct user_beancounter *ub)
> +{
> +     unsigned long flags;
> +     struct user_beancounter *parent;
> +
> +again:
> +     parent = ub->parent;
> +     /* equevalent to atomic_dec_and_lock_irqsave() */
> +     local_irq_save(flags);
> +     if (likely(!atomic_dec_and_lock(&ub->ub_refcount, &ub_hash_lock))) {
> +             if (unlikely(atomic_read(&ub->ub_refcount) < 0))
> +                     printk(KERN_ERR "UB: Bad ub refcount: ub=%p, "
> +                                     "luid=%d, ref=%d\n",
> +                                     ub, ub->ub_uid,
> +                                     atomic_read(&ub->ub_refcount));
> +             local_irq_restore(flags);
> +             return;

Minor comment - the printk (I think there is one other place) could come after 
the local_irq_restore()

-- 

        Balbir Singh,
        Linux Technology Center,
        IBM Software Labs

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
ckrm-tech mailing list
https://lists.sourceforge.net/lists/listinfo/ckrm-tech

Reply via email to