All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [LTP] [PATCH] lapi/syscalls: Add epoll_create for aarch64.in
@ 2021-10-27  9:36 zhaogongyi
  2021-10-27  9:44 ` Jan Stancek
  0 siblings, 1 reply; 8+ messages in thread
From: zhaogongyi @ 2021-10-27  9:36 UTC (permalink / raw)
  To: Jan Stancek; +Cc: LTP List

Hi,



> 
> On Wed, Oct 27, 2021 at 5:28 AM zhaogongyi <zhaogongyi@huawei.com>
> wrote:
> >
> > Hi,
> >
> > >
> > > On Tue, Oct 26, 2021 at 9:49 AM Zhao Gongyi
> <zhaogongyi@huawei.com>
> > > wrote:
> > > >
> > > > Add epoll_create for aarch64.in and modify the value of epoll_ctl
> > > > for aarch64.in. Otherwise, the testcase
> > > > epoll_create01/epoll_create02 will fail.
> > > >
> > > > Signed-off-by: Zhao Gongyi <zhaogongyi@huawei.com>
> > > > ---
> > > >  include/lapi/syscalls/aarch64.in | 3 ++-
> > > >  1 file changed, 2 insertions(+), 1 deletion(-)
> > > >
> > > > diff --git a/include/lapi/syscalls/aarch64.in
> > > > b/include/lapi/syscalls/aarch64.in
> > > > index a47185954..e9023a1d0 100644
> > > > --- a/include/lapi/syscalls/aarch64.in
> > > > +++ b/include/lapi/syscalls/aarch64.in
> > > > @@ -19,7 +19,6 @@ getcwd 17
> > > >  lookup_dcookie 18
> > > >  eventfd2 19
> > > >  epoll_create1 20
> > > > -epoll_ctl 21
> > > >  epoll_pwait 22
> > > >  dup 23
> > > >  dup3 24
> > > > @@ -243,6 +242,8 @@ rt_tgsigqueueinfo 240  perf_event_open
> 241
> > > >  accept4 242
> > > >  recvmmsg 243
> > > > +epoll_create 250
> > > > +epoll_ctl 251
> > >
> > > These values are for 32 bit only syscalls. Won't this break 64 bit?
> >
> > Yes, these values are for 32 bit only syscalls, the syscall epoll_create is
> not support for 64bit arm64.
> 
> Right, adding epoll_create is OK, but changing epoll_ctl would break 64bit
> if there were any users of __NR_epoll_ctl.

If we do not consider the running of 32bit program on arm64, we need to remove __NR_epoll_ctl.

And the testcase using __NR_epoll_ctl will fail, is it a problem to be resolved?

> 
> >
> > Reference to man 2 epoll_create, we can see that
> epoll_create/epoll_create1 are supported If only we include the header
> file sys/epoll.h.
> >
> > Is it better that we call epoll_create replace to syscall
> __NR_epoll_create since some plateform not support it?
> 
> I think so. We already use epoll_create() in other tests, so this looks like
> simplest solution for all arches.
> 
> >
> >
> > Thanks for you review!
> >
> > >
> > > >  wait4 260
> > > >  prlimit64 261
> > > >  fanotify_init 262
> > > > --
> > > > 2.17.1
> > > >
> > > >
> > > > --
> > > > Mailing list info: https://lists.linux.it/listinfo/ltp
> > > >
> >


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

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [LTP] [PATCH] lapi/syscalls: Add epoll_create for aarch64.in
  2021-10-27  9:36 [LTP] [PATCH] lapi/syscalls: Add epoll_create for aarch64.in zhaogongyi
@ 2021-10-27  9:44 ` Jan Stancek
  0 siblings, 0 replies; 8+ messages in thread
From: Jan Stancek @ 2021-10-27  9:44 UTC (permalink / raw)
  To: zhaogongyi; +Cc: LTP List

