diff options
author | Tao Bao <tbao@google.com> | 2017-10-02 23:06:11 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-10-02 23:06:11 +0200 |
commit | 8b8c7eb442f45eae461f35ecd04493bf25208e26 (patch) | |
tree | b20f6c02ba836a898aeecc537a4abab5d3db6994 /roots.cpp | |
parent | Merge "Use -Werror in bootable/recovery" (diff) | |
parent | Merge "roots: Fix an issue with volume_for_path()." (diff) | |
download | android_bootable_recovery-8b8c7eb442f45eae461f35ecd04493bf25208e26.tar android_bootable_recovery-8b8c7eb442f45eae461f35ecd04493bf25208e26.tar.gz android_bootable_recovery-8b8c7eb442f45eae461f35ecd04493bf25208e26.tar.bz2 android_bootable_recovery-8b8c7eb442f45eae461f35ecd04493bf25208e26.tar.lz android_bootable_recovery-8b8c7eb442f45eae461f35ecd04493bf25208e26.tar.xz android_bootable_recovery-8b8c7eb442f45eae461f35ecd04493bf25208e26.tar.zst android_bootable_recovery-8b8c7eb442f45eae461f35ecd04493bf25208e26.zip |
Diffstat (limited to 'roots.cpp')
-rw-r--r-- | roots.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -69,11 +69,15 @@ void load_volume_table() { printf("\n"); } +Volume* volume_for_mount_point(const std::string& mount_point) { + return fs_mgr_get_entry_for_mount_point(fstab, mount_point); +} + // Finds the volume specified by the given path. fs_mgr_get_entry_for_mount_point() does exact match // only, so it attempts the prefixes recursively (e.g. "/cache/recovery/last_log", // "/cache/recovery", "/cache", "/" for a given path of "/cache/recovery/last_log") and returns the // first match or nullptr. -Volume* volume_for_path(const char* path) { +static Volume* volume_for_path(const char* path) { if (path == nullptr || path[0] == '\0') return nullptr; std::string str(path); while (true) { |