Patch "net: cls_api: Fix uninitialised struct field bo->unlocked_driver_cb" has been added to the 5.11-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    net: cls_api: Fix uninitialised struct field bo->unlocked_driver_cb

to the 5.11-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     net-cls_api-fix-uninitialised-struct-field-bo-unlock.patch
and it can be found in the queue-5.11 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 6905f0e6d46c5df0b2358d01f6ac79d85a32dc0a
Author: Yunjian Wang <wangyunjian@xxxxxxxxxx>
Date:   Thu Apr 1 12:52:48 2021 +0800

    net: cls_api: Fix uninitialised struct field bo->unlocked_driver_cb
    
    [ Upstream commit 990b03b05b2fba79de2a1ee9dc359fc552d95ba6 ]
    
    The 'unlocked_driver_cb' struct field in 'bo' is not being initialized
    in tcf_block_offload_init(). The uninitialized 'unlocked_driver_cb'
    will be used when calling unlocked_driver_cb(). So initialize 'bo' to
    zero to avoid the issue.
    
    Addresses-Coverity: ("Uninitialized scalar variable")
    Fixes: 0fdcf78d5973 ("net: use flow_indr_dev_setup_offload()")
    Signed-off-by: Yunjian Wang <wangyunjian@xxxxxxxxxx>
    Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/net/sched/cls_api.c b/net/sched/cls_api.c
index 87cac07da7c3..b3a2cba130a1 100644
--- a/net/sched/cls_api.c
+++ b/net/sched/cls_api.c
@@ -646,7 +646,7 @@ static void tc_block_indr_cleanup(struct flow_block_cb *block_cb)
 	struct net_device *dev = block_cb->indr.dev;
 	struct Qdisc *sch = block_cb->indr.sch;
 	struct netlink_ext_ack extack = {};
-	struct flow_block_offload bo;
+	struct flow_block_offload bo = {};
 
 	tcf_block_offload_init(&bo, dev, sch, FLOW_BLOCK_UNBIND,
 			       block_cb->indr.binder_type,



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux