Patch "mptcp: allow changing the 'backup' bit when no sockets are open" has been added to the 5.14-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

    mptcp: allow changing the 'backup' bit when no sockets are open

to the 5.14-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:
     mptcp-allow-changing-the-backup-bit-when-no-sockets-.patch
and it can be found in the queue-5.14 subdirectory.

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



commit 17f926cc07a7e81463dfe3cd290daf8e5b78a701
Author: Davide Caratti <dcaratti@xxxxxxxxxx>
Date:   Thu Sep 23 17:04:12 2021 -0700

    mptcp: allow changing the 'backup' bit when no sockets are open
    
    [ Upstream commit 3f4a08909e2c740f8045efc74c4cf82eeaae3e36 ]
    
    current Linux refuses to change the 'backup' bit of MPTCP endpoints, i.e.
    using MPTCP_PM_CMD_SET_FLAGS, unless it finds (at least) one subflow that
    matches the endpoint address. There is no reason for that, so we can just
    ignore the return value of mptcp_nl_addr_backup(). In this way, endpoints
    can reconfigure their 'backup' flag even if no MPTCP sockets are open (or
    more generally, in case the MP_PRIO message is not sent out).
    
    Fixes: 0f9f696a502e ("mptcp: add set_flags command in PM netlink")
    Signed-off-by: Davide Caratti <dcaratti@xxxxxxxxxx>
    Signed-off-by: Mat Martineau <mathew.j.martineau@xxxxxxxxxxxxxxx>
    Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/net/mptcp/pm_netlink.c b/net/mptcp/pm_netlink.c
index 89251cbe9f1a..81103b29c0af 100644
--- a/net/mptcp/pm_netlink.c
+++ b/net/mptcp/pm_netlink.c
@@ -1558,9 +1558,7 @@ static int mptcp_nl_cmd_set_flags(struct sk_buff *skb, struct genl_info *info)
 
 	list_for_each_entry(entry, &pernet->local_addr_list, list) {
 		if (addresses_equal(&entry->addr, &addr.addr, true)) {
-			ret = mptcp_nl_addr_backup(net, &entry->addr, bkup);
-			if (ret)
-				return ret;
+			mptcp_nl_addr_backup(net, &entry->addr, bkup);
 
 			if (bkup)
 				entry->flags |= MPTCP_PM_ADDR_FLAG_BACKUP;



[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