From 04db8a55b847413ee63d19efbc3f3bdc7dd395bb Mon Sep 17 00:00:00 2001 From: Ruchi Kandoi Date: Thu, 19 Jun 2014 13:16:50 -0700 Subject: [PATCH] healthd: UEVENT_MSG_LEN is changed from 1048 to 2048 in compliance with BUFFER_LEN in the kobject_uevent in kernel. Change-Id: Ia9f4b520847d40fe4e032875dfb79bd063bc723d Signed-off-by: Ruchi Kandoi --- healthd/healthd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/healthd/healthd.cpp b/healthd/healthd.cpp index 9b84c3e8f..d30e771ea 100644 --- a/healthd/healthd.cpp +++ b/healthd/healthd.cpp @@ -126,7 +126,7 @@ static void uevent_init(void) { KLOG_ERROR(LOG_TAG, "uevent_init: uevent_open_socket failed\n"); } -#define UEVENT_MSG_LEN 1024 +#define UEVENT_MSG_LEN 2048 static void uevent_event(void) { char msg[UEVENT_MSG_LEN+2]; char *cp;