mt76: mt7915: set fops_sta_stats.owner to THIS_MODULE
authorTaehee Yoo <ap420073@gmail.com>
Thu, 8 Oct 2020 15:51:57 +0000 (15:51 +0000)
committerFelix Fietkau <nbd@nbd.name>
Fri, 4 Dec 2020 12:46:16 +0000 (13:46 +0100)
If THIS_MODULE is not set, the module would be removed while debugfs is
being used.
It eventually makes kernel panic.

Fixes: ec9742a8f38e ("mt76: mt7915: add .sta_add_debugfs support")
Signed-off-by: Taehee Yoo <ap420073@gmail.com>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/mt7915/debugfs.c

index 1049927..d2ac7e5 100644 (file)
@@ -460,6 +460,7 @@ static const struct file_operations fops_sta_stats = {
        .read = seq_read,
        .llseek = seq_lseek,
        .release = single_release,
+       .owner = THIS_MODULE,
 };
 
 void mt7915_sta_add_debugfs(struct ieee80211_hw *hw, struct ieee80211_vif *vif,