On Wed, Oct 27, 2021 at 11:36 AM zhaogongyi <zhaogongyi@huawei.com> wrote:
>
> Hi,
>
>
>
> >
> > On Wed, Oct 27, 2021 at 5:28 AM zhaogongyi <zhaogongyi@huawei.com>
> > wrote:
> > >
> > > Hi,
> > >
> > > >
> > > > On Tue, Oct 26, 2021 at 9:49 AM Zhao Gongyi
> > <zhaogongyi@huawei.com>
> > > > wrote:
> > > > >
> > > > > Add epoll_create for aarch64.in and modify the value of epoll_ctl
> > > > > for aarch64.in. Otherwise, the testcase
> > > > > epoll_create01/epoll_create02 will fail.
> > > > >
> > > > > Signed-off-by: Zhao Gongyi <zhaogongyi@huawei.com>
> > > > > ---
> > > > >  include/lapi/syscalls/aarch64.in | 3 ++-
> > > > >  1 file changed, 2 insertions(+), 1 deletion(-)
> > > > >
> > > > > diff --git a/include/lapi/syscalls/aarch64.in
> > > > > b/include/lapi/syscalls/aarch64.in
> > > > > index a47185954..e9023a1d0 100644
> > > > > --- a/include/lapi/syscalls/aarch64.in
> > > > > +++ b/include/lapi/syscalls/aarch64.in
> > > > > @@ -19,7 +19,6 @@ getcwd 17
> > > > >  lookup_dcookie 18
> > > > >  eventfd2 19
> > > > >  epoll_create1 20
> > > > > -epoll_ctl 21
> > > > >  epoll_pwait 22
> > > > >  dup 23
> > > > >  dup3 24
> > > > > @@ -243,6 +242,8 @@ rt_tgsigqueueinfo 240  perf_event_open
> > 241
> > > > >  accept4 242
> > > > >  recvmmsg 243
> > > > > +epoll_create 250
> > > > > +epoll_ctl 251
> > > >
> > > > These values are for 32 bit only syscalls. Won't this break 64 bit?
> > >
> > > Yes, these values are for 32 bit only syscalls, the syscall epoll_create is
> > not support for 64bit arm64.
> >
> > Right, adding epoll_create is OK, but changing epoll_ctl would break 64bit
> > if there were any users of __NR_epoll_ctl.
>
> If we do not consider the running of 32bit program on arm64, we need to remove __NR_epoll_ctl.
>
> And the testcase using __NR_epoll_ctl will fail, is it a problem to be resolved?

There are no testcases currently using __NR_epoll_ctl, but to avoid
this potential
issues in future, we can remove it. Existing testcases use libc epoll_ctl().

>
> >
> > >
> > > Reference to man 2 epoll_create, we can see that
> > epoll_create/epoll_create1 are supported If only we include the header
> > file sys/epoll.h.
> > >
> > > Is it better that we call epoll_create replace to syscall
> > __NR_epoll_create since some plateform not support it?
> >
> > I think so. We already use epoll_create() in other tests, so this looks like
> > simplest solution for all arches.
> >
> > >
> > >
> > > Thanks for you review!
> > >
> > > >
> > > > >  wait4 260
> > > > >  prlimit64 261
> > > > >  fanotify_init 262
> > > > > --
> > > > > 2.17.1
> > > > >
> > > > >
> > > > > --
> > > > > Mailing list info: https://lists.linux.it/listinfo/ltp
> > > > >
> > >
>


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

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [LTP] [PATCH] lapi/syscalls: Add epoll_create for aarch64.in
@ 2021-10-28  3:15 zhaogongyi
  0 siblings, 0 replies; 8+ messages in thread
From: zhaogongyi @ 2021-10-28  3:15 UTC (permalink / raw)
  To: Jan Stancek; +Cc: LTP List

Hi,

I have resubmit a patch, please see: https://patchwork.ozlabs.org/project/ltp/patch/20211028031422.208689-1-zhaogongyi@huawei.com/

Thanks so much!


