forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This patch defines struct mptcp_sched_ops, which has three struct members, name, owner and list, and four function pointers: init(), release() and get_subflow(). The scheduler function get_subflow() have a struct mptcp_sched_data parameter, which contains a reinject flag for retrans or not, a subflows number and a mptcp_subflow_context array. Add the scheduler registering, unregistering and finding functions to add, delete and find a packet scheduler on the global list mptcp_sched_list. Acked-by: Paolo Abeni <[email protected]> Reviewed-by: Mat Martineau <[email protected]> Signed-off-by: Geliang Tang <[email protected]> Signed-off-by: Mat Martineau <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jakub Kicinski <[email protected]>
- Loading branch information
1 parent
ebc1e08
commit 740ebe3
Showing
4 changed files
with
81 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* Multipath TCP | ||
* | ||
* Copyright (c) 2022, SUSE. | ||
*/ | ||
|
||
#define pr_fmt(fmt) "MPTCP: " fmt | ||
|
||
#include <linux/kernel.h> | ||
#include <linux/module.h> | ||
#include <linux/list.h> | ||
#include <linux/rculist.h> | ||
#include <linux/spinlock.h> | ||
#include "protocol.h" | ||
|
||
static DEFINE_SPINLOCK(mptcp_sched_list_lock); | ||
static LIST_HEAD(mptcp_sched_list); | ||
|
||
/* Must be called with rcu read lock held */ | ||
struct mptcp_sched_ops *mptcp_sched_find(const char *name) | ||
{ | ||
struct mptcp_sched_ops *sched, *ret = NULL; | ||
|
||
list_for_each_entry_rcu(sched, &mptcp_sched_list, list) { | ||
if (!strcmp(sched->name, name)) { | ||
ret = sched; | ||
break; | ||
} | ||
} | ||
|
||
return ret; | ||
} | ||
|
||
int mptcp_register_scheduler(struct mptcp_sched_ops *sched) | ||
{ | ||
if (!sched->get_subflow) | ||
return -EINVAL; | ||
|
||
spin_lock(&mptcp_sched_list_lock); | ||
if (mptcp_sched_find(sched->name)) { | ||
spin_unlock(&mptcp_sched_list_lock); | ||
return -EEXIST; | ||
} | ||
list_add_tail_rcu(&sched->list, &mptcp_sched_list); | ||
spin_unlock(&mptcp_sched_list_lock); | ||
|
||
pr_debug("%s registered", sched->name); | ||
return 0; | ||
} | ||
|
||
void mptcp_unregister_scheduler(struct mptcp_sched_ops *sched) | ||
{ | ||
spin_lock(&mptcp_sched_list_lock); | ||
list_del_rcu(&sched->list); | ||
spin_unlock(&mptcp_sched_list_lock); | ||
} |