[Qemu-devel] [Bug 1336794] Re: 9pfs does not honor open file handles on unlinked files

2017-08-03 Thread Maxim Kuvyrkov
Hi Greg, Did you push the qemu patch upstream, and now it is a matter of fixing the kernel? -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/1336794 Title: 9pfs does not honor open file handles on un

[Qemu-devel] {PING^2} [PATCH 0/4] Support NPTL support for ColdFire and related fixes

2010-07-15 Thread Maxim Kuvyrkov
On 3/1/10 10:19 PM, Maxim Kuvyrkov wrote: The following series of 4 patches adds NPTL support for ColdFire user-mode emulation and fixes several related issues, mainly in signal handling. 0001-Add-NPTL-support-for-ColdFire.patch Implement new kernel syscalls to support TLS storage and

[Qemu-devel] {PING}[PATCH 0/4] Support NPTL support for ColdFire and related fixes

2010-05-21 Thread Maxim Kuvyrkov
On 3/1/10 10:19 PM, Maxim Kuvyrkov wrote: The following series of 4 patches adds NPTL support for ColdFire user-mode emulation and fixes several related issues, mainly in signal handling. 0001-Add-NPTL-support-for-ColdFire.patch Implement new kernel syscalls to support TLS storage and

Re: [Qemu-devel] [PATCH 3/4] Fix signal handling for ColdFire

2010-03-03 Thread Maxim Kuvyrkov
/torvalds/linux-2.6.git;a=blob;f=arch/m68k/include/asm/sigcontext.h;h=1320eaa4cc2aab4b531a565c57ab62afb30bd0ec;hb=HEAD . And thanks to your comment I noticed that an old version of the sigcontext patch was merged into the kernel in the above commit. Will need to fix it. Regards, -- Maxim Kuvyrkov

[Qemu-devel] [PATCH 0/4] Support NPTL support for ColdFire and related fixes

2010-03-01 Thread Maxim Kuvyrkov
patches were tested on GCC and GLIBC testsuites. All signal handling and frame unwinding GCC tests pass. GLIBC testsuite now has more tests passing with no regressions. Any comments? Thanks, -- Maxim Kuvyrkov CodeSourcery ma...@codesourcery.com (650) 331-3385 x724

[Qemu-devel] [PATCH 4/4] Define MMAP_SHIFT for ColdFire

2010-03-01 Thread Maxim Kuvyrkov
>From c65168b123032ef2ab10c90254e4ac8bc6cb0120 Mon Sep 17 00:00:00 2001 From: Maxim Kuvyrkov Date: Mon, 1 Mar 2010 02:51:10 -0800 Subject: [PATCH 4/4] Define MMAP_SHIFT for ColdFire ColdFire has MMAP_SHIFT equal to TARGET_PAGE_BITS. Signed-off-by: Maxim Kuvyrkov --- target-m68k/cpu.h |

[Qemu-devel] [PATCH 3/4] Fix signal handling for ColdFire

2010-03-01 Thread Maxim Kuvyrkov
>From 1450a09c513a3051e3cf44d948983fe48ef368e0 Mon Sep 17 00:00:00 2001 From: Maxim Kuvyrkov Date: Mon, 1 Mar 2010 02:48:31 -0800 Subject: [PATCH 3/4] Fix signal handling for ColdFire Handle FPU registers. Pack structures that contain 16-bit fields. This avoid problems due to differen

[Qemu-devel] [PATCH 2/4] Handle SIGKILL and SIGCHLD

2010-03-01 Thread Maxim Kuvyrkov
>From a659ff77804712826c1c1fe739339f1b1a172ed6 Mon Sep 17 00:00:00 2001 From: Maxim Kuvyrkov Date: Mon, 1 Mar 2010 02:39:48 -0800 Subject: [PATCH 2/4] Handle SIGKILL and SIGCHLD Handle SIGKILL and SIGCHLD in linux user-space emulation. Signed-off-by: Maxim Kuvyrkov --- linux-user/signa

[Qemu-devel] [PATCH 1/4] Add NPTL support for ColdFire

2010-03-01 Thread Maxim Kuvyrkov
>From 1e505c8434d42f9b4fb1cc60934f856ffc06b476 Mon Sep 17 00:00:00 2001 From: Maxim Kuvyrkov Date: Mon, 1 Mar 2010 02:35:53 -0800 Subject: [PATCH 1/4] Add NPTL support for ColdFire Add emulation of new m68k syscalls that provide kernel support for NPTL. Signed-off-by: Maxim Kuvyr