include/net/mptcp.h
122
#define MPTCP_PM_BUF_MAX (MPTCP_PM_NAME_MAX * MPTCP_PM_MAX)
include/net/mptcp.h
125
char name[MPTCP_PM_NAME_MAX];
net/mptcp/ctrl.c
199
strscpy(path_manager, name, MPTCP_PM_NAME_MAX);
net/mptcp/ctrl.c
213
char (*path_manager)[MPTCP_PM_NAME_MAX] = ctl->data;
net/mptcp/ctrl.c
214
char pm_name[MPTCP_PM_NAME_MAX];
net/mptcp/ctrl.c
217
.maxlen = MPTCP_PM_NAME_MAX,
net/mptcp/ctrl.c
221
strscpy(pm_name, *path_manager, MPTCP_PM_NAME_MAX);
net/mptcp/ctrl.c
229
if (strncmp(pm_name, "kernel", MPTCP_PM_NAME_MAX) == 0)
net/mptcp/ctrl.c
231
else if (strncmp(pm_name, "userspace", MPTCP_PM_NAME_MAX) == 0)
net/mptcp/ctrl.c
362
.maxlen = MPTCP_PM_NAME_MAX,
net/mptcp/ctrl.c
43
char path_manager[MPTCP_PM_NAME_MAX];