@@ -688,15 +688,18 @@ fbnic_mac_get_eth_mac_stats(struct fbnic_dev *fbd, bool reset,
static int fbnic_mac_get_sensor_asic(struct fbnic_dev *fbd, int id, long *val)
{
- struct fbnic_fw_completion fw_cmpl;
+ struct fbnic_fw_completion *fw_cmpl = fbd->cmpl_data;
s32 *sensor;
+ if (!fw_cmpl)
+ return -EINVAL;
+
switch (id) {
case FBNIC_SENSOR_TEMP:
- sensor = &fw_cmpl.tsene.millidegrees;
+ sensor = &fw_cmpl->tsene.millidegrees;
break;
case FBNIC_SENSOR_VOLTAGE:
- sensor = &fw_cmpl.tsene.millivolts;
+ sensor = &fw_cmpl->tsene.millivolts;
break;
default:
return -EINVAL;
'fw_cmpl' is uninitialized which makes 'sensor' and '*val' to be stored garbage value. Initialize 'fw_cmpl' with 'fdb->cmpl_data' to fix this problem. Fixes: d85ebade02e8 ("eth: fbnic: Add hardware monitoring support via HWMON interface") Signed-off-by: Su Hui <suhui@nfschina.com> --- drivers/net/ethernet/meta/fbnic/fbnic_mac.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-)