Linux Test Project
 help / color / mirror / Atom feed
From: gang.yan@linux.dev
To: ltp@lists.linux.it
Subject: Re: [LTP] [PATCH 3/3] tst_fd.c: replace syscall() with tst_syscall_base()
Date: Tue, 14 Jul 2026 10:18:03 +0000	[thread overview]
Message-ID: <171e5a6fadd4b47719c6a120a4586e750efb80bc@linux.dev> (raw)
In-Reply-To: <20260714100738.7745-4-gang.yan@linux.dev>

July 14, 2026 at 6:07 PM, "Gang Yan" <gang.yan@linux.dev mailto:gang.yan@linux.dev?to=%22Gang%20Yan%22%20%3Cgang.yan%40linux.dev%3E > wrote:

Hi,

Sorry for this broken message, please ignore it.
I've resent the patch series.

Thanks,
Gang


> 
> From: Gang Yan <yangang@kylinos.cn>
> 
> If some feature is not supported by some arch, like _NR__memfd_secret,
> it will become -1. And the syscall can continue with '-1' and the output
> would be:
> 
> '''
> accept03.c:47: TFAIL: accept() on memfd secret expected ENOTSOCK: EBADF (9)
> tst_fd.c:307: TBROK: close(38) failed: EBADF(9)
> '''
> 
> This patch use tst_syscall to give a more specific fail reason:
> 
> '''
> tst_fd.c:262: TCONF: Skipping memfd secret: ENOSYS(38)
> '''
> 
> Signed-off-by: Gang Yan <yangang@kylinos.cn>
> ---
>  lib/tst_fd.c | 22 +++++++++++-----------
>  1 file changed, 11 insertions(+), 11 deletions(-)
> 
> diff --git a/lib/tst_fd.c b/lib/tst_fd.c
> index 6538a098c..1d90505b2 100644
> --- a/lib/tst_fd.c
> +++ b/lib/tst_fd.c
> @@ -139,14 +139,14 @@ static void open_timerfd(struct tst_fd *fd)
>  
>  static void open_pidfd(struct tst_fd *fd)
>  {
> - fd->fd = syscall(__NR_pidfd_open, getpid(), 0);
> + fd->fd = tst_syscall_base(__NR_pidfd_open, getpid(), 0);
>  if (fd->fd < 0)
>  tst_res(TCONF | TERRNO, "pidfd_open()");
>  }
>  
>  static void open_fanotify(struct tst_fd *fd)
>  {
> - fd->fd = syscall(__NR_fanotify_init, FAN_CLASS_NOTIF, O_RDONLY);
> + fd->fd = tst_syscall_base(__NR_fanotify_init, FAN_CLASS_NOTIF, O_RDONLY);
>  if (fd->fd < 0) {
>  tst_res(TCONF | TERRNO,
>  "Skipping %s", tst_fd_desc(fd));
> @@ -164,7 +164,7 @@ static void open_inotify(struct tst_fd *fd)
>  
>  static void open_userfaultfd(struct tst_fd *fd)
>  {
> - fd->fd = syscall(__NR_userfaultfd, 0);
> + fd->fd = tst_syscall_base(__NR_userfaultfd, 0);
>  
>  if (fd->fd < 0) {
>  tst_res(TCONF | TERRNO,
> @@ -183,7 +183,7 @@ static void open_perf_event(struct tst_fd *fd)
>  .exclude_hv = 1,
>  };
>  
> - fd->fd = syscall(__NR_perf_event_open, &pe_attr, 0, -1, -1, 0);
> + fd->fd = tst_syscall_base(__NR_perf_event_open, &pe_attr, 0, -1, -1, 0);
>  if (fd->fd < 0) {
>  tst_res(TCONF | TERRNO,
>  "Skipping %s", tst_fd_desc(fd));
> @@ -194,7 +194,7 @@ static void open_io_uring(struct tst_fd *fd)
>  {
>  struct io_uring_params uring_params = {};
>  
> - fd->fd = syscall(__NR_io_uring_setup, 1, &uring_params);
> + fd->fd = tst_syscall_base(__NR_io_uring_setup, 1, &uring_params);
>  if (fd->fd < 0) {
>  tst_res(TCONF | TERRNO,
>  "Skipping %s", tst_fd_desc(fd));
> @@ -210,7 +210,7 @@ static void open_bpf_map(struct tst_fd *fd)
>  .max_entries = 1,
>  };
>  
> - fd->fd = syscall(__NR_bpf, BPF_MAP_CREATE, &array_attr, sizeof(array_attr));
> + fd->fd = tst_syscall_base(__NR_bpf, BPF_MAP_CREATE, &array_attr, sizeof(array_attr));
>  if (fd->fd < 0) {
>  tst_res(TCONF | TERRNO,
>  "Skipping %s", tst_fd_desc(fd));
> @@ -219,7 +219,7 @@ static void open_bpf_map(struct tst_fd *fd)
>  
>  static void open_fsopen(struct tst_fd *fd)
>  {
> - fd->fd = syscall(__NR_fsopen, "ext2", 0);
> + fd->fd = tst_syscall_base(__NR_fsopen, "ext2", 0);
>  if (fd->fd < 0) {
>  tst_res(TCONF | TERRNO,
>  "Skipping %s", tst_fd_desc(fd));
> @@ -228,7 +228,7 @@ static void open_fsopen(struct tst_fd *fd)
>  
>  static void open_fspick(struct tst_fd *fd)
>  {
> - fd->fd = syscall(__NR_fspick, AT_FDCWD, "/", 0);
> + fd->fd = tst_syscall_base(__NR_fspick, AT_FDCWD, "/", 0);
>  if (fd->fd < 0) {
>  tst_res(TCONF | TERRNO,
>  "Skipping %s", tst_fd_desc(fd));
> @@ -237,7 +237,7 @@ static void open_fspick(struct tst_fd *fd)
>  
>  static void open_open_tree(struct tst_fd *fd)
>  {
> - fd->fd = syscall(__NR_open_tree, AT_FDCWD, "/", 0);
> + fd->fd = tst_syscall_base(__NR_open_tree, AT_FDCWD, "/", 0);
>  if (fd->fd < 0) {
>  tst_res(TCONF | TERRNO,
>  "Skipping %s", tst_fd_desc(fd));
> @@ -246,7 +246,7 @@ static void open_open_tree(struct tst_fd *fd)
>  
>  static void open_memfd(struct tst_fd *fd)
>  {
> - fd->fd = syscall(__NR_memfd_create, "ltp_memfd", 0);
> + fd->fd = tst_syscall_base(__NR_memfd_create, "ltp_memfd", 0);
>  if (fd->fd < 0) {
>  tst_res(TCONF | TERRNO,
>  "Skipping %s", tst_fd_desc(fd));
> @@ -255,7 +255,7 @@ static void open_memfd(struct tst_fd *fd)
>  
>  static void open_memfd_secret(struct tst_fd *fd)
>  {
> - fd->fd = syscall(__NR_memfd_secret, 0);
> + fd->fd = tst_syscall_base(__NR_memfd_secret, 0);
>  if (fd->fd < 0) {
>  tst_res(TCONF | TERRNO,
>  "Skipping %s", tst_fd_desc(fd));
> -- 
> 2.43.0
> 
> -- 
> Mailing list info: https://lists.linux.it/listinfo/ltp
>

-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

  reply	other threads:[~2026-07-14 10:18 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20260714100738.7745-1-gang.yan@linux.dev>
2026-07-14 10:07 ` [LTP] [PATCH 3/3] tst_fd.c: replace syscall() with tst_syscall_base() Gang Yan
2026-07-14 10:18   ` gang.yan [this message]
2026-07-14 10:14 [LTP] [PATCH 0/3] tst_fd.c: fix test_failures on loongarch's old Gang Yan
2026-07-14 10:14 ` [LTP] [PATCH 3/3] tst_fd.c: replace syscall() with tst_syscall_base() Gang Yan

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=171e5a6fadd4b47719c6a120a4586e750efb80bc@linux.dev \
    --to=gang.yan@linux.dev \
    --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