mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-18 03:06:43 +00:00
mac80211: fix key debugfs default_key link
The default_key symlink points to the key index rather than they key counter, fix it. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
cfcdf40e52
commit
d9c58f30b0
@ -195,6 +195,7 @@ void ieee80211_debugfs_key_add(struct ieee80211_key *key)
|
||||
return;
|
||||
|
||||
sprintf(buf, "%d", keycount);
|
||||
key->debugfs.cnt = keycount;
|
||||
keycount++;
|
||||
key->debugfs.dir = debugfs_create_dir(buf,
|
||||
key->local->debugfs.keys);
|
||||
@ -258,7 +259,7 @@ void ieee80211_debugfs_key_add_default(struct ieee80211_sub_if_data *sdata)
|
||||
if (!sdata->debugfsdir)
|
||||
return;
|
||||
|
||||
sprintf(buf, "../keys/%d", sdata->default_key->conf.keyidx);
|
||||
sprintf(buf, "../keys/%d", sdata->default_key->debugfs.cnt);
|
||||
sdata->debugfs.default_key =
|
||||
debugfs_create_symlink("default_key", sdata->debugfsdir, buf);
|
||||
}
|
||||
|
@ -125,6 +125,7 @@ struct ieee80211_key {
|
||||
struct dentry *replays;
|
||||
struct dentry *key;
|
||||
struct dentry *ifindex;
|
||||
int cnt;
|
||||
} debugfs;
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user