Re: [Devel] [PATCH VZ9 17/20] fuse: pcs: split trace_printk

2023-10-07 Thread Vasily Averin
On 10/6/23 13:44, Alexey Kuznetsov wrote: > trace_printk() is a function which is not desired in release kernels, > if is referenced from a module, even if it is not actually used, it allocates > lots of memory and scares people with some messages. > > What can we do? Why not switch to ftrace eve

[Devel] Fwd: [PATCH RFC 0/4] Fix file lock cache accounting, again

2024-01-19 Thread Vasily Averin
, Johannes Weiner , Michal Hocko CC: linux-ker...@vger.kernel.org, Jens Axboe , Tejun Heo , Vasily Averin , Michal Koutny , Waiman Long , Muchun Song , Jiri Kosina , cgro...@vger.kernel.org, linux...@kvack.org This is an attempt to fix file lock cache accounting (again). The bug was

[Devel] Fwd: [PATCH RFC 0/4] Fix file lock cache accounting, again

2024-01-19 Thread Vasily Averin
, Johannes Weiner , Michal Hocko CC: linux-ker...@vger.kernel.org, Jens Axboe , Tejun Heo , Vasily Averin , Michal Koutny , Waiman Long , Muchun Song , Jiri Kosina , cgro...@vger.kernel.org, linux...@kvack.org This is an attempt to fix file lock cache accounting (again). The bug was

Re: [Devel] [PATCH VZ9 1/2] fs/fuse kio: implement memory region to support zero-copy between userapce and kernel space.

