[Devel] [PATCH RHEL9 COMMIT] dm-ploop: Check queue_flags size at compile time

2023-01-10 Thread Konstantin Khorenko
The commit is pushed to "branch-rh9-5.14.0-162.6.1.vz9.18.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh9-5.14.0-162.6.1.el9 --> commit a19710fcce7a87e1fc8fe1c9425c3e2c017b66e5 Author: Alexander Atanasov Date: Thu Jan 5 18:50:58 2023 +0200 dm-ploop: Chec

[Devel] [PATCH RH9 2/2] netfilter: fix compilation error in nf_log_unknown_packet

2023-01-10 Thread Pavel Tikhomirov
net/netfilter/nf_log_syslog.c: In function 'nf_log_unknown_packet': net/netfilter/nf_log_syslog.c:932:9: error: too few arguments to function 'nf_log_buf_close' 932 | nf_log_buf_close(m); | ^~~~ In file included from net/netfilter/nf_log_syslog.c:25: ./include/n

[Devel] [PATCH RH9 1/2] ve: fix compilation warning in nf_log_allowed_ve

2023-01-10 Thread Pavel Tikhomirov
net/netfilter/nf_log_syslog.c: In function 'nf_log_allowed_ve': net/netfilter/nf_log_syslog.c:52:31: warning: passing argument 1 of 'is_ve_init_net' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 52 | return is_ve_init_net(net) || sysctl_nf_log_all_netns;

[Devel] [PATCH vz7] Check queue_flags size at compile time

2023-01-10 Thread Alexander Atanasov
QUEUE_STANDBY_EN flag made the used bits more than 31 so it is now required that queue_flags is a 64 bits. Add compile time check to ensure it is. https://jira.sw.ru/browse/PSBM-144163 Signed-off-by: Alexander Atanasov --- drivers/block/ploop/dev.c | 3 +++ 1 file changed, 3 insertions(+) diff

[Devel] [PATCH RHEL9 COMMIT] netfilter: fix compilation error in nf_log_unknown_packet

2023-01-10 Thread Konstantin Khorenko
The commit is pushed to "branch-rh9-5.14.0-162.6.1.vz9.18.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh9-5.14.0-162.6.1.el9 --> commit 3dc6db03a52bb5b69f1bddd154cc4e21b3a5e763 Author: Pavel Tikhomirov Date: Fri Jan 6 15:02:11 2023 +0300 netfilter: fix c

[Devel] [PATCH RHEL9 COMMIT] ve: fix compilation warning in nf_log_allowed_ve

2023-01-10 Thread Konstantin Khorenko
The commit is pushed to "branch-rh9-5.14.0-162.6.1.vz9.18.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git after rh9-5.14.0-162.6.1.el9 --> commit 404122cb99976fc8a01eb525e964b6bb45c5ac74 Author: Pavel Tikhomirov Date: Fri Jan 6 15:02:10 2023 +0300 ve: fix compilat

[Devel] [PATCH vz9] Check queue_flags size at compile time

2023-01-10 Thread Alexander Atanasov
QUEUE_STANDBY_EN flag made the used bits more than 31 so it is now required that queue_flags is a 64 bits. Add compile time check to ensure it is. https://jira.sw.ru/browse/PSBM-144163 Signed-off-by: Alexander Atanasov --- drivers/md/dm-ploop-target.c | 4 1 file changed, 4 insertions(+) d