Commit Graph

1173367 Commits

Author SHA1 Message Date
Augusto Caringi bdb8764f6f Merge: CVE-2025-21919: sched/fair: Fix potential memory corruption in child_cfs_rq_on_list
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/6799

JIRA: https://issues.redhat.com/browse/RHEL-88083
CVE: CVE-2025-21919

```
commit 3b4035ddbfc8e4521f85569998a7569668cccf51
Author: Zecheng Li <zecheng@google.com>
Date:   Tue Mar 4 21:40:31 2025 +0000

    sched/fair: Fix potential memory corruption in child_cfs_rq_on_list

    child_cfs_rq_on_list attempts to convert a 'prev' pointer to a cfs_rq.
    This 'prev' pointer can originate from struct rq's leaf_cfs_rq_list,
    making the conversion invalid and potentially leading to memory
    corruption. Depending on the relative positions of leaf_cfs_rq_list and
    the task group (tg) pointer within the struct, this can cause a memory
    fault or access garbage data.

    The issue arises in list_add_leaf_cfs_rq, where both
    cfs_rq->leaf_cfs_rq_list and rq->leaf_cfs_rq_list are added to the same
    leaf list. Also, rq->tmp_alone_branch can be set to rq->leaf_cfs_rq_list.

    This adds a check `if (prev == &rq->leaf_cfs_rq_list)` after the main
    conditional in child_cfs_rq_on_list. This ensures that the container_of
    operation will convert a correct cfs_rq struct.

    This check is sufficient because only cfs_rqs on the same CPU are added
    to the list, so verifying the 'prev' pointer against the current rq's list
    head is enough.

    Fixes a potential memory corruption issue that due to current struct
    layout might not be manifesting as a crash but could lead to unpredictable
    behavior when the layout changes.

    Fixes: fdaba61ef8 ("sched/fair: Ensure that the CFS parent is added after unthrottling")
    Signed-off-by: Zecheng Li <zecheng@google.com>
    Reviewed-and-tested-by: K Prateek Nayak <kprateek.nayak@amd.com>
    Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
    Reviewed-by: Vincent Guittot <vincent.guittot@linaro.org>
    Link: https://lore.kernel.org/r/20250304214031.2882646-1-zecheng@google.com```

Signed-off-by: CKI Backport Bot <cki-ci-bot+cki-gitlab-backport-bot@redhat.com>

---

