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

Commit 86ff9278 authored by Hang Lu's avatar Hang Lu Committed by Bernhard Thoben
Browse files

FROMGIT: binder: fix the missing BR_FROZEN_REPLY in binder_return_strings



Add BR_FROZEN_REPLY in binder_return_strings to support stat function.

Fixes: ae28c1be1e54 ("binder: BINDER_GET_FROZEN_INFO ioctl")
Acked-by: default avatarTodd Kjos <tkjos@google.com>
Signed-off-by: default avatarHang Lu <hangl@codeaurora.org>
Link: https://lore.kernel.org/r/1617961246-4502-2-git-send-email-hangl@codeaurora.org


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
(cherry picked from commit 005169157448ca41eff8716d79dc1b8f158229d2
git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git char-misc-next)

Change-Id: Ib12e3f1dc1a389c9b4d5e9f60bd740d269dadf94
Signed-off-by: default avatarHang Lu <hangl@codeaurora.org>
(cherry picked from commit 6c3c18a4c9f62d186e767b7e55c4f86769c77bf4)
parent 7b36094a
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -187,7 +187,7 @@ enum binder_stat_types {
};

struct binder_stats {
	atomic_t br[_IOC_NR(BR_FAILED_REPLY) + 1];
	atomic_t br[_IOC_NR(BR_FROZEN_REPLY) + 1];
	atomic_t bc[_IOC_NR(BC_REPLY_SG) + 1];
	atomic_t obj_created[BINDER_STAT_COUNT];
	atomic_t obj_deleted[BINDER_STAT_COUNT];
@@ -5936,7 +5936,8 @@ static const char * const binder_return_strings[] = {
	"BR_FINISHED",
	"BR_DEAD_BINDER",
	"BR_CLEAR_DEATH_NOTIFICATION_DONE",
	"BR_FAILED_REPLY"
	"BR_FAILED_REPLY",
	"BR_FROZEN_REPLY",
};

static const char * const binder_command_strings[] = {