diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2020-11-30 16:09:34 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2020-11-30 16:09:34 +0000 |
commit | 0de2fe85d5c810b0bfb4e612311c319c78595330 (patch) | |
tree | f0e95bd67ad9fae2d3827f685598ff34b3a2a25c /sys/dev/usb/if_athn_usb.h | |
parent | 2d6807e7139cc792ba63be5aa13d596df01ec3dc (diff) |
Fix deferred key tasks along the same lines as urtwn(4) and run(4).
athn(4) tested by stsp@, who points out that otus(4) and rsu(4) don't yet invoke
the code path to do their own key setting.
ok stsp@
Diffstat (limited to 'sys/dev/usb/if_athn_usb.h')
-rw-r--r-- | sys/dev/usb/if_athn_usb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/if_athn_usb.h b/sys/dev/usb/if_athn_usb.h index 0f5525eff24..a45c996311f 100644 --- a/sys/dev/usb/if_athn_usb.h +++ b/sys/dev/usb/if_athn_usb.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_athn_usb.h,v 1.11 2020/04/27 08:21:35 stsp Exp $ */ +/* $OpenBSD: if_athn_usb.h,v 1.12 2020/11/30 16:09:33 krw Exp $ */ /*- * Copyright (c) 2011 Damien Bergamini <damien.bergamini@free.fr> @@ -485,4 +485,5 @@ struct athn_usb_softc { void (*sc_node_free)(struct ieee80211com *, struct ieee80211_node *); + int sc_key_tasks; }; |