> 
> On Wed, Oct 27, 2021 at 11:36 AM zhaogongyi <zhaogongyi@huawei.com>
> wrote:
> >
> > Hi,
> >
> >
> >
> > >
> > > On Wed, Oct 27, 2021 at 5:28 AM zhaogongyi
> <zhaogongyi@huawei.com>
> > > wrote:
> > > >
> > > > Hi,
> > > >
> > > > >
> > > > > On Tue, Oct 26, 2021 at 9:49 AM Zhao Gongyi
> > > <zhaogongyi@huawei.com>
> > > > > wrote:
> > > > > >
> > > > > > Add epoll_create for aarch64.in and modify the value of
> > > > > > epoll_ctl for aarch64.in. Otherwise, the testcase
> > > > > > epoll_create01/epoll_create02 will fail.
> > > > > >
> > > > > > Signed-off-by: Zhao Gongyi <zhaogongyi@huawei.com>
> > > > > > ---
> > > > > >  include/lapi/syscalls/aarch64.in | 3 ++-
> > > > > >  1 file changed, 2 insertions(+), 1 deletion(-)
> > > > > >
> > > > > > diff --git a/include/lapi/syscalls/aarch64.in
> > > > > > b/include/lapi/syscalls/aarch64.in
> > > > > > index a47185954..e9023a1d0 100644
> > > > > > --- a/include/lapi/syscalls/aarch64.in
> > > > > > +++ b/include/lapi/syscalls/aarch64.in
> > > > > > @@ -19,7 +19,6 @@ getcwd 17
> > > > > >  lookup_dcookie 18
> > > > > >  eventfd2 19
> > > > > >  epoll_create1 20
> > > > > > -epoll_ctl 21
> > > > > >  epoll_pwait 22
> > > > > >  dup 23
> > > > > >  dup3 24
> > > > > > @@ -243,6 +242,8 @@ rt_tgsigqueueinfo 240
> perf_event_open
> > > 241
> > > > > >  accept4 242
> > > > > >  recvmmsg 243
> > > > > > +epoll_create 250
> > > > > > +epoll_ctl 251
> > > > >
> > > > > These values are for 32 bit only syscalls. Won't this break 64 bit?
> > > >
> > > > Yes, these values are for 32 bit only syscalls, the syscall
> > > > epoll_create is
> > > not support for 64bit arm64.
> > >
> > > Right, adding epoll_create is OK, but changing epoll_ctl would break
> > > 64bit if there were any users of __NR_epoll_ctl.
> >
> > If we do not consider the running of 32bit program on arm64, we need
> to remove __NR_epoll_ctl.
> >
> > And the testcase using __NR_epoll_ctl will fail, is it a problem to be
> resolved?
> 
> There are no testcases currently using __NR_epoll_ctl, but to avoid this
> potential issues in future, we can remove it. Existing testcases use libc
> epoll_ctl().
> 
> >
> > >
> > > >
> > > > Reference to man 2 epoll_create, we can see that
> > > epoll_create/epoll_create1 are supported If only we include the
> > > header file sys/epoll.h.
> > > >
> > > > Is it better that we call epoll_create replace to syscall
> > > __NR_epoll_create since some plateform not support it?
> > >
> > > I think so. We already use epoll_create() in other tests, so this
> > > looks like simplest solution for all arches.
> > >
> > > >
> > > >
> > > > Thanks for you review!
> > > >
> > > > >
> > > > > >  wait4 260
> > > > > >  prlimit64 261
> > > > > >  fanotify_init 262
> > > > > > --
> > > > > > 2.17.1
> > > > > >
> > > > > >
> > > > > > --
> > > > > > Mailing list info: https://lists.linux.it/listinfo/ltp
> > > > > >
> > > >
> >


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

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [LTP] [PATCH] lapi/syscalls: Add epoll_create for aarch64.in
@ 2021-10-27  9:55 zhaogongyi
  0 siblings, 0 replies; 8+ messages in thread
From: zhaogongyi @ 2021-10-27  9:55 UTC (permalink / raw)
  To: Jan Stancek; +Cc: LTP List

Hi,