<small>Created 2025-04-29 13:27 UTC by backporter - [KWF FAQ](https://red.ht/kernel_workflow_doc) - [Slack #team-kernel-workflow](https://redhat-internal.slack.com/archives/C04LRUPMJQ5) - [Source](https://gitlab.com/cki-project/kernel-workflow/-/blob/main/webhook/utils/backporter.py) - [Documentation](https://gitlab.com/cki-project/kernel-workflow/-/blob/main/docs/README.backporter.md) - [Report an issue](https://issues.redhat.com/secure/CreateIssueDetails!init.jspa?pid=12334433&issuetype=1&priority=4&summary=backporter+webhook+issue&components=kernel-workflow+/+backporter)</small>

Approved-by: Phil Auld <pauld@redhat.com>
Approved-by: Xiubo Li <xiubli@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-21 18:52:54 -03:00
Augusto Caringi b4d1a37187 Merge: FOP_ flags: lockd is not sending NLM_GRANTED messages
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/7116

This MR fixes NLM callbacks by backporting FOP flags to RHEL and then using FOP_ASYNC_LOCK to fix up filesystem signaling for supporting async locks as in the original posting:
https://lore.kernel.org/linux-fsdevel/cover.1726083391.git.bcodding@redhat.com/

JIRA: https://issues.redhat.com/browse/RHEL-94440
Signed-off-by: Benjamin Coddington <bcodding@redhat.com>

Approved-by: Viktor Malik <vmalik@redhat.com>
Approved-by: Rafael Aquini <raquini@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>
Approved-by: Scott Mayhew <smayhew@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-21 18:52:52 -03:00
Augusto Caringi f8c309f8d5 Merge: block: several bug fixes on blktests/throtl and blktests/zbd
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/7019

block: several bug fixes on blktests/throtl and blktests/zbd

JIRA: https://issues.redhat.com/browse/RHEL-97189

Signed-off-by: Ming Lei <ming.lei@redhat.com>

Approved-by: Jeff Moyer <jmoyer@redhat.com>
Approved-by: bgurney <bgurney@redhat.com>
Approved-by: Ewan D. Milne <emilne@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-21 18:52:50 -03:00
Augusto Caringi 5555154587 Merge: bpf: Allow to use kfunc XDP hints and frags together
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/7080

JIRA: https://issues.redhat.com/browse/RHEL-101559

    bpf: Allow to use kfunc XDP hints and frags together

    There is no fundamental reason, why multi-buffer XDP and XDP kfunc RX hints
    cannot coexist in a single program.

    Allow those features to be used together by modifying the flags condition
    for dev-bound-only programs, segments are still prohibited for fully
    offloaded programs, hence additional check.

Signed-off-by: Felix Maurer <fmaurer@redhat.com>

Approved-by: Toke Høiland-Jørgensen <toke@redhat.com>
Approved-by: Viktor Malik <vmalik@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-21 18:52:48 -03:00
Augusto Caringi 93f5febca9 Merge: arm64: Lock down the kernel if booted in secure boot mode
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/5192

JIRA: https://issues.redhat.com/browse/RHEL-1927

There is RHEL/Fedora specific functionality on x86 and other arches which enables extra kernel lockdowns when booted by secureboot. Let's do the same for arm now that secureboot is working.

Signed-off-by: Mark Salter <msalter@redhat.com>

Approved-by: Wander Lairson Costa <wander@redhat.com>
Approved-by: Tony Camuso <tcamuso@redhat.com>
Approved-by: Charles Mirabile <cmirabil@redhat.com>
Approved-by: Lenny Szubowicz <lszubowi@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-21 18:52:45 -03:00
Augusto Caringi e2701929e1 Merge: CVE-2025-21829: RDMA/rxe: Fix the warning "__rxe_cleanup+0x12c/0x170 rdma_rxe]"
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/6535

JIRA: https://issues.redhat.com/browse/RHEL-82503
CVE: CVE-2025-21829

```
commit edc4ef0e0154096d6c0cf5e06af6fc330dbad9d1
Author: Zhu Yanjun <yanjun.zhu@linux.dev>
Date:   Fri Jan 10 17:09:27 2025 +0100

    RDMA/rxe: Fix the warning "__rxe_cleanup+0x12c/0x170 [rdma_rxe]"

    The Call Trace is as below:
    "
      <TASK>
      ? show_regs.cold+0x1a/0x1f
      ? __rxe_cleanup+0x12c/0x170 [rdma_rxe]
      ? __warn+0x84/0xd0
      ? __rxe_cleanup+0x12c/0x170 [rdma_rxe]
      ? report_bug+0x105/0x180
      ? handle_bug+0x46/0x80
      ? exc_invalid_op+0x19/0x70
      ? asm_exc_invalid_op+0x1b/0x20
      ? __rxe_cleanup+0x12c/0x170 [rdma_rxe]
      ? __rxe_cleanup+0x124/0x170 [rdma_rxe]
      rxe_destroy_qp.cold+0x24/0x29 [rdma_rxe]
      ib_destroy_qp_user+0x118/0x190 [ib_core]
      rdma_destroy_qp.cold+0x43/0x5e [rdma_cm]
      rtrs_cq_qp_destroy.cold+0x1d/0x2b [rtrs_core]
      rtrs_srv_close_work.cold+0x1b/0x31 [rtrs_server]
      process_one_work+0x21d/0x3f0
      worker_thread+0x4a/0x3c0
      ? process_one_work+0x3f0/0x3f0
      kthread+0xf0/0x120
      ? kthread_complete_and_exit+0x20/0x20
      ret_from_fork+0x22/0x30
      </TASK>
    "
    When too many rdma resources are allocated, rxe needs more time to
    handle these rdma resources. Sometimes with the current timeout, rxe
    can not release the rdma resources correctly.

    Compared with other rdma drivers, a bigger timeout is used.

    Fixes: 215d0a755e1b ("RDMA/rxe: Stop lookup of partially built objects")
    Signed-off-by: Zhu Yanjun <yanjun.zhu@linux.dev>
    Link: https://patch.msgid.link/20250110160927.55014-1-yanjun.zhu@linux.dev
    Tested-by: Joe Klein <joe.klein812@gmail.com>
    Signed-off-by: Leon Romanovsky <leon@kernel.org>```

Signed-off-by: CKI Backport Bot <cki-ci-bot+cki-gitlab-backport-bot@redhat.com>

---

<small>Created 2025-03-06 18:53 UTC by backporter - [KWF FAQ](https://red.ht/kernel_workflow_doc) - [Slack #team-kernel-workflow](https://redhat-internal.slack.com/archives/C04LRUPMJQ5) - [Source](https://gitlab.com/cki-project/kernel-workflow/-/blob/main/webhook/utils/backporter.py) - [Documentation](https://gitlab.com/cki-project/kernel-workflow/-/blob/main/docs/README.backporter.md) - [Report an issue](https://gitlab.com/cki-project/kernel-workflow/-/issues/new?issue%5Btitle%5D=backporter%20webhook%20issue)</small>

Approved-by: Michal Schmidt <mschmidt@redhat.com>
Approved-by: José Ignacio Tornos Martínez <jtornosm@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-21 18:52:40 -03:00
Augusto Caringi da5db8f9a8 Merge: KVM: Performance Enhanced Refresh PCI Translation
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/7076

JIRA: https://issues.redhat.com/browse/RHEL-11431

Depends: !6968

Commits:
```
807c2743035446cf0484772a76e1c35ce27fd8e3
64af12c6ec3afd7d44bc8b2044eee59f98059087
0ed5967a0a63552e5ca0f2382ce362f84e83801c
d236843a6964dc5a55dbafa5cfae63bc99cf10f8
6d52cb738a98df6d5a91d96ce5bc557d24343964
81244074b518aeb90de5f68e7e825564c29c5c50
d5fbc5efbd98a6c49f9acfca8595efd0f1e59ad8
1fe3f3cad530981e8ff36cefc19c8534bfd401b3
a2392b8f1ffc26ac4d9fc5cbf081e91a2e39ca71
83c1aec21064c762a2ee475f0fd19f5241de25bc
```

Signed-off-by: Christoph Schlameuss <cschlame@redhat.com>

Approved-by: Thomas Huth <thuth@redhat.com>
Approved-by: Cornelia Huck <cohuck@redhat.com>
Approved-by: Jerry Snitselaar <jsnitsel@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-21 18:52:36 -03:00
Augusto Caringi b7a03b39b4 Merge: CVE-2022-49788: misc/vmw_vmci: fix an infoleak in vmci_host_do_receive_datagram()
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/7009

JIRA: https://issues.redhat.com/browse/RHEL-97498
CVE: CVE-2022-49788

```
commit e5b0d06d9b10f5f43101bd6598b076c347f9295f
Author: Alexander Potapenko <glider@google.com>
Date:   Fri Nov 4 18:58:49 2022 +0100

    misc/vmw_vmci: fix an infoleak in vmci_host_do_receive_datagram()

    `struct vmci_event_qp` allocated by qp_notify_peer() contains padding,
    which may carry uninitialized data to the userspace, as observed by
    KMSAN:

      BUG: KMSAN: kernel-infoleak in instrument_copy_to_user ./include/linux/instrumented.h:121
       instrument_copy_to_user ./include/linux/instrumented.h:121
       _copy_to_user+0x5f/0xb0 lib/usercopy.c:33
       copy_to_user ./include/linux/uaccess.h:169
       vmci_host_do_receive_datagram drivers/misc/vmw_vmci/vmci_host.c:431
       vmci_host_unlocked_ioctl+0x33d/0x43d0 drivers/misc/vmw_vmci/vmci_host.c:925
       vfs_ioctl fs/ioctl.c:51
      ...

      Uninit was stored to memory at:
       kmemdup+0x74/0xb0 mm/util.c:131
       dg_dispatch_as_host drivers/misc/vmw_vmci/vmci_datagram.c:271
       vmci_datagram_dispatch+0x4f8/0xfc0 drivers/misc/vmw_vmci/vmci_datagram.c:339
       qp_notify_peer+0x19a/0x290 drivers/misc/vmw_vmci/vmci_queue_pair.c:1479
       qp_broker_attach drivers/misc/vmw_vmci/vmci_queue_pair.c:1662
       qp_broker_alloc+0x2977/0x2f30 drivers/misc/vmw_vmci/vmci_queue_pair.c:1750
       vmci_qp_broker_alloc+0x96/0xd0 drivers/misc/vmw_vmci/vmci_queue_pair.c:1940
       vmci_host_do_alloc_queuepair drivers/misc/vmw_vmci/vmci_host.c:488
       vmci_host_unlocked_ioctl+0x24fd/0x43d0 drivers/misc/vmw_vmci/vmci_host.c:927
      ...

      Local variable ev created at:
       qp_notify_peer+0x54/0x290 drivers/misc/vmw_vmci/vmci_queue_pair.c:1456
       qp_broker_attach drivers/misc/vmw_vmci/vmci_queue_pair.c:1662
       qp_broker_alloc+0x2977/0x2f30 drivers/misc/vmw_vmci/vmci_queue_pair.c:1750

      Bytes 28-31 of 48 are uninitialized
      Memory access of size 48 starts at ffff888035155e00
      Data copied to user address 0000000020000100

    Use memset() to prevent the infoleaks.

    Also speculatively fix qp_notify_peer_local(), which may suffer from the
    same problem.

    Reported-by: syzbot+39be4da489ed2493ba25@syzkaller.appspotmail.com
    Cc: stable <stable@kernel.org>
    Fixes: 06164d2b72 ("VMCI: queue pairs implementation.")
    Signed-off-by: Alexander Potapenko <glider@google.com>
    Reviewed-by: Vishnu Dasa <vdasa@vmware.com>
    Link: https://lore.kernel.org/r/20221104175849.2782567-1-glider@google.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
```

Signed-off-by: CKI Backport Bot <cki-ci-bot+cki-gitlab-backport-bot@redhat.com>

---

<small>Created 2025-06-17 15:29 UTC by backporter - [KWF FAQ](https://red.ht/kernel_workflow_doc) - [Slack #team-kernel-workflow](https://redhat-internal.slack.com/archives/C04LRUPMJQ5) - [Source](https://gitlab.com/cki-project/kernel-workflow/-/blob/main/webhook/utils/backporter.py) - [Documentation](https://gitlab.com/cki-project/kernel-workflow/-/blob/main/docs/README.backporter.md) - [Report an issue](https://issues.redhat.com/secure/CreateIssueDetails!init.jspa?pid=12334433&issuetype=1&priority=4&summary=backporter+webhook+issue&components=kernel-workflow+/+backporter)</small>

Approved-by: John W. Linville <linville@redhat.com>
Approved-by: Daniel Horak <dhorak@redhat.com>
Approved-by: Xiubo Li <xiubli@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-21 18:52:34 -03:00
Ming Lei 37f882b426 block/blk-throttle: silence !BLK_DEV_IO_TRACE variable warnings
JIRA: https://issues.redhat.com/browse/RHEL-97189

commit dbc5ba08ec5ff799a32f27ac79702a2cfc2200cd
Author: Jens Axboe <axboe@kernel.dk>
Date:   Thu May 15 07:39:41 2025 -0600

    block/blk-throttle: silence !BLK_DEV_IO_TRACE variable warnings

    If blk-throttle is enabled but blktrace is not, then the compiler will
    notice that the following two variables are unused:

    ../block/blk-throttle.c: In function 'throtl_pending_timer_fn':
    ../block/blk-throttle.c:1153:30: warning: unused variable 'bio_cnt_w' [-Wunused-variable]
     1153 |                 unsigned int bio_cnt_w = sq_queued(sq, WRITE);
          |                              ^~~~~~~~~
    ../block/blk-throttle.c:1152:30: warning: unused variable 'bio_cnt_r' [-Wunused-variable]
     1152 |                 unsigned int bio_cnt_r = sq_queued(sq, READ);
          |                              ^~~~~~~~~

    Silence that my annotating them with __maybe_unused.

    Fixes: 28ad83b774a6 ("blk-throttle: Split the service queue")
    Link: https://lore.kernel.org/all/20250515130830.9671-1-aishwarya.tcv@arm.com/
    Reported-by: Aishwarya <aishwarya.tcv@arm.com>
    Reviewed-by: Yu Kuai <yukuai3@huawei.com>
    Signed-off-by: Jens Axboe <axboe@kernel.dk>

Signed-off-by: Ming Lei <ming.lei@redhat.com>
2025-07-16 17:39:12 +08:00
Ming Lei 4c6375a00a blk-throttle: Prevents the bps restricted io from entering the bps queue again
JIRA: https://issues.redhat.com/browse/RHEL-97189

commit d1ba22ab2becc8bf84d466791b970905abe99b23
Author: Zizhi Wo <wozizhi@huawei.com>
Date:   Tue May 6 10:09:34 2025 +0800

    blk-throttle: Prevents the bps restricted io from entering the bps queue again

    [BUG]
    There has an issue of io delayed dispatch caused by io splitting. Consider
    the following scenario:
    1) If we set a BPS limit of 1MB/s and restrict the maximum IO size per
    dispatch to 4KB, submitting -two- 1MB IO requests results in completion
    times of 1s and 2s, which is expected.
    2) However, if we additionally set an IOPS limit of 1,000,000/s with the
    same BPS limit of 1MB/s, submitting -two- 1MB IO requests again results in
    both completing in 2s, even though the IOPS constraint is being met.

    [CAUSE]
    This issue arises because BPS and IOPS currently share the same queue in
    the blkthrotl mechanism:
    1) This issue does not occur when only BPS is limited because the split IOs
    return false in blk_should_throtl() and do not go through to throtl again.
    2) For split IOs, even if they have been tagged with BIO_BPS_THROTTLED,
    they still get queued alternately in the same list due to continuous
    splitting and reordering. As a result, the two IO requests are both
    completed at the 2-second mark, causing an unintended delay.
    3) It is not difficult to imagine that in this scenario, if N 1MB IOs are
    issued at once, all IOs will eventually complete together in N seconds.

    [FIX]
    With the queue separation introduced in the previous patches, we now have
    separate BPS and IOPS queues. For IOs that have already passed the BPS
    limitation, they do not need to re-enter the BPS queue and can directly
    placed to the IOPS queue.

    Since we have split the queues, when the IOPS queue is previously empty
    and a new bio is added to the first qnode->bios_iops list in the
    service_queue, we also need to update the disptime. This patch introduces
    "THROTL_TG_IOPS_WAS_EMPTY" flag to mark it.

    Signed-off-by: Zizhi Wo <wozizhi@huawei.com>
    Reviewed-by: Yu Kuai <yukuai3@huawei.com>
    Signed-off-by: Zizhi Wo <wozizhi@huaweicloud.com>
    Link: https://lore.kernel.org/r/20250506020935.655574-8-wozizhi@huaweicloud.com
    Signed-off-by: Jens Axboe <axboe@kernel.dk>

