/linux/drivers/net/team/ |
H A D | team_core.c | 3 * drivers/net/team/team.c - Network team device driver 32 #define DRV_NAME "team" 65 static int team_port_set_team_dev_addr(struct team *team, in team_port_set_team_dev_addr() argument 68 return __set_port_dev_addr(port->dev, team->dev->dev_addr); in team_port_set_team_dev_addr() 71 int team_modeop_port_enter(struct team *team, struct team_port *port) in team_modeop_port_enter() argument 73 return team_port_set_team_dev_addr(team, port); in team_modeop_port_enter() 77 void team_modeop_port_change_dev_addr(struct team *team, in team_modeop_port_change_dev_addr() argument 80 team_port_set_team_dev_addr(team, port); in team_modeop_port_change_dev_addr() 118 static struct team_option *__team_find_option(struct team *team, in __team_find_option() argument 123 list_for_each_entry(option, &team->option_list, list) { in __team_find_option() [all …]
|
H A D | team_mode_loadbalance.c | 3 * drivers/net/team/team_mode_loadbalance.c - Load-balancing mode for team 17 static rx_handler_result_t lb_receive(struct team *team, struct team_port *port, in lb_receive() argument 32 typedef struct team_port *lb_select_tx_port_func_t(struct team *, 58 struct team *team; member 75 static struct lb_priv *get_lb_priv(struct team *team) in get_lb_priv() argument 77 return (struct lb_priv *) &team->mode_priv; in get_lb_priv() 96 static void lb_tx_hash_to_port_mapping_null_port(struct team *team, in lb_tx_hash_to_port_mapping_null_port() argument 99 struct lb_priv *lb_priv = get_lb_priv(team); in lb_tx_hash_to_port_mapping_null_port() 114 team_options_change_check(team); in lb_tx_hash_to_port_mapping_null_port() 118 static struct team_port *lb_hash_select_tx_port(struct team *team, in lb_hash_select_tx_port() argument [all …]
|
H A D | team_mode_activebackup.c | 3 * 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 D | team_mode_roundrobin.c | 3 * drivers/net/team/team_mode_roundrobin.c - Round-robin mode for team 18 static struct rr_priv *rr_priv(struct team *team) in rr_priv() argument 20 return (struct rr_priv *) &team->mode_priv; in rr_priv() 23 static bool rr_transmit(struct team *team, struct sk_buff *skb) in rr_transmit() argument 28 port_index = team_num_to_port_index(team, in rr_transmit() 29 rr_priv(team)->sent_packets++); in rr_transmit() 30 port = team_get_port_by_index_rcu(team, port_index); in rr_transmit() 33 port = team_get_first_port_txable_rcu(team, port); in rr_transmit() 36 if (team_dev_queue_xmit(team, port, skb)) in rr_transmit() 74 MODULE_DESCRIPTION("Round-robin mode for team");
|
H A D | Kconfig | 3 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 D | team_mode_random.c | 3 * drivers/net/team/team_mode_random.c - Random mode for team 14 static bool rnd_transmit(struct team *team, struct sk_buff *skb) in rnd_transmit() argument 19 port_index = get_random_u32_below(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() 63 MODULE_DESCRIPTION("Random mode for team");
|
H A D | team_mode_broadcast.c | 3 * 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 D | Makefile | 3 # Makefile for the network team driver 6 team-y:= team_core.o team_nl.o 7 obj-$(CONFIG_NET_TEAM) += team.o
|
H A D | team_nl.h | 3 /* Documentation/netlink/specs/team.yaml */ 18 /* Global operation policy for team */ 21 /* Ops table for team */
|
H A D | team_nl.c | 3 /* Documentation/netlink/specs/team.yaml */ 28 /* Global operation policy for team */ 34 /* Ops table for team */
|
/linux/include/linux/ |
H A D | if_team.h | 3 * include/linux/if_team.h - Network team device driver header 26 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); 122 void (*port_leave)(struct team *team, struct team_port *port); 123 void (*port_change_dev_addr)(struct team *team, struct team_port *port); [all …]
|
/linux/Documentation/netlink/specs/ |
H A D | team.yaml | 3 name: team 8 Network team device driver. 10 c-family-name: team-genl-name 11 c-version-name: team-genl-version 27 name: team 29 The team nested layout of get/set msg looks like 42 name-prefix: team-attr- 49 name: team-ifindex 61 name-prefix: team-attr-item- 63 attr-max-name: team-attr-item-option-max [all …]
|
/linux/Documentation/process/ |
H A D | embargoed-hardware-issues.rst | 25 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 D | security-bugs.rst | 9 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 69 While the kernel security team solely focuses on getting bugs fixed, 79 security team and other teams is difficult since for the kernel security 80 team occasional embargoes (as subject to a maximum allowed number of 85 As such, the kernel security team strongly recommends that as a reporter 94 Cc: the kernel security team. 99 The security team does not assign CVEs, nor do we require them for 103 assignment team<../process/cve>` to obtain one. [all …]
|
H A D | cve.rst | 16 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 D | stable-kernel-rules.rst | 47 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 D | authors.rst | 11 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/forwarding/ |
H A D | mirror_gre_lag_lacp.sh | 5 # team device. 24 # | + gt4 (gretap) ,-> + lag1 (team) | 40 # | + lag2 (team) ------> + gt4-dst (gretap) | 226 # Move $down_dev away from the team. That will prompt change in 242 # Recreate H3's team device, because mlxsw, which this test is
|
H A D | router_bridge_lag.sh | 7 # | + LAG1 (team) | | + LAG4 (team) | 22 # | | + LAG2 BR1 (802.1q) | + LAG3 (team) | 23 # | | (team) 192.0.2.2/28 | 192.0.2.129/28 |
|
H A D | router_bridge_1d_lag.sh | 12 # | + LAG1 (team) | 25 # | LAG2 (team) + | 44 # | + LAG3 (team) | 56 # | + LAG4 (team) |
|
/linux/Documentation/networking/ |
H A D | team.rst | 4 Team title 7 Team devices are driven from userspace via libteam library which is here:
|
/linux/tools/testing/selftests/drivers/net/team/ |
H A D | dev_addr_lists.sh | 4 # Test team device handling of addr lists (dev->uc, mc) 41 test_LAG_cleanup "team" "lacp"
|
/linux/include/uapi/linux/ |
H A D | if_team.h | 3 /* Documentation/netlink/specs/team.yaml */ 9 #define TEAM_GENL_NAME "team"
|
/linux/fs/smb/server/ |
H A D | Kconfig | 35 https://github.com/cifsd-team/ksmbd-tools. 38 (https://github.com/cifsd-team/ksmbd-tools/blob/master/README).
|
/linux/net/netfilter/ |
H A D | xt_mac.c | 5 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org> 20 MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
|