> 
> On Wed, Oct 27, 2021 at 11:36 AM zhaogongyi <zhaogongyi@huawei.com>
> wrote:
> >
> > Hi,
> >
> >
> >
> > >
> > > On Wed, Oct 27, 2021 at 5:28 AM zhaogongyi
> <zhaogongyi@huawei.com>
> > > wrote:
> > > >
> > > > Hi,
> > > >
> > > > >
> > > > > On Tue, Oct 26, 2021 at 9:49 AM Zhao Gongyi
> > > <zhaogongyi@huawei.com>
> > > > > wrote:
> > > > > >
> > > > > > Add epoll_create for aarch64.in and modify the value of
> > > > > > epoll_ctl for aarch64.in. Otherwise, the testcase
> > > > > > epoll_create01/epoll_create02 will fail.
> > > > > >
> > > > > > Signed-off-by: Zhao Gongyi <zhaogongyi@huawei.com>
> > > > > > ---
> > > > > >  include/lapi/syscalls/aarch64.in | 3 ++-
> > > > > >  1 file changed, 2 insertions(+), 1 deletion(-)
> > > > > >
> > > > > > diff --git a/include/lapi/syscalls/aarch64.in
> > > > > > b/include/lapi/syscalls/aarch64.in
> > > > > > index a47185954..e9023a1d0 100644
> > > > > > --- a/include/lapi/syscalls/aarch64.in
> > > > > > +++ b/include/lapi/syscalls/aarch64.in
> > > > > > @@ -19,7 +19,6 @@ getcwd 17
> > > > > >  lookup_dcookie 18
> > > > > >  eventfd2 19
> > > > > >  epoll_create1 20
> > > > > > -epoll_ctl 21
> > > > > >  epoll_pwait 22
> > > > > >  dup 23
> > > > > >  dup3 24
> > > > > > @@ -243,6 +242,8 @@ rt_tgsigqueueinfo 240
> perf_event_open
> > > 241
> > > > > >  accept4 242
> > > > > >  recvmmsg 243
> > > > > > +epoll_create 250
> > > > > > +epoll_ctl 251
> > > > >
> > > > > These values are for 32 bit only syscalls. Won't this break 64 bit?
> > > >
> > > > Yes, these values are for 32 bit only syscalls, the syscall
> > > > epoll_create is
> > > not support for 64bit arm64.
> > >
> > > Right, adding epoll_create is OK, but changing epoll_ctl would break
> > > 64bit if there were any users of __NR_epoll_ctl.
> >
> > If we do not consider the running of 32bit program on arm64, we need
> to remove __NR_epoll_ctl.
> >
> > And the testcase using __NR_epoll_ctl will fail, is it a problem to be
> resolved?
> 
> There are no testcases currently using __NR_epoll_ctl, but to avoid this
> potential issues in future, we can remove it. Existing testcases use libc
> epoll_ctl().
> 

All right! I will modify the patch later.

Thanks!

> >
> > >
> > > >
> > > > Reference to man 2 epoll_create, we can see that
> > > epoll_create/epoll_create1 are supported If only we include the
> > > header file sys/epoll.h.
> > > >
> > > > Is it better that we call epoll_create replace to syscall
> > > __NR_epoll_create since some plateform not support it?
> > >
> > > I think so. We already use epoll_create() in other tests, so this
> > > looks like simplest solution for all arches.
> > >
> > > >
> > > >
> > > > Thanks for you review!
> > > >
> > > > >
> > > > > >  wait4 260
> > > > > >  prlimit64 261
> > > > > >  fanotify_init 262
> > > > > > --
> > > > > > 2.17.1
> > > > > >
> > > > > >
> > > > > > --
> > > > > > Mailing list info: https://lists.linux.it/listinfo/ltp
> > > > > >
> > > >
> >


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

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [LTP] [PATCH] lapi/syscalls: Add epoll_create for aarch64.in
  2021-10-27  3:28 zhaogongyi