Signed-off-by: Ming Lei <ming.lei@redhat.com>
2025-07-16 17:39:10 +08:00
Ming Lei 9d80ce7631 blk-throttle: Split the service queue
JIRA: https://issues.redhat.com/browse/RHEL-97189

commit 28ad83b774a6f11126d45bf912bb8a7c16cb2b2b
Author: Zizhi Wo <wozizhi@huawei.com>
Date:   Tue May 6 10:09:33 2025 +0800

    blk-throttle: Split the service queue

    This patch splits throtl_service_queue->nr_queued into "nr_queued_bps" and
    "nr_queued_iops", allowing separate accounting of BPS and IOPS queued bios.
    This prepares for future changes that need to check whether the BPS or IOPS
    queues are empty.

    To facilitate updating the number of IOs in the BPS and IOPS queues, the
    addition logic will be moved from throtl_add_bio_tg() to
    throtl_qnode_add_bio(), and similarly, the removal logic will be moved from
    tg_dispatch_one_bio() to throtl_pop_queued().

    And introduce sq_queued() to calculate the total sum of sq->nr_queued.

    Signed-off-by: Zizhi Wo <wozizhi@huawei.com>
    Reviewed-by: Yu Kuai <yukuai3@huawei.com>
    Signed-off-by: Zizhi Wo <wozizhi@huaweicloud.com>
    Link: https://lore.kernel.org/r/20250506020935.655574-7-wozizhi@huaweicloud.com
    Signed-off-by: Jens Axboe <axboe@kernel.dk>

Signed-off-by: Ming Lei <ming.lei@redhat.com>
2025-07-16 17:39:07 +08:00
Ming Lei d252761ec0 blk-throttle: Split the blkthrotl queue
JIRA: https://issues.redhat.com/browse/RHEL-97189

commit f2c4902bd08b854a23c3c2ab352382fd7eef959f
Author: Zizhi Wo <wozizhi@huawei.com>
Date:   Tue May 6 10:09:32 2025 +0800

    blk-throttle: Split the blkthrotl queue

    This patch splits the single queue into separate bps and iops queues. Now,
    an IO request must first pass through the bps queue, then the iops queue,
    and finally be dispatched. Due to the queue splitting, we need to modify
    the throtl add/peek/pop function.

    Additionally, the patch modifies the logic related to tg_dispatch_time().
    If bio needs to wait for bps, function directly returns the bps wait time;
    otherwise, it charges bps and returns the iops wait time so that bio can be
    directly placed into the iops queue afterward. Note that this may lead to
    more frequent updates to disptime, but the overhead is negligible for the
    slow path.

    Signed-off-by: Zizhi Wo <wozizhi@huawei.com>
    Reviewed-by: Yu Kuai <yukuai3@huawei.com>
    Signed-off-by: Zizhi Wo <wozizhi@huaweicloud.com>
    Link: https://lore.kernel.org/r/20250506020935.655574-6-wozizhi@huaweicloud.com
    Signed-off-by: Jens Axboe <axboe@kernel.dk>

Signed-off-by: Ming Lei <ming.lei@redhat.com>
2025-07-16 17:39:03 +08:00
Ming Lei dabf6d845f blk-throttle: Introduce flag "BIO_TG_BPS_THROTTLED"
JIRA: https://issues.redhat.com/browse/RHEL-97189

commit c4da7bf54b1f76e7c5c8cc6d1c4db8b19af67c5d
Author: Zizhi Wo <wozizhi@huawei.com>
Date:   Tue May 6 10:09:31 2025 +0800

    blk-throttle: Introduce flag "BIO_TG_BPS_THROTTLED"

    Subsequent patches will split the single queue into separate bps and iops
    queues. To prevent IO that has already passed through the bps queue at a
    single tg level from being counted toward bps wait time again, we introduce
    "BIO_TG_BPS_THROTTLED" flag. Since throttle and QoS operate at different
    levels, we reuse the value as "BIO_QOS_THROTTLED".

    We set this flag when charge bps and clear it when charge iops, as the bio
    will move to the upper-level tg or be dispatched.

    This patch does not involve functional changes.

    Signed-off-by: Zizhi Wo <wozizhi@huawei.com>
    Reviewed-by: Yu Kuai <yukuai3@huawei.com>
    Signed-off-by: Zizhi Wo <wozizhi@huaweicloud.com>
    Link: https://lore.kernel.org/r/20250506020935.655574-5-wozizhi@huaweicloud.com
    Signed-off-by: Jens Axboe <axboe@kernel.dk>

Signed-off-by: Ming Lei <ming.lei@redhat.com>
2025-07-16 17:36:31 +08:00
Ming Lei ee748edfb5 blk-throttle: Split throtl_charge_bio() into bps and iops functions
JIRA: https://issues.redhat.com/browse/RHEL-97189

commit a404be5399d762f5737a4a731b42a38f552f2b44
Author: Zizhi Wo <wozizhi@huawei.com>
Date:   Tue May 6 10:09:30 2025 +0800

    blk-throttle: Split throtl_charge_bio() into bps and iops functions

    Split throtl_charge_bio() to facilitate subsequent patches that will
    separately charge bps and iops after queue separation.

    Signed-off-by: Zizhi Wo <wozizhi@huawei.com>
    Reviewed-by: Yu Kuai <yukuai3@huawei.com>
    Signed-off-by: Zizhi Wo <wozizhi@huaweicloud.com>
    Link: https://lore.kernel.org/r/20250506020935.655574-4-wozizhi@huaweicloud.com
    Signed-off-by: Jens Axboe <axboe@kernel.dk>

