diff options
Diffstat (limited to 'net/mac80211/debugfs_key.c')
-rw-r--r-- | net/mac80211/debugfs_key.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/mac80211/debugfs_key.c b/net/mac80211/debugfs_key.c index bf7027e9ce9f..879e7210458a 100644 --- a/net/mac80211/debugfs_key.c +++ b/net/mac80211/debugfs_key.c | |||
@@ -195,6 +195,7 @@ void ieee80211_debugfs_key_add(struct ieee80211_key *key) | |||
195 | return; | 195 | return; |
196 | 196 | ||
197 | sprintf(buf, "%d", keycount); | 197 | sprintf(buf, "%d", keycount); |
198 | key->debugfs.cnt = keycount; | ||
198 | keycount++; | 199 | keycount++; |
199 | key->debugfs.dir = debugfs_create_dir(buf, | 200 | key->debugfs.dir = debugfs_create_dir(buf, |
200 | key->local->debugfs.keys); | 201 | key->local->debugfs.keys); |
@@ -258,7 +259,7 @@ void ieee80211_debugfs_key_add_default(struct ieee80211_sub_if_data *sdata) | |||
258 | if (!sdata->debugfsdir) | 259 | if (!sdata->debugfsdir) |
259 | return; | 260 | return; |
260 | 261 | ||
261 | sprintf(buf, "../keys/%d", sdata->default_key->conf.keyidx); | 262 | sprintf(buf, "../keys/%d", sdata->default_key->debugfs.cnt); |
262 | sdata->debugfs.default_key = | 263 | sdata->debugfs.default_key = |
263 | debugfs_create_symlink("default_key", sdata->debugfsdir, buf); | 264 | debugfs_create_symlink("default_key", sdata->debugfsdir, buf); |
264 | } | 265 | } |