2024-05-20 Thread Vasily Averin
> +int pcs_reg_mr(struct pcs_mr_set *mrs, u64 start, u64 len) > +{ > + int ret = 0; > + struct pcs_mr *mr; > + struct pcs_umem *umem; > + > + if (!len) > + return -EINVAL; > + > + if (!can_do_mlock()) > + return -EPERM; > + > + if (atomic_inc_return(&

Re: [Devel] [PATCH VZ9 2/2] fs/fuse kio: introduce pcs_krpc - export kernel RPC to userspace

2024-05-20 Thread Vasily Averin
On 5/16/24 17:22, Liu Kui wrote: > diff --git a/fs/fuse/kio/pcs/pcs_fuse_kdirect.c > b/fs/fuse/kio/pcs/pcs_fuse_kdirect.c > index 566dcb5f2f4c..0ca76556bf13 100644 > --- a/fs/fuse/kio/pcs/pcs_fuse_kdirect.c > +++ b/fs/fuse/kio/pcs/pcs_fuse_kdirect.c > @@ -1935,10 +2012,13 @@ static int __init kpcs

Re: [Devel] [PATCH VZ9 2/2] fs/fuse kio: introduce pcs_krpc - export kernel RPC to userspace

2024-05-20 Thread Vasily Averin
On 5/16/24 17:22, Liu Kui wrote: > --- a/fs/fuse/kio/pcs/pcs_cs.h > +++ b/fs/fuse/kio/pcs/pcs_cs.h > @@ -159,7 +159,7 @@ unsigned int cs_get_avg_in_flight(struct pcs_cs *cs); > void pcs_csset_init(struct pcs_cs_set *css); > void pcs_csset_fini(struct pcs_cs_set *css); > > -struct pcs_cs *pcs_cs

Re: [Devel] [PATCH VZ9 v2 1/2] fs/fuse kio: implement memory region to support zero-copy between userapce and kernel space.

2024-05-25 Thread Vasily Averin
On 5/23/24 13:54, Liu Kui wrote: > +/* > + * Register a MR > + */ > +int pcs_reg_mr(struct pcs_mr_set *mrs, u64 start, u64 len) > +{ > + int ret = 0; > + struct pcs_mr *mr; > + struct pcs_umem *umem; > + > + if (!len) > + return -EINVAL; > + > + if (!can_do_mlock())

Re: [Devel] [PATCH VZ9 v2 1/2] fs/fuse kio: implement memory region to support zero-copy between userapce and kernel space.

2024-05-26 Thread Vasily Averin
en just pass the descriptor(start address, > length) of a buffer allocated from the registered MR, together with > returned reference for that MR to kernel to complete data transfer to/from > kernel. > > This feature will be used for implementing pcs_krpc. > > Signed-off-by: Li

Re: [Devel] [PATCH VZ9] hide unused field in thread_info

2024-06-16 Thread Vasily Averin
Alexey, looks like you forgot to attach the patch. Thank you, Vasily Averin On 6/12/24 21:32, Alexey Kuznetsov wrote: > RHEL added this unused field by an unknown reason, apparently > brainlessy backporting some patch from mainstream. > > It looks just as harmless waste of

[Devel] [PATCH RHEL7 COMMIT] ms/aio: Kill aio_rw_vect_retry()

2020-10-17 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1127.18.2.vz7.163.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1127.18.2.vz7.163.38 --> commit 0b330c3b5263e5d0afc299cce8625854743f54a0 Author: Kent Overstreet Date: Sat Oct 17 11:02:54 2020 +0300 ms/a

[Devel] [PATCH RHEL7 COMMIT] fs/ve: add new FS_VE_MOUNT flag to allow mount in container init userns

2020-10-20 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1127.18.2.vz7.163.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1127.18.2.vz7.163.39 --> commit 4e8e69eb16b143f21e583c370ae860c81a76bd17 Author: Pavel Tikhomirov Date: Tue Oct 20 12:20:22 2020 +0300 fs/

[Devel] [PATCH RHEL7 COMMIT] kvm: fix AMD IBRS/IBPB/STIBP/SSBD reporting #PSBM-120787

2020-10-26 Thread Vasily Averin
0300 kvm: fix AMD IBRS/IBPB/STIBP/SSBD reporting #PSBM-120787 We should report these bits in 8008 EBX on AMD only, i.e. when AMD specific feature bits are enabled. Signed-off-by: Denis V. Lunev CC: Vasily Averin CC: Konstantin Khorenko https://jira

[Devel] [PATCH RH7] ms/NFSD: Fix a null reference case in find_or_create_lock_stateid()

2020-10-29 Thread Vasily Averin
nt to nfs4_alloc_stid(). Cc: sta...@vger.kernel.org Fixes: 356a95ece7aa "nfsd: clean up races in lock stateid searching..." Signed-off-by: Kinglong Mee Reviewed-by: Jeff Layton Signed-off-by: J. Bruce Fields https://jira.sw.ru/browse/PSBM-121833 Signed-off-by: Vasily Averin --- fs/nfs

[Devel] [PATCH RHEL7 COMMIT] ploop: Reduce batch size in populate_holes_bitmap()

2020-10-29 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1127.18.2.vz7.163.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1127.18.2.vz7.163.41 --> commit c8d87f9b868d0b1017e97b769a37861afc305062 Author: Kirill Tkhai Date: Thu Oct 29 16:56:57 2020 +0300 ploop:

[Devel] [PATCH RHEL7 COMMIT] ve/kmod: make nfnetlink_log autoloadable upon request from a CT

2020-10-29 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1127.18.2.vz7.163.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1127.18.2.vz7.163.41 --> commit b1dee036d79beaec1e542ee15d5ea5be8b582625 Author: Pavel Tikhomirov Date: Thu Oct 29 16:56:20 2020 +0300 ve/

[Devel] [PATCH RHEL7 COMMIT] ms/NFSD: Fix a null reference case in find_or_create_lock_stateid()

2020-10-29 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1127.18.2.vz7.163.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1127.18.2.vz7.163.41 --> commit ce7d60645c14a858784197a6f8b02ff9029d87bc Author: Vasily Averin Date: Thu Oct 29 16:57:30 2020

[Devel] [PATCH RHEL7 COMMIT] netlink: protect NETLINK_REPAIR2

2020-10-29 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1127.18.2.vz7.163.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1127.18.2.vz7.163.41 --> commit 6fdae411d87f42d6fab634955697849e7e7bea1f Author: Andrey Zhadchenko Date: Thu Oct 29 17:00:53 2020 +0300 ne

[Devel] [PATCH RHEL7 COMMIT] netlink: add an option to set sk->err from userspace

2020-10-29 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1127.18.2.vz7.163.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1127.18.2.vz7.163.41 --> commit 6bdca3581e557b7370e35e1d471b236afde05e4d Author: Andrey Zhadchenko Date: Thu Oct 29 17:00:59 2020 +0300 ne

[Devel] [PATCH RHEL7 COMMIT] ve/cgroup: change resource release order in ve_drop_context

2020-10-29 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1127.18.2.vz7.163.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1127.18.2.vz7.163.41 --> commit 6fd72185d1f282076b35b1de3d5435113897b835 Author: Valeriy Vdovin Date: Thu Oct 29 17:01:04 2020 +0300 ve/cg

[Devel] [PATCH RHEL7 COMMIT] cgroup: do not use cgroup_mutex in cgroup_show_options

2020-10-29 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1127.18.2.vz7.163.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1127.18.2.vz7.163.41 --> commit 98919b6048f04d857120692ff3cbfc78099ecb58 Author: Valeriy Vdovin Date: Thu Oct 29 17:01:10 2020 +0300 cgrou

[Devel] [PATCH RHEL7 COMMIT] ve: cleanup in function ve_get_release_agent_path

2020-10-29 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1127.18.2.vz7.163.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1127.18.2.vz7.163.41 --> commit d20ee9a4e7a750859ed60e340e85f1bab76e2e7d Author: Valeriy Vdovin Date: Thu Oct 29 17:01:16 2020 +0300 ve: c

[Devel] [PATCH RHEL7 COMMIT] ve: Reorder ve->ve_ns assignment in ve_grab_context()

2020-10-29 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1127.18.2.vz7.163.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1127.18.2.vz7.163.41 --> commit 089cdc112a232fa6cbdf59f2fee40b58563c67f1 Author: Kirill Tkhai Date: Thu Oct 29 17:03:07 2020 +0300 ve: Reo

[Devel] [PATCH RHEL7 COMMIT] ploop: Preallocate clusters before nullifying on grow

2020-10-29 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1127.18.2.vz7.163.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1127.18.2.vz7.163.42 --> commit 163d72f3dde897256ab957c24f02e308146dbfc9 Author: Kirill Tkhai Date: Thu Oct 29 23:15:13 2020 +0300 ploop:

[Devel] [PATCH RHEL7 COMMIT] ploop: Add more debug on error

2020-10-29 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1127.18.2.vz7.163.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1127.18.2.vz7.163.42 --> commit 29cd6e7d77aa2f95cf538dd4d8bd8200c4f5c33c Author: Kirill Tkhai Date: Thu Oct 29 23:15:20 2020 +0300 ploop:

[Devel] [PATCH RHEL7 COMMIT] ve: Reorder ve->ve_ns assignment in ve_grab_context()

2020-11-10 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.2.2.vz7.170.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.2.2.el7 --> commit e3f54fa771eb942f51e1a1260fbfd8d6ec2d5c75 Author: Kirill Tkhai Date: Tue Nov 10 13:43:31 2020 +0300 ve: Reorder ve->

[Devel] [PATCH RHEL7 COMMIT] pid: Use proper ns in proc_dointvec_pidmax()

2020-11-10 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.2.2.vz7.170.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.2.2.el7 --> commit 5d351a1f64cb1e192a94b51aff5d7efebe596487 Author: Kirill Tkhai Date: Tue Nov 10 13:43:02 2020 +0300 pid: Use proper

[Devel] [PATCH RHEL7 COMMIT] kvm: fix AMD IBRS/IBPB/STIBP/SSBD reporting #PSBM-120787

2020-11-10 Thread Vasily Averin
kvm: fix AMD IBRS/IBPB/STIBP/SSBD reporting #PSBM-120787 We should report these bits in 8008 EBX on AMD only, i.e. when AMD specific feature bits are enabled. Signed-off-by: Denis V. Lunev CC: Vasily Averin CC: Konstantin Khorenko Signed-off-by: &q

[Devel] [PATCH RHEL7 COMMIT] ploop: Add statistics of fastmap requests, which fails because of cache

2020-11-10 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.2.2.vz7.170.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.2.2.el7 --> commit 56a50079f0317675af4d9c1018f38b47ca2d476c Author: Kirill Tkhai Date: Tue Nov 10 13:43:43 2020 +0300 ploop: Add stati

[Devel] [PATCH RHEL7 COMMIT] ve/pidns: Use proper ns in sys_getppid()

2020-11-10 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.2.2.vz7.170.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.2.2.el7 --> commit a152b818bc87a0db588acfda333d01e62866f243 Author: Konstantin Khorenko Date: Tue Nov 10 13:42:50 2020 +0300 ve/pidns:

[Devel] [PATCH RHEL7 COMMIT] fs/fuse kio: fix processing order of RDMA works during throttle/unthrottle

2020-11-10 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.2.2.vz7.170.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.2.2.el7 --> commit 0aa759d3db6c7abce84121c6bdd8447e9967b335 Author: Ildar Ismagilov Date: Tue Nov 10 13:44:14 2020 +0300 fs/fuse kio:

[Devel] [PATCH RHEL7 COMMIT] ploop: Invalidate pagecache on service operations

2020-11-10 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.2.2.vz7.170.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.2.2.el7 --> commit 24aef273109a6076d82eceb8f9417cdb2e9149fd Author: Kirill Tkhai Date: Tue Nov 10 13:43:52 2020 +0300 ploop: Invalidat

[Devel] [PATCH RHEL7 COMMIT] fs/fuse kio: post rdma work requests only after connection is established

2020-11-10 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.2.2.vz7.170.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.2.2.el7 --> commit c9c8d2e99a62df4b3ecfa7a6fbc27c491b5bba5f Author: Ildar Ismagilov Date: Tue Nov 10 13:43:59 2020 +0300 fs/fuse kio:

[Devel] [PATCH RHEL7 COMMIT] ploop: Fix crash in purge_lru_warn()

2020-11-11 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1127.18.2.vz7.163.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1127.18.2.vz7.163.43 --> commit a2ed38f07f597d7a92dcff9e1489eebc2938d325 Author: Kirill Tkhai Date: Wed Nov 11 09:46:22 2020 +0300 ploop:

Re: [Devel] [PATCH RH7] commoncap: relax setxattr and removexattr checks

2020-11-16 Thread Vasily Averin
On 11/16/20 1:09 PM, Andrey Zhadchenko wrote: > Allow user to set security xattr (XATTR_SECURITY_PREFIX) from the inside > of ve on external mounts (for example, root). > > https://jira.sw.ru/browse/PSBM-122071 > Signed-off-by: Andrey Zhadchenko > --- > security/commoncap.c | 10 -- >

Re: [Devel] [PATCH RFC rh7] vznetstat: Move the code to drop redundant skb marks to *_xmit() functions #PSBM-122082

2020-11-17 Thread Vasily Averin
here? Can be traffic re-routed after this chain? I mean the following scenario: dst can be "internal" first but the skb is rerouted to outside or vice versa: when "external" traffic is re-routed to local netdevices? Thank you, Vasily Averin ___ Devel mailing list Devel@openvz.org https://lists.openvz.org/mailman/listinfo/devel

[Devel] [PATCH RHEL7 COMMIT] vznetstat: Move the code to drop redundant skb marks to *_xmit() functions #PSBM-122082

2020-11-18 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1127.18.2.vz7.163.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1127.18.2.vz7.163.44 --> commit 02c7d2e565808125435f918a5e41f8d434c8fbf8 Author: Konstantin Khorenko Date: Wed Nov 18 11:48:05 2020 +0300

[Devel] [PATCH RHEL7 COMMIT] commoncap: relax setxattr and removxattr checks

2020-11-18 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1127.18.2.vz7.163.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1127.18.2.vz7.163.44 --> commit 8aa6d07d2dc4d0388f145b497514587ffd905e65 Author: Andrey Zhadchenko Date: Wed Nov 18 11:48:48 2020 +0300 co

[Devel] [PATCH RH7] ms/tracing: remove WARN_ON in start_thread()

2020-11-20 Thread Vasily Averin
at_tracer_start+0xc9/0xd0 Fixes: 978defee11a5 ("tracing: Do a WARN_ON() if start_thread() in hwlat is called when thread exists") Patch was sent to upstream but is not approved yet. https://jira.sw.ru/browse/PSBM-122204 Signed-off-by: Vasily Averin --- kernel/trace/trace_hwlat.c | 2 +-

[Devel] [PATCH RH7 1/2] ms/extable: Enable RCU if it is not watching in kernel_text_address()

2020-11-20 Thread Vasily Averin
jira.sw.ru/browse/PSBM-122315 Signed-off-by: Vasily Averin --- kernel/extable.c | 31 --- 1 file changed, 28 insertions(+), 3 deletions(-) diff --git a/kernel/extable.c b/kernel/extable.c index 1cb213f..21136fc 100644 --- a/kernel/extable.c +++ b/kernel/extable.c @@ -116,

[Devel] [PATCH RH7] ms/tracing: Fix race in trace_open and buffer resize call

2020-11-20 Thread Vasily Averin
) fixed only ring_buffer_reset_online_cpus() is not present in this kernel https://jira.sw.ru/browse/PSBM-122343 Signed-off-by: Vasily Averin --- kernel/trace/ring_buffer.c | 5 + 1 file changed, 5 insertions(+) diff --git a/kernel/trace/ring_buffer.c b/kernel/trace/ring_buffer.c index

[Devel] [PATCH RH7 2/2] ms/extable: Consolidate *kernel_text_address() functions

2020-11-20 Thread Vasily Averin
z7 kernels does not have is_ftrace_trampoline() and is_kprobe() checks https://jira.sw.ru/browse/PSBM-122315 Signed-off-by: Vasily Averin --- kernel/extable.c | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/kernel/extable.c b/kernel/extable.c index 4f1a5d2..1cb213f 1006

[Devel] [PATCH RH8] ms/tracing: remove WARN_ON in start_thread()

2020-11-20 Thread Vasily Averin
at_tracer_start+0xc9/0xd0 Fixes: 978defee11a5 ("tracing: Do a WARN_ON() if start_thread() in hwlat is called when thread exists") Patch was sent to upstream but is not approved yet. https://jira.sw.ru/browse/PSBM-120940 Signed-off-by: Vasily Averin --- kernel/trace/trace_hwlat.c | 2 +-

[Devel] [PATCH RH7 1/2] ipv6: silence high-order allocation warinig in rawv6_sendmsg()

2020-11-20 Thread Vasily Averin
xf0 [] SYSC_sendto+0x121/0x1c0 [] SyS_sendto+0xe/0x10 [] system_call_fastpath+0x25/0x2a https://jira.sw.ru/browse/PSBM-122200 Signed-off-by: Vasily Averin --- net/ipv6/raw.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/net/ipv6/raw.c b/net/ipv6/raw.c index f91636e..f5f7

[Devel] [PATCH RH7 2/2] net: silence high-order-allocation warning in sctp_pack_cookie()

2020-11-20 Thread Vasily Averin
xb0 [] sock_sendmsg+0xb0/0xf0 [] SYSC_sendto+0x121/0x1c0 [] SyS_sendto+0xe/0x10 [] system_call_fastpath+0x25/0x2a --[ end trace 49ad7969a95b86af ]-- https://jira.sw.ru/browse/PSBM-122200 Signed-off-by: Vasily Averin --- net/sctp/sm_make_chunk.c | 2 +- 1 file changed, 1 insertion(+), 1 delet

[Devel] [PATCH RHEL7 COMMIT] mm/memcg: cleanup vmpressure from mem_cgroup_css_free()

2020-11-20 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1127.18.2.vz7.163.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1127.18.2.vz7.163.45 --> commit 842d2de61c9f6966ed94f5a6fec25bff6d6f2220 Author: Andrey Ryabinin Date: Fri Nov 20 21:32:57 2020 +0300 mm/m

[Devel] [PATCH RH7] ms/ext4: fix argument checking in EXT4_IOC_MOVE_EXT

2020-12-01 Thread Vasily Averin
otmail.com Signed-off-by: Theodore Ts'o Cc: sta...@kernel.org (cherry-picked from commit f18b2b83a727a3db208308057d2c7945f368e625) https://jira.sw.ru/browse/PSBM-122991 Signed-off-by: Vasily Averin --- fs/ext4/move_extent.c | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff

[Devel] [PATCH RH7] ms/ip6mr: fix stale iterator

2020-12-01 Thread Vasily Averin
9fc254efb7b0eb3cd58f62c2c3f805f1ba) https://jira.sw.ru/browse/PSBM-122990 Signed-off-by: Vasily Averin --- net/ipv6/ip6mr.c | 1 + 1 file changed, 1 insertion(+) diff --git a/net/ipv6/ip6mr.c b/net/ipv6/ip6mr.c index 00c6c7d..856173b6 100644 --- a/net/ipv6/ip6mr.c +++ b/net/ipv6/ip6mr

[Devel] [PATCH RH7] ms/xfrm: check id proto in validate_tmpl()

2020-12-01 Thread Vasily Averin
u Signed-off-by: Cong Wang Signed-off-by: Steffen Klassert (cherry-picked from commit 6a53b7593233ab9e4f96873ebacc0f653a55c3e1) https://jira.sw.ru/browse/PSBM-123084 Signed-off-by: Vasily Averin --- net/xfrm/xfrm_user.c | 15 +++ 1 file changed, 15 insertions(+) diff --g

[Devel] [PATCH RH7] ms/net_sched: gen_estimator: fix lockdep splat

2020-12-01 Thread Vasily Averin
87 Signed-off-by: Vasily Averin --- net/core/gen_estimator.c | 4 1 file changed, 4 insertions(+) diff --git a/net/core/gen_estimator.c b/net/core/gen_estimator.c index bca1d06..0e3024c 100644 --- a/net/core/gen_estimator.c +++ b/net/core/gen_estimator.c @@ -159,7 +159,11 @@ int gen_new_est

[Devel] [PATCH RH7 1/2] ms/netfilter: ipset: Fix forceadd evaluation path

2020-12-01 Thread Vasily Averin
b66) https://jira.sw.ru/browse/PSBM-123063 Signed-off-by: Vasily Averin --- net/netfilter/ipset/ip_set_hash_gen.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/net/netfilter/ipset/ip_set_hash_gen.h b/net/netfilter/ipset/ip_set_hash_gen.h index aa10e4a..45046e5 100644 --- a/net/netfi

[Devel] [PATCH RH7 2/2] ms/netfilter: ipset: Correct rcu_dereference() call in ip_set_put_comment()

2020-12-01 Thread Vasily Averin
Signed-off-by: Vasily Averin --- include/linux/netfilter/ipset/ip_set_comment.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/linux/netfilter/ipset/ip_set_comment.h b/include/linux/netfilter/ipset/ip_set_comment.h index 8e2bab1..70877f8d 100644 --- a/include/linux

[Devel] [PATCH RH7 3/6] ms/netfilter: ipset: Fix the last missing check of nla_parse_deprecated()

2020-12-01 Thread Vasily Averin
nla_parse() https://jira.sw.ru/browse/PSBM-122965 Signed-off-by: Vasily Averin --- net/netfilter/ipset/ip_set_core.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/net/netfilter/ipset/ip_set_core.c b/net/netfilter/ipset/ip_set_core.c index d5344e5..0a53827 100644 --- a/net

[Devel] [PATCH RH7 1/6] ms/netfilter: ipset: avoid null deref when IPSET_ATTR_LINENO is present

2020-12-01 Thread Vasily Averin
Acked-by: Jozsef Kadlecsik Signed-off-by: Pablo Neira Ayuso (cherry-picked from commit 22dad713b8a5ff488e07b821195270672f486eb2) https://jira.sw.ru/browse/PSBM-122965 Signed-off-by: Vasily Averin --- net/netfilter/ipset/ip_set_core.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) di

[Devel] [PATCH RH7 4/6] ms/netlink: add a start callback for starting a netlink dump

2020-12-01 Thread Vasily Averin
) https://jira.sw.ru/browse/PSBM-122965 Signed-off-by: Vasily Averin --- include/linux/netlink.h | 2 ++ include/net/genetlink.h | 2 ++ net/netlink/af_netlink.c | 4 net/netlink/genetlink.c | 16 4 files changed, 24 insertions(+) diff --git a/include/linux/netlink.h b