Signed-off-by: Ming Lei <ming.lei@redhat.com>
2025-07-16 17:36:29 +08:00
Ming Lei 3bea16b5c4 blk-throttle: Refactor tg_dispatch_time by extracting tg_dispatch_bps/iops_time
JIRA: https://issues.redhat.com/browse/RHEL-97189

commit 3660cd4228d9330b618e2700491891f08824011d
Author: Zizhi Wo <wozizhi@huawei.com>
Date:   Tue May 6 10:09:29 2025 +0800

    blk-throttle: Refactor tg_dispatch_time by extracting tg_dispatch_bps/iops_time

    tg_dispatch_time() contained both bps and iops throttling logic. We now
    split its internal logic into tg_dispatch_bps/iops_time() to improve code
    consistency for future separation of the bps and iops queues.

    Besides, merge time_before() from caller into throtl_extend_slice() to make
    code cleaner.

    Signed-off-by: Zizhi Wo <wozizhi@huawei.com>
    Reviewed-by: Yu Kuai <yukuai3@huawei.com>
    Signed-off-by: Zizhi Wo <wozizhi@huaweicloud.com>
    Link: https://lore.kernel.org/r/20250506020935.655574-3-wozizhi@huaweicloud.com
    Signed-off-by: Jens Axboe <axboe@kernel.dk>

Signed-off-by: Ming Lei <ming.lei@redhat.com>
2025-07-16 17:36:02 +08:00
Ming Lei 84221f1422 blk-throttle: Rename tg_may_dispatch() to tg_dispatch_time()
JIRA: https://issues.redhat.com/browse/RHEL-97189

commit fd6c08b26460436ec0f53e125f8ded98738806f1
Author: Zizhi Wo <wozizhi@huawei.com>
Date:   Tue May 6 10:09:28 2025 +0800

    blk-throttle: Rename tg_may_dispatch() to tg_dispatch_time()

    tg_may_dispatch() can directly indicate whether bio can be dispatched by
    returning the time to wait, without the need for the redundant "wait"
    parameter. Remove it and modify the function's return type accordingly.

    Since we have determined by the return time whether bio can be dispatched,
    rename tg_may_dispatch() to tg_dispatch_time().

    Signed-off-by: Zizhi Wo <wozizhi@huawei.com>
    Reviewed-by: Yu Kuai <yukuai3@huawei.com>
    Signed-off-by: Zizhi Wo <wozizhi@huaweicloud.com>
    Link: https://lore.kernel.org/r/20250506020935.655574-2-wozizhi@huaweicloud.com
    Signed-off-by: Jens Axboe <axboe@kernel.dk>

Signed-off-by: Ming Lei <ming.lei@redhat.com>
2025-07-16 17:36:00 +08:00
Ming Lei c0b425f7b3 blk-throttle: Add an additional overflow check to the call calculate_bytes/io_allowed
JIRA: https://issues.redhat.com/browse/RHEL-97189

commit 18b8144a1bd8be5a88cc438c0c9213bae1be1a9d
Author: Zizhi Wo <wozizhi@huawei.com>
Date:   Thu Apr 17 21:20:54 2025 +0800

    blk-throttle: Add an additional overflow check to the call calculate_bytes/io_allowed

    Now the tg->[bytes/io]_disp type is signed, and calculate_bytes/io_allowed
    return type is unsigned. Even if the bps/iops limit is not set to max, the
    return value of the function may still exceed INT_MAX or LLONG_MAX, which
    can cause overflow in outer variables. In such cases, we can add additional
    checks accordingly.

    And in throtl_trim_slice(), if the BPS/IOPS limit is set to max, there's
    no need to call calculate_bytes/io_allowed(). Introduces the helper
    functions throtl_trim_bps/iops to simplifies the process. For cases when
    the calculated trim value exceeds INT_MAX (causing an overflow), we reset
    tg->[bytes/io]_disp to zero, so return original tg->[bytes/io]_disp because
    it is the size that is actually trimmed.

    Signed-off-by: Zizhi Wo <wozizhi@huawei.com>
    Reviewed-by: Yu Kuai <yukuai3@huawei.com>
    Link: https://lore.kernel.org/r/20250417132054.2866409-4-wozizhi@huaweicloud.com
    Signed-off-by: Jens Axboe <axboe@kernel.dk>

Signed-off-by: Ming Lei <ming.lei@redhat.com>
2025-07-16 17:35:58 +08:00
Ming Lei dfba8b17f5 blk-throttle: Delete unnecessary carryover-related fields from throtl_grp
JIRA: https://issues.redhat.com/browse/RHEL-97189

commit 7b89d46051ab310096994303b969768c4a9eb18f
Author: Zizhi Wo <wozizhi@huawei.com>
Date:   Thu Apr 17 21:20:53 2025 +0800

    blk-throttle: Delete unnecessary carryover-related fields from throtl_grp

    We no longer need carryover_[bytes/ios] in tg, so it is removed. The
    related comments about carryover in tg are also merged into
    [bytes/io]_disp, and modify other related comments.

    Signed-off-by: Zizhi Wo <wozizhi@huawei.com>
    Reviewed-by: Ming Lei <ming.lei@redhat.com>
    Reviewed-by: Yu Kuai <yukuai3@huawei.com>
    Link: https://lore.kernel.org/r/20250417132054.2866409-3-wozizhi@huaweicloud.com
    Signed-off-by: Jens Axboe <axboe@kernel.dk>

Signed-off-by: Ming Lei <ming.lei@redhat.com>
2025-07-16 17:35:56 +08:00
Ming Lei 7645ebbbfc blk-throttle: Fix wrong tg->[bytes/io]_disp update in __tg_update_carryover()
JIRA: https://issues.redhat.com/browse/RHEL-97189

commit f66cf69eb8765341bbeff0e92a7d0d2027f62452
Author: Zizhi Wo <wozizhi@huawei.com>
Date:   Thu Apr 17 21:20:52 2025 +0800

    blk-throttle: Fix wrong tg->[bytes/io]_disp update in __tg_update_carryover()

    In commit 6cc477c36875 ("blk-throttle: carry over directly"), the carryover
    bytes/ios was be carried to [bytes/io]_disp. However, its update mechanism
    has some issues.

    In __tg_update_carryover(), we calculate "bytes" and "ios" to represent the
    carryover, but the computation when updating [bytes/io]_disp is incorrect.
    And if the sq->nr_queued is empty, we may not update tg->[bytes/io]_disp to
    0 in tg_update_carryover(). We should set it to 0 in non carryover case.
    This patch fixes the issue.

    Fixes: 6cc477c36875 ("blk-throttle: carry over directly")
    Signed-off-by: Zizhi Wo <wozizhi@huawei.com>
    Reviewed-by: Yu Kuai <yukuai3@huawei.com>
    Reviewed-by: Ming Lei <ming.lei@redhat.com>
    Link: https://lore.kernel.org/r/20250417132054.2866409-2-wozizhi@huaweicloud.com
    Signed-off-by: Jens Axboe <axboe@kernel.dk>

Signed-off-by: Ming Lei <ming.lei@redhat.com>
2025-07-16 17:35:54 +08:00
Ming Lei c5b4ec1522 blk-throttle: carry over directly
JIRA: https://issues.redhat.com/browse/RHEL-97189

commit 6cc477c36875ea5329b8bfbdf4d91f83dc653c91
Author: Ming Lei <ming.lei@redhat.com>
Date:   Wed Mar 5 12:31:21 2025 +0800

    blk-throttle: carry over directly

    Now ->carryover_bytes[] and ->carryover_ios[] only covers limit/config
    update.

    Actually the carryover bytes/ios can be carried to ->bytes_disp[] and
    ->io_disp[] directly, since the carryover is one-shot thing and only valid
    in current slice.

    Then we can remove the two fields and simplify code much.

    Type of ->bytes_disp[] and ->io_disp[] has to change as signed because the
    two fields may become negative when updating limits or config, but both are
    big enough for holding bytes/ios dispatched in single slice

    Cc: Tejun Heo <tj@kernel.org>
    Cc: Josef Bacik <josef@toxicpanda.com>
    Cc: Yu Kuai <yukuai3@huawei.com>
    Signed-off-by: Ming Lei <ming.lei@redhat.com>
    Acked-by: Tejun Heo <tj@kernel.org>
    Link: https://lore.kernel.org/r/20250305043123.3938491-4-ming.lei@redhat.com
    Signed-off-by: Jens Axboe <axboe@kernel.dk>

