- patches.arch/x86_mce_intel_decode_physical_address.patch:
[linux-flexiantxendom0-3.2.10.git] / net / x25 / x25_out.c
index 52351a2..d00649f 100644 (file)
@@ -148,8 +148,9 @@ void x25_kick(struct sock *sk)
        /*
         *      Transmit interrupt data.
         */
-       if (!x25->intflag && skb_peek(&x25->interrupt_out_queue) != NULL) {
-               x25->intflag = 1;
+       if (skb_peek(&x25->interrupt_out_queue) != NULL &&
+               !test_and_set_bit(X25_INTERRUPT_FLAG, &x25->flags)) {
+
                skb = skb_dequeue(&x25->interrupt_out_queue);
                x25_transmit_link(skb, x25->neighbour);
        }