All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] linux-user: fix O_NONBLOCK usage for hppa target
@ 2021-02-01 22:05 Helge Deller
  2021-02-13 16:23 ` Laurent Vivier
  2021-02-13 16:25 ` Laurent Vivier
  0 siblings, 2 replies; 4+ messages in thread
From: Helge Deller @ 2021-02-01 22:05 UTC (permalink / raw)
  To: Laurent Vivier, qemu-devel, Richard Henderson,
	Philippe Mathieu-Daudé,
	John Paul Adrian Glaubitz

Historically the parisc linux port tried to be compatible with HP-UX
userspace and as such defined the O_NONBLOCK constant to 0200004 to
emulate separate NDELAY & NONBLOCK values.

Since parisc was the only Linux platform which had two bits set, this
produced various userspace issues. Finally it was decided to drop the
(never completed) HP-UX compatibilty, which is why O_NONBLOCK was
changed upstream to only have one bit set in future with this commit:
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=75ae04206a4d0e4f541c1d692b7febd1c0fdb814

This patch simply adjusts the value for qemu-user too.

Signed-off-by: Helge Deller <deller@gmx.de>

---

diff --git a/linux-user/hppa/target_fcntl.h b/linux-user/hppa/target_fcntl.h
index bd966a59b8..08e3a4fcb0 100644
--- a/linux-user/hppa/target_fcntl.h
+++ b/linux-user/hppa/target_fcntl.h
@@ -8,7 +8,7 @@
 #ifndef HPPA_TARGET_FCNTL_H
 #define HPPA_TARGET_FCNTL_H

-#define TARGET_O_NONBLOCK    000200004 /* HPUX has separate NDELAY & NONBLOCK */
+#define TARGET_O_NONBLOCK    000200000
 #define TARGET_O_APPEND      000000010
 #define TARGET_O_CREAT       000000400 /* not fcntl */
 #define TARGET_O_EXCL        000002000 /* not fcntl */


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

* Re: [PATCH v2] linux-user: fix O_NONBLOCK usage for hppa target
  2021-02-01 22:05 [PATCH v2] linux-user: fix O_NONBLOCK usage for hppa target Helge Deller
@ 2021-02-13 16:23 ` Laurent Vivier
  2021-02-13 16:25 ` Laurent Vivier
  1 sibling, 0 replies; 4+ messages in thread
From: Laurent Vivier @ 2021-02-13 16:23 UTC (permalink / raw)
  To: Helge Deller, qemu-devel, Richard Henderson,
	Philippe Mathieu-Daudé,
	John Paul Adrian Glaubitz

Le 01/02/2021 à 23:05, Helge Deller a écrit :
> Historically the parisc linux port tried to be compatible with HP-UX
> userspace and as such defined the O_NONBLOCK constant to 0200004 to
> emulate separate NDELAY & NONBLOCK values.
> 
> Since parisc was the only Linux platform which had two bits set, this
> produced various userspace issues. Finally it was decided to drop the
> (never completed) HP-UX compatibilty, which is why O_NONBLOCK was
> changed upstream to only have one bit set in future with this commit:
> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=75ae04206a4d0e4f541c1d692b7febd1c0fdb814
> 
> This patch simply adjusts the value for qemu-user too.
> 
> Signed-off-by: Helge Deller <deller@gmx.de>
> 
> ---
> 
> diff --git a/linux-user/hppa/target_fcntl.h b/linux-user/hppa/target_fcntl.h
> index bd966a59b8..08e3a4fcb0 100644
> --- a/linux-user/hppa/target_fcntl.h
> +++ b/linux-user/hppa/target_fcntl.h
> @@ -8,7 +8,7 @@
>  #ifndef HPPA_TARGET_FCNTL_H
>  #define HPPA_TARGET_FCNTL_H
> 
> -#define TARGET_O_NONBLOCK    000200004 /* HPUX has separate NDELAY & NONBLOCK */
> +#define TARGET_O_NONBLOCK    000200000
>  #define TARGET_O_APPEND      000000010
>  #define TARGET_O_CREAT       000000400 /* not fcntl */
>  #define TARGET_O_EXCL        000002000 /* not fcntl */
> 

Reviewed-by: Laurent Vivier <laurent@vivier.eu>


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

* Re: [PATCH v2] linux-user: fix O_NONBLOCK usage for hppa target
  2021-02-01 22:05 [PATCH v2] linux-user: fix O_NONBLOCK usage for hppa target Helge Deller
  2021-02-13 16:23 ` Laurent Vivier
@ 2021-02-13 16:25 ` Laurent Vivier
  2021-02-22  1:02   ` Helge Deller
  1 sibling, 1 reply; 4+ messages in thread
From: Laurent Vivier @ 2021-02-13 16:25 UTC (permalink / raw)
  To: Helge Deller, qemu-devel, Richard Henderson,
	Philippe Mathieu-Daudé,
	John Paul Adrian Glaubitz

Le 01/02/2021 à 23:05, Helge Deller a écrit :
> Historically the parisc linux port tried to be compatible with HP-UX
> userspace and as such defined the O_NONBLOCK constant to 0200004 to
> emulate separate NDELAY & NONBLOCK values.
> 
> Since parisc was the only Linux platform which had two bits set, this
> produced various userspace issues. Finally it was decided to drop the
> (never completed) HP-UX compatibilty, which is why O_NONBLOCK was
> changed upstream to only have one bit set in future with this commit:
> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=75ae04206a4d0e4f541c1d692b7febd1c0fdb814
> 
> This patch simply adjusts the value for qemu-user too.
> 
> Signed-off-by: Helge Deller <deller@gmx.de>
> 
> ---
> 
> diff --git a/linux-user/hppa/target_fcntl.h b/linux-user/hppa/target_fcntl.h
> index bd966a59b8..08e3a4fcb0 100644
> --- a/linux-user/hppa/target_fcntl.h
> +++ b/linux-user/hppa/target_fcntl.h
> @@ -8,7 +8,7 @@
>  #ifndef HPPA_TARGET_FCNTL_H
>  #define HPPA_TARGET_FCNTL_H
> 
> -#define TARGET_O_NONBLOCK    000200004 /* HPUX has separate NDELAY & NONBLOCK */
> +#define TARGET_O_NONBLOCK    000200000
>  #define TARGET_O_APPEND      000000010
>  #define TARGET_O_CREAT       000000400 /* not fcntl */
>  #define TARGET_O_EXCL        000002000 /* not fcntl */
> 

Applied to my linux-user-for-6.0 branch.

Thanks,
Laurent


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

* Re: [PATCH v2] linux-user: fix O_NONBLOCK usage for hppa target
  2021-02-13 16:25 ` Laurent Vivier
@ 2021-02-22  1:02   ` Helge Deller
  0 siblings, 0 replies; 4+ messages in thread
From: Helge Deller @ 2021-02-22  1:02 UTC (permalink / raw)
  To: qemu-stable; +Cc: qemu-devel

Dear qemu-stable,

can you please consider adding this patch to the qemu-stable branch.
Upstream commit	2bdc74f3d7c4cacb65dbde910471c62992640275

Thanks,
Helge


On 2/13/21 5:25 PM, Laurent Vivier wrote:
> Le 01/02/2021 à 23:05, Helge Deller a écrit :
>> Historically the parisc linux port tried to be compatible with HP-UX
>> userspace and as such defined the O_NONBLOCK constant to 0200004 to
>> emulate separate NDELAY & NONBLOCK values.
>>
>> Since parisc was the only Linux platform which had two bits set, this
>> produced various userspace issues. Finally it was decided to drop the
>> (never completed) HP-UX compatibilty, which is why O_NONBLOCK was
>> changed upstream to only have one bit set in future with this commit:
>> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=75ae04206a4d0e4f541c1d692b7febd1c0fdb814
>>
>> This patch simply adjusts the value for qemu-user too.
>>
>> Signed-off-by: Helge Deller <deller@gmx.de>
>>
>> ---
>>
>> diff --git a/linux-user/hppa/target_fcntl.h b/linux-user/hppa/target_fcntl.h
>> index bd966a59b8..08e3a4fcb0 100644
>> --- a/linux-user/hppa/target_fcntl.h
>> +++ b/linux-user/hppa/target_fcntl.h
>> @@ -8,7 +8,7 @@
>>   #ifndef HPPA_TARGET_FCNTL_H
>>   #define HPPA_TARGET_FCNTL_H
>>
>> -#define TARGET_O_NONBLOCK    000200004 /* HPUX has separate NDELAY & NONBLOCK */
>> +#define TARGET_O_NONBLOCK    000200000
>>   #define TARGET_O_APPEND      000000010
>>   #define TARGET_O_CREAT       000000400 /* not fcntl */
>>   #define TARGET_O_EXCL        000002000 /* not fcntl */
>>
>
> Applied to my linux-user-for-6.0 branch.
>
> Thanks,
> Laurent
>



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

end of thread, other threads:[~2021-02-22  1:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-01 22:05 [PATCH v2] linux-user: fix O_NONBLOCK usage for hppa target Helge Deller
2021-02-13 16:23 ` Laurent Vivier
2021-02-13 16:25 ` Laurent Vivier
2021-02-22  1:02   ` Helge Deller

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.