[Devel] [PATCH RH7 2/6] ms/netfilter: ipset: fix a missing check of nla_parse

2020-12-01 Thread Vasily Averin
) VvS: replaced original nla_parse_deprecated() by nla_parse() https://jira.sw.ru/browse/PSBM-122965 Signed-off-by: Vasily Averin --- net/netfilter/ipset/ip_set_core.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/net/netfilter/ipset/ip_set_core.c b/net/netfilter/ipset

[Devel] [PATCH RH7 5/6] ms/netfilter: ipset: fix suspicious RCU usage in find_set_and_id

2020-12-01 Thread Vasily Averin
5038517119d50ed0240059b1d7fc2faa92371c08) https://jira.sw.ru/browse/PSBM-122965 Signed-off-by: Vasily Averin --- net/netfilter/ipset/ip_set_core.c | 41 --- 1 file changed, 21 insertions(+), 20 deletions(-) diff --git a/net/netfilter/ipset/ip_set_core.c b/net/netfilter/ipset

[Devel] [PATCH RH7 6/6] ms/netfilter: ipset: Fix calling ip_set() macro at dumping

2020-12-01 Thread Vasily Averin
ecsik Signed-off-by: Pablo Neira Ayuso (cherry-picked from commit 8a02bdd50b2ecb6d62121d2958d3ea186cc88ce7) https://jira.sw.ru/browse/PSBM-122965 Signed-off-by: Vasily Averin --- net/netfilter/ipset/ip_set_core.c | 12 1 file changed, 8 insertions(+), 4 deletions(-) diff --git

