From patchwork Wed Mar 11 04:55:58 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Somnath Kotur X-Patchwork-Id: 5977341 Return-Path: X-Original-To: patchwork-linux-rdma@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 2CA719F318 for ; Tue, 10 Mar 2015 12:31:02 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id EA17B20220 for ; Tue, 10 Mar 2015 12:31:00 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id AC9A920225 for ; Tue, 10 Mar 2015 12:30:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751318AbbCJMao (ORCPT ); Tue, 10 Mar 2015 08:30:44 -0400 Received: from cmexedge1.emulex.com ([138.239.224.99]:30543 "EHLO CMEXEDGE1.ext.emulex.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751666AbbCJMao (ORCPT ); Tue, 10 Mar 2015 08:30:44 -0400 Received: from CMEXHTCAS2.ad.emulex.com (138.239.115.218) by CMEXEDGE1.ext.emulex.com (138.239.224.99) with Microsoft SMTP Server (TLS) id 14.3.210.2; Tue, 10 Mar 2015 05:30:35 -0700 Received: from codebrowse.emulex.com (10.192.207.129) by smtp.emulex.com (138.239.115.208) with Microsoft SMTP Server id 14.3.210.2; Tue, 10 Mar 2015 05:30:28 -0700 From: Somnath Kotur To: CC: , Matan Barak , "Somnath Kotur" Subject: [PATCH v2 for-next 06/32] IB/core: Add RoCE cache bonding support Date: Wed, 11 Mar 2015 10:25:58 +0530 X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1426049785-30364-1-git-send-email-somnath.kotur@emulex.com> References: <1426049785-30364-1-git-send-email-somnath.kotur@emulex.com> MIME-Version: 1.0 Message-ID: <292bcc9a-fceb-4b4d-ad77-60a3d7125deb@CMEXHTCAS2.ad.emulex.com> Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org X-Spam-Status: No, score=-3.7 required=5.0 tests=BAYES_00, DATE_IN_FUTURE_12_24, RCVD_IN_DNSWL_HI,T_RP_MATCHES_RCVD,UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Matan Barak Bonding is a unique behavior since when working in active-backup mode, only the current selected slave should occupy the default GIDs and the master's GID. Listening to bonding events and only adding the required GIDs to the active slave in the RoCE cache GID table. Signed-off-by: Matan Barak Signed-off-by: Somnath Kotur --- drivers/infiniband/core/roce_gid_mgmt.c | 228 ++++++++++++++++++++++++++++++-- drivers/net/bonding/bond_options.c | 13 -- include/net/bonding.h | 7 + 3 files changed, 227 insertions(+), 21 deletions(-) diff --git a/drivers/infiniband/core/roce_gid_mgmt.c b/drivers/infiniband/core/roce_gid_mgmt.c index 3c11a64..bf7ef95 100644 --- a/drivers/infiniband/core/roce_gid_mgmt.c +++ b/drivers/infiniband/core/roce_gid_mgmt.c @@ -37,6 +37,7 @@ /* For in6_dev_get/in6_dev_put */ #include +#include #include #include @@ -55,7 +56,7 @@ struct update_gid_event_work { enum gid_op_type gid_op; }; -#define ROCE_NETDEV_CALLBACK_SZ 2 +#define ROCE_NETDEV_CALLBACK_SZ 3 struct netdev_event_work_cmd { roce_netdev_callback cb; roce_netdev_filter filter; @@ -127,22 +128,96 @@ static void update_gid(enum gid_op_type gid_op, struct ib_device *ib_dev, } } +#define IS_NETDEV_BONDING_MASTER(ndev) \ + (((ndev)->priv_flags & \ + (IFF_BONDING | IFF_MASTER)) == (IFF_BONDING | IFF_MASTER)) + +enum bonding_slave_state { + BONDING_SLAVE_STATE_ACTIVE = 1UL << 0, + BONDING_SLAVE_STATE_INACTIVE = 1UL << 1, + BONDING_SLAVE_STATE_NA = 1UL << 2, +}; + +static enum bonding_slave_state is_eth_active_slave_of_bonding(struct net_device *idev, + struct net_device *upper) +{ + if (upper && IS_NETDEV_BONDING_MASTER(upper)) { + struct net_device *pdev; + + rcu_read_lock(); + pdev = bond_option_active_slave_get_rcu(netdev_priv(upper)); + rcu_read_unlock(); + if (pdev) + return idev == pdev ? BONDING_SLAVE_STATE_ACTIVE : + BONDING_SLAVE_STATE_INACTIVE; + } + + return BONDING_SLAVE_STATE_NA; +} + +static bool is_upper_dev_rcu(struct net_device *dev, struct net_device *upper) +{ + struct net_device *_upper = NULL; + struct list_head *iter; + + rcu_read_lock(); + netdev_for_each_all_upper_dev_rcu(dev, _upper, iter) { + if (_upper == upper) + break; + } + + rcu_read_unlock(); + return _upper == upper; +} + +static int _is_eth_port_of_netdev(struct ib_device *ib_dev, u8 port, + struct net_device *idev, void *cookie, + unsigned long bond_state) +{ + struct net_device *ndev = (struct net_device *)cookie; + struct net_device *rdev; + int res; + + if (!idev) + return 0; + + rcu_read_lock(); + rdev = rdma_vlan_dev_real_dev(ndev); + if (!rdev) + rdev = ndev; + + res = ((is_upper_dev_rcu(idev, ndev) && + (is_eth_active_slave_of_bonding(idev, rdev) & + bond_state)) || + rdev == idev); + + rcu_read_unlock(); + return res; +} + static int is_eth_port_of_netdev(struct ib_device *ib_dev, u8 port, struct net_device *idev, void *cookie) { - struct net_device *rdev; - struct net_device *mdev; - struct net_device *ndev = (struct net_device *)cookie; + return _is_eth_port_of_netdev(ib_dev, port, idev, cookie, + BONDING_SLAVE_STATE_ACTIVE | + BONDING_SLAVE_STATE_NA); +} +static int is_eth_port_inactive_slave(struct ib_device *ib_dev, u8 port, + struct net_device *idev, void *cookie) +{ + struct net_device *mdev; + int res; if (!idev) return 0; rcu_read_lock(); mdev = netdev_master_upper_dev_get_rcu(idev); - rdev = rdma_vlan_dev_real_dev(ndev); + res = is_eth_active_slave_of_bonding(idev, mdev) == + BONDING_SLAVE_STATE_INACTIVE; rcu_read_unlock(); - return (rdev ? rdev : ndev) == (mdev ? mdev : idev); + return res; } static int pass_all_filter(struct ib_device *ib_dev, u8 port, @@ -151,6 +226,26 @@ static int pass_all_filter(struct ib_device *ib_dev, u8 port, return 1; } +static int bonding_slaves_filter(struct ib_device *ib_dev, u8 port, + struct net_device *idev, void *cookie) +{ + struct net_device *rdev; + struct net_device *ndev = (struct net_device *)cookie; + int res; + + rdev = rdma_vlan_dev_real_dev(ndev); + + ndev = rdev ? rdev : ndev; + if (!idev || !IS_NETDEV_BONDING_MASTER(ndev)) + return 0; + + rcu_read_lock(); + res = is_upper_dev_rcu(idev, ndev); + rcu_read_unlock(); + + return res; +} + static void netdevice_event_work_handler(struct work_struct *_work) { struct netdev_event_work *work = @@ -185,9 +280,20 @@ static void enum_netdev_default_gids(struct ib_device *ib_dev, struct net_device *idev) { unsigned long gid_type_mask; + struct net_device *rdev = rdma_vlan_dev_real_dev(ndev); - if (idev != ndev) + if (!rdev) + rdev = ndev; + + rcu_read_lock(); + if (!idev || + ((idev != ndev && !is_upper_dev_rcu(idev, ndev)) || + is_eth_active_slave_of_bonding(idev, rdev) == + BONDING_SLAVE_STATE_INACTIVE)) { + rcu_read_unlock(); return; + } + rcu_read_unlock(); gid_type_mask = gid_type_mask_support(ib_dev, port); @@ -195,6 +301,37 @@ static void enum_netdev_default_gids(struct ib_device *ib_dev, ROCE_GID_CACHE_DEFAULT_MODE_SET); } +static void bond_delete_netdev_default_gids(struct ib_device *ib_dev, + u8 port, struct net_device *ndev, + struct net_device *idev) +{ + struct net_device *rdev = rdma_vlan_dev_real_dev(ndev); + + if (!idev) + return; + + if (!rdev) + rdev = ndev; + + rcu_read_lock(); + + if (is_upper_dev_rcu(idev, ndev) && + is_eth_active_slave_of_bonding(idev, rdev) == + BONDING_SLAVE_STATE_INACTIVE) { + unsigned long gid_type_mask; + + rcu_read_unlock(); + + gid_type_mask = gid_type_mask_support(ib_dev, port); + + roce_gid_cache_set_default_gid(ib_dev, port, idev, + gid_type_mask, + ROCE_GID_CACHE_DEFAULT_MODE_DELETE); + } else { + rcu_read_unlock(); + } +} + static void enum_netdev_ipv4_ips(struct ib_device *ib_dev, u8 port, struct net_device *ndev) { @@ -290,6 +427,61 @@ static void del_netdev_ips(struct ib_device *ib_dev, u8 port, roce_del_all_netdev_gids(ib_dev, port, ndev); } +static void del_netdev_upper_ips(struct ib_device *ib_dev, u8 port, + struct net_device *idev, void *cookie) +{ + struct net_device *ndev = (struct net_device *)cookie; + struct net_device *rdev = rdma_vlan_dev_real_dev(ndev); + + if (!rdev) + rdev = ndev; + + if (idev == rdev) { + struct upper_list { + struct list_head list; + struct net_device *upper; + }; + struct net_device *upper; + struct list_head *iter; + struct upper_list *upper_iter; + struct upper_list *upper_temp; + LIST_HEAD(upper_list); + + rcu_read_lock(); + netdev_for_each_all_upper_dev_rcu(idev, upper, iter) { + struct upper_list *entry = kmalloc(sizeof(*entry), + GFP_ATOMIC); + + if (!entry) { + pr_info("roce_gid_mgmt: couldn't allocate entry to delete ndev\n"); + continue; + } + + list_add_tail(&entry->list, &upper_list); + dev_hold(upper); + entry->upper = upper; + } + rcu_read_unlock(); + + list_for_each_entry_safe(upper_iter, upper_temp, &upper_list, + list) { + roce_del_all_netdev_gids(ib_dev, port, + upper_iter->upper); + dev_put(upper_iter->upper); + list_del(&upper_iter->list); + kfree(upper_iter); + } + } +} + +static void del_netdev_default_ips(struct ib_device *ib_dev, u8 port, + struct net_device *idev, void *cookie) +{ + struct net_device *ndev = (struct net_device *)cookie; + + bond_delete_netdev_default_gids(ib_dev, port, ndev, idev); +} + static int netdevice_event(struct notifier_block *this, unsigned long event, void *ptr) { @@ -297,6 +489,12 @@ static int netdevice_event(struct notifier_block *this, unsigned long event, .cb = add_netdev_ips, .filter = is_eth_port_of_netdev}; static const struct netdev_event_work_cmd del_cmd = { .cb = del_netdev_ips, .filter = pass_all_filter}; + static const struct netdev_event_work_cmd bonding_default_del_cmd = { + .cb = del_netdev_default_ips, .filter = is_eth_port_inactive_slave}; + static const struct netdev_event_work_cmd bonding_event_ips_del_cmd = { + .cb = del_netdev_ips, .filter = bonding_slaves_filter}; + static const struct netdev_event_work_cmd upper_ips_del_cmd = { + .cb = del_netdev_upper_ips, .filter = pass_all_filter}; struct net_device *ndev = netdev_notifier_info_to_dev(ptr); struct netdev_event_work *ndev_work; struct netdev_event_work_cmd cmds[ROCE_NETDEV_CALLBACK_SZ] = { {NULL} }; @@ -307,7 +505,9 @@ static int netdevice_event(struct notifier_block *this, unsigned long event, switch (event) { case NETDEV_REGISTER: case NETDEV_UP: - cmds[0] = add_cmd; + case NETDEV_JOIN: + cmds[0] = bonding_default_del_cmd; + cmds[1] = add_cmd; break; case NETDEV_UNREGISTER: @@ -321,6 +521,18 @@ static int netdevice_event(struct notifier_block *this, unsigned long event, cmds[0] = del_cmd; cmds[1] = add_cmd; break; + + case NETDEV_CHANGEUPPER: + cmds[0] = upper_ips_del_cmd; + cmds[1] = add_cmd; + break; + + case NETDEV_BONDING_FAILOVER: + cmds[0] = bonding_event_ips_del_cmd; + cmds[1] = bonding_default_del_cmd; + cmds[2] = add_cmd; + break; + default: return NOTIFY_DONE; } diff --git a/drivers/net/bonding/bond_options.c b/drivers/net/bonding/bond_options.c index 1a61cc9..42e30e5 100644 --- a/drivers/net/bonding/bond_options.c +++ b/drivers/net/bonding/bond_options.c @@ -690,19 +690,6 @@ static int bond_option_mode_set(struct bonding *bond, return 0; } -static struct net_device *__bond_option_active_slave_get(struct bonding *bond, - struct slave *slave) -{ - return bond_uses_primary(bond) && slave ? slave->dev : NULL; -} - -struct net_device *bond_option_active_slave_get_rcu(struct bonding *bond) -{ - struct slave *slave = rcu_dereference(bond->curr_active_slave); - - return __bond_option_active_slave_get(bond, slave); -} - static int bond_option_active_slave_set(struct bonding *bond, const struct bond_opt_value *newval) { diff --git a/include/net/bonding.h b/include/net/bonding.h index a124173..23952a6 100644 --- a/include/net/bonding.h +++ b/include/net/bonding.h @@ -307,6 +307,13 @@ static inline bool bond_uses_primary(struct bonding *bond) return bond_mode_uses_primary(BOND_MODE(bond)); } +static inline struct net_device *bond_option_active_slave_get_rcu(struct bonding *bond) +{ + struct slave *slave = rcu_dereference(bond->curr_active_slave); + + return bond_uses_primary(bond) && slave ? slave->dev : NULL; +} + static inline bool bond_slave_is_up(struct slave *slave) { return netif_running(slave->dev) && netif_carrier_ok(slave->dev);