masayuki2009 commented on code in PR #8383: URL: https://github.com/apache/nuttx/pull/8383#discussion_r1092771782
########## fs/mqueue/mq_open.c: ########## @@ -211,10 +214,15 @@ static int file_mq_vopen(FAR struct file *mq, FAR const char *mq_name, /* Make sure that the check for the existence of the message queue * and the creation of the message queue are atomic with respect to * other processes executing mq_open(). A simple sched_lock() should - * be sufficient. + * be sufficient for non-SMP case but critical section is needed for + * SMP case. */ +#ifdef CONFIG_SMP + flags = enter_critical_section(); +#else Review Comment: @xiaoxiang781216 > let' remove shed_lock and always use enter_critical_section? I will try this one first in this PR. >BTW, I found that some place under fs/ still use sched_lock/sched_unlock, all should convert to inode_lock/inode_unlock I think. Then I will study how to remove sched_lock under fs later. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org