Re: [Qemu-devel] [PATCH] semaphore syscalls - refresh

2007-04-17 Thread Stuart Anderson
Thiemo, Just wondering if you had a chance to take another look at this. On Sat, 31 Mar 2007, Stuart Anderson wrote: On Sat, 31 Mar 2007, Thiemo Seufer wrote: +switch( cmd ) { + case GETALL: + case SETALL: + case IPC_STAT: + case IPC_SET: + lock

Re: [Qemu-devel] [PATCH] semaphore syscalls - refresh

2007-03-31 Thread Stuart Anderson
On Sat, 31 Mar 2007, Thiemo Seufer wrote: +switch( cmd ) { + case GETALL: + case SETALL: + case IPC_STAT: + case IPC_SET: + lock_user_struct(target_su, target_addr, 1); + target_to_host_semid_ds(ds,target_su->buf); + host_su->buf = ds; +

Re: [Qemu-devel] [PATCH] semaphore syscalls - refresh

2007-03-31 Thread Thiemo Seufer
Stuart Anderson wrote: > > This is a refresh of a prior patch to fix the semaphore system calls > sem*() in user-linux mode. Some additional cases have been dealt with, > and a small amount of code re-arrainging to prepare for the EFAULT patch. > Tested using Linux Test Project in the target. [sni

[Qemu-devel] [PATCH] semaphore syscalls - refresh

2007-03-29 Thread Stuart Anderson
This is a refresh of a prior patch to fix the semaphore system calls sem*() in user-linux mode. Some additional cases have been dealt with, and a small amount of code re-arrainging to prepare for the EFAULT patch. Tested using Linux Test Project in the target. S