eal/windows: add missing SPDX license tag
[dpdk.git] / lib / librte_eal / common / eal_common_proc.c
index 7e11565..6d1af3c 100644 (file)
@@ -423,7 +423,7 @@ process_async_request(struct pending_request *sr, const struct timespec *now)
        /* did we timeout? */
        timeout = timespec_cmp(&param->end, now) <= 0;
 
-       /* if we received a response, adjust relevant data and copy mesasge. */
+       /* if we received a response, adjust relevant data and copy message. */
        if (sr->reply_received == 1 && sr->reply) {
                struct rte_mp_msg *msg, *user_msgs, *tmp;
 
@@ -630,7 +630,7 @@ rte_mp_channel_init(void)
 
        if (rte_ctrl_thread_create(&mp_handle_tid, "rte_mp_handle",
                        NULL, mp_handle, NULL) < 0) {
-               RTE_LOG(ERR, EAL, "failed to create mp thead: %s\n",
+               RTE_LOG(ERR, EAL, "failed to create mp thread: %s\n",
                        strerror(errno));
                close(mp_fd);
                close(dir_fd);
@@ -1236,9 +1236,9 @@ rte_mp_reply(struct rte_mp_msg *msg, const char *peer)
 
 /* Internally, the status of the mp feature is represented as a three-state:
  * - "unknown" as long as no secondary process attached to a primary process
- *   and there was no call to __rte_mp_disable yet,
+ *   and there was no call to rte_mp_disable yet,
  * - "enabled" as soon as a secondary process attaches to a primary process,
- * - "disabled" when a primary process successfully called __rte_mp_disable,
+ * - "disabled" when a primary process successfully called rte_mp_disable,
  */
 enum mp_status {
        MP_STATUS_UNKNOWN,
@@ -1263,7 +1263,7 @@ set_mp_status(enum mp_status status)
 }
 
 bool
-__rte_mp_disable(void)
+rte_mp_disable(void)
 {
        return set_mp_status(MP_STATUS_DISABLED);
 }