Home
last modified time | relevance | path

Searched refs:team (Results 1 – 25 of 51) sorted by relevance

123

/linux/drivers/net/team/
A Dteam.c557 void (*exit_op)(struct team *team) = team->ops.exit; in __team_change_mode()
630 struct team *team; in team_notify_peers_work() local
676 struct team *team; in team_mcast_rejoin_work() local
725 struct team *team; in team_handle_frame() local
735 team = port->team; in team_handle_frame()
1191 port->team = team; in team_port_add()
2289 struct team *team; in team_nl_team_get() local
2494 struct team *team; in team_nl_cmd_options_get() local
2519 struct team *team; in team_nl_cmd_options_set() local
2784 struct team *team; in team_nl_cmd_port_list_get() local
[all …]
A Dteam_mode_loadbalance.c60 struct team *team; member
77 static struct lb_priv *get_lb_priv(struct team *team) in get_lb_priv() argument
324 static void lb_bpf_func_free(struct team *team) in lb_bpf_func_free() argument
404 static int lb_hash_stats_init(struct team *team, in lb_hash_stats_init() argument
424 static int lb_port_stats_init(struct team *team, in lb_port_stats_init() argument
451 struct team *team) in __lb_stats_info_refresh_check() argument
477 struct team *team; in lb_stats_refresh() local
491 team = lb_priv_ex->team; in lb_stats_refresh()
603 static int lb_init(struct team *team) in lb_init() argument
617 lb_priv->ex->team = team; in lb_init()
[all …]
A Dteam_mode_activebackup.c21 static struct ab_priv *ab_priv(struct team *team) in ab_priv() argument
26 static rx_handler_result_t ab_receive(struct team *team, struct team_port *port, in ab_receive() argument
36 static bool ab_transmit(struct team *team, struct sk_buff *skb) in ab_transmit() argument
52 static void ab_port_leave(struct team *team, struct team_port *port) in ab_port_leave() argument
60 static int ab_active_port_init(struct team *team, in ab_active_port_init() argument
63 ab_priv(team)->ap_opt_inst_info = info; in ab_active_port_init()
67 static int ab_active_port_get(struct team *team, struct team_gsetter_ctx *ctx) in ab_active_port_get() argument
72 lockdep_is_held(&team->lock)); in ab_active_port_get()
80 static int ab_active_port_set(struct team *team, struct team_gsetter_ctx *ctx) in ab_active_port_set() argument
103 static int ab_init(struct team *team) in ab_init() argument
[all …]
A Dteam_mode_roundrobin.c19 static struct rr_priv *rr_priv(struct team *team) in rr_priv() argument
21 return (struct rr_priv *) &team->mode_priv; in rr_priv()
24 static bool rr_transmit(struct team *team, struct sk_buff *skb) in rr_transmit() argument
29 port_index = team_num_to_port_index(team, in rr_transmit()
30 rr_priv(team)->sent_packets++); in rr_transmit()
31 port = team_get_port_by_index_rcu(team, port_index); in rr_transmit()
34 port = team_get_first_port_txable_rcu(team, port); in rr_transmit()
37 if (team_dev_queue_xmit(team, port, skb)) in rr_transmit()
A DKconfig3 tristate "Ethernet team driver support"
11 "ip link add link [ address MAC ] [ NAME ] type team"
14 will be called team.
24 All added ports are setup to have team's device address.
26 To compile this team mode as a module, choose M here: the module
36 All added ports are setup to have team's device address.
38 To compile this team mode as a module, choose M here: the module
48 All added ports are setup to have team's device address.
50 To compile this team mode as a module, choose M here: the module
63 To compile this team mode as a module, choose M here: the module
[all …]
A Dteam_mode_random.c14 static bool rnd_transmit(struct team *team, struct sk_buff *skb) in rnd_transmit() argument
19 port_index = prandom_u32_max(team->en_port_count); in rnd_transmit()
20 port = team_get_port_by_index_rcu(team, port_index); in rnd_transmit()
23 port = team_get_first_port_txable_rcu(team, port); in rnd_transmit()
26 if (team_dev_queue_xmit(team, port, skb)) in rnd_transmit()
A Dteam_mode_broadcast.c15 static bool bc_transmit(struct team *team, struct sk_buff *skb) in bc_transmit() argument
23 list_for_each_entry_rcu(cur, &team->port_list, list) { in bc_transmit()
28 ret = !team_dev_queue_xmit(team, last, in bc_transmit()
38 ret = !team_dev_queue_xmit(team, last, skb); in bc_transmit()
A DMakefile6 obj-$(CONFIG_NET_TEAM) += team.o
/linux/include/linux/
A Dif_team.h26 struct team;
32 struct team *team; member
115 int (*init)(struct team *team);
116 void (*exit)(struct team *team);
117 rx_handler_result_t (*receive)(struct team *team,
120 bool (*transmit)(struct team *team, struct sk_buff *skb);
121 int (*port_enter)(struct team *team, struct team_port *port);
171 extern void team_options_change_check(struct team *team);
188 struct team { struct
301 extern int team_options_register(struct team *team,
[all …]
/linux/Documentation/process/
A Dembargoed-hardware-issues.rst25 The Linux kernel hardware security team is separate from the regular Linux
26 kernel security team.
28 The team only handles the coordination of embargoed hardware security
31 Linux kernel security team (:ref:`Documentation/admin-guide/
53 The current team of hardware security officers:
143 response team, but is not necessarily involved in the mitigation
164 that the expert is also part of the entity's response team.
170 team via the specific encrypted mailing-list.
210 by the incident team and brought into the development process.
232 Neither the hardware security team nor the initial response team assign
[all …]
A Dstable-kernel-rules.rst157 security kernel team, and not go through the normal review cycle.
158 Contact the kernel security team for more details on this procedure.
/linux/Documentation/admin-guide/cifs/
A Dauthors.rst11 Andrew Tridgell (Samba team) for his early suggestions about SMB/CIFS VFS
14 the IBM Linux JFS team for explaining many esoteric Linux filesystem features.
15 Jeremy Allison of the Samba team has done invaluable work in adding the server
24 thanks to the Samba team for their technical advice and encouragement.
42 - Kazeon team for various fixes especially for 2.4 version.
/linux/Documentation/admin-guide/
A Dsecurity-bugs.rst9 Linux kernel security team.
14 The Linux kernel security team can be contacted by email at
19 security team will bring in extra help from area maintainers to
76 the security team can assist with this coordination, or the reporter can
84 The security team does not normally assign CVEs, nor do we require them
95 The Linux kernel security team is not a formal body and therefore unable
/linux/fs/ksmbd/
A DKconfig34 https://github.com/cifsd-team/ksmbd-tools.
37 (https://github.com/cifsd-team/ksmbd-tools/blob/master/README).
/linux/Documentation/networking/
A Dindex.rst105 team
/linux/Documentation/translations/ja_JP/
A Dstable_kernel_rules.txt4 and JF Project team <www.linux.or.jp/JF>.
A Dstable_api_nonsense.txt4 and the JF Project team <http://www.linux.or.jp/JF/>.
A DSubmitChecklist4 and the JF Project team <http://www.linux.or.jp/JF/>.
A DSubmittingPatches4 and the JF Project team <http://www.linux.or.jp/JF/>.
/linux/drivers/net/
A DMakefile29 obj-$(CONFIG_NET_TEAM) += team/
/linux/Documentation/filesystems/cifs/
A Dksmbd.rst122 - https://github.com/cifsd-team/ksmbd-tools
131 https://github.com/cifsd-team/ksmbd-tools/blob/master/Documentation/configuration.txt
/linux/Documentation/nvdimm/
A Dmaintainer-entry-profile.rst39 be assigned a format-interface-code from the NVDIMM Sub-team of the ACPI
/linux/fs/reiserfs/
A DKconfig39 latest benchmarks.:-) Use of this option allows our team to go all
A DREADME97 Anatoly Pinchuk is a former member of our team who worked closely with
/linux/Documentation/driver-api/serial/
A Dmoxa-smartio.rst188 support team to get more help.

Completed in 52 milliseconds

123