From: Stephen Bertram via ltp <ltp@lists.linux.it>
To: ltp@lists.linux.it
Cc: Stephen Bertram <sbertram@redhat.com>
Subject: [LTP] [PATCH v1] mq_timedreceive01: fails sometimes with EEXIST.
Date: Mon, 9 Feb 2026 18:44:05 -0500 [thread overview]
Message-ID: <20260209234418.2810671-1-sbertram@redhat.com> (raw)
When run in parallel you can sometimes get the following error:
TBROK: mq_open(/test_mqueue,194,0700,(nil)) failed: EEXIST (17)
This change allows for unique queue names per
process, when executed in parallel with -w #.
---
testcases/kernel/syscalls/utils/mq.h | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
diff --git a/testcases/kernel/syscalls/utils/mq.h b/testcases/kernel/syscalls/utils/mq.h
index da45d2daf..eb66328d5 100644
--- a/testcases/kernel/syscalls/utils/mq.h
+++ b/testcases/kernel/syscalls/utils/mq.h
@@ -12,9 +12,9 @@
#define MAX_MSGSIZE 8192
#define MSG_LENGTH 10
-#define QUEUE_NAME "/test_mqueue"
-#define QUEUE_NAME_NONBLOCK "/test_mqueue_nonblock"
+static char queue_name[64];
+static char queue_name_nonblock[64];
static char smsg[MAX_MSGSIZE];
static struct sigaction act;
@@ -29,8 +29,8 @@ static void cleanup_common(void)
if (fd_nonblock > 0)
SAFE_CLOSE(fd_nonblock);
- mq_unlink(QUEUE_NAME);
- mq_unlink(QUEUE_NAME_NONBLOCK);
+ mq_unlink(queue_name);
+ mq_unlink(queue_name_nonblock);
}
static void sighandler(int sig LTP_ATTRIBUTE_UNUSED) { }
@@ -39,14 +39,17 @@ static void setup_common(void)
{
int i;
+ snprintf(queue_name, sizeof(queue_name), "/test_mqueue_%d", getpid());
+ snprintf(queue_name_nonblock, sizeof(queue_name_nonblock), "/test_mqueue_nonblock_%d", getpid());
+
act.sa_handler = sighandler;
sigaction(SIGINT, &act, NULL);
cleanup_common();
fd_root = SAFE_OPEN("/", O_RDONLY);
- fd = SAFE_MQ_OPEN(QUEUE_NAME, O_CREAT | O_EXCL | O_RDWR, 0700, NULL);
- fd_nonblock = SAFE_MQ_OPEN(QUEUE_NAME_NONBLOCK, O_CREAT | O_EXCL | O_RDWR |
+ fd = SAFE_MQ_OPEN(queue_name, O_CREAT | O_EXCL | O_RDWR, 0700, NULL);
+ fd_nonblock = SAFE_MQ_OPEN(queue_name_nonblock, O_CREAT | O_EXCL | O_RDWR |
O_NONBLOCK, 0700, NULL);
for (i = 0; i < MAX_MSGSIZE; i++)
--
2.52.0
--
Mailing list info: https://lists.linux.it/listinfo/ltp
next reply other threads:[~2026-02-09 23:45 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-09 23:44 Stephen Bertram via ltp [this message]
2026-02-11 8:43 ` [LTP] [PATCH v1] mq_timedreceive01: fails sometimes with EEXIST Andrea Cervesato via ltp
2026-02-11 8:55 ` Petr Vorel
2026-02-11 12:03 ` Stephen Bertram via ltp
2026-02-18 13:11 ` Petr Vorel
2026-02-18 12:32 ` Andrea Cervesato via ltp
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260209234418.2810671-1-sbertram@redhat.com \
--to=ltp@lists.linux.it \
--cc=sbertram@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.