All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 0/3] linux-user: Implement setxattr/getxattr/removexattr syscalls
@ 2011-08-09 19:30 An-Cheng Huang
  2011-08-17 21:30 ` An-Cheng Huang
  0 siblings, 1 reply; 4+ messages in thread
From: An-Cheng Huang @ 2011-08-09 19:30 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell, riku.voipio

These patches implement the setxattr, getxattr, and removexattr syscalls.
Since libattr uses indirect syscalls for these, the fix for the indirect
syscall handling on MIPS is needed for these to work.

An-Cheng Huang (3):
  linux-user: Fix MIPS indirect syscall handling
  linux-user: Verify MIPS syscall arguments
  linux-user: Implement setxattr/getxattr/removexattr syscalls

 linux-user/main.c    |   24 ++++++++++++++++-----
 linux-user/syscall.c |   54 +++++++++++++++++++++++++++++++++++++++++++++++--
 2 files changed, 69 insertions(+), 9 deletions(-)

-- 
1.7.2.5

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

* Re: [Qemu-devel] [PATCH 0/3] linux-user: Implement setxattr/getxattr/removexattr syscalls
  2011-08-09 19:30 [Qemu-devel] [PATCH 0/3] linux-user: Implement setxattr/getxattr/removexattr syscalls An-Cheng Huang
@ 2011-08-17 21:30 ` An-Cheng Huang
  2011-08-25 16:29   ` An-Cheng Huang
  2011-09-02  6:03   ` Riku Voipio
  0 siblings, 2 replies; 4+ messages in thread
From: An-Cheng Huang @ 2011-08-17 21:30 UTC (permalink / raw)
  To: riku.voipio; +Cc: peter.maydell, qemu-devel

On Tue, Aug 09, 2011 at 12:30:52PM -0700, An-Cheng Huang wrote:
> These patches implement the setxattr, getxattr, and removexattr syscalls.
> Since libattr uses indirect syscalls for these, the fix for the indirect
> syscall handling on MIPS is needed for these to work.
> 
> An-Cheng Huang (3):
>   linux-user: Fix MIPS indirect syscall handling
>   linux-user: Verify MIPS syscall arguments
>   linux-user: Implement setxattr/getxattr/removexattr syscalls
> 
>  linux-user/main.c    |   24 ++++++++++++++++-----
>  linux-user/syscall.c |   54 +++++++++++++++++++++++++++++++++++++++++++++++--
>  2 files changed, 69 insertions(+), 9 deletions(-)
> 
> -- 
> 1.7.2.5

Ping?

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

* Re: [Qemu-devel] [PATCH 0/3] linux-user: Implement setxattr/getxattr/removexattr syscalls
  2011-08-17 21:30 ` An-Cheng Huang
@ 2011-08-25 16:29   ` An-Cheng Huang
  2011-09-02  6:03   ` Riku Voipio
  1 sibling, 0 replies; 4+ messages in thread
From: An-Cheng Huang @ 2011-08-25 16:29 UTC (permalink / raw)
  To: riku.voipio; +Cc: peter.maydell, qemu-devel

On Wed, Aug 17, 2011 at 02:30:53PM -0700, An-Cheng Huang wrote:
> On Tue, Aug 09, 2011 at 12:30:52PM -0700, An-Cheng Huang wrote:
> > These patches implement the setxattr, getxattr, and removexattr syscalls.
> > Since libattr uses indirect syscalls for these, the fix for the indirect
> > syscall handling on MIPS is needed for these to work.
> > 
> > An-Cheng Huang (3):
> >   linux-user: Fix MIPS indirect syscall handling
> >   linux-user: Verify MIPS syscall arguments
> >   linux-user: Implement setxattr/getxattr/removexattr syscalls
> > 
> >  linux-user/main.c    |   24 ++++++++++++++++-----
> >  linux-user/syscall.c |   54 +++++++++++++++++++++++++++++++++++++++++++++++--
> >  2 files changed, 69 insertions(+), 9 deletions(-)
> > 
> > -- 
> > 1.7.2.5
> 
> Ping?

Ping? 

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

* Re: [Qemu-devel] [PATCH 0/3] linux-user: Implement setxattr/getxattr/removexattr syscalls
  2011-08-17 21:30 ` An-Cheng Huang
  2011-08-25 16:29   ` An-Cheng Huang
@ 2011-09-02  6:03   ` Riku Voipio
  1 sibling, 0 replies; 4+ messages in thread
From: Riku Voipio @ 2011-09-02  6:03 UTC (permalink / raw)
  To: An-Cheng Huang; +Cc: peter.maydell, qemu-devel

Hi,

On Wed, Aug 17, 2011 at 02:30:53PM -0700, An-Cheng Huang wrote:
> On Tue, Aug 09, 2011 at 12:30:52PM -0700, An-Cheng Huang wrote:
> > These patches implement the setxattr, getxattr, and removexattr syscalls.
> > Since libattr uses indirect syscalls for these, the fix for the indirect
> > syscall handling on MIPS is needed for these to work.
> > 
> > An-Cheng Huang (3):
> >   linux-user: Fix MIPS indirect syscall handling
> >   linux-user: Verify MIPS syscall arguments
> >   linux-user: Implement setxattr/getxattr/removexattr syscalls
> > 
> >  linux-user/main.c    |   24 ++++++++++++++++-----
> >  linux-user/syscall.c |   54 +++++++++++++++++++++++++++++++++++++++++++++++--
> >  2 files changed, 69 insertions(+), 9 deletions(-)

> Ping?

Thanks for your patches. Sorry that I haven't had the time to look at them yet, I hope
to get it done by monday ( together with the other pending linux-user patches).

Riku

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

end of thread, other threads:[~2011-09-02  6:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-09 19:30 [Qemu-devel] [PATCH 0/3] linux-user: Implement setxattr/getxattr/removexattr syscalls An-Cheng Huang
2011-08-17 21:30 ` An-Cheng Huang
2011-08-25 16:29   ` An-Cheng Huang
2011-09-02  6:03   ` Riku Voipio

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.