Re: [Devel] [PATCH VZ7 3/3] netlink: allow messages with family PF_BRIDGE type RTM_xxxNEIGH in CT

2016-11-22 Thread Pavel Tikhomirov
On 11/23/2016 02:34 AM, Andrew Vagin wrote: On Thu, Oct 27, 2016 at 06:50:17PM +0300, Pavel Tikhomirov wrote: While reproducing the problem mentioned in patch 1 I found that we need it to be able to configure vxlan fdb https://jira.sw.ru/browse/PSBM-53629 Signed-off-by: Pavel Tikhomirov

Re: [Devel] [PATCH RH7 1/2] net/vxlan: enable support and autoload in a container

2016-11-22 Thread Andrei Vagin
On Wed, Oct 26, 2016 at 06:14:36PM +0300, Pavel Tikhomirov wrote: > vxlan is safe in CT as: > > 1) Udp multicast socket to connect to outer word sits in creation net- > namespace, and these socket can get packets only forwarded/routed > in creation ns. > > 2) Vxlan device is owned by second

Re: [Devel] [PATCH VZ7 3/3] netlink: allow messages with family PF_BRIDGE type RTM_xxxNEIGH in CT

2016-11-22 Thread Andrew Vagin
On Thu, Oct 27, 2016 at 06:50:17PM +0300, Pavel Tikhomirov wrote: > While reproducing the problem mentioned in patch 1 I found that > we need it to be able to configure vxlan fdb > > https://jira.sw.ru/browse/PSBM-53629 > Signed-off-by: Pavel Tikhomirov > --- >

[Devel] [PATCH rh7] mm/memcontrol/numa_migrate: split transparent huge pages before migrating

2016-11-22 Thread Andrey Ryabinin
When migrate_pages() steps on transparent huge page it splits the page and migrates only a head page. Therefore after migration NR_ISOLATED_ANON counter is dropped by one. When memcg_numa_isolate_pages() isolates huge page it increase NR_ISOLATED_ANON counter by the number of sub-pages in

Re: [Devel] [PATCH criu 3/3] mount: don't create a temporary directory if /tmp exists

2016-11-22 Thread Pavel Emelyanov
On 11/22/2016 03:43 PM, Cyrill Gorcunov wrote: > On Tue, Nov 22, 2016 at 03:44:35PM +0300, Pavel Emelyanov wrote: >> On 11/22/2016 03:01 PM, Cyrill Gorcunov wrote: >>> On Tue, Nov 22, 2016 at 02:45:46PM +0300, Pavel Emelyanov wrote: I've somehow lost 1/3 and 2/3 :( What are the subjects? >>>

Re: [Devel] [PATCH criu 3/3] mount: don't create a temporary directory if /tmp exists

2016-11-22 Thread Dmitry Safonov
On 11/22/2016 03:44 PM, Pavel Emelyanov wrote: On 11/22/2016 03:01 PM, Cyrill Gorcunov wrote: On Tue, Nov 22, 2016 at 02:45:46PM +0300, Pavel Emelyanov wrote: I've somehow lost 1/3 and 2/3 :( What are the subjects? 1063 C Nov 21 Andrey Vagin [PATCH criu 1/3] mount: handle error

Re: [Devel] [PATCH criu 3/3] mount: don't create a temporary directory if /tmp exists

2016-11-22 Thread Cyrill Gorcunov
On Tue, Nov 22, 2016 at 03:44:35PM +0300, Pavel Emelyanov wrote: > On 11/22/2016 03:01 PM, Cyrill Gorcunov wrote: > > On Tue, Nov 22, 2016 at 02:45:46PM +0300, Pavel Emelyanov wrote: > >> I've somehow lost 1/3 and 2/3 :( What are the subjects? > > > > 1063 C Nov 21 Andrey Vagin [PATCH

Re: [Devel] [PATCH criu 3/3] mount: don't create a temporary directory if /tmp exists

2016-11-22 Thread Pavel Emelyanov
On 11/22/2016 03:01 PM, Cyrill Gorcunov wrote: > On Tue, Nov 22, 2016 at 02:45:46PM +0300, Pavel Emelyanov wrote: >> I've somehow lost 1/3 and 2/3 :( What are the subjects? > > 1063 C Nov 21 Andrey Vagin [PATCH criu 1/3] mount: handle error > from restore_shared_options() Cannot find

Re: [Devel] [PATCH criu 3/3] mount: don't create a temporary directory if /tmp exists

2016-11-22 Thread Cyrill Gorcunov
On Tue, Nov 22, 2016 at 02:45:46PM +0300, Pavel Emelyanov wrote: > I've somehow lost 1/3 and 2/3 :( What are the subjects? 1063 C Nov 21 Andrey Vagin [PATCH criu 1/3] mount: handle error from restore_shared_options() 1064 C Nov 21 Andrey Vagin ├─>[PATCH criu 2/3] mount: fix

Re: [Devel] [PATCH criu 3/3] mount: don't create a temporary directory if /tmp exists

2016-11-22 Thread Pavel Emelyanov
I've somehow lost 1/3 and 2/3 :( What are the subjects? ___ Devel mailing list Devel@openvz.org https://lists.openvz.org/mailman/listinfo/devel

[Devel] [PATCH 1/1] KVM: Disable irq while unregistering user notifier

2016-11-22 Thread Evgeny Yakovlev
From: Ignacio Alvarado Function user_notifier_unregister should be called only once for each registered user notifier. Function kvm_arch_hardware_disable can be executed from an IPI context which could cause a race condition with a VCPU returning to user mode and

[Devel] [PATCH 0/1] KVM: Disable irq while unregistering user notifier

2016-11-22 Thread Evgeny Yakovlev
Upstream backport to fix https://jira.sw.ru/browse/PSBM-55099 Ignacio Alvarado (1): KVM: Disable irq while unregistering user notifier arch/x86/kvm/x86.c | 13 +++-- 1 file changed, 11 insertions(+), 2 deletions(-) -- 1.8.3.1 ___ Devel

[Devel] [PATCH rh7] proc/modules: show loaded modules in container.

2016-11-22 Thread Andrey Ryabinin
Some scripts wants to read this file to perform some sanity checks. Loaded modules is not security sensitive information, so this shouldn't be a problem to expose this in container. Signed-off-by: Andrey Ryabinin --- kernel/module.c | 2 -- 1 file changed, 2