[Devel] [PATCH RH7 1/4] ms/net: handle error more gracefully in socketpair()

2020-12-02 Thread Vasily Averin
d65f5745a9) https://syzkaller.appspot.com/bug?id=23d0799f98b7c8c4bc3f5ecff7c28a87c64e40e8 https://jira.sw.ru/browse/PSBM-123046 Signed-off-by: Vasily Averin --- net/socket.c | 49 +++-- 1 file changed, 31 insertions(+), 18 deletions(-) diff --git a/net/

[Devel] [PATCH RH7 2/4] ms/socketpair(): allocate descriptors first

2020-12-02 Thread Vasily Averin
://jira.sw.ru/browse/PSBM-123046 Signed-off-by: Vasily Averin --- net/socket.c | 91 ++-- 1 file changed, 39 insertions(+), 52 deletions(-) diff --git a/net/socket.c b/net/socket.c index dd8fa2d..6ea6b18 100644 --- a/net/socket.c +++ b/net

[Devel] [PATCH RH7 3/4] ms/make sock_alloc_file() do sock_release() on failures

2020-12-02 Thread Vasily Averin
-123046 Signed-off-by: Vasily Averin --- net/9p/trans_fd.c | 1 - net/sctp/socket.c | 1 - net/socket.c | 27 +-- 3 files changed, 9 insertions(+), 20 deletions(-) diff --git a/net/9p/trans_fd.c b/net/9p/trans_fd.c index 02efb25..01cb566 100644 --- a/net/9p/trans_fd.c

