Skip to content

Commit 4936f9f

Browse files
LipinskiPNordicSemikkasperczyk-no
authored andcommitted
[nrf noup] Lock thread stack before factory reset
This commit fix a problem with thread activity interrupting factory reset. This activity used to led to “Factory reset fail: -6”. Writing to cleared nvm flash pages caused the problem. Signed-off-by: Patryk Lipinski <patryk.lipinski@nordicsemi.no> Signed-off-by: Michał Szablowski <michal.szablowski@nordicsemi.no>
1 parent 288b64a commit 4936f9f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/platform/Zephyr/ConfigurationManagerImpl.cpp

+9
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@
4040
#include <zephyr/settings/settings.h>
4141
#endif
4242

43+
#ifdef CONFIG_NET_L2_OPENTHREAD
44+
#include <platform/ThreadStackManager.h>
45+
#endif
46+
4347
namespace chip {
4448
namespace DeviceLayer {
4549

@@ -177,6 +181,11 @@ void ConfigurationManagerImpl::DoFactoryReset(intptr_t arg)
177181
{
178182
ChipLogProgress(DeviceLayer, "Performing factory reset");
179183

184+
// Lock the Thread stack to avoid unwanted interaction with settings NVS during factory reset.
185+
#ifdef CONFIG_NET_L2_OPENTHREAD
186+
ThreadStackMgr().LockThreadStack();
187+
#endif
188+
180189
#ifdef CONFIG_CHIP_FACTORY_RESET_ERASE_NVS
181190
void * storage = nullptr;
182191
int status = settings_storage_get(&storage);

0 commit comments

Comments
 (0)