summaryrefslogtreecommitdiffstats
path: root/roots.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-10-02 23:12:20 +0200
committerandroid-build-merger <android-build-merger@google.com>2017-10-02 23:12:20 +0200
commit42031be1ef60366fb272b96eddc2c5a49140f70f (patch)
treec4537112792386f80811dea2d3a544169f2180f3 /roots.cpp
parentMerge "Use -Werror in bootable/recovery" am: 88aa128e22 am: b5437e3e1b (diff)
parentMerge "roots: Fix an issue with volume_for_path()." am: dd7a4b5264 (diff)
downloadandroid_bootable_recovery-42031be1ef60366fb272b96eddc2c5a49140f70f.tar
android_bootable_recovery-42031be1ef60366fb272b96eddc2c5a49140f70f.tar.gz
android_bootable_recovery-42031be1ef60366fb272b96eddc2c5a49140f70f.tar.bz2
android_bootable_recovery-42031be1ef60366fb272b96eddc2c5a49140f70f.tar.lz
android_bootable_recovery-42031be1ef60366fb272b96eddc2c5a49140f70f.tar.xz
android_bootable_recovery-42031be1ef60366fb272b96eddc2c5a49140f70f.tar.zst
android_bootable_recovery-42031be1ef60366fb272b96eddc2c5a49140f70f.zip
Diffstat (limited to 'roots.cpp')
-rw-r--r--roots.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/roots.cpp b/roots.cpp
index 02c1ecb7c..c0348d715 100644
--- a/roots.cpp
+++ b/roots.cpp
@@ -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) {