Revert "ANDROID: Incremental fs: Change per UID timeouts to microseconds"

This reverts commit c18f2a956e.

Set incfs back to rvc shipping incfs

Bug: 178509184
Test: incfs_test passes
Signed-off-by: Paul Lawrence <paullawrence@google.com>
Change-Id: I9e62d66e47d76c619c1d3f4a4c2449d35300f3db
This commit is contained in:
Paul Lawrence
2021-01-26 13:30:59 -08:00
parent 07b4594142
commit 295c582dfd
6 changed files with 48 additions and 71 deletions

View File

@ -490,24 +490,24 @@ struct incfs_per_uid_read_timeouts {
__u32 uid;
/*
* Min time in microseconds to read any block. Note that this doesn't
* apply to reads which are satisfied from the page cache.
* Min time to read any block. Note that this doesn't apply to reads
* which are satisfied from the page cache.
*/
__u32 min_time_us;
__u32 min_time_ms;
/*
* Min time in microseconds to satisfy a pending read. Any pending read
* which is filled before this time will be delayed so that the total
* read time >= this value.
* Min time to satisfy a pending read. Must be >= min_time_ms. Any
* pending read which is filled before this time will be delayed so
* that the total read time >= this value.
*/
__u32 min_pending_time_us;
__u32 min_pending_time_ms;
/*
* Max time in microseconds to satisfy a pending read before the read
* times out. If set to U32_MAX, defaults to mount options
* read_timeout_ms * 1000. Must be >= min_pending_time_us
* Max time to satisfy a pending read before the read times out.
* If set to U32_MAX, defaults to mount options read_timeout_ms=
* Must be >= min_pending_time_ms
*/
__u32 max_pending_time_us;
__u32 max_pending_time_ms;
};
/*