qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/01] seccomp branch queue
@ 2015-01-23 13:21 Eduardo Otubo
  2015-01-23 13:21 ` [Qemu-devel] [PULL 01/01] seccomp: add mlockall to whitelist Eduardo Otubo
  2015-01-23 17:09 ` [Qemu-devel] [PULL 00/01] seccomp branch queue Peter Maydell
  0 siblings, 2 replies; 5+ messages in thread
From: Eduardo Otubo @ 2015-01-23 13:21 UTC (permalink / raw)
  To: qemu-devel; +Cc: pmoore, peter.maydell, amit.shah, ehabkost, Eduardo Otubo

The following changes since commit 8f970eff6e318524f189f105c236e47633759890:

  Merge remote-tracking branch 'remotes/kraxel/tags/pull-input-20150122-1' into staging (2015-01-22 17:41:59 +0000)

are available in the git repository at:


  https://github.com/otubo/qemu.git tags/pull-seccomp-20150123

for you to fetch changes up to 4b45b055491a319292beefb8080a81d96cf55cf6:

  seccomp: add mlockall to whitelist (2015-01-23 14:07:08 +0100)

----------------------------------------------------------------
seccomp branch queue

----------------------------------------------------------------
Paolo Bonzini (1):
      seccomp: add mlockall to whitelist

 qemu-seccomp.c | 1 +
 1 file changed, 1 insertion(+)

-- 
1.9.1

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

* [Qemu-devel] [PULL 01/01] seccomp: add mlockall to whitelist
  2015-01-23 13:21 [Qemu-devel] [PULL 00/01] seccomp branch queue Eduardo Otubo
@ 2015-01-23 13:21 ` Eduardo Otubo
  2015-01-23 13:39   ` Amit Shah
  2015-01-23 17:09 ` [Qemu-devel] [PULL 00/01] seccomp branch queue Peter Maydell
  1 sibling, 1 reply; 5+ messages in thread
From: Eduardo Otubo @ 2015-01-23 13:21 UTC (permalink / raw)
  To: qemu-devel
  Cc: peter.maydell, ehabkost, pmoore, Eduardo Otubo, amit.shah,
	Paolo Bonzini

From: Paolo Bonzini <pbonzini@redhat.com>

This is used by "-realtime mlock=on".

Signed-off-by: Eduardo Otubo <eduardo.otubo@profitbricks.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Amit Shah <amit.shah@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Tested-by: Eduardo Habkost <ehabkost@redhat.com>
Acked-by: Eduardo Otubo <eduardo.otubo@profitbricks.com>
---
 qemu-seccomp.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/qemu-seccomp.c b/qemu-seccomp.c
index b0c6269..f9de0d3 100644
--- a/qemu-seccomp.c
+++ b/qemu-seccomp.c
@@ -229,6 +229,7 @@ static const struct QemuSeccompSyscall seccomp_whitelist[] = {
     { SCMP_SYS(shmdt), 240 },
     { SCMP_SYS(timerfd_create), 240 },
     { SCMP_SYS(shmctl), 240 },
+    { SCMP_SYS(mlockall), 240 },
     { SCMP_SYS(mlock), 240 },
     { SCMP_SYS(munlock), 240 },
     { SCMP_SYS(semctl), 240 },
-- 
1.9.1

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

* Re: [Qemu-devel] [PULL 01/01] seccomp: add mlockall to whitelist
  2015-01-23 13:21 ` [Qemu-devel] [PULL 01/01] seccomp: add mlockall to whitelist Eduardo Otubo
@ 2015-01-23 13:39   ` Amit Shah
  2015-01-23 17:08     ` Peter Maydell
  0 siblings, 1 reply; 5+ messages in thread
From: Amit Shah @ 2015-01-23 13:39 UTC (permalink / raw)
  To: Eduardo Otubo; +Cc: pmoore, peter.maydell, Paolo Bonzini, qemu-devel, ehabkost

