dect
/
linux-2.6
Archived
13
0
Fork 0

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:
Johannes Berg 2008-04-08 16:46:36 -04:00 committed by John W. Linville
parent cfcdf40e52
commit d9c58f30b0
2 changed files with 3 additions and 1 deletions

View File

@ -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);
}

View File

@ -125,6 +125,7 @@ struct ieee80211_key {
struct dentry *replays;
struct dentry *key;
struct dentry *ifindex;
int cnt;
} debugfs;
#endif