wifi: mt76: mt7996: fix potential memory leakage when reading chip temperature
authorHoward Hsu <howard-yh.hsu@mediatek.com>
Wed, 20 Mar 2024 11:09:14 +0000 (19:09 +0800)
committerFelix Fietkau <nbd@nbd.name>
Thu, 2 May 2024 10:44:51 +0000 (12:44 +0200)
Without this commit, reading chip temperature will cause memory leakage.

Fixes: 6879b2e94172 ("wifi: mt76: mt7996: add thermal sensor device support")
Reported-by: Ryder Lee <ryder.lee@mediatek.com>
Signed-off-by: Howard Hsu <howard-yh.hsu@mediatek.com>
Signed-off-by: Shayne Chen <shayne.chen@mediatek.com>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/mt7996/mcu.c

index 88090c91df8783139f65d9af173bafc2c1891e53..4f33170d051d343c625bcdd42bfe0450b4f26913 100644 (file)
@@ -3750,6 +3750,7 @@ int mt7996_mcu_get_temperature(struct mt7996_phy *phy)
        } __packed * res;
        struct sk_buff *skb;
        int ret;
+       u32 temp;
 
        ret = mt76_mcu_send_and_get_msg(&phy->dev->mt76, MCU_WM_UNI_CMD(THERMAL),
                                        &req, sizeof(req), true, &skb);
@@ -3757,8 +3758,10 @@ int mt7996_mcu_get_temperature(struct mt7996_phy *phy)
                return ret;
 
        res = (void *)skb->data;
+       temp = le32_to_cpu(res->temperature);
+       dev_kfree_skb(skb);
 
-       return le32_to_cpu(res->temperature);
+       return temp;
 }
 
 int mt7996_mcu_set_thermal_throttling(struct mt7996_phy *phy, u8 state)