[Devel] [PATCH RH7 4/4] ms/packet: fix bitfield update race

2020-12-02 Thread Vasily Averin
08663c93fd https://jira.sw.ru/browse/PSBM-123046 Signed-off-by: Vasily Averin --- net/packet/af_packet.c | 60 -- net/packet/internal.h | 10 - 2 files changed, 49 insertions(+), 21 deletions(-) diff --git a/net/packet/af_packet.c b/net/packet/a

[Devel] [PATCH RHEL7 COMMIT] mm, page_alloc: move_freepages should not examine struct page of reserved memory

2020-12-03 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.6.1.vz7.171.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.6.1.vz7.171.1 --> commit d9dc0aa1c50dc54d64c8882089b6940535796b70 Author: David Rientjes Date: Thu Dec 3 11:17:51 2020 +0300 mm, page_

[Devel] [PATCH RHEL7 COMMIT] cgroup: rework reference acquisition for cgroup_find_inode

2020-12-03 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.6.1.vz7.171.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.6.1.vz7.171.1 --> commit cca684ad7d7ef2f7b7492fd6be2c1c7c5b597fef Author: Andrey Zhadchenko Date: Thu Dec 3 11:17:41 2020 +0300 cgroup

[Devel] [PATCH RHEL7 COMMIT] Revert "mm: Port diff-mm-vmscan-disable-fs-related-activity-for-direct-direct-reclaim"

2020-12-03 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.6.1.vz7.171.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.6.1.vz7.171.1 --> commit 8f6a892e2e8aa16231366a87e3d6969e165bbdff Author: Andrey Ryabinin Date: Thu Dec 3 11:29:52 2020 +0300 Revert "

[Devel] [PATCH RHEL7 COMMIT] ms/mm: use new helper functions around the i_mmap_mutex

2020-12-03 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.6.1.vz7.171.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.6.1.vz7.171.1 --> commit 78e3059a4c0cc2637f36cb56d2d9a3bcec3a8945 Author: Davidlohr Bueso Date: Thu Dec 3 11:40:40 2020 +0300 ms/mm: u

[Devel] [PATCH RHEL7 COMMIT] ms/mm/rmap: share the i_mmap_rwsem

2020-12-03 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.6.1.vz7.171.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.6.1.vz7.171.1 --> commit c2f195c2a4c5845b80c2ae9c2dd1cafc2ee1a6b8 Author: Davidlohr Bueso Date: Thu Dec 3 11:40:58 2020 +0300 ms/mm/rm

[Devel] [PATCH RHEL7 COMMIT] ms/mm/memory-failure: share the i_mmap_rwsem

2020-12-03 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.6.1.vz7.171.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.6.1.vz7.171.1 --> commit b23df19a9094951735485cff30ffed441d7f578a Author: Davidlohr Bueso Date: Thu Dec 3 11:41:13 2020 +0300 ms/mm/me

[Devel] [PATCH RHEL7 COMMIT] ms/mm, fs: introduce helpers around the i_mmap_mutex

2020-12-03 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.6.1.vz7.171.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.6.1.vz7.171.1 --> commit 75d0c688fa855bb25cf9da1c5fe1955b6170ed71 Author: Davidlohr Bueso Date: Thu Dec 3 11:40:33 2020 +0300 ms/mm,fs

[Devel] [PATCH RHEL7 COMMIT] ms/mm: convert i_mmap_mutex to rwsem

2020-12-03 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.6.1.vz7.171.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.6.1.vz7.171.1 --> commit 33149e68cd1be429dbfc2c4a66019b2b971f7268 Author: Davidlohr Bueso Date: Thu Dec 3 11:40:47 2020 +0300 ms/mm: c

[Devel] [PATCH RHEL7 COMMIT] ms/uprobes: share the i_mmap_rwsem

2020-12-03 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.6.1.vz7.171.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.6.1.vz7.171.1 --> commit 27f33ccad53483835a59c54615478cf0de90ffd6 Author: Davidlohr Bueso Date: Thu Dec 3 11:41:06 2020 +0300 ms/uprob

[Devel] [PATCH RHEL7 COMMIT] ms/mm/nommu: share the i_mmap_rwsem

2020-12-03 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.6.1.vz7.171.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.6.1.vz7.171.1 --> commit 3d55a1d283429203342c88e5e0ab2ab5343da67e Author: Davidlohr Bueso Date: Thu Dec 3 11:41:22 2020 +0300 ms/mm/no

[Devel] [PATCH RHEL7 COMMIT] ms/mm/memory.c: share the i_mmap_rwsem

2020-12-03 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.6.1.vz7.171.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.6.1.vz7.171.1 --> commit 08cf437ba74b0295154cd92ed1bca44d714119e1 Author: Davidlohr Bueso Date: Thu Dec 3 11:41:32 2020 +0300 ms/mm/me

[Devel] [PATCH RHEL7 COMMIT] netfilter: Add warning on nft NAT init if "iptable_nat" already loaded

2020-12-03 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.6.1.vz7.171.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.6.1.vz7.171.1 --> commit 754ff31c18a2bbb69ea49cbb83c36ace850904c8 Author: Konstantin Khorenko Date: Thu Dec 3 11:51:57 2020 +0300 netf

[Devel] [PATCH RHEL7 COMMIT] ms/ext4: fix argument checking in EXT4_IOC_MOVE_EXT

2020-12-03 Thread Vasily Averin
;s soft lockup detector. Reported-by: syzbot+c61979f6f2cba5cb3...@syzkaller.appspotmail.com Signed-off-by: Theodore Ts'o Cc: sta...@kernel.org (cherry-picked from commit f18b2b83a727a3db208308057d2c7945f368e625) https://jira.sw.ru/browse/PSBM-122991 Signed-off-by:

[Devel] [PATCH RHEL7 COMMIT] ms/ip6mr: fix stale iterator

2020-12-03 Thread Vasily Averin
Aleksandrov Signed-off-by: David S. Miller (cherry-picked from commit 4adfa79fc254efb7b0eb3cd58f62c2c3f805f1ba) https://jira.sw.ru/browse/PSBM-122990 Signed-off-by: Vasily Averin --- net/ipv6/ip6mr.c | 1 + 1 file changed, 1 insertion(+) diff --git a/net/ipv6/ip6mr.c b/net/ipv6/ip6mr.

[Devel] [PATCH RHEL7 COMMIT] ms/net_sched: gen_estimator: fix lockdep splat

2020-12-03 Thread Vasily Averin
(cherry-picked from commit 40ca54e3a686f13117f3de0c443f8026dadf7c44) https://jira.sw.ru/browse/PSBM-123087 Signed-off-by: Vasily Averin --- net/core/gen_estimator.c | 4 1 file changed, 4 insertions(+) diff --git a/net/core/gen_estimator.c b/net/core/gen_estimator.c index bca

