Home
last modified time | relevance | path

Searched full:team (Results 1 – 25 of 238) sorted by relevance

12345678910

/linux/drivers/net/team/
H A Dteam_core.c3 * drivers/net/team/team.c - Network team device driver
33 #define DRV_NAME "team"
66 static int team_port_set_team_dev_addr(struct team *team, in team_port_set_team_dev_addr() argument
69 return __set_port_dev_addr(port->dev, netdev_from_priv(team)->dev_addr); in team_port_set_team_dev_addr()
72 int team_modeop_port_enter(struct team *team, struct team_port *port) in team_modeop_port_enter() argument
74 return team_port_set_team_dev_addr(team, port); in team_modeop_port_enter()
78 void team_modeop_port_change_dev_addr(struct team *team, in team_modeop_port_change_dev_addr() argument
81 team_port_set_team_dev_addr(team, port); in team_modeop_port_change_dev_addr()
119 static struct team_option *__team_find_option(struct team *team, in __team_find_option() argument
124 list_for_each_entry(option, &team->option_list, list) { in __team_find_option()
[all …]
H A Dteam_mode_activebackup.c3 * drivers/net/team/team_mode_activebackup.c - Active-backup mode for team
21 static struct ab_priv *ab_priv(struct team *team) in ab_priv() argument
23 return (struct ab_priv *) &team->mode_priv; in ab_priv()
26 static rx_handler_result_t ab_receive(struct team *team, struct team_port *port, in ab_receive() argument
30 active_port = rcu_dereference(ab_priv(team)->active_port); in ab_receive()
36 static bool ab_transmit(struct team *team, struct sk_buff *skb) in ab_transmit() argument
40 active_port = rcu_dereference_bh(ab_priv(team)->active_port); in ab_transmit()
43 if (team_dev_queue_xmit(team, active_port, skb)) in ab_transmit()
52 static void ab_port_leave(struct team *team, struct team_port *port) in ab_port_leave() argument
54 if (ab_priv(team)->active_port == port) { in ab_port_leave()
[all …]
H A DKconfig3 tristate "Ethernet team driver support"
8 Team devices can be added using the "ip" command from the
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
[all …]
H A Dteam_mode_broadcast.c3 * drivers/net/team/team_mode_broadcast.c - Broadcast mode for team
14 static bool bc_transmit(struct team *team, struct sk_buff *skb) in bc_transmit() argument
22 list_for_each_entry_rcu(cur, &team->port_list, list) { in bc_transmit()
27 ret = !team_dev_queue_xmit(team, last, in bc_transmit()
37 ret = !team_dev_queue_xmit(team, last, skb); in bc_transmit()
72 MODULE_DESCRIPTION("Broadcast mode for team");
H A DMakefile3 # Makefile for the network team driver
6 team-y:= team_core.o team_nl.o
7 obj-$(CONFIG_NET_TEAM) += team.o
/linux/Documentation/process/
H 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 developing fixes for embargoed hardware security
30 handled by this team and the reporter will be guided to contact the regular
31 Linux kernel security team (:ref:`Documentation/admin-guide/
34 The team can be contacted by email at <hardware-security@kernel.org>. This
53 The current team of hardware security officers:
77 The Linux kernel hardware security team is not a formal body and therefore
94 The Linux kernel community has a dedicated hardware security team for
98 The hardware security team identifies the developers (domain experts) who
[all …]
H A Dcve.rst16 The Linux kernel developer team does have the ability to assign CVEs for
39 fixed. Because of this, the CVE assignment team is overly cautious and
42 kernel team.
44 If the CVE assignment team misses a specific fix that any user feels
46 and the team there will work with you on it. Note that no potential
58 contact the kernel CVE assignment team at <cve@kernel.org> to get an
63 team. A list of the currently supported kernel branches can be found at
86 can not be assigned by the Linux kernel CVE team, and must be asked for
91 CVE team should not be treated as a valid CVE. Please notify the
92 kernel CVE assignment team at <cve@kernel.org> so that they can work to
[all …]
H A Dsecurity-bugs.rst50 "system freezes each time I run this command"), the security team will help
78 It turns out that the majority of the bugs reported via the security team are
93 team's experience shows that bugs discovered this way systematically surface
100 privately: the security team would rather triage a borderline report than miss
109 affected subsystem's maintainers and Cc: the Linux kernel security team. Do
166 the Linux kernel security team only. Your message will be triaged, and you
173 A significant fraction of bug reports submitted to the security team are
235 The security team and maintainers almost always require additional
239 patches). Before contacting the security team, the reporter must ensure
247 security team who will ensure the message is delivered to the proper
[all …]
H A Dstable-kernel-rules.rst47 2. Ask the stable team to pick up a patch already mainlined.
48 3. Submit a patch to the stable team that is equivalent to a change already
82 To send additional instructions to the stable team, use a shell-style inline
121 Note, such tagging is unnecessary if the stable team can derive the
133 team's backporting tools (e.g AUTOSEL or scripts that look for commits
174 days, according to the schedules of the stable team members.
203 security kernel team, and not go through the normal review cycle.
204 Contact the kernel security team for more details on this procedure.
/linux/Documentation/admin-guide/cifs/
H A Dauthors.rst11 Andrew Tridgell (Samba team) for his early suggestions about SMB/CIFS VFS
13 this project, to Jim McDonough from IBM (and the Samba Team) for his help, to
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/tools/testing/selftests/net/
H A Drtnetlink.sh655 # macvlan -> bridge -> team -> dummy
660 local team="test_team1"
664 run_cmd ip link add $team type team
666 end_test "SKIP: team_bridge_macvlan: can't add team interface"
671 run_cmd ip link set $dummy master $team
672 run_cmd ip link set $team up
675 run_cmd ip link set $team master $bridge
682 run_cmd ip link del $team
699 local team="test_team1"
702 run_cmd ip link add $team up type team
[all …]
/linux/Documentation/networking/
H A Dteam.rst4 Team title
7 Team devices are driven from userspace via libteam library which is here:
/linux/tools/testing/selftests/drivers/net/team/
H A Ddev_addr_lists.sh4 # Test team device handling of addr lists (dev->uc, mc)
41 test_LAG_cleanup "team" "lacp"
H A Dnon_ether_header_ops.sh6 # g0 (gre) -> b0 (bond) -> t0 (team)
24 ip -n "$ns1" link add t0 type team
/linux/fs/smb/server/
H A DKconfig35 https://github.com/cifsd-team/ksmbd-tools.
38 (https://github.com/cifsd-team/ksmbd-tools/blob/master/README).
/linux/net/ipv4/netfilter/
H A Diptable_filter.c6 * Copyright (C) 2000-2004 Netfilter Core Team <coreteam@netfilter.org>
16 MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
H A Dipt_REJECT.c7 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
27 MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
H A Diptable_mangle.c6 * Copyright (C) 2000-2004 Netfilter Core Team <coreteam@netfilter.org>
19 MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
/linux/net/ipv6/netfilter/
H A Dip6table_filter.c6 * Copyright (C) 2000-2004 Netfilter Core Team <coreteam@netfilter.org>
15 MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
H A Dip6table_mangle.c6 * Copyright (C) 2000-2004 Netfilter Core Team <coreteam@netfilter.org>
14 MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
/linux/net/netfilter/
H A Dxt_MASQUERADE.c6 * (C) 2002-2006 Netfilter Core Team <coreteam@netfilter.org>
15 MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
H A Dxt_LOG.c7 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
114 MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
H A Dxt_multiport.c6 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
21 MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
/linux/tools/testing/selftests/drivers/net/bonding/
H A Dlag_lib.sh6 # Test that a link aggregation device (bonding, team) removes the hardware
24 elif [ "$driver" = "team" ]; then
26 ip link add "$name" type team
/linux/arch/powerpc/platforms/embedded6xx/
H A Dhlwd-pic.h6 * Copyright (C) 2009 The GameCube Linux Team

12345678910