From 4809b202702809b898cd018a61664ef72a018acf Mon Sep 17 00:00:00 2001 From: Leo Liou Date: Sun, 20 Jan 2019 00:48:34 +0800 Subject: [PATCH] zram: add bitfield to FstabEntry For fstab flag control, add the bitfields for zram definition. Bug: 122659265 Test: none Change-Id: I68c9a8c9ab0b218f6ca933316e85effe14402202 --- fs_mgr/include_fstab/fstab/fstab.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fs_mgr/include_fstab/fstab/fstab.h b/fs_mgr/include_fstab/fstab/fstab.h index 5d8496d67..d6bd46fcd 100644 --- a/fs_mgr/include_fstab/fstab/fstab.h +++ b/fs_mgr/include_fstab/fstab/fstab.h @@ -174,6 +174,9 @@ struct FstabEntry { // bit 32 bool slot_select_other : 1; + bool zram_loopback_path : 1; + bool zram_loopback_size : 1; + bool zram_backing_dev_path : 1; }; } fs_mgr_flags;