|
@@ -225,9 +225,9 @@ KEY_OPS(key);
|
|
|
key, &key_##name##_ops);
|
|
|
|
|
|
void ieee80211_debugfs_key_add(struct ieee80211_key *key)
|
|
|
- {
|
|
|
+{
|
|
|
static int keycount;
|
|
|
- char buf[50];
|
|
|
+ char buf[100];
|
|
|
struct sta_info *sta;
|
|
|
|
|
|
if (!key->local->debugfs.keys)
|
|
@@ -244,7 +244,8 @@ void ieee80211_debugfs_key_add(struct ieee80211_key *key)
|
|
|
|
|
|
sta = key->sta;
|
|
|
if (sta) {
|
|
|
- sprintf(buf, "../../stations/%pM", sta->sta.addr);
|
|
|
+ sprintf(buf, "../../netdev:%s/stations/%pM",
|
|
|
+ sta->sdata->name, sta->sta.addr);
|
|
|
key->debugfs.stalink =
|
|
|
debugfs_create_symlink("station", key->debugfs.dir, buf);
|
|
|
}
|