Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove the kludge and fix the race between task and motion #3292

Merged
merged 2 commits into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions src/emc/motion-logger/motion-logger.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,6 @@ static int init_comm_buffers(void) {
return -1;
}

/* zero shared memory before doing anything else. */
memset(emcmotStruct, 0, sizeof(emcmot_struct_t));

/* we'll reference emcmotStruct directly */
c = &emcmotStruct->command;
emcmotStatus = &emcmotStruct->status;
Expand Down
16 changes: 10 additions & 6 deletions src/emc/motion/motion.c
Original file line number Diff line number Diff line change
Expand Up @@ -826,9 +826,6 @@ static int init_comm_buffers(void)
return -1;
}

/* zero shared memory before doing anything else. */
memset(emcmotStruct, 0, sizeof(emcmot_struct_t));

/* we'll reference emcmotStruct directly */
emcmotCommand = &emcmotStruct->command;
emcmotStatus = &emcmotStruct->status;
Expand All @@ -839,9 +836,16 @@ static int init_comm_buffers(void)
/* init error struct */
emcmotErrorInit(emcmotError);

/* init command struct */
emcmotCommand->command = 0;
emcmotCommand->commandNum = 0;
/*
* DO NOT init the command struct!
* This is a reader process and the writer (f.ex. milltask) may already
* have written a command in there before we get attached to shared memory.
* We might (actually will) lose a command if we write to the command
* structure.
*
* emcmotCommand->command = 0;
* emcmotCommand->commandNum = 0;
*/

/* init status struct */
emcmotStatus->head = 0;
Expand Down
20 changes: 8 additions & 12 deletions src/emc/motion/usrmotintf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ int usrmotWriteEmcmotCommand(emcmot_command_t * c)
rcs_print("USRMOT: ERROR: can't connect to shared memory\n");
return EMCMOT_COMM_ERROR_CONNECT;
}

/* copy entire command structure to shared memory */
rtapi_mutex_get(&emcmotStruct->command_mutex);
*emcmotCommand = *c;
Expand All @@ -110,17 +111,8 @@ int usrmotWriteEmcmotCommand(emcmot_command_t * c)
}
}
esleep(25e-6);
/* KLUDGE: while waiting on motion to be ready, */
/* this particular command requires a re-copy to update for some reason */
/* otherwise it times out and "fails" task */
if (c->command == EMCMOT_SET_NUM_JOINTS) {
/* re-copy entire command structure to shared memory */
rtapi_mutex_get(&emcmotStruct->command_mutex);
*emcmotCommand = *c;
rtapi_mutex_give(&emcmotStruct->command_mutex);
}
}
rcs_print("USRMOT: ERROR: command %u timeout\n", c->command);
rcs_print("USRMOT: ERROR: command %u timeout (seq: %d)\n", c->command, commandNum);
return EMCMOT_COMM_ERROR_TIMEOUT;
}

Expand All @@ -135,6 +127,7 @@ int usrmotReadEmcmotStatus(emcmot_status_t * s)
}
split_read_count = 0;
do {
if(split_read_count > 0) esleep(1e-6); // Don't busy-loop and give time to process
/* copy status struct from shmem to local memory */
memcpy(s, emcmotStatus, sizeof(emcmot_status_t));
/* got it, now check head-tail matche */
Expand All @@ -144,6 +137,7 @@ int usrmotReadEmcmotStatus(emcmot_status_t * s)
}
/* inc counter and try again, max three times */
} while ( ++split_read_count < 3 );
rcs_print("%s: Split read timeout\n", __FUNCTION__);
return EMCMOT_COMM_SPLIT_READ_TIMEOUT;
}

Expand All @@ -158,6 +152,7 @@ int usrmotReadEmcmotConfig(emcmot_config_t * s)
}
split_read_count = 0;
do {
if(split_read_count > 0) esleep(1e-6); // Don't busy-loop and give time to process
/* copy config struct from shmem to local memory */
memcpy(s, emcmotConfig, sizeof(emcmot_config_t));
/* got it, now check head-tail matches */
Expand All @@ -167,7 +162,7 @@ int usrmotReadEmcmotConfig(emcmot_config_t * s)
}
/* inc counter and try again, max three times */
} while ( ++split_read_count < 3 );
printf("ReadEmcmotConfig COMM_SPLIT_READ_TIMEOUT\n" );
rcs_print("%s: Split read timeout\n", __FUNCTION__);
return EMCMOT_COMM_SPLIT_READ_TIMEOUT;
}

Expand All @@ -182,6 +177,7 @@ int usrmotReadEmcmotInternal(emcmot_internal_t * s)
}
split_read_count = 0;
do {
if(split_read_count > 0) esleep(1e-6); // Don't busy-loop and give time to process
/* copy debug struct from shmem to local memory */
memcpy(s, emcmotInternal, sizeof(emcmot_internal_t));
/* got it, now check head-tail matches */
Expand All @@ -191,7 +187,7 @@ int usrmotReadEmcmotInternal(emcmot_internal_t * s)
}
/* inc counter and try again, max three times */
} while ( ++split_read_count < 3 );
printf("ReadEmcmotInternal COMM_SPLIT_READ_TIMEOUT\n" );
rcs_print("%s: Split read timeout\n", __FUNCTION__);
return EMCMOT_COMM_SPLIT_READ_TIMEOUT;
}

Expand Down