diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2009-05-12 21:33:39 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2009-05-12 21:33:39 +0000 |
commit | 1a53c6cce28a8fa3dc9d556608b2ffd9ae9ac597 (patch) | |
tree | c4e68e53cb37f3286b6c0bb2a685efeab9096417 /sys/arch/sparc64/dev/vnet.c | |
parent | fd7d793866538d8a14892a8478e6be2267460874 (diff) |
Don't throw away ldc packets if the ldc link went just up, otherwise we may
miss the initial handshake from OBP.
Diffstat (limited to 'sys/arch/sparc64/dev/vnet.c')
-rw-r--r-- | sys/arch/sparc64/dev/vnet.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/sparc64/dev/vnet.c b/sys/arch/sparc64/dev/vnet.c index 50fcc9adad8..0364bddfa7f 100644 --- a/sys/arch/sparc64/dev/vnet.c +++ b/sys/arch/sparc64/dev/vnet.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vnet.c,v 1.15 2009/05/12 21:13:37 kettenis Exp $ */ +/* $OpenBSD: vnet.c,v 1.16 2009/05/12 21:33:38 kettenis Exp $ */ /* * Copyright (c) 2009 Mark Kettenis * @@ -373,7 +373,6 @@ vnet_rx_intr(void *arg) break; } lc->lc_rx_state = rx_state; - hv_ldc_rx_set_qhead(lc->lc_id, rx_tail); return (1); } |