@ 2021-10-27  8:35 ` Jan Stancek
  0 siblings, 0 replies; 8+ messages in thread
From: Jan Stancek @ 2021-10-27  8:35 UTC (permalink / raw)
  To: zhaogongyi; +Cc: LTP List

On Wed, Oct 27, 2021 at 5:28 AM zhaogongyi <zhaogongyi@huawei.com> wrote:
>
> Hi,
>
> >
> > On Tue, Oct 26, 2021 at 9:49 AM Zhao Gongyi <zhaogongyi@huawei.com>
> > wrote:
> > >
> > > Add epoll_create for aarch64.in and modify the value of epoll_ctl for
> > > aarch64.in. Otherwise, the testcase epoll_create01/epoll_create02 will
> > > fail.
> > >
> > > Signed-off-by: Zhao Gongyi <zhaogongyi@huawei.com>
> > > ---
> > >  include/lapi/syscalls/aarch64.in | 3 ++-
> > >  1 file changed, 2 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/include/lapi/syscalls/aarch64.in
> > > b/include/lapi/syscalls/aarch64.in
> > > index a47185954..e9023a1d0 100644
> > > --- a/include/lapi/syscalls/aarch64.in
> > > +++ b/include/lapi/syscalls/aarch64.in
> > > @@ -19,7 +19,6 @@ getcwd 17
> > >  lookup_dcookie 18
> > >  eventfd2 19
> > >  epoll_create1 20
> > > -epoll_ctl 21
> > >  epoll_pwait 22
> > >  dup 23
> > >  dup3 24
> > > @@ -243,6 +242,8 @@ rt_tgsigqueueinfo 240  perf_event_open 241
> > >  accept4 242
> > >  recvmmsg 243
> > > +epoll_create 250
> > > +epoll_ctl 251
> >
> > These values are for 32 bit only syscalls. Won't this break 64 bit?
>
> Yes, these values are for 32 bit only syscalls, the syscall epoll_create is not support for 64bit arm64.

Right, adding epoll_create is OK, but changing epoll_ctl would break
64bit if there were any users of __NR_epoll_ctl.

>
> Reference to man 2 epoll_create, we can see that epoll_create/epoll_create1 are supported If only we include the header file sys/epoll.h.
>
> Is it better that we call epoll_create replace to syscall __NR_epoll_create since some plateform not support it?

I think so. We already use epoll_create() in other tests, so this
looks like simplest solution for all arches.

>
>
> Thanks for you review!
>
> >
> > >  wait4 260
> > >  prlimit64 261
> > >  fanotify_init 262
> > > --
> > > 2.17.1
> > >
> > >
> > > --
> > > Mailing list info: https://lists.linux.it/listinfo/ltp
> > >
>


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

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [LTP] [PATCH] lapi/syscalls: Add epoll_create for aarch64.in
@ 2021-10-27  3:28 zhaogongyi
  2021-10-27  8:35 ` Jan Stancek
  0 siblings, 1 reply; 8+ messages in thread
From: zhaogongyi @ 2021-10-27  3:28 UTC (permalink / raw)
  To: Jan Stancek; +Cc: LTP List

Hi,

> 
> On Tue, Oct 26, 2021 at 9:49 AM Zhao Gongyi <zhaogongyi@huawei.com>
> wrote:
> >
> > Add epoll_create for aarch64.in and modify the value of epoll_ctl for
> > aarch64.in. Otherwise, the testcase epoll_create01/epoll_create02 will
> > fail.
> >
> > Signed-off-by: Zhao Gongyi <zhaogongyi@huawei.com>
> > ---
> >  include/lapi/syscalls/aarch64.in | 3 ++-
> >  1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/include/lapi/syscalls/aarch64.in
> > b/include/lapi/syscalls/aarch64.in
> > index a47185954..e9023a1d0 100644
> > --- a/include/lapi/syscalls/aarch64.in
> > +++ b/include/lapi/syscalls/aarch64.in
> > @@ -19,7 +19,6 @@ getcwd 17
> >  lookup_dcookie 18
> >  eventfd2 19
> >  epoll_create1 20
> > -epoll_ctl 21
> >  epoll_pwait 22
> >  dup 23
> >  dup3 24
> > @@ -243,6 +242,8 @@ rt_tgsigqueueinfo 240  perf_event_open 241
> >  accept4 242
> >  recvmmsg 243
> > +epoll_create 250
> > +epoll_ctl 251
> 
> These values are for 32 bit only syscalls. Won't this break 64 bit?

Yes, these values are for 32 bit only syscalls, the syscall epoll_create is not support for 64bit arm64. 

Reference to man 2 epoll_create, we can see that epoll_create/epoll_create1 are supported If only we include the header file sys/epoll.h.

Is it better that we call epoll_create replace to syscall __NR_epoll_create since some plateform not support it?


