From: Yang Xu <xuyang2018.jy@cn.fujitsu.com>
To: ltp@lists.linux.it
Subject: [LTP] [PATCH v3 1/4] syscalls/msgstress: Add common file for msgstress
Date: Fri, 13 Nov 2020 14:14:36 +0800 [thread overview]
Message-ID: <5FAE244C.3030806@cn.fujitsu.com> (raw)
In-Reply-To: <20201111154437.GA23576@yuki.lan>
Hi Cyril
> Hi!
>> Copy old libmsgctl.c three functions(doreader,dowriter, fill_buffer, verify)
>> into this common file. The reason for not putting it into lib directory because
>> only msgstress cases use these functions. So raising them into lib level makes
>> no sense.
>
> Well if we add msg to the function names there would be no harm in
> putting these functions into the ipc library, right? E.g. we would have
> msg_do_reader() etc.
Yes. it is no harm. But I don't see any other case using these api.
Also this patch looks has wrongly merged into ltp master.
>
> I would actually prefer that, since we would have avoided complexity in
> the msgstress/Makefile that way.
>
>> Signed-off-by: Yang Xu<xuyang2018.jy@cn.fujitsu.com>
>> ---
>> .../kernel/syscalls/ipc/msgstress/Makefile | 2 +-
>> .../syscalls/ipc/msgstress/msgstress_common.c | 95 +++++++++++++++++++
>> .../syscalls/ipc/msgstress/msgstress_common.h | 26 +++++
>> 3 files changed, 122 insertions(+), 1 deletion(-)
>> create mode 100644 testcases/kernel/syscalls/ipc/msgstress/msgstress_common.c
>> create mode 100644 testcases/kernel/syscalls/ipc/msgstress/msgstress_common.h
>>
>> diff --git a/testcases/kernel/syscalls/ipc/msgstress/Makefile b/testcases/kernel/syscalls/ipc/msgstress/Makefile
>> index b821bda01..2c8fa8e5b 100644
>> --- a/testcases/kernel/syscalls/ipc/msgstress/Makefile
>> +++ b/testcases/kernel/syscalls/ipc/msgstress/Makefile
>> @@ -6,7 +6,7 @@ top_srcdir ?= ../../../../..
>> LTPLIBS = ltpipc
>>
>> include $(top_srcdir)/include/mk/testcases.mk
>> -
>> +FILTER_OUT_MAKE_TARGETS := msgstress_common
>> LTPLDLIBS += -lltpipc
>>
>> include $(top_srcdir)/include/mk/generic_leaf_target.mk
>> diff --git a/testcases/kernel/syscalls/ipc/msgstress/msgstress_common.c b/testcases/kernel/syscalls/ipc/msgstress/msgstress_common.c
>> new file mode 100644
>> index 000000000..3431355f6
>> --- /dev/null
>> +++ b/testcases/kernel/syscalls/ipc/msgstress/msgstress_common.c
>> @@ -0,0 +1,95 @@
>> +// SPDX-License-Identifier: GPL-2.0-or-later
>> +/*
>> + * Copyright (c) International Business Machines Corp., 2002
>> + * Copyright (c) 2013 Oracle and/or its affiliates. All Rights Reserved.
>> + * Copyright (c) 2020 FUJITSU LIMITED. All rights reserved???
>> + */
>> +
>> +#define TST_NO_DEFAULT_MAIN
>> +#include "msgstress_common.h"
>> +
>> +int verify(char *buf, char val, int size, int child)
>> +{
>> + while (size--> 0) {
>> + if (*buf++ != val) {
>> + tst_res(TFAIL, "Verify error in child %d, *buf = %x, "
>> + "val = %x, size = %d\n", child, *buf, val,
>> + size);
>> + return 1;
>> + }
>> + }
>> + return 0;
>> +}
>> +
>> +void do_reader(long key, int tid, long type, int child, int nreps)
>> +{
>> + int i, size;
>> + int id;
>> + struct mbuffer buffer;
>> +
>> + id = SAFE_MSGGET(key, 0);
>> + if (id != tid) {
>> + tst_res(TFAIL,
>> + "Message queue mismatch in the reader of child group"
>> + " %d for message queue id %d\n", child, id);
>> + return;
>> + }
>> + for (i = 0; i< nreps; i++) {
>> + memset(&buffer, 0, sizeof(buffer));
>> +
>> + size = SAFE_MSGRCV(id,&buffer, 100, type, 0);
>> + if (buffer.type != type) {
>> + tst_res(TFAIL, "Type mismatch in child %d, read #%d, "
>> + "for message got %ld, exected %ld",
>> + child, (i + 1), buffer.type, type);
>> + return;
>> + }
>> + if (buffer.data.len + 1 != size) {
>> + tst_res(TFAIL, "Size mismatch in child %d, read #%d, "
>> + "for message got %d, expected %d",
>> + child, (i + 1), buffer.data.len + 1, size);
>> + return;
>> + }
>> + if (verify(buffer.data.pbytes, (key % 255), size - 1, child)) {
>> + tst_res(TFAIL, "Verify failed in child %d read # = %d, "
>> + "key = %lx\n", child, (i + 1), key);
>> + return;
>> + }
>> + key++;
>> + }
>> +}
>> +
>> +void fill_buffer(char *buf, char val, int size)
>> +{
>> + int i;
>> +
>> + for (i = 0; i< size; i++)
>> + buf[i] = val;
>> +}
>
> This is open-coded memset() please use memset() instead.
OK
>
>> +void do_writer(long key, int tid, long type, int child, int nreps)
>> +{
>> + int i, size;
>> + int id;
>> + struct mbuffer buffer;
>> +
>> + id = SAFE_MSGGET(key, 0);
>> + if (id != tid) {
>> + tst_res(TFAIL, "Message queue mismatch in the reader of child"
>> + " group %d for message queue id %d\n", child, id);
>> + return;
>> + }
>> +
>> + for (i = 0; i< nreps; i++) {
>> + memset(&buffer, 0, sizeof(buffer));
>> +
>> + do {
>> + size = (lrand48() % 99);
>> + } while (size == 0);
>> + fill_buffer(buffer.data.pbytes, (key % 255), size);
>> + buffer.data.len = size;
>> + buffer.type = type;
>> + SAFE_MSGSND(id,&buffer, size + 1, 0);
>> + key++;
>> + }
>> +}
>> diff --git a/testcases/kernel/syscalls/ipc/msgstress/msgstress_common.h b/testcases/kernel/syscalls/ipc/msgstress/msgstress_common.h
>> new file mode 100644
>> index 000000000..81e2f288b
>> --- /dev/null
>> +++ b/testcases/kernel/syscalls/ipc/msgstress/msgstress_common.h
>> @@ -0,0 +1,26 @@
>> +// SPDX-License-Identifier: GPL-2.0-or-later
>> +/*
>> + * Copyright (c) 2020 FUJITSU LIMITED. All rights reserved.
>> + * Author: Yang Xu<xuyang2018.jy@cn.fujitsu.com>
>> + */
>> +
>> +#ifndef MSGSTRESS_COMMON_H
>> +#define MSGSTRESS_COMMON_H
>> +
>> +#include<stdlib.h>
>> +#include "tst_safe_sysv_ipc.h"
>> +#include "tst_test.h"
>> +
>> +struct mbuffer {
>> + long type;
>> + struct {
>> + char len;
>> + char pbytes[99];
>> + } data;
>> +};
>> +
>> +void do_reader(long key, int tid, long type, int child, int nreps);
>> +void do_writer(long key, int tid, long type, int child, int nreps);
>> +
>> +#endif
>> +
>> --
>> 2.23.0
>>
>>
>>
>
next prev parent reply other threads:[~2020-11-13 6:14 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-18 9:41 [LTP] [PATCH v2 1/2] libs/libltpnewipc: Add libnewmsgctl.c Yang Xu
2020-06-18 9:41 ` [LTP] [PATCH v2 2/2] syscalls/msgstress: scale number of processes accodingly to available RAM Yang Xu
2020-07-22 15:45 ` Cyril Hrubis
2020-07-23 6:34 ` Yang Xu
2020-10-21 12:57 ` [LTP] [PATCH v3 1/4] syscalls/msgstress: Add common file for msgstress Yang Xu
2020-10-21 12:57 ` [LTP] [PATCH v3 2/4] syscalls/msgstress*: cleanup and convert into new api Yang Xu
2020-11-11 16:31 ` Cyril Hrubis
2021-03-12 12:02 ` [LTP] [PATCH v4 1/5] libs/libltpnewipc/libnewipc.c: Add msg_do_reader/msg_do_writer function Yang Xu
2021-03-12 12:02 ` [LTP] [PATCH v4 2/5] syscalls/msgstress01: Convert into new api and merge msgstress03 into it Yang Xu
2021-07-21 15:07 ` Cyril Hrubis
2021-03-12 12:02 ` [LTP] [PATCH v4 3/5] syscalls/msgstress02: Convert into new api Yang Xu
2021-07-21 15:33 ` Cyril Hrubis
2021-03-12 12:02 ` [LTP] [PATCH v4 4/5] sycalls/msgstress04: " Yang Xu
2021-07-21 15:35 ` Cyril Hrubis
2021-03-12 12:02 ` [LTP] [PATCH v4 5/5] libs/libltpipc: Remove useless function and c file Yang Xu
2021-07-21 14:27 ` [LTP] [PATCH v4 1/5] libs/libltpnewipc/libnewipc.c: Add msg_do_reader/msg_do_writer function Cyril Hrubis
2021-07-21 15:29 ` Cyril Hrubis
2020-10-21 12:57 ` [LTP] [PATCH v3 3/4] libmsgctl: Remove it Yang Xu
2020-10-21 12:57 ` [LTP] [PATCH v3 4/4] lipipc: Remove useless get_max_msgqueues api Yang Xu
2020-11-11 15:44 ` [LTP] [PATCH v3 1/4] syscalls/msgstress: Add common file for msgstress Cyril Hrubis
2020-11-13 6:14 ` Yang Xu [this message]
2020-11-13 15:26 ` Cyril Hrubis
2020-06-24 5:04 ` [LTP] [PATCH v2 1/2] libs/libltpnewipc: Add libnewmsgctl.c Yang Xu
2020-07-16 1:07 ` Yang Xu
2020-07-22 15:01 ` Cyril Hrubis
2020-07-23 6:29 ` Yang Xu
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=5FAE244C.3030806@cn.fujitsu.com \
--to=xuyang2018.jy@cn.fujitsu.com \
--cc=ltp@lists.linux.it \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox