Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 108958
b: refs/heads/master
c: 53b41ba
h: refs/heads/master
v: v3
  • Loading branch information
Jan Glauber authored and Martin Schwidefsky committed Aug 21, 2008
1 parent fb8bde8 commit 022ea26
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8853e505a15f31fe608cb50e038ba2f794eed923
refs/heads/master: 53b41ba7ce4563c33a0449fbcbbd70665477d654
6 changes: 5 additions & 1 deletion trunk/drivers/s390/cio/qdio_thinint.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,11 @@ void tiqdio_remove_input_queues(struct qdio_irq *irq_ptr)
struct qdio_q *q;
int i;

for_each_input_queue(irq_ptr, q, i) {
for (i = 0; i < irq_ptr->nr_input_qs; i++) {
q = irq_ptr->input_qs[i];
/* if establish triggered an error */
if (!q || !q->entry.prev || !q->entry.next)
continue;
list_del_rcu(&q->entry);
synchronize_rcu();
}
Expand Down

0 comments on commit 022ea26

Please sign in to comment.