All of lore.kernel.org
 help / color / mirror / Atom feed
* [Bug 1894361] [NEW] linux-user: syscall.c lacks pselect6_time64
@ 2020-09-05  7:43 Serge Belyshev
  2020-09-05 10:31 ` [Bug 1894361] " Laurent Vivier
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Serge Belyshev @ 2020-09-05  7:43 UTC (permalink / raw)
  To: qemu-devel

Public bug reported:

in commit 50efc69586388a975c1ebd90cb8cc8e4a7328bc4 ("linux-user/riscv:
Update the syscall_nr's to the 5.5 kernel") legacy pselect6 definition
for riscv32 was removed in favour of pselect6_time64, but
pselect6_time64 is not available in syscall.c, thus leaving riscv32
without pselect syscall.

** Affects: qemu
     Importance: Undecided
         Status: New

** Description changed:

- in commit 50efc69586388a975c1ebd90cb8cc8e4a7328bc4 legacy pselect6 definition
- for riscv32 was removed in favour of pselect6_time64, but pselect6_time64 is
- not available in syscall.c, thus leaving riscv32 without pselect syscall.
+ in commit 50efc69586388a975c1ebd90cb8cc8e4a7328bc4 legacy pselect6
+ definition for riscv32 was removed in favour of pselect6_time64, but
+ pselect6_time64 is not available in syscall.c, thus leaving riscv32
+ without pselect syscall.

** Description changed:

- in commit 50efc69586388a975c1ebd90cb8cc8e4a7328bc4 legacy pselect6
- definition for riscv32 was removed in favour of pselect6_time64, but
+ in commit 50efc69586388a975c1ebd90cb8cc8e4a7328bc4 ("linux-user/riscv:
+ Update the syscall_nr's to the 5.5 kernel") legacy pselect6 definition
+ for riscv32 was removed in favour of pselect6_time64, but
  pselect6_time64 is not available in syscall.c, thus leaving riscv32
  without pselect syscall.

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1894361

Title:
  linux-user: syscall.c lacks pselect6_time64

Status in QEMU:
  New

Bug description:
  in commit 50efc69586388a975c1ebd90cb8cc8e4a7328bc4 ("linux-user/riscv:
  Update the syscall_nr's to the 5.5 kernel") legacy pselect6 definition
  for riscv32 was removed in favour of pselect6_time64, but
  pselect6_time64 is not available in syscall.c, thus leaving riscv32
  without pselect syscall.

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1894361/+subscriptions


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

* [Bug 1894361] Re: linux-user: syscall.c lacks pselect6_time64
  2020-09-05  7:43 [Bug 1894361] [NEW] linux-user: syscall.c lacks pselect6_time64 Serge Belyshev
@ 2020-09-05 10:31 ` Laurent Vivier
  2020-09-05 20:46 ` Laurent Vivier
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Laurent Vivier @ 2020-09-05 10:31 UTC (permalink / raw)
  To: qemu-devel

pselect6_time64() has been implemented but it has not been merged
because during the test I've seen it breaks ARM target.

https://patchew.org/QEMU/20200824223050.92032-1-Filip.Bozuta@syrmia.com/20200824223050.92032-2-Filip.Bozuta@syrmia.com/

I try to fix that and merge that soon.

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1894361

Title:
  linux-user: syscall.c lacks pselect6_time64

Status in QEMU:
  New

Bug description:
  in commit 50efc69586388a975c1ebd90cb8cc8e4a7328bc4 ("linux-user/riscv:
  Update the syscall_nr's to the 5.5 kernel") legacy pselect6 definition
  for riscv32 was removed in favour of pselect6_time64, but
  pselect6_time64 is not available in syscall.c, thus leaving riscv32
  without pselect syscall.

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1894361/+subscriptions


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

* [Bug 1894361] Re: linux-user: syscall.c lacks pselect6_time64
  2020-09-05  7:43 [Bug 1894361] [NEW] linux-user: syscall.c lacks pselect6_time64 Serge Belyshev
  2020-09-05 10:31 ` [Bug 1894361] " Laurent Vivier
@ 2020-09-05 20:46 ` Laurent Vivier
  2020-09-06  6:19 ` Serge Belyshev
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Laurent Vivier @ 2020-09-05 20:46 UTC (permalink / raw)
  To: qemu-devel

Fix available in my branch:

https://github.com/vivier/qemu/commits/linux-user-for-5.2

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1894361

Title:
  linux-user: syscall.c lacks pselect6_time64

Status in QEMU:
  New

