diff --git a/init/uevent_listener.cpp b/init/uevent_listener.cpp index 416d942d6..d8d9b36ff 100644 --- a/init/uevent_listener.cpp +++ b/init/uevent_listener.cpp @@ -100,7 +100,7 @@ bool UeventListener::ReadUevent(Uevent* uevent) const { int n = uevent_kernel_multicast_recv(device_fd_, msg, UEVENT_MSG_LEN); if (n <= 0) { if (errno != EAGAIN && errno != EWOULDBLOCK) { - LOG(ERROR) << "Error reading from Uevent Fd"; + PLOG(ERROR) << "Error reading from Uevent Fd"; } return false; } diff --git a/libcutils/uevent.cpp b/libcutils/uevent.cpp index 721de7c47..bf244d2c7 100644 --- a/libcutils/uevent.cpp +++ b/libcutils/uevent.cpp @@ -60,7 +60,7 @@ ssize_t uevent_kernel_recv(int socket, void* buffer, size_t length, bool require struct ucred* cred; *uid = -1; - ssize_t n = recvmsg(socket, &hdr, 0); + ssize_t n = TEMP_FAILURE_RETRY(recvmsg(socket, &hdr, 0)); if (n <= 0) { return n; }