On (Fri) 23 Jan 2015 [14:21:46], Eduardo Otubo wrote:
> From: Paolo Bonzini <pbonzini@redhat.com>
> 
> This is used by "-realtime mlock=on".
> 
> Signed-off-by: Eduardo Otubo <eduardo.otubo@profitbricks.com>

Hm, that's not where a signed-off-by of the maintainer goes...

> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> Reviewed-by: Amit Shah <amit.shah@redhat.com>
> Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
> Tested-by: Eduardo Habkost <ehabkost@redhat.com>
> Acked-by: Eduardo Otubo <eduardo.otubo@profitbricks.com>


		Amit

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

* Re: [Qemu-devel] [PULL 01/01] seccomp: add mlockall to whitelist
  2015-01-23 13:39   ` Amit Shah
@ 2015-01-23 17:08     ` Peter Maydell
  0 siblings, 0 replies; 5+ messages in thread
From: Peter Maydell @ 2015-01-23 17:08 UTC (permalink / raw)
  To: Amit Shah
  Cc: Paul Moore, Paolo Bonzini, QEMU Developers, Eduardo Otubo,
	Eduardo Habkost

On 23 January 2015 at 13:39, Amit Shah <amit.shah@redhat.com> wrote:
> On (Fri) 23 Jan 2015 [14:21:46], Eduardo Otubo wrote:
>> From: Paolo Bonzini <pbonzini@redhat.com>
>>
>> This is used by "-realtime mlock=on".
>>
>> Signed-off-by: Eduardo Otubo <eduardo.otubo@profitbricks.com>
>
> Hm, that's not where a signed-off-by of the maintainer goes...
>
>> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
>> Reviewed-by: Amit Shah <amit.shah@redhat.com>
>> Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
>> Tested-by: Eduardo Habkost <ehabkost@redhat.com>
>> Acked-by: Eduardo Otubo <eduardo.otubo@profitbricks.com>

True, but I shan't ask Eduardo to reroll just for that...

-- PMM

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

* Re: [Qemu-devel] [PULL 00/01] seccomp branch queue
  2015-01-23 13:21 [Qemu-devel] [PULL 00/01] seccomp branch queue Eduardo Otubo
  2015-01-23 13:21 ` [Qemu-devel] [PULL 01/01] seccomp: add mlockall to whitelist Eduardo Otubo
@ 2015-01-23 17:09 ` Peter Maydell
  1 sibling, 0 replies; 5+ messages in thread
From: Peter Maydell @ 2015-01-23 17:09 UTC (permalink / raw)
  To: Eduardo Otubo; +Cc: Paul Moore, Amit Shah, QEMU Developers, Eduardo Habkost

On 23 January 2015 at 13:21, Eduardo Otubo
<eduardo.otubo@profitbricks.com> wrote:
> The following changes since commit 8f970eff6e318524f189f105c236e47633759890:
>
>   Merge remote-tracking branch 'remotes/kraxel/tags/pull-input-20150122-1' into staging (2015-01-22 17:41:59 +0000)
>
> are available in the git repository at:
>
>
>   https://github.com/otubo/qemu.git tags/pull-seccomp-20150123
>
> for you to fetch changes up to 4b45b055491a319292beefb8080a81d96cf55cf6:
>
>   seccomp: add mlockall to whitelist (2015-01-23 14:07:08 +0100)
>
> ----------------------------------------------------------------
> seccomp branch queue
>
> ----------------------------------------------------------------

Applied, thanks.

-- PMM

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

end of thread, other threads:[~2015-01-23 17:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-23 13:21 [Qemu-devel] [PULL 00/01] seccomp branch queue Eduardo Otubo
2015-01-23 13:21 ` [Qemu-devel] [PULL 01/01] seccomp: add mlockall to whitelist Eduardo Otubo
2015-01-23 13:39   ` Amit Shah
2015-01-23 17:08     ` Peter Maydell
2015-01-23 17:09 ` [Qemu-devel] [PULL 00/01] seccomp branch queue Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).