Changeset 31d8e10 in mainline for kernel/generic/src/ipc/irq.c


Ignore:
Timestamp:
2007-04-05T16:09:49Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
547fa39
Parents:
879585a3
Message:

Continue to de-oversynchronize the kernel.

  • replace as→refcount with an atomic counter; accesses to this

reference counter are not to be done when the as→lock mutex is held;
this gets us rid of mutex_lock_active();

Remove the possibility of a deadlock between TLB shootdown and asidlock.

  • get rid of mutex_lock_active() on as→lock
  • when locking the asidlock spinlock, always do it conditionally and with

preemption disabled; in the unsuccessful case, enable interrupts and try again

  • there should be no deadlock between TLB shootdown and the as→lock mutexes
  • PLEASE REVIEW !!!

Add DEADLOCK_PROBE's to places where we have spinlock_trylock() loops.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/ipc/irq.c

    r879585a3 r31d8e10  
    337337                link_t *cur = box->irq_head.next;
    338338                irq_t *irq;
     339                DEADLOCK_PROBE_INIT(p_irqlock);
    339340               
    340341                irq = list_get_instance(cur, irq_t, notif_cfg.link);
     
    345346                        spinlock_unlock(&box->irq_lock);
    346347                        interrupts_restore(ipl);
     348                        DEADLOCK_PROBE(p_irqlock, DEADLOCK_THRESHOLD);
    347349                        goto loop;
    348350                }
Note: See TracChangeset for help on using the changeset viewer.