diff options
author | UtsavBalar1231 <utsavbalar1231@gmail.com> | 2022-03-21 15:14:39 -0300 |
---|---|---|
committer | sinanmohd <pcmsinan@gmail.com> | 2023-01-05 22:04:15 +0530 |
commit | ac9fa79a0febd74b4e3a2705ac6868b7ffa16523 (patch) | |
tree | 2b222a4b6c8d287c0cc6ebc6da8b0ab4744b1d8c | |
parent | 21aa4f965b64d353e4703bc2ff64053eacddc151 (diff) |
veux: sepolicy: Allow init to write discard_max_bytes on /data partition
-rw-r--r-- | sepolicy/vendor/file_contexts | 3 | ||||
-rw-r--r-- | sepolicy/vendor/init.te | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/sepolicy/vendor/file_contexts b/sepolicy/vendor/file_contexts index 70a1f9a..5e63738 100644 --- a/sepolicy/vendor/file_contexts +++ b/sepolicy/vendor/file_contexts @@ -46,6 +46,9 @@ # Label read_ahead_kb in /data partition /sys/devices/platform/soc/4804000.ufshc/host0/target0:0:0/0:0:0:0/block/sda/queue/read_ahead_kb u:object_r:vendor_sysfs_scsi_host:s0 +# Label discard_max_bytes in /data partition +/sys/devices/platform/soc/4804000.ufshc/host0/target0:0:0/0:0:0:0/block/sda/queue/discard_max_bytes u:object_r:vendor_sysfs_scsi_host:s0 + # Mlipay /vendor/bin/mlipayd@1.1 u:object_r:hal_mlipay_default_exec:s0 diff --git a/sepolicy/vendor/init.te b/sepolicy/vendor/init.te index 40d8ce9..ae76f11 100644 --- a/sepolicy/vendor/init.te +++ b/sepolicy/vendor/init.te @@ -1,4 +1,4 @@ allow init adsprpcd_file:file mounton; -# Allow init to set read_ahead_kb on /data partition +# Allow init to set read_ahead_kb and discard_max_bytes on /data partition allow init vendor_sysfs_scsi_host:file w_file_perms;
\ No newline at end of file |