pvmfw: Tag TODO with corresponding bug
Test: -
Change-Id: I5ef9405643915ca13ab52646b87f5c1d2d573c15
diff --git a/pvmfw/src/memory.rs b/pvmfw/src/memory.rs
index 7eecb97..6c97d79 100644
--- a/pvmfw/src/memory.rs
+++ b/pvmfw/src/memory.rs
@@ -267,7 +267,7 @@
for region in &self.regions {
match region.mem_type {
MemoryType::ReadWrite => {
- // TODO: Use page table's dirty bit to only flush pages that were touched.
+ // TODO(b/269738062): Use PT's dirty bit to only flush pages that were touched.
helpers::flush_region(region.range.start, region.range.len())
}
MemoryType::ReadOnly => {}