qcacld-3.0: Configure the mld address wow pattern during vdev create

Currently mac address is getting configured as the wow pattern
while the vdev is getting created, configure the mld address also
during the vdev creation so during legacy connection or roaming
between the ml-legacy vice versa there wont be packet drops because
of pattern mismatch.

Change-Id: I9b98649bca132a6665f2e4dd94d9c6b840223827
CRs-Fixed: 3124115
This commit is contained in:
Arun Kumar Khandavalli
2022-03-15 21:50:06 +05:30
committed by Madan Koyyalamudi
parent 53364d2cd0
commit 2fa9d87942
4 changed files with 42 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
/*
* Copyright (c) 2017-2021 The Linux Foundation. All rights reserved.
* Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
* Copyright (c) 2021-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
@@ -485,6 +485,11 @@ ucfg_pmo_add_wow_user_pattern(struct wlan_objmgr_vdev *vdev,
return pmo_core_add_wow_user_pattern(vdev, ptrn);
}
void ucfg_pmo_register_wow_default_patterns(struct wlan_objmgr_vdev *vdev)
{
pmo_register_wow_default_patterns(vdev);
}
QDF_STATUS
ucfg_pmo_del_wow_pattern(struct wlan_objmgr_vdev *vdev)
{