diff options
Diffstat (limited to 'net/mac80211/key.h')
-rw-r--r-- | net/mac80211/key.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/net/mac80211/key.h b/net/mac80211/key.h index 5d48518985b3..f52c3df1fe9a 100644 --- a/net/mac80211/key.h +++ b/net/mac80211/key.h | |||
@@ -54,16 +54,19 @@ struct sta_info; | |||
54 | * @KEY_FLAG_TODO_DELETE: Key is marked for deletion and will, after an | 54 | * @KEY_FLAG_TODO_DELETE: Key is marked for deletion and will, after an |
55 | * RCU grace period, no longer be reachable other than from the | 55 | * RCU grace period, no longer be reachable other than from the |
56 | * todo list. | 56 | * todo list. |
57 | * @KEY_FLAG_TODO_HWACCEL: Key needs to be added to hardware acceleration. | 57 | * @KEY_FLAG_TODO_HWACCEL_ADD: Key needs to be added to hardware acceleration. |
58 | * @KEY_FLAG_TODO_HWACCEL_REMOVE: Key needs to be removed from hardware | ||
59 | * acceleration. | ||
58 | * @KEY_FLAG_TODO_DEFKEY: Key is default key and debugfs needs to be updated. | 60 | * @KEY_FLAG_TODO_DEFKEY: Key is default key and debugfs needs to be updated. |
59 | * @KEY_FLAG_TODO_ADD_DEBUGFS: Key needs to be added to debugfs. | 61 | * @KEY_FLAG_TODO_ADD_DEBUGFS: Key needs to be added to debugfs. |
60 | */ | 62 | */ |
61 | enum ieee80211_internal_key_flags { | 63 | enum ieee80211_internal_key_flags { |
62 | KEY_FLAG_UPLOADED_TO_HARDWARE = BIT(0), | 64 | KEY_FLAG_UPLOADED_TO_HARDWARE = BIT(0), |
63 | KEY_FLAG_TODO_DELETE = BIT(1), | 65 | KEY_FLAG_TODO_DELETE = BIT(1), |
64 | KEY_FLAG_TODO_HWACCEL = BIT(2), | 66 | KEY_FLAG_TODO_HWACCEL_ADD = BIT(2), |
65 | KEY_FLAG_TODO_DEFKEY = BIT(3), | 67 | KEY_FLAG_TODO_HWACCEL_REMOVE = BIT(3), |
66 | KEY_FLAG_TODO_ADD_DEBUGFS = BIT(4), | 68 | KEY_FLAG_TODO_DEFKEY = BIT(4), |
69 | KEY_FLAG_TODO_ADD_DEBUGFS = BIT(5), | ||
67 | }; | 70 | }; |
68 | 71 | ||
69 | struct ieee80211_key { | 72 | struct ieee80211_key { |