OSDN Git Service

health.filesystem HAL renamed to health.storage
authorYifan Hong <elsk@google.com>
Wed, 19 Sep 2018 17:28:16 +0000 (10:28 -0700)
committerYifan Hong <elsk@google.com>
Wed, 19 Sep 2018 20:11:50 +0000 (13:11 -0700)
Bug: 111655771
Test: compiles
Change-Id: Ibfcab4d116d735ba2f80a8b0ead314138a7ba23d
Merged-In: Ibfcab4d116d735ba2f80a8b0ead314138a7ba23d

Android.bp
IdleMaint.cpp

index 080c5fe..8fd29f0 100644 (file)
@@ -140,7 +140,7 @@ cc_library_static {
         },
     },
     shared_libs: [
-        "android.hardware.health.filesystem@1.0",
+        "android.hardware.health.storage@1.0",
     ],
 }
 
@@ -173,7 +173,7 @@ cc_binary {
     ],
 
     shared_libs: [
-        "android.hardware.health.filesystem@1.0",
+        "android.hardware.health.storage@1.0",
         "libhidltransport",
     ],
 }
index 459b3b8..c5baa9e 100644 (file)
@@ -27,7 +27,7 @@
 #include <android-base/logging.h>
 #include <android-base/stringprintf.h>
 #include <android-base/strings.h>
-#include <android/hardware/health/filesystem/1.0/IFileSystem.h>
+#include <android/hardware/health/storage/1.0/IStorage.h>
 #include <fs_mgr.h>
 #include <hardware_legacy/power.h>
 #include <private/android_filesystem_config.h>
@@ -47,9 +47,9 @@ using android::base::Timer;
 using android::base::WriteStringToFile;
 using android::hardware::Return;
 using android::hardware::Void;
-using android::hardware::health::filesystem::V1_0::IFileSystem;
-using android::hardware::health::filesystem::V1_0::IGarbageCollectCallback;
-using android::hardware::health::filesystem::V1_0::Result;
+using android::hardware::health::storage::V1_0::IGarbageCollectCallback;
+using android::hardware::health::storage::V1_0::IStorage;
+using android::hardware::health::storage::V1_0::Result;
 
 namespace android {
 namespace vold {
@@ -346,7 +346,7 @@ class GcCallback : public IGarbageCollectCallback {
     Result mResult{Result::UNKNOWN_ERROR};
 };
 
-static void runDevGcOnHal(sp<IFileSystem> service) {
+static void runDevGcOnHal(sp<IStorage> service) {
     LOG(DEBUG) << "Start Dev GC on HAL";
     sp<GcCallback> cb = new GcCallback();
     auto ret = service->garbageCollect(DEVGC_TIMEOUT_SEC, cb);
@@ -358,7 +358,7 @@ static void runDevGcOnHal(sp<IFileSystem> service) {
 }
 
 static void runDevGc(void) {
-    auto service = IFileSystem::getService();
+    auto service = IStorage::getService();
     if (service != nullptr) {
         runDevGcOnHal(service);
     } else {