ANDROID: dm: android-verity: mark dev as rw for linear target
authorBadhri Jagan Sridharan <Badhri@google.com>
Fri, 3 Jun 2016 20:16:59 +0000 (13:16 -0700)
committerAmit Pundir <amit.pundir@linaro.org>
Mon, 18 Dec 2017 15:41:22 +0000 (21:11 +0530)
Mark as rw when adding as linear target to allow changes
to the underlying filesystem through adb disable verity
and adb remount.

(Cherry-picked from
https://partner-android-review.googlesource.com/#/c/613573/
79a3032bb62da65a5d724eb70c8bdc662945d475)

BUG: 28845874
Signed-off-by: Badhri Jagan Sridharan <Badhri@google.com>
Change-Id: If41e9cad8e0f054f4778c09a6e2f0cb8af6fddaf

drivers/md/dm-android-verity.c

index b2665f569396885c819574cc7353674ecdfbff02..0dd69244f77cce1cf38565fa1390b43ef20f4ef2 100644 (file)
@@ -648,6 +648,8 @@ static int add_as_linear_device(struct dm_target *ti, char *dev)
         android_verity_target.dax_copy_from_iter = dm_linear_dax_copy_from_iter,
        android_verity_target.io_hints = NULL;
 
+       set_disk_ro(dm_disk(dm_table_get_md(ti->table)), 0);
+
        err = dm_linear_ctr(ti, DM_LINEAR_ARGS, linear_table_args);
 
        if (!err) {