Commit 3edcfb29 authored by Krzysztof Hałasa's avatar Krzysztof Hałasa

IXP4xx: check for queue being empty in qmgr_release_queue().

Signed-off-by: default avatarKrzysztof Hałasa <khc@pm.waw.pl>
parent 221b3d60
......@@ -199,6 +199,10 @@ void qmgr_release_queue(unsigned int queue)
spin_unlock_irq(&qmgr_lock);
module_put(THIS_MODULE);
while ((addr = qmgr_get_entry(queue)))
printk(KERN_ERR "qmgr: released queue %d not empty: 0x%08X\n",
queue, addr);
#if DEBUG
printk(KERN_DEBUG "qmgr: released queue %i\n", queue);
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment