Re: [Qemu-devel] [PATCH] linux-user: convert /proc/net/route when endianess differs

2013-01-26 Thread Laurent Vivier
Le mercredi 02 janvier 2013 à 00:08 +0100, Laurent Vivier a écrit : > Ping ! ping > Le jeudi 20 décembre 2012 à 21:53 +0100, Laurent Vivier a écrit : > > This patch allows to have IP addresses in correct order > > in the case of "netstat -nr" when the endianess of the > > guest differs from one o

Re: [Qemu-devel] [PATCH] linux-user: convert /proc/net/route when endianess differs

2013-01-01 Thread Laurent Vivier
Ping ! Le jeudi 20 décembre 2012 à 21:53 +0100, Laurent Vivier a écrit : > This patch allows to have IP addresses in correct order > in the case of "netstat -nr" when the endianess of the > guest differs from one of the host. > > For instance, an m68k guest on an x86_64 host: > > WITHOUT this p

[Qemu-devel] [PATCH] linux-user: convert /proc/net/route when endianess differs

2012-12-20 Thread Laurent Vivier
This patch allows to have IP addresses in correct order in the case of "netstat -nr" when the endianess of the guest differs from one of the host. For instance, an m68k guest on an x86_64 host: WITHOUT this patch: $ netstat -nr Kernel IP routing table Destination Gateway Genmask

[Qemu-devel] [PATCH] linux-user: convert /proc/net/route when endianess differs between target and host.

2012-12-08 Thread Laurent Vivier
Signed-off-by: Laurent Vivier --- linux-user/syscall.c | 42 ++ 1 file changed, 42 insertions(+) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index e4291ed..0415135 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -5085,6 +5085