diff options
author | 2017-03-22 21:27:40 -0600 | |
---|---|---|
committer | 2017-03-22 21:27:46 -0600 | |
commit | ed909ae8db2f44ce7fe7003c6fee457f13669702 (patch) | |
tree | d57c4f275cfa2cc1684abeb9748d0e17098f0f42 /cmds/installd/CacheItem.cpp | |
parent | 7459281f9e1d999281260ff4bbdf3d3e5e0459f5 (diff) |
Follow "atomic" to "group" refactoring.
Remove noisy logging about UIDs that are relying on default cache
quota of 64MiB.
Move away from yucky old statfs() and use statvfs() instead.
Test: /data/nativetest/installd_cache_test/installd_cache_test
Bug: 35812899, 35684969, 36482620
Change-Id: I3d68da97eac2ebcda489bdf9d27061cac5b3f7cc
Diffstat (limited to 'cmds/installd/CacheItem.cpp')
-rw-r--r-- | cmds/installd/CacheItem.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmds/installd/CacheItem.cpp b/cmds/installd/CacheItem.cpp index 0349b0ff8c..17eb7ff0e1 100644 --- a/cmds/installd/CacheItem.cpp +++ b/cmds/installd/CacheItem.cpp @@ -38,12 +38,12 @@ CacheItem::CacheItem(FTSENT* p) { mParent = static_cast<CacheItem*>(p->fts_parent->fts_pointer); if (mParent) { - atomic = mParent->atomic; + group = mParent->group; tombstone = mParent->tombstone; mName = p->fts_name; mName.insert(0, "/"); } else { - atomic = false; + group = false; tombstone = false; mName = p->fts_path; } |