Signed-off-by: Ming Lei <ming.lei@redhat.com>
2025-07-16 17:35:51 +08:00
Ming Lei 64e1179973 blk-throttle: don't take carryover for prioritized processing of metadata
JIRA: https://issues.redhat.com/browse/RHEL-97189

commit a9fc8868b350cbf4ff730a4ea9651319cc669516
Author: Ming Lei <ming.lei@redhat.com>
Date:   Wed Mar 5 12:31:20 2025 +0800

    blk-throttle: don't take carryover for prioritized processing of metadata

    Commit 29390bb5661d ("blk-throttle: support prioritized processing of metadata")
    takes bytes/ios carryover for prioritized processing of metadata. Turns out
    we can support it by charging it directly without trimming slice, and the
    result is same with carryover.

    Cc: Tejun Heo <tj@kernel.org>
    Cc: Josef Bacik <josef@toxicpanda.com>
    Cc: Yu Kuai <yukuai3@huawei.com>
    Signed-off-by: Ming Lei <ming.lei@redhat.com>
    Acked-by: Tejun Heo <tj@kernel.org>
    Link: https://lore.kernel.org/r/20250305043123.3938491-3-ming.lei@redhat.com
    Signed-off-by: Jens Axboe <axboe@kernel.dk>

Signed-off-by: Ming Lei <ming.lei@redhat.com>
2025-07-16 17:35:49 +08:00
Ming Lei 4ae873b28c blk-throttle: remove last_bytes_disp and last_ios_disp
JIRA: https://issues.redhat.com/browse/RHEL-97189

commit 483a393e7e6189aac7d47b5295029159ab7a1cf1
Author: Ming Lei <ming.lei@redhat.com>
Date:   Wed Mar 5 12:31:19 2025 +0800

    blk-throttle: remove last_bytes_disp and last_ios_disp

    The two fields are not used any more, so remove them.

    Cc: Tejun Heo <tj@kernel.org>
    Cc: Josef Bacik <josef@toxicpanda.com>
    Cc: Yu Kuai <yukuai3@huawei.com>
    Signed-off-by: Ming Lei <ming.lei@redhat.com>
    Acked-by: Tejun Heo <tj@kernel.org>
    Link: https://lore.kernel.org/r/20250305043123.3938491-2-ming.lei@redhat.com
    Signed-off-by: Jens Axboe <axboe@kernel.dk>

Signed-off-by: Ming Lei <ming.lei@redhat.com>
2025-07-16 17:34:57 +08:00
Augusto Caringi 7dc962dd11 [redhat] kernel-5.14.0-600.el9
Signed-off-by: Augusto Caringi <acaringi@redhat.com>
2025-07-15 15:56:25 -03:00
Augusto Caringi 7d724109b3 Merge: HyperV rebase to kernel 6.16-rc1
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/6941

Rebase x86 and common hyperv code to kernel 6.16-rc1

JIRA: https://issues.redhat.com/browse/RHEL-80096

This includes the new driver for HyperV root partition,
but it is not enabled in Kconfig and the code doesn't build,
however I still included it to reduce the conflicts.

Tested: smoke tested on an Azure VM.

This pull request also contains updates to the MANA driver and MANA RDMA driver.

Signed-off-by: Maxim Levitsky <mlevitsk@redhat.com>

Approved-by: Vitaly Kuznetsov <vkuznets@redhat.com>
Approved-by: Rafael Aquini <raquini@redhat.com>
Approved-by: Jerry Snitselaar <jsnitsel@redhat.com>
Approved-by: Kamal Heib <kheib@redhat.com>
Approved-by: Steve Best <sbest@redhat.com>
Approved-by: Robert Foss <rfoss@kernel.org>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-15 15:53:50 -03:00
Augusto Caringi f9e85b8091 Merge: CVE-2025-38079: crypto: algif_hash - fix double free in hash_accept
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/7100

JIRA: https://issues.redhat.com/browse/RHEL-102233
CVE: CVE-2025-38079

```
commit b2df03ed4052e97126267e8c13ad4204ea6ba9b6
Author: Ivan Pravdin <ipravdin.official@gmail.com>
Date:   Sun May 18 18:41:02 2025 -0400

    crypto: algif_hash - fix double free in hash_accept

    If accept(2) is called on socket type algif_hash with
    MSG_MORE flag set and crypto_ahash_import fails,
    sk2 is freed. However, it is also freed in af_alg_release,
    leading to slab-use-after-free error.

    Fixes: fe869cdb89 ("crypto: algif_hash - User-space interface for hash operations")
    Cc: <stable@vger.kernel.org>
    Signed-off-by: Ivan Pravdin <ipravdin.official@gmail.com>
    Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
```

Signed-off-by: CKI Backport Bot <cki-ci-bot+cki-gitlab-backport-bot@redhat.com>

---

