summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2017-12-14 08:26:22 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2017-12-14 08:26:22 +0000
commit13ccb2e280060aefbc674fe48c73f7cfd8e254fa (patch)
tree8a1b16b281347d43cc2e46aca6cbba1b0978bebc
parent028f511d8179d79e159b9d5f884c3603e589d21f (diff)
parentb5145a4ef609a462a48e05640d0998271f48edf6 (diff)
downloadipacfg-mgr-13ccb2e280060aefbc674fe48c73f7cfd8e254fa.tar.gz
Snap for 4502278 from b5145a4ef609a462a48e05640d0998271f48edf6 to pi-release
Change-Id: I9cdc0dd3e4aff25180292b8e011a5370f5b8ec3b
-rw-r--r--msm8998/ipacm/src/IPACM_Main.cpp3
-rw-r--r--msm8998/ipacm/src/IPACM_OffloadManager.cpp2
2 files changed, 5 insertions, 0 deletions
diff --git a/msm8998/ipacm/src/IPACM_Main.cpp b/msm8998/ipacm/src/IPACM_Main.cpp
index 13cdb51..62dc596 100644
--- a/msm8998/ipacm/src/IPACM_Main.cpp
+++ b/msm8998/ipacm/src/IPACM_Main.cpp
@@ -694,6 +694,7 @@ void* ipa_driver_msg_notifier(void *param)
if (OffloadMng->elrInstance == NULL) {
IPACMERR("OffloadMng->elrInstance is NULL, can't forward to framework!\n");
} else {
+ IPACMERR("calling OffloadMng->elrInstance->onLimitReached \n");
OffloadMng->elrInstance->onLimitReached();
}
continue;
@@ -703,6 +704,7 @@ void* ipa_driver_msg_notifier(void *param)
if (OffloadMng->elrInstance == NULL) {
IPACMERR("OffloadMng->elrInstance is NULL, can't forward to framework!\n");
} else {
+ IPACMERR("calling OffloadMng->elrInstance->onOffloadStopped \n");
OffloadMng->elrInstance->onOffloadStopped(IpaEventRelay::ERROR);
}
continue;
@@ -712,6 +714,7 @@ void* ipa_driver_msg_notifier(void *param)
if (OffloadMng->elrInstance == NULL) {
IPACMERR("OffloadMng->elrInstance is NULL, can't forward to framework!\n");
} else {
+ IPACMERR("calling OffloadMng->elrInstance->onOffloadSupportAvailable \n");
OffloadMng->elrInstance->onOffloadSupportAvailable();
}
continue;
diff --git a/msm8998/ipacm/src/IPACM_OffloadManager.cpp b/msm8998/ipacm/src/IPACM_OffloadManager.cpp
index 2061fd2..4010e72 100644
--- a/msm8998/ipacm/src/IPACM_OffloadManager.cpp
+++ b/msm8998/ipacm/src/IPACM_OffloadManager.cpp
@@ -59,6 +59,8 @@ IPACM_OffloadManager::IPACM_OffloadManager()
upstream_v6_up = false;
memset(event_cache, 0, MAX_EVENT_CACHE*sizeof(framework_event_cache));
latest_cache_index = 0;
+ elrInstance = NULL;
+ touInstance = NULL;
return ;
}