[Devel] [PATCH RHEL7 COMMIT] ms/xfrm: check id proto in validate_tmpl()

2020-12-03 Thread Vasily Averin
n xfrm_xfrmproto_getbyname(). Reported-by: syzbot Cc: Steffen Klassert Cc: Herbert Xu Signed-off-by: Cong Wang Signed-off-by: Steffen Klassert (cherry-picked from commit 6a53b7593233ab9e4f96873ebacc0f653a55c3e1) https://jira.sw.ru/browse/PSBM-123084 Signed-off-b

[Devel] [PATCH RHEL7 COMMIT] ms/netfilter: ipset: Fix forceadd evaluation path

2020-12-03 Thread Vasily Averin
ecsik (cherry-picked from commit 8af1c6fbd9239877998c7f5a591cb2c88d41fb66) https://jira.sw.ru/browse/PSBM-123063 Signed-off-by: Vasily Averin --- net/netfilter/ipset/ip_set_hash_gen.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/net/netfilter/ipset/ip_set_hash_gen.h

[Devel] [PATCH RHEL7 COMMIT] ms/netfilter: ipset: Correct rcu_dereference() call in ip_set_put_comment()

2020-12-03 Thread Vasily Averin
d from commit 17b8b74c0f8dbf9b9e3301f9ca5b65dd1c079951) https://jira.sw.ru/browse/PSBM-123063 Signed-off-by: Vasily Averin --- include/linux/netfilter/ipset/ip_set_comment.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/linux/netfilter/ipset/ip_set_comment.h b/

Re: [Devel] [PATCH RH7] mm: Fix race between reparenting memcg and list_lru_del()

2020-12-03 Thread Vasily Averin
I'm going to wait till final patch version will be committed upstream Kirill, I belive you will be notified, so please let me know when this happen. Thank you, Vasily Averin On 12/1/20 1:34 PM, Kirill Tkhai wrote: > From: Roman Gushchin > > On reparenting struct list_lru

[Devel] [PATCH RHEL7 COMMIT] ms/netfilter: ipset: avoid null deref when IPSET_ATTR_LINENO is present

2020-12-03 Thread Vasily Averin
https://jira.sw.ru/browse/PSBM-122965 Signed-off-by: Vasily Averin --- net/netfilter/ipset/ip_set_core.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net/netfilter/ipset/ip_set_core.c b/net/netfilter/ipset/ip_set_core.c index 6d20f97..6ef5898 100644 --

[Devel] [PATCH RHEL7 COMMIT] ms/netfilter: ipset: fix suspicious RCU usage in find_set_and_id

2020-12-03 Thread Vasily Averin
sef Kadlecsik Signed-off-by: Pablo Neira Ayuso (cherry-picked from commit 5038517119d50ed0240059b1d7fc2faa92371c08) https://jira.sw.ru/browse/PSBM-122965 Signed-off-by: Vasily Averin --- net/netfilter/ipset/ip_set_core.c | 41 --- 1 fil

[Devel] [PATCH RHEL7 COMMIT] ms/netlink: add a start callback for starting a netlink dump

2020-12-03 Thread Vasily Averin
vid S. Miller (cherry-picked commit fc9e50f5a5a4e1fa9ba2756f745a13e693cf6a06) https://jira.sw.ru/browse/PSBM-122965 Signed-off-by: Vasily Averin --- include/linux/netlink.h | 2 ++ include/net/genetlink.h | 2 ++ net/netlink/af_netlink.c | 4 net/netlink/genetlink.c | 16 ++

[Devel] [PATCH RHEL7 COMMIT] ms/netfilter: ipset: Fix calling ip_set() macro at dumping

2020-12-03 Thread Vasily Averin
f_netlink protects the set. Signed-off-by: Jozsef Kadlecsik Signed-off-by: Pablo Neira Ayuso (cherry-picked from commit 8a02bdd50b2ecb6d62121d2958d3ea186cc88ce7) https://jira.sw.ru/browse/PSBM-122965 Signed-off-by: Vasily Averin --- net/netfilter/ipset/

[Devel] [PATCH RHEL7 COMMIT] ms/netfilter: ipset: fix a missing check of nla_parse

2020-12-03 Thread Vasily Averin
(cherry-picked from commit f4f5748bfec94cf418e49bf05f0c81a1b9ebc95) VvS: replaced original nla_parse_deprecated() by nla_parse() https://jira.sw.ru/browse/PSBM-122965 Signed-off-by: Vasily Averin --- net/netfilter/ipset/ip_set_core.c | 6 +- 1 file changed, 5 insertions(+

[Devel] [PATCH RHEL7 COMMIT] ms/netfilter: ipset: Fix the last missing check of nla_parse_deprecated()

2020-12-03 Thread Vasily Averin
d from commit 13c6ba1f855415cf3b9c58ea926ae8858050ec1c) VvS: replaced original nla_parse_deprecated() by nla_parse() https://jira.sw.ru/browse/PSBM-122965 Signed-off-by: Vasily Averin --- net/netfilter/ipset/ip_set_core.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/net/netfilter/ipset/

[Devel] [PATCH RHEL7 COMMIT] ms/net: handle error more gracefully in socketpair()

2020-12-03 Thread Vasily Averin
979146-13825-1-git-send-email-ydrone...@opteya.com Signed-off-by: David S. Miller (cherry-picked from commit d73aa2867f33582314f098277421ded65f5745a9) https://syzkaller.appspot.com/bug?id=23d0799f98b7c8c4bc3f5ecff7c28a87c64e40e8 https://jira.sw.ru/browse/PSBM-123046 Signe

