Jenkins build is back to normal : osv-build-nightly #899

2016-10-05 Thread avi
See -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to osv-dev+unsubscr...@googlegro

[COMMIT osv master] run.py: do not add port redirection for SSH

2016-10-05 Thread Commit Bot
From: Nadav Har'El Committer: Nadav Har'El Branch: master run.py: do not add port redirection for SSH OSv does not include by default (or at all) an SSH server for a long time, so the forwarding of the guest's port 22 to port on the guest is pretty pointless. And generates the annoying me

[COMMIT osv master] Update apps submodule

2016-10-05 Thread Commit Bot
From: Nadav Har'El Committer: Nadav Har'El Branch: master Update apps submodule Signed-off-by: Nadav Har'El --- diff --git a/apps b/apps --- a/apps +++ b/apps @@ -1 +1 @@ -Subproject commit e3ee7a7b923488a96c90e8b2deb94d5a93a3762a +Subproject commit cc25ca6798dc2c7e57ab41cfe25885951bcd1f76

[COMMIT osv-apps master] rogue: fix upstream source

2016-10-05 Thread Commit Bot
From: Nadav Har'El Committer: Nadav Har'El Branch: master rogue: fix upstream source This is not the most important application out there, but I often use it as an example :-) Rogueforge appears to be gone. So found another source. Signed-off-by: Nadav Har'El --- diff --git a/rogue/GET b/ro

[COMMIT osv-apps master] Delete unnecessary file

2016-10-05 Thread Commit Bot
From: Nadav Har'El Committer: Nadav Har'El Branch: master Delete unnecessary file mysql/usr.manifest is anyway created by the makefile, no need to save it in git. Signed-off-by: Nadav Har'El --- diff --git a/mysql/usr.manifest b/mysql/usr.manifest --- a/mysql/usr.manifest +++ b/mysql/usr.ma

[COMMIT osv master] sched: only allocate sched::thread objects on the heap

2016-10-05 Thread Commit Bot
From: Nadav Har'El Committer: Nadav Har'El Branch: master sched: only allocate sched::thread objects on the heap In issue #790, Timmons C. Player discovered something dangerous with on-stack sched::thread objects: The application's stack may be mmap()ed, so the scheduler now needs to access an

Re: [PATCH] sched: only allocate sched::thread objects on the heap

2016-10-05 Thread Avi Kivity
On 10/05/2016 12:45 PM, Nadav Har'El wrote: On Tue, Sep 27, 2016 at 12:00 PM, Nadav Har'El > wrote: On Mon, Sep 19, 2016 at 2:59 PM, Nadav Har'El mailto:n...@scylladb.com>> wrote: This patch prevents on-stack sched::thread construction by hidin

Re: [PATCH] sched: only allocate sched::thread objects on the heap

2016-10-05 Thread Nadav Har'El
On Tue, Sep 27, 2016 at 12:00 PM, Nadav Har'El wrote: > > On Mon, Sep 19, 2016 at 2:59 PM, Nadav Har'El wrote: > >> This patch prevents on-stack sched::thread construction by hiding the >> constructor, and only allowing a thread to be created through the function >> sched::thread::make(...), whi