Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7de2710f authored by Jin Qian's avatar Jin Qian Committed by Amit Pundir
Browse files

ANDROID: uid_sys_stats: allow writing same state



Signed-off-by: default avatarJin Qian <jinqian@google.com>
Bug: 34360629
Change-Id: Ia748351e07910b1febe54f0484ca1be58c4eb9c7
parent 68c47ec7
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -336,11 +336,16 @@ static ssize_t uid_procstat_write(struct file *file,
	mutex_lock(&uid_lock);

	uid_entry = find_or_register_uid(uid);
	if (!uid_entry || uid_entry->state == state) {
	if (!uid_entry) {
		mutex_unlock(&uid_lock);
		return -EINVAL;
	}

	if (uid_entry->state == state) {
		mutex_unlock(&uid_lock);
		return count;
	}

	update_io_stats_locked();

	uid_entry->state = state;