Explorar el Código

qcacld-3.0: Return correct status when mDNS offload is disabled

Currently the driver returns incorrect status to the user space
when mDNS offload feature is disabled. So, add a debug log and
return correct status when mDNS offload is disabled.

Change-Id: I4ae58467eb8ff464380d5a8b69b45545534de37e
CRs-Fixed: 3239903
Aditya Kodukula hace 2 años
padre
commit
498c5bb70e
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3 1
      core/hdd/src/wlan_hdd_mdns_offload.c

+ 3 - 1
core/hdd/src/wlan_hdd_mdns_offload.c

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2021, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -145,7 +146,8 @@ __wlan_hdd_cfg80211_set_mdns_offload(struct wiphy *wiphy,
 
 	if (!tb[MDNS_ENABLE]) {
 		os_if_fwol_disable_mdns_offload(hdd_ctx->psoc);
-		return -EINVAL;
+		hdd_debug_rl("MDNS offload is disabled");
+		return 0;
 	}
 
 	is_mdns_enable = nla_get_flag(tb[MDNS_ENABLE]);