[Devel] [PATCH RHEL7 COMMIT] ms/make sock_alloc_file() do sock_release() on failures

2020-12-03 Thread Vasily Averin
ot.com/bug?id=23d0799f98b7c8c4bc3f5ecff7c28a87c64e40e8 https://jira.sw.ru/browse/PSBM-123046 Signed-off-by: Vasily Averin --- net/9p/trans_fd.c | 1 - net/sctp/socket.c | 1 - net/socket.c | 27 +-- 3 files changed, 9 insertions(+), 20 deletions(-) diff -

[Devel] [PATCH RHEL7 COMMIT] ms/socketpair(): allocate descriptors first

2020-12-03 Thread Vasily Averin
ot.com/bug?id=23d0799f98b7c8c4bc3f5ecff7c28a87c64e40e8 https://jira.sw.ru/browse/PSBM-123046 Signed-off-by: Vasily Averin --- net/socket.c | 89 ++-- 1 file changed, 38 insertions(+), 51 deletions(-) diff --git a/net/socket.c b/net/s

[Devel] [PATCH RHEL7 COMMIT] ms/packet: fix bitfield update race

2020-12-03 Thread Vasily Averin
25460f2cdf3235ebe8115f622901e) https://syzkaller.appspot.com/bug?id=8acde8a70c4bca0d0c39e975409c1008663c93fd https://jira.sw.ru/browse/PSBM-123046 Signed-off-by: Vasily Averin --- net/packet/af_packet.c | 60 -- net/packet/internal.h | 10 +

[Devel] [PATCH RH7 v4] ms/mm: list_lru: set shrinker map bit when child nr_items is not zero

2020-12-03 Thread Vasily Averin
an Gushchin Acked-by: Kirill Tkhai Reviewed-by: Shakeel Butt Cc: Vladimir Davydov Cc: [4.19] Signed-off-by: Andrew Morton Signed-off-by: Vasily Averin --- mm/list_lru.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mm/list_lru.c b/mm/list_lru.c index 21

[Devel] [PATCH RHEL7 COMMIT] ms/mm: list_lru: set shrinker map bit when child nr_items is not zero

2020-12-03 Thread Vasily Averin
;) Signed-off-by: Yang Shi Suggested-by: Roman Gushchin Reviewed-by: Roman Gushchin Acked-by: Kirill Tkhai Reviewed-by: Shakeel Butt Cc: Vladimir Davydov Cc: [4.19] Signed-off-by: Andrew Morton Signed-off-by: Vasily Averin --- mm/list_lru.c | 10

[Devel] [PATCH RHEL7 COMMIT] ipv6: silence high-order allocation warinig in rawv6_sendmsg()

2020-12-03 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.6.1.vz7.171.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.6.1.vz7.171.2 --> commit a789adeb4aa63465ea8706671bf7875a0b0f5cf7 Author: Vasily Averin Date: Thu Dec 3 15:31:05 2020 +0

[Devel] [PATCH RHEL7 COMMIT] ms/extable: Enable RCU if it is not watching in kernel_text_address()

2020-12-03 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.6.1.vz7.171.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.6.1.vz7.171.2 --> commit e451ccff8b8e1bd549a1e91fe1a79832d2243fa5 Author: Vasily Averin Date: Thu Dec 3 15:31:25 2020

[Devel] [PATCH RHEL7 COMMIT] ms/extable: Consolidate *kernel_text_address() functions

2020-12-03 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.6.1.vz7.171.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.6.1.vz7.171.2 --> commit e0ec00505c7f9e92a713e334002190054e8b9b06 Author: Vasily Averin Date: Thu Dec 3 15:31:43 2020

[Devel] [PATCH RHEL7 COMMIT] net: silence high-order-allocation warning in sctp_pack_cookie()

2020-12-03 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.6.1.vz7.171.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.6.1.vz7.171.2 --> commit dab40f38f6217964b739d0050ba3cc09ff546aa6 Author: Vasily Averin Date: Thu Dec 3 15:31:13 2020 +

[Devel] [PATCH RHEL7 COMMIT] ms/tracing: remove WARN_ON in start_thread()

2020-12-03 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.6.1.vz7.171.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.6.1.vz7.171.2 --> commit 7cc528788043cafd5989952719ad8a37046158fb Author: Vasily Averin Date: Thu Dec 3 15:32:05 2020

[Devel] [PATCH RHEL7 COMMIT] fs/fuse kio: always use memory registrations for iWarp RDMA reads

2020-12-03 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.6.1.vz7.171.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.6.1.vz7.171.2 --> commit 91e15c2568717fe5f9b75c2baea7be883958ab2e Author: Ildar Ismagilov Date: Thu Dec 3 15:32:12 2020 +0300 fs/fuse

[Devel] [PATCH RHEL7 COMMIT] ms/tracing: Fix race in trace_open and buffer resize call

2020-12-03 Thread Vasily Averin
The commit is pushed to "branch-rh7-3.10.0-1160.6.1.vz7.171.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh7-3.10.0-1160.6.1.vz7.171.2 --> commit d0b2f7cda662987572c5f84e7a8831d8c1135bd1 Author: Vasily Averin Date: Thu Dec 3 15:31:57 2020

[Devel] [PATCH RH7 2/3] ms/netfilter: Replace spin_is_locked() with lockdep

2020-12-06 Thread Vasily Averin
k Cc: Florian Westphal Cc: "David S. Miller" Cc: Cc: Cc: Acked-by: Jozsef Kadlecsik Signed-off-by: Pablo Neira Ayuso (cherry-picked from commit 4b87dd54be21ad611a1c740f9df0c4376d496e09) https://jira.sw.ru/browse/PSBM-123086 Signed-off-by: Vasily Averin --- net/netfilter/ipset/ip_set

  1   2   3   4   5   6   7   8   9   >