Bug description:
  in commit 50efc69586388a975c1ebd90cb8cc8e4a7328bc4 ("linux-user/riscv:
  Update the syscall_nr's to the 5.5 kernel") legacy pselect6 definition
  for riscv32 was removed in favour of pselect6_time64, but
  pselect6_time64 is not available in syscall.c, thus leaving riscv32
  without pselect syscall.

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1894361/+subscriptions


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

* [Bug 1894361] Re: linux-user: syscall.c lacks pselect6_time64
  2020-09-05  7:43 [Bug 1894361] [NEW] linux-user: syscall.c lacks pselect6_time64 Serge Belyshev
  2020-09-05 10:31 ` [Bug 1894361] " Laurent Vivier
  2020-09-05 20:46 ` Laurent Vivier
@ 2020-09-06  6:19 ` Serge Belyshev
  2020-09-07 15:59 ` Laurent Vivier
  2020-12-10  9:23 ` Thomas Huth
  4 siblings, 0 replies; 6+ messages in thread
From: Serge Belyshev @ 2020-09-06  6:19 UTC (permalink / raw)
  To: qemu-devel

** Changed in: qemu
       Status: New => In Progress

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1894361

Title:
  linux-user: syscall.c lacks pselect6_time64

Status in QEMU:
  In Progress

Bug description:
  in commit 50efc69586388a975c1ebd90cb8cc8e4a7328bc4 ("linux-user/riscv:
  Update the syscall_nr's to the 5.5 kernel") legacy pselect6 definition
  for riscv32 was removed in favour of pselect6_time64, but
  pselect6_time64 is not available in syscall.c, thus leaving riscv32
  without pselect syscall.

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1894361/+subscriptions


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

* [Bug 1894361] Re: linux-user: syscall.c lacks pselect6_time64
  2020-09-05  7:43 [Bug 1894361] [NEW] linux-user: syscall.c lacks pselect6_time64 Serge Belyshev
                   ` (2 preceding siblings ...)
  2020-09-06  6:19 ` Serge Belyshev
@ 2020-09-07 15:59 ` Laurent Vivier
  2020-12-10  9:23 ` Thomas Huth
  4 siblings, 0 replies; 6+ messages in thread
From: Laurent Vivier @ 2020-09-07 15:59 UTC (permalink / raw)
  To: qemu-devel

Fixed here:
https://git.qemu.org/?p=qemu.git;a=commitdiff;h=e5ce9688b47a8f60337ce1e4108f35577494a46a

** Changed in: qemu
       Status: In Progress => Fix Committed

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1894361

Title:
  linux-user: syscall.c lacks pselect6_time64

Status in QEMU:
  Fix Committed

Bug description:
  in commit 50efc69586388a975c1ebd90cb8cc8e4a7328bc4 ("linux-user/riscv:
  Update the syscall_nr's to the 5.5 kernel") legacy pselect6 definition
  for riscv32 was removed in favour of pselect6_time64, but
  pselect6_time64 is not available in syscall.c, thus leaving riscv32
  without pselect syscall.

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1894361/+subscriptions


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

* [Bug 1894361] Re: linux-user: syscall.c lacks pselect6_time64
  2020-09-05  7:43 [Bug 1894361] [NEW] linux-user: syscall.c lacks pselect6_time64 Serge Belyshev
                   ` (3 preceding siblings ...)
  2020-09-07 15:59 ` Laurent Vivier
@ 2020-12-10  9:23 ` Thomas Huth
  4 siblings, 0 replies; 6+ messages in thread
From: Thomas Huth @ 2020-12-10  9:23 UTC (permalink / raw)
  To: qemu-devel

Released with QEMU v5.2.0.

** Changed in: qemu
       Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1894361

Title:
  linux-user: syscall.c lacks pselect6_time64

Status in QEMU:
  Fix Released

Bug description:
  in commit 50efc69586388a975c1ebd90cb8cc8e4a7328bc4 ("linux-user/riscv:
  Update the syscall_nr's to the 5.5 kernel") legacy pselect6 definition
  for riscv32 was removed in favour of pselect6_time64, but
  pselect6_time64 is not available in syscall.c, thus leaving riscv32
  without pselect syscall.

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1894361/+subscriptions


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

end of thread, other threads:[~2020-12-10  9:49 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-05  7:43 [Bug 1894361] [NEW] linux-user: syscall.c lacks pselect6_time64 Serge Belyshev
2020-09-05 10:31 ` [Bug 1894361] " Laurent Vivier
2020-09-05 20:46 ` Laurent Vivier
2020-09-06  6:19 ` Serge Belyshev
2020-09-07 15:59 ` Laurent Vivier
2020-12-10  9:23 ` Thomas Huth

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.