Looks like the problem is in deleting a node entry from the list, but I can't 
figure out why that would be a problem...  I need to see if I can re-create 
this locally to debug further. 

remove_cis_cache(struct pcmcia_socket *s, int attr, u_int addr, u_int len)
{
        struct cis_cache_entry *cis;

        list_for_each_entry(cis, &s->cis_cache, node)
                if (cis->addr == addr && cis->len == len && cis->attr == attr) {
  >>>>           list_del(&cis->node);
                        kfree(cis);
                        break;
                }
}

-- 
jaunty 2.6.28 freezes on pcmcia detection during boot
https://bugs.launchpad.net/bugs/320526
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to