Revert "runtime: save now on RPC"

This reverts commit 155794a671.
This commit is contained in:
Sebastien Bourdeauducq 2016-06-29 02:15:34 +08:00
parent ef2af8c331
commit ef8f60c78d
3 changed files with 0 additions and 8 deletions

View File

@ -475,7 +475,6 @@ void send_rpc(int service, const char *tag, ...)
{
struct msg_rpc_send request;
request.now = now;
if(service != 0)
request.type = MESSAGE_TYPE_RPC_SEND;
else

View File

@ -87,7 +87,6 @@ struct msg_watchdog_clear {
struct msg_rpc_send {
int type;
long long int now;
int service;
const char *tag;
va_list args;

View File

@ -983,12 +983,6 @@ static int process_kmsg(struct msg_base *umsg)
case MESSAGE_TYPE_RPC_BATCH: {
struct msg_rpc_send *msg = (struct msg_rpc_send *)umsg;
/*
* save now in case the RPC stops the kernel
* (e.g. pause with preemption)
*/
now = msg->now;
if(!send_rpc_request(msg->service, msg->tag, msg->args)) {
core_log("Failed to send RPC request (service %d, tag %s)\n",
msg->service, msg->tag);