Thanks for you review!

> 
> >  wait4 260
> >  prlimit64 261
> >  fanotify_init 262
> > --
> > 2.17.1
> >
> >
> > --
> > Mailing list info: https://lists.linux.it/listinfo/ltp
> >


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

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [LTP] [PATCH] lapi/syscalls: Add epoll_create for aarch64.in
  2021-10-26  7:50 Zhao Gongyi
@ 2021-10-26 12:30 ` Jan Stancek
  0 siblings, 0 replies; 8+ messages in thread
From: Jan Stancek @ 2021-10-26 12:30 UTC (permalink / raw)
  To: Zhao Gongyi; +Cc: LTP List

On Tue, Oct 26, 2021 at 9:49 AM Zhao Gongyi <zhaogongyi@huawei.com> wrote:
>
> Add epoll_create for aarch64.in and modify the value of epoll_ctl
> for aarch64.in. Otherwise, the testcase epoll_create01/epoll_create02 will
> fail.
>
> Signed-off-by: Zhao Gongyi <zhaogongyi@huawei.com>
> ---
>  include/lapi/syscalls/aarch64.in | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/include/lapi/syscalls/aarch64.in b/include/lapi/syscalls/aarch64.in
> index a47185954..e9023a1d0 100644
> --- a/include/lapi/syscalls/aarch64.in
> +++ b/include/lapi/syscalls/aarch64.in
> @@ -19,7 +19,6 @@ getcwd 17
>  lookup_dcookie 18
>  eventfd2 19
>  epoll_create1 20
> -epoll_ctl 21
>  epoll_pwait 22
>  dup 23
>  dup3 24
> @@ -243,6 +242,8 @@ rt_tgsigqueueinfo 240
>  perf_event_open 241
>  accept4 242
>  recvmmsg 243
> +epoll_create 250
> +epoll_ctl 251

These values are for 32 bit only syscalls. Won't this break 64 bit?

>  wait4 260
>  prlimit64 261
>  fanotify_init 262
> --
> 2.17.1
>
>
> --
> Mailing list info: https://lists.linux.it/listinfo/ltp
>


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

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [LTP] [PATCH] lapi/syscalls: Add epoll_create for aarch64.in
@ 2021-10-26  7:50 Zhao Gongyi
  2021-10-26 12:30 ` Jan Stancek
  0 siblings, 1 reply; 8+ messages in thread
From: Zhao Gongyi @ 2021-10-26  7:50 UTC (permalink / raw)
  To: ltp

Add epoll_create for aarch64.in and modify the value of epoll_ctl
for aarch64.in. Otherwise, the testcase epoll_create01/epoll_create02 will
fail.

Signed-off-by: Zhao Gongyi <zhaogongyi@huawei.com>
---
 include/lapi/syscalls/aarch64.in | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/include/lapi/syscalls/aarch64.in b/include/lapi/syscalls/aarch64.in
index a47185954..e9023a1d0 100644
--- a/include/lapi/syscalls/aarch64.in
+++ b/include/lapi/syscalls/aarch64.in
@@ -19,7 +19,6 @@ getcwd 17
 lookup_dcookie 18
 eventfd2 19
 epoll_create1 20
-epoll_ctl 21
 epoll_pwait 22
 dup 23
 dup3 24
@@ -243,6 +242,8 @@ rt_tgsigqueueinfo 240
 perf_event_open 241
 accept4 242
 recvmmsg 243
+epoll_create 250
+epoll_ctl 251
 wait4 260
 prlimit64 261
 fanotify_init 262
--
2.17.1


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

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2021-10-28  3:15 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-27  9:36 [LTP] [PATCH] lapi/syscalls: Add epoll_create for aarch64.in zhaogongyi
2021-10-27  9:44 ` Jan Stancek
  -- strict thread matches above, loose matches on Subject: below --
2021-10-28  3:15 zhaogongyi
2021-10-27  9:55 zhaogongyi
2021-10-27  3:28 zhaogongyi
2021-10-27  8:35 ` Jan Stancek
2021-10-26  7:50 Zhao Gongyi
2021-10-26 12:30 ` Jan Stancek

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.