diff options
Diffstat (limited to 'net/802')
-rw-r--r-- | net/802/garp.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/802/garp.c b/net/802/garp.c index 8456f5d98b85..5d9630a0eb93 100644 --- a/net/802/garp.c +++ b/net/802/garp.c | |||
@@ -609,8 +609,12 @@ void garp_uninit_applicant(struct net_device *dev, struct garp_application *appl | |||
609 | /* Delete timer and generate a final TRANSMIT_PDU event to flush out | 609 | /* Delete timer and generate a final TRANSMIT_PDU event to flush out |
610 | * all pending messages before the applicant is gone. */ | 610 | * all pending messages before the applicant is gone. */ |
611 | del_timer_sync(&app->join_timer); | 611 | del_timer_sync(&app->join_timer); |
612 | |||
613 | spin_lock_bh(&app->lock); | ||
612 | garp_gid_event(app, GARP_EVENT_TRANSMIT_PDU); | 614 | garp_gid_event(app, GARP_EVENT_TRANSMIT_PDU); |
613 | garp_pdu_queue(app); | 615 | garp_pdu_queue(app); |
616 | spin_unlock_bh(&app->lock); | ||
617 | |||
614 | garp_queue_xmit(app); | 618 | garp_queue_xmit(app); |
615 | 619 | ||
616 | dev_mc_del(dev, appl->proto.group_address); | 620 | dev_mc_del(dev, appl->proto.group_address); |