diff options
author | 2020-11-22 14:06:22 +0000 | |
---|---|---|
committer | 2020-11-22 14:06:22 +0000 | |
commit | 9e61cfa5efbb8979c9e704ac91eb79ad275562b8 (patch) | |
tree | 893c38d42ce871ffc9ea608c3d26906683da33c4 | |
parent | fix typo; from Kris Katterjohn (diff) | |
download | wireguard-openbsd-9e61cfa5efbb8979c9e704ac91eb79ad275562b8.tar.xz wireguard-openbsd-9e61cfa5efbb8979c9e704ac91eb79ad275562b8.zip |
Enabling RGE_ISR_RX_DESC_UNAVAIL causes an interrupt storm, so disable
until the root cause is found. ok kevlo@ kettenis@
-rw-r--r-- | sys/dev/pci/if_rgereg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_rgereg.h b/sys/dev/pci/if_rgereg.h index e4b2acf64fd..55954d6d6e2 100644 --- a/sys/dev/pci/if_rgereg.h +++ b/sys/dev/pci/if_rgereg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_rgereg.h,v 1.4 2020/10/31 07:50:41 kevlo Exp $ */ +/* $OpenBSD: if_rgereg.h,v 1.5 2020/11/22 14:06:22 otto Exp $ */ /* * Copyright (c) 2019, 2020 Kevin Lo <kevlo@openbsd.org> @@ -88,7 +88,7 @@ #define RGE_INTRS \ (RGE_ISR_RX_OK | RGE_ISR_RX_ERR | RGE_ISR_TX_OK | \ - RGE_ISR_TX_ERR | RGE_ISR_RX_DESC_UNAVAIL | RGE_ISR_LINKCHG | \ + RGE_ISR_TX_ERR | RGE_ISR_LINKCHG | \ RGE_ISR_TX_DESC_UNAVAIL | RGE_ISR_PCS_TIMEOUT | RGE_ISR_SYSTEM_ERR) #define RGE_INTRS_TIMER \ |