From 08b0208adac2044d9e7d59f1281b277b672d4e06 Mon Sep 17 00:00:00 2001 From: Stefan Sperling Date: Mon, 6 Mar 2023 11:37:15 +0000 Subject: fix previous: only ignore request to delete key while doing crypto in hardware --- sys/dev/pci/if_iwx.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sys/dev') diff --git a/sys/dev/pci/if_iwx.c b/sys/dev/pci/if_iwx.c index b1d8498a5fb..edd3cb77a45 100644 --- a/sys/dev/pci/if_iwx.c +++ b/sys/dev/pci/if_iwx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_iwx.c,v 1.167 2023/03/06 11:33:57 stsp Exp $ */ +/* $OpenBSD: if_iwx.c,v 1.168 2023/03/06 11:37:14 stsp Exp $ */ /* * Copyright (c) 2014, 2016 genua gmbh @@ -8577,15 +8577,15 @@ iwx_delete_key(struct ieee80211com *ic, struct ieee80211_node *ni, struct iwx_softc *sc = ic->ic_softc; struct iwx_add_sta_key_cmd cmd; - if ((sc->sc_flags & IWX_FLAG_STA_ACTIVE) == 0) - return; - if (k->k_cipher != IEEE80211_CIPHER_CCMP) { /* Fallback to software crypto for other ciphers. */ ieee80211_delete_key(ic, ni, k); return; } + if ((sc->sc_flags & IWX_FLAG_STA_ACTIVE) == 0) + return; + memset(&cmd, 0, sizeof(cmd)); cmd.common.key_flags = htole16(IWX_STA_KEY_NOT_VALID | -- cgit v1.2.3