<small>Created 2025-07-08 05:09 UTC by backporter - [KWF FAQ](https://red.ht/kernel_workflow_doc) - [Slack #team-kernel-workflow](https://redhat-internal.slack.com/archives/C04LRUPMJQ5) - [Source](https://gitlab.com/cki-project/kernel-workflow/-/blob/main/webhook/utils/backporter.py) - [Documentation](https://gitlab.com/cki-project/kernel-workflow/-/blob/main/docs/README.backporter.md) - [Report an issue](https://issues.redhat.com/secure/CreateIssueDetails!init.jspa?pid=12334433&issuetype=1&priority=4&summary=backporter+webhook+issue&components=kernel-workflow+/+backporter)</small>

Approved-by: Jarod Wilson <jarod@redhat.com>
Approved-by: Vladis Dronov <vdronov@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-15 15:53:49 -03:00
Augusto Caringi f47e7393f0 Merge: nfsd: don't ignore the return code of svc_proc_register()
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/7096

nfsd: don't ignore the return code of svc_proc_register()

JIRA: https://issues.redhat.com/browse/RHEL-93612
CVE: CVE-2025-22026

Signed-off-by: Olga Kornievskaia <okorniev@redhat.com>

Approved-by: Benjamin Coddington <bcodding@redhat.com>
Approved-by: Scott Mayhew <smayhew@redhat.com>
Approved-by: Jay Shin <jaeshin@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-15 15:53:49 -03:00
Augusto Caringi 3a8723b170 Merge: CVE-2025-38110: net/mdiobus: Fix potential out-of-bounds clause 45 read/write access
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/7094

JIRA: https://issues.redhat.com/browse/RHEL-102094
CVE: CVE-2025-38110

```
commit 260388f79e94fb3026c419a208ece8358bb7b555
Author: Jakub Raczynski <j.raczynski@samsung.com>
Date:   Mon Jun 9 17:31:47 2025 +0200

    net/mdiobus: Fix potential out-of-bounds clause 45 read/write access

    When using publicly available tools like 'mdio-tools' to read/write data
    from/to network interface and its PHY via C45 (clause 45) mdiobus,
    there is no verification of parameters passed to the ioctl and
    it accepts any mdio address.
    Currently there is support for 32 addresses in kernel via PHY_MAX_ADDR define,
    but it is possible to pass higher value than that via ioctl.
    While read/write operation should generally fail in this case,
    mdiobus provides stats array, where wrong address may allow out-of-bounds
    read/write.

    Fix that by adding address verification before C45 read/write operation.
    While this excludes this access from any statistics, it improves security of
    read/write operation.

    Fixes: 4e4aafcddbbf ("net: mdio: Add dedicated C45 API to MDIO bus drivers")
    Signed-off-by: Jakub Raczynski <j.raczynski@samsung.com>
    Reported-by: Wenjing Shan <wenjing.shan@samsung.com>
    Signed-off-by: David S. Miller <davem@davemloft.net>
```

Signed-off-by: CKI Backport Bot <cki-ci-bot+cki-gitlab-backport-bot@redhat.com>

---

<small>Created 2025-07-07 11:48 UTC by backporter - [KWF FAQ](https://red.ht/kernel_workflow_doc) - [Slack #team-kernel-workflow](https://redhat-internal.slack.com/archives/C04LRUPMJQ5) - [Source](https://gitlab.com/cki-project/kernel-workflow/-/blob/main/webhook/utils/backporter.py) - [Documentation](https://gitlab.com/cki-project/kernel-workflow/-/blob/main/docs/README.backporter.md) - [Report an issue](https://issues.redhat.com/secure/CreateIssueDetails!init.jspa?pid=12334433&issuetype=1&priority=4&summary=backporter+webhook+issue&components=kernel-workflow+/+backporter)</small>

Approved-by: Jarod Wilson <jarod@redhat.com>
Approved-by: Michal Schmidt <mschmidt@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-15 15:53:48 -03:00
Augusto Caringi 09bff2370e Merge: virtio_ring: Fix error reporting in virtqueue_resize
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/7101

JIRA: https://issues.redhat.com/browse/RHEL-84199

Enforce minimum TX ring size for reliability

The `tx_may_stop()` logic stops TX queues if free descriptors
(`sq->vq->num_free`) fall below the threshold of (`MAX_SKB_FRAGS` + 2).
If the total ring size (`ring_num`) is not strictly greater than this
value, queues can become persistently stopped or stop after minimal
use, severely degrading performance.

A single sk_buff transmission typically requires descriptors for:
- The virtio_net_hdr (1 descriptor)
- The sk_buff's linear data (head) (1 descriptor)
- Paged fragments (up to MAX_SKB_FRAGS descriptors)

Signed-off-by: Laurent Vivier <lvivier@redhat.com>

Approved-by: Eugenio Pérez <eperezma@redhat.com>
Approved-by: Cindy Lu <lulu@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-15 15:53:48 -03:00
Augusto Caringi da0d31c588 Merge: RHEL-9.7 ISH Updates to Upstream v6.15
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/6962

ISH updates from upstream v6.15

JIRA: https://issues.redhat.com/browse/RHEL-94431
Brew: https://brewweb.engineering.redhat.com/brew/taskinfo?taskID=67809336
Omitted-fix: 1b2d05384c29 HID: intel-thc-hid: Add basic THC driver skeleton
             Added upstream 2025-01-06
             This driver has not been incorporated into RHEL.

Signed-off-by: Tony Camuso <tcamuso@redhat.com>

Approved-by: Desnes Nunes <desnesn@redhat.com>
Approved-by: Steve Best <sbest@redhat.com>
Approved-by: Bastien Nocera <bnocera@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-15 15:53:47 -03:00
Augusto Caringi dac6567563 Merge: r8169: update to v6.15-rc7 (part 1)
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/6865

These commits will be backported in a different MR due to various phy dependencies:

853e80369cfc r8169: add PHY c45 ops for MDIO_MMD_VENDOR2 registers
b11bff90f2ad r8169: add support for RTL8125BP rev.b
e340bff27e63 r8169: copy vendor driver 2.5G/5G EEE advertisement constraints
a3d8520e6a19 r8169: align RTL8126 EEE config with vendor driver
4af2f60bf737 r8169: align RTL8125/RTL8126 PHY config with vendor driver
eb90f876b796 r8169: align RTL8125 EEE config with vendor driver

JIRA: https://issues.redhat.com/browse/RHEL-84976
JIRA: https://issues.redhat.com/browse/RHEL-73980
JIRA: https://issues.redhat.com/browse/RHEL-89041

Signed-off-by: Izabela Bakollari <ibakolla@redhat.com>

Approved-by: Michal Schmidt <mschmidt@redhat.com>
Approved-by: José Ignacio Tornos Martínez <jtornosm@redhat.com>
Approved-by: Kamal Heib <kheib@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-15 15:53:47 -03:00
Augusto Caringi f2d747422f Merge: smb: client: fix regression with native SMB symlinks
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/7088

- fix regression with native SMB symlinks

JIRA: https://issues.redhat.com/browse/RHEL-100966

Signed-off-by: Paulo Alcantara <paalcant@redhat.com>

Approved-by: David Howells <dhowells@redhat.com>
Approved-by: Jay Shin <jaeshin@redhat.com>
Approved-by: Benjamin Coddington <bcodding@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-15 15:53:46 -03:00
Augusto Caringi 0a9c20e591 Merge: ext4: avoid journaling sb update on error if journal is destroying
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/7087

JIRA: https://issues.redhat.com/browse/RHEL-93593
CVE: CVE-2025-22113

Fix BUG_ON due to transaction start on an unmounting journal.

Signed-off-by: Brian Foster <bfoster@redhat.com>

Approved-by: Xiubo Li <xiubli@redhat.com>
Approved-by: Jay Shin <jaeshin@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-15 15:53:46 -03:00
Augusto Caringi de9c5acbcc Merge: net/sfc: Driver update
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/7047

JIRA: https://issues.redhat.com/browse/RHEL-72660

This MR updates the sfc driver to upstream kernel net-next.

Tested: http://dashboard.lnst.anl.eng.rdu2.dc.redhat.com/pipeline/7170

Signed-off-by: Dennis Chen <dechen@redhat.com>

Approved-by: Michal Schmidt <mschmidt@redhat.com>
Approved-by: Kamal Heib <kheib@redhat.com>
Approved-by: Corinna Vinschen <vinschen@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-15 15:53:45 -03:00
Augusto Caringi 9f6b818d1a Merge: nvme-multipath: fix suspicious RCU usage warning
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/7110

JIRA: https://issues.redhat.com/browse/RHEL-102648

A new regression fix appeared upstream for a recently backported nvme change.

```
  When I run the NVME over TCP test in virtme-ng, I get the following
  "suspicious RCU usage" warning in nvme_mpath_add_sysfs_link():

  This patch uses sleepable RCU version of helper list_for_each_entry_srcu()
  instead of list_for_each_entry_rcu() to fix it.

  Fixes: 4dbd2b2ebe4c ("nvme-multipath: Add visibility for round-robin io-policy")
```

Signed-off-by: Chris Leech <cleech@redhat.com>

Approved-by: John Meneghini <jmeneghi@redhat.com>
Approved-by: bgurney <bgurney@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-15 15:53:45 -03:00
Augusto Caringi 8010469081 Merge: Wireless core and drivers rebase to v6.15
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/6948

JIRA: https://issues.redhat.com/browse/RHEL-89168

ARK MR: cki-project/kernel-ark!3897

Tested: basic testing with several supported WiFi cards (Intel, Qualcomm, Mediatek and Realtek).

Wireless core and drivers update to v6.15.
MHI will be updated in a separate way.

Upstream status: linux.git

Not necessary because SKB_DROP_REASON_SUBSYS_OPENVSWITCH is still the same:
Omitted-fix: 1cc3462159bab selftests: openvswitch: don't hardcode the drop reason subsys

Commented fix was already included:
Omitted-fix: 175e69e33c669 wifi: iwlwifi: restore missing initialization of async_handlers_list

Not important fixes (postponed):
Omitted-fix: 9a353a4a11a4 wifi: ath12k: avoid burning CPU while waiting for firmware stats
Omitted-fix: ac7b8ff7839d wifi: ath12k: don't use static variables in ath12k_wmi_fw_stats_process()
Omitted-fix: ad5e9178cec5 wifi: ath12k: don't wait when there is no vdev started
Omitted-fix: 54c350055b1d wifi: ath12k: Fix double budget decrement while reaping monitor ring

Fixes for AP capabilities (postponed):
Omitted-fix: 64cbf0d7ce9a wifi: mt76: mt7996: Fix possible OOB access in mt7996_tx()
Omitted-fix: a0c5eac91810 wifi: mt76: Assume __mt76_connac_mcu_alloc_sta_req runs in atomic context
Omitted-fix: c772cd726eea wifi: mt76: Move RCU section in mt7996_mcu_set_fixed_field()
Omitted-fix: 28d519d0d493 wifi: mt76: Move RCU section in mt7996_mcu_add_rate_ctrl_fixed()
Omitted-fix: 3dd6f67c669c wifi: mt76: Move RCU section in mt7996_mcu_add_rate_ctrl()
Omitted-fix: 71532576f41e wifi: mt76: Remove RCU section in mt7996_mac_sta_rc_work()
Omitted-fix: e8d7eef07199 wifi: mt76: mt7996: Fix secondary link lookup in mt7996_mcu_sta_mld_setup_tlv()
Omitted-fix: a59650a22701 wifi: mt76: mt7996: Fix valid_links bitmask in mt7996_mac_sta_{add,remove}

Signed-off-by: Jose Ignacio Tornos Martinez <jtornosm@redhat.com>

Approved-by: Jan Stancek <jstancek@redhat.com>
Approved-by: Davide Caratti <dcaratti@redhat.com>
Approved-by: mheib <mheib@redhat.com>
Approved-by: Michal Schmidt <mschmidt@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-15 15:53:43 -03:00
Augusto Caringi 6f28e8aa2a Merge: [RHEL9.7] dmaengine: ae4dma driver support
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/6721

# Merge Request Required Information

Upstream-Status: git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
Upstream-Status: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git

## Summary of Changes

Adds support for the AMD ae4dma driver.

## Approved Development Ticket(s)

JIRA: https://issues.redhat.com/browse/RHEL-77318

Signed-off-by: Jerry Snitselaar <jsnitsel@redhat.com>

v6: Rebase to c9s/main, added ntb commit that needed to be backported, and a recent ptdma fix.

Approved-by: John W. Linville <linville@redhat.com>
Approved-by: Phil Auld <pauld@redhat.com>
Approved-by: Rafael Aquini <raquini@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-15 15:53:43 -03:00
Augusto Caringi 3e20ef5e4b Merge: perf: Backport AMD Zen 5 event updates and IBS fixes
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/7008

JIRA: https://issues.redhat.com/browse/RHEL-22845

JIRA: https://issues.redhat.com/browse/RHEL-22787

JIRA: https://issues.redhat.com/browse/RHEL-84517

This MR delivers three sill-missing AMD Zen 5 event updates
and some IBS fixes.

Signed-off-by: Michael Petlan <mpetlan@redhat.com>

Approved-by: David Arcari <darcari@redhat.com>
Approved-by: ashelat <ashelat@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-15 15:53:42 -03:00
Augusto Caringi 9a4b9ce4a2 [redhat] kernel-5.14.0-599.el9
Signed-off-by: Augusto Caringi <acaringi@redhat.com>
2025-07-11 11:47:18 -03:00
Augusto Caringi 5b1429154d Merge: Updates for radix vmemmap
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/7103

Description: Updates for radix vmemmap

JIRA: https://issues.redhat.com/browse/RHEL-99806

Build Info: https://brewweb.engineering.redhat.com/brew/taskinfo?taskID=68185751

Tested: Verified Brew build test kernel RPMs

Signed-off-by: Mamatha Inamdar <minamdar@redhat.com>

Approved-by: Steve Best <sbest@redhat.com>
Approved-by: Waiman Long <longman@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>
Approved-by: Rafael Aquini <raquini@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-11 11:46:30 -03:00
Augusto Caringi 133889da4f Merge: Updates for DLPAR DRC index
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/7102

Description: Updates for DLPAR DRC index

JIRA: https://issues.redhat.com/browse/RHEL-90597

Build Info: https://brewweb.engineering.redhat.com/brew/taskinfo?taskID=68185783

Tested: Verified Brew build test kernel RPMs

Signed-off-by: Mamatha Inamdar <minamdar@redhat.com>

commit 41a1452759a8b1121df9cf7310acf31d766ba70b
Author: Haren Myneni <haren@linux.ibm.com>
Date:   Sat May 31 16:50:02 2025 -0700

    powerpc/pseries/dlpar: Search DRC index from ibm,drc-indexes for IO add

    IO hotplug add event is handled in the user space with drmgr tool.
    After the device is enabled, the user space uses /sys/kernel/dlpar
    interface with “dt add index <drc_index>” to update the device tree.
    The kernel interface (dlpar_hp_dt_add()) finds the parent node for
    the specified ‘drc_index’ from ibm,drc-info property. The recent FW
    provides this property from 2017 onwards. But KVM guest code in
    some releases is still using the older SLOF firmware which has
    ibm,drc-indexes property instead of ibm,drc-info.

    If the ibm,drc-info is not available, this patch adds changes to
    search ‘drc_index’ from the indexes array in ibm,drc-indexes
    property to support old FW.

    Fixes: 02b98ff44a57 ("powerpc/pseries/dlpar: Add device tree nodes for DLPAR IO add")
    Reported-by: Kowshik Jois <kowsjois@linux.ibm.com>
    Signed-off-by: Haren Myneni <haren@linux.ibm.com>
    Tested-by: Amit Machhiwal <amachhiw@linux.ibm.com>
    Reviewed-by: Tyrel Datwyler <tyreld@linux.ibm.com>
    Signed-off-by: Madhavan Srinivasan <maddy@linux.ibm.com>
    Link: https://patch.msgid.link/20250531235002.239213-1-haren@linux.ibm.com

Signed-off-by: Mamatha Inamdar <minamdar@redhat.com>

Approved-by: Steve Best <sbest@redhat.com>
Approved-by: Tony Camuso <tcamuso@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-11 11:46:29 -03:00
Augusto Caringi 883d93381a Merge: CNB97: net: page_pool: avoid false positive warning if NAPI was never added
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/6973

JIRA: https://issues.redhat.com/browse/RHEL-93737

Commits:
```
3e61103b2f78 ("page_pool: remove WARN_ON() with OR")
c1e00bc4be06 ("net: page_pool: avoid false positive warning if NAPI was never added")
```

Signed-off-by: Ivan Vecera <ivecera@redhat.com>

Approved-by: Michal Schmidt <mschmidt@redhat.com>
Approved-by: Davide Caratti <dcaratti@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-11 11:46:29 -03:00
Augusto Caringi fb0612062b Merge: tpm: add and enable SNP SVSM vTPM driver
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/7004

# Merge Request Required Information

## Summary of Changes

This is a backport of https://lore.kernel.org/linux-integrity/20250410135118.133240-1-sgarzare@redhat.com/

Add driver for the vTPM defined by the AMD SVSM spec needed for Confidential VMs.
And enable it in the configuration.

Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>

## Approved Development Ticket(s)
All submissions to CentOS Stream must reference a ticket in [Red Hat Jira](https://issues.redhat.com/).

JIRA: https://issues.redhat.com/browse/RHEL-87276

Resolves: RHEL-87276

<details><summary>Click for formatting instructions</summary>
Please follow the CentOS Stream [contribution documentation](https://docs.centos.org/en-US/stream-contrib/quickstart/) for how to file this ticket and have it approved.

List tickets each on their own line of this description using the format "Resolves: RHEL-76229", "Related: RHEL-76229" or "Reverts: RHEL-76229", as appropriate.
</details>

Approved-by: Vitaly Kuznetsov <vkuznets@redhat.com>
Approved-by: Luigi Leonardi <leonardi@redhat.com>
Approved-by: Ani Sinha <anisinha@redhat.com>
Approved-by: Štěpán Horáček <shoracek@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-11 11:46:28 -03:00
Augusto Caringi ad536b0138 Merge: lib/group_cpus: fix NULL pointer dereference from group_cpus_evenly()
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/7099

lib/group_cpus: fix NULL pointer dereference from group_cpus_evenly()

JIRA: https://issues.redhat.com/browse/RHEL-100485

Signed-off-by: Ming Lei <ming.lei@redhat.com>

Approved-by: Rafael Aquini <raquini@redhat.com>
Approved-by: Jay Shin <jaeshin@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-11 11:46:28 -03:00
Augusto Caringi 5a95c94ff0 Merge: fwctl subsystem
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/6905

JIRA: https://issues.redhat.com/browse/RHEL-86016

fwctl is a new subsystem intended to bring some common rules and order to
the growing pattern of exposing a secure FW interface directly to
userspace. Unlike existing places like RDMA/DRM/VFIO/uacce that are
exposing a device for datapath operations fwctl is focused on debugging,
configuration and provisioning of the device.

In particular, fwctl is an upstream approach to provide a configuration
interface for low-level tunables for mlx5 devices.

Signed-off-by: Benjamin Poirier <bpoirier@redhat.com>

Approved-by: Rafael Aquini <raquini@redhat.com>
Approved-by: Michal Schmidt <mschmidt@redhat.com>
Approved-by: Kamal Heib <kheib@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-11 11:46:27 -03:00
Augusto Caringi 407773f72f Merge: scsi: fnic: Fix crash in fnic_wq_cmpl_handler when FDMI times out
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/7062

# Merge Request Required Information

MR for upstream patches:

85d6fbc47c30 scsi: fnic: Fix missing DMA mapping error in fnic_send_frame()

18b5cb6f1fdd scsi: fnic: Set appropriate logging level for log message

9b9b8594654a scsi: fnic: Add and improve logs in FDMI and FDMI ABTS paths

74f46a0524f8 scsi: fnic: Turn off FDMI ACTIVE flags on link down

a35b29bdedb4 scsi: fnic: Fix crash in fnic_wq_cmpl_handler when FDMI times out

Signed-off-by: Karan Kumar <karkumar@redhat.com>

## Summary of Changes

Fix for the double frame free bug

Fix for FDMI being inactive after link down/up

Other fixes are good to have

## Approved Development Ticket(s)
All submissions to CentOS Stream must reference a ticket in [Red Hat Jira](https://issues.redhat.com/).

JIRA: https://issues.redhat.com/browse/RHEL-90133

Approved-by: John Meneghini <jmeneghi@redhat.com>
Approved-by: Maurizio Lombardi <mlombard@redhat.com>
Approved-by: Chris Leech <cleech@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-11 11:46:27 -03:00
Augusto Caringi c19c2224c9 Merge: Revert "tty/serial: 8250: Sort drivers in Makefile"
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/7059

JIRA: https://issues.redhat.com/browse/RHEL-69911

Upstream Status: RHEL9 only

This reverts cs9 commit 9291d2620e.

```
cs9 commit 9291d2620e is a backport of upstream commit
66ebe67d1b68 ("tty/serial: 8250: Sort drivers in Makefile")

Changing the order that source files are compiled and linked into
the 8250 serial line driver also changes the order that the init
routines in that driver are invoked. This can result in ttySn
devices being enumerated differently, depending on configuration
details.

In the specific case of this JIRA, in RHEL 9.4:

 1.1 Routine pciserial_init_one in drivers/tty/serial/8250/8250_pci.c
     configures a PCI serial port as ttyS0.
 1.2 Routine dw8250_probe in drivers/tty/serial/8250/8250_dw.c
     configures two serial ports enumerated by ACPI as ttyS1, ttyS2.

But in RHEL 9.5 where 8250_dw.c is moved ahead of 8250_pci.c:

 2.1 Routine dw8250_probe in drivers/tty/serial/8250/8250_dw.c
     configures two serial ports enumerated by ACPI as ttyS0, ttyS1.
 2.2 Routine pciserial_init_one in drivers/tty/serial/8250/8250_pci.c
     configures a PCI serial port as ttyS2.

If at all possible, RHEL should avoid such user visible changes
in a minor release. Therefore, for the duration of RHEL 9.x only,
revert this change. But for RHEL 10, stay with the upstream change.

Signed-off-by: Lenny Szubowicz <lszubowi@redhat.com>
```

Approved-by: David Arcari <darcari@redhat.com>
Approved-by: Daniel Horak <dhorak@redhat.com>
Approved-by: Steve Best <sbest@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-11 11:46:27 -03:00
Augusto Caringi f2cfd8a886 Merge: audit: Backport kernel audit enhancements and fixes up to upstream v6.14
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/6897

JIRA: https://issues.redhat.com/browse/RHEL-78967
JIRA: https://issues.redhat.com/browse/RHEL-90107

Brew: https://brewweb.engineering.redhat.com/taskinfo?taskID=67697401

Ricardo Robaina (5):
  audit: use task_tgid_nr() instead of task_pid_nr()
  audit: Make use of str_enabled_disabled() helper
  audit: Reorganize kerneldoc parameter names
  audit: Use str_yes_no() helper function
  audit: fix suffixed '/' filename matching

 kernel/audit.c       |  6 +++---
 kernel/auditfilter.c | 17 ++++++++++++-----
 kernel/auditsc.c     | 10 +++++-----
 3 files changed, 20 insertions(+), 13 deletions(-)

Signed-off-by: Ricardo Robaina <rrobaina@redhat.com>

Approved-by: Ondrej Mosnáček <omosnacek@gmail.com>
Approved-by: Richard Guy Briggs <rgb@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-11 11:46:26 -03:00
Augusto Caringi 881dc7f2d7 Merge: Update tools/testing/selftests/kmod against latest kernel/module backports and enable kmod selftest [rhel-9.7]
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/7018

JIRA: https://issues.redhat.com/browse/RHEL-94010

- redhat: enable test_kmod, test_module and install kmod selftests (Herton R. Krzesinski) [[RHEL-94010](https://issues.redhat.com/browse/RHEL-94010)]
- lib/test_kmod: do not hardcode/depend on any filesystem (Herton R. Krzesinski) [[RHEL-94010](https://issues.redhat.com/browse/RHEL-94010)]
- test_kmod: stop kernel-doc warnings (Herton R. Krzesinski) [[RHEL-94010](https://issues.redhat.com/browse/RHEL-94010)]
- testing: use the copyleft-next-0.3.1 SPDX tag (Herton R. Krzesinski) [[RHEL-94010](https://issues.redhat.com/browse/RHEL-94010)]
- redhat: spec: refresh the License field (Herton R. Krzesinski) [[RHEL-94010](https://issues.redhat.com/browse/RHEL-94010)]
- LICENSES: Add the copyleft-next-0.3.1 license (Herton R. Krzesinski) [[RHEL-94010](https://issues.redhat.com/browse/RHEL-94010)]
- lib/Kconfig.debug: make TEST_KMOD depend on PAGE_SIZE_LESS_THAN_256KB (Herton R. Krzesinski) [[RHEL-94010](https://issues.redhat.com/browse/RHEL-94010)]

Signed-off-by: Herton R. Krzesinski <herton@redhat.com>

Approved-by: Jan Stancek <jstancek@redhat.com>
Approved-by: Rafael Aquini <raquini@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-11 11:46:26 -03:00
Augusto Caringi b00076a5c1 Merge: [s390] Upgrade the QETH driver to latest from upstream, e.g. kernel 6.15
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/7081

JIRA: https://issues.redhat.com/browse/RHEL-73486

commits:
```
c3a04f7e281d1066dfa4c7e84a98d5c41ae910cc
0d0b752f2497471ddd2b32143d167d42e18a8f3c
915e34d5ad35a6a9e56113f852ade4a730fb88f0
```

Signed-off-by: Christoph Schlameuss <cschlame@redhat.com>

Approved-by: Daniel Horak <dhorak@redhat.com>
Approved-by: Steve Best <sbest@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-11 11:46:25 -03:00
Augusto Caringi 87416019b5 Merge: octeon_ep: Fix host hang issue during device reboot
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9/-/merge_requests/6845

JIRA: https://issues.redhat.com/browse/RHEL-86703

commit 34f42736b325287a7b2ce37e415838f539767bda
Author: Sathesh B Edara <sedara@marvell.com>
Date:   Tue Apr 29 04:46:24 2025 -0700

    octeon_ep: Fix host hang issue during device reboot

    When the host loses heartbeat messages from the device,
    the driver calls the device-specific ndo_stop function,
    which frees the resources. If the driver is unloaded in
    this scenario, it calls ndo_stop again, attempting to free
    resources that have already been freed, leading to a host
    hang issue. To resolve this, dev_close should be called
    instead of the device-specific stop function.dev_close
    internally calls ndo_stop to stop the network interface
    and performs additional cleanup tasks. During the driver
    unload process, if the device is already down, ndo_stop
    is not called.

    Fixes: 5cb96c29aa0e ("octeon_ep: add heartbeat monitor")
    Signed-off-by: Sathesh B Edara <sedara@marvell.com>
    Reviewed-by: Simon Horman <horms@kernel.org>
    Link: https://patch.msgid.link/20250429114624.19104-1-sedara@marvell.com
    Signed-off-by: Jakub Kicinski <kuba@kernel.org>

Signed-off-by: Kamal Heib <kheib@redhat.com>

Approved-by: José Ignacio Tornos Martínez <jtornosm@redhat.com>
Approved-by: mheib <mheib@redhat.com>
Approved-by: Ivan Vecera <ivecera@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>

Merged-by: Augusto Caringi <acaringi@redhat.com>
2025-07-11 11:46:25 -03:00