cregit-Linux how code gets into the kernel

Release 4.18 drivers/infiniband/ulp/ipoib/ipoib_vlan.c

/*
 * Copyright (c) 2004 Topspin Communications.  All rights reserved.
 *
 * This software is available to you under a choice of one of two
 * licenses.  You may choose to be licensed under the terms of the GNU
 * General Public License (GPL) Version 2, available from the file
 * COPYING in the main directory of this source tree, or the
 * OpenIB.org BSD license below:
 *
 *     Redistribution and use in source and binary forms, with or
 *     without modification, are permitted provided that the following
 *     conditions are met:
 *
 *      - Redistributions of source code must retain the above
 *        copyright notice, this list of conditions and the following
 *        disclaimer.
 *
 *      - Redistributions in binary form must reproduce the above
 *        copyright notice, this list of conditions and the following
 *        disclaimer in the documentation and/or other materials
 *        provided with the distribution.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

#include <linux/module.h>
#include <linux/sched/signal.h>

#include <linux/init.h>
#include <linux/seq_file.h>

#include <linux/uaccess.h>

#include "ipoib.h"


static ssize_t show_parent(struct device *d, struct device_attribute *attr, char *buf) { struct net_device *dev = to_net_dev(d); struct ipoib_dev_priv *priv = ipoib_priv(dev); return sprintf(buf, "%s\n", priv->parent->name); }

Contributors

PersonTokensPropCommitsCommitProp
Roland Dreier4481.48%133.33%
Greg Kroah-Hartman916.67%133.33%
Erez Shitrit11.85%133.33%
Total54100.00%3100.00%

static DEVICE_ATTR(parent, S_IRUGO, show_parent, NULL);
int __ipoib_vlan_add(struct ipoib_dev_priv *ppriv, struct ipoib_dev_priv *priv, u16 pkey, int type) { int result; priv->max_ib_mtu = ppriv->max_ib_mtu; /* MTU will be reset when mcast join happens */ priv->dev->mtu = IPOIB_UD_MTU(priv->max_ib_mtu); priv->mcast_mtu = priv->admin_mtu = priv->dev->mtu; priv->parent = ppriv->dev; set_bit(IPOIB_FLAG_SUBINTERFACE, &priv->flags); ipoib_set_dev_features(priv, ppriv->ca); priv->pkey = pkey; memcpy(priv->dev->dev_addr, ppriv->dev->dev_addr, INFINIBAND_ALEN); memcpy(&priv->local_gid, &ppriv->local_gid, sizeof(priv->local_gid)); set_bit(IPOIB_FLAG_DEV_ADDR_SET, &priv->flags); priv->dev->broadcast[8] = pkey >> 8; priv->dev->broadcast[9] = pkey & 0xff; result = ipoib_dev_init(priv->dev, ppriv->ca, ppriv->port); if (result < 0) { ipoib_warn(ppriv, "failed to initialize subinterface: " "device %s, port %d", ppriv->ca->name, ppriv->port); goto err; } result = register_netdevice(priv->dev); if (result) { ipoib_warn(priv, "failed to initialize; error %i", result); goto register_failed; } /* RTNL childs don't need proprietary sysfs entries */ if (type == IPOIB_LEGACY_CHILD) { if (ipoib_cm_add_mode_attr(priv->dev)) goto sysfs_failed; if (ipoib_add_pkey_attr(priv->dev)) goto sysfs_failed; if (ipoib_add_umcast_attr(priv->dev)) goto sysfs_failed; if (device_create_file(&priv->dev->dev, &dev_attr_parent)) goto sysfs_failed; } priv->child_type = type; list_add_tail(&priv->list, &ppriv->child_intfs); return 0; sysfs_failed: result = -ENOMEM; unregister_netdevice(priv->dev); register_failed: ipoib_dev_cleanup(priv->dev); err: return result; }

Contributors

PersonTokensPropCommitsCommitProp
Roland Dreier20758.81%323.08%
Or Gerlitz5615.91%430.77%
Mark Bloch308.52%17.69%
Eli Cohen287.95%17.69%
Michael S. Tsirkin123.41%17.69%
Shirley Ma82.27%17.69%
Erez Shitrit82.27%17.69%
Greg Kroah-Hartman30.85%17.69%
Total352100.00%13100.00%


int ipoib_vlan_add(struct net_device *pdev, unsigned short pkey) { struct ipoib_dev_priv *ppriv, *priv; char intf_name[IFNAMSIZ]; struct ipoib_dev_priv *tpriv; int result; if (!capable(CAP_NET_ADMIN)) return -EPERM; ppriv = ipoib_priv(pdev); if (test_bit(IPOIB_FLAG_GOING_DOWN, &ppriv->flags)) return -EPERM; snprintf(intf_name, sizeof intf_name, "%s.%04x", ppriv->dev->name, pkey); if (!mutex_trylock(&ppriv->sysfs_mutex)) return restart_syscall(); if (!rtnl_trylock()) { mutex_unlock(&ppriv->sysfs_mutex); return restart_syscall(); } if (!down_write_trylock(&ppriv->vlan_rwsem)) { rtnl_unlock(); mutex_unlock(&ppriv->sysfs_mutex); return restart_syscall(); } priv = ipoib_intf_alloc(ppriv->ca, ppriv->port, intf_name); if (!priv) { result = -ENOMEM; goto out; } /* * First ensure this isn't a duplicate. We check the parent device and * then all of the legacy child interfaces to make sure the Pkey * doesn't match. */ if (ppriv->pkey == pkey) { result = -ENOTUNIQ; goto out; } list_for_each_entry(tpriv, &ppriv->child_intfs, list) { if (tpriv->pkey == pkey && tpriv->child_type == IPOIB_LEGACY_CHILD) { result = -ENOTUNIQ; goto out; } } result = __ipoib_vlan_add(ppriv, priv, pkey, IPOIB_LEGACY_CHILD); out: up_write(&ppriv->vlan_rwsem); rtnl_unlock(); mutex_unlock(&ppriv->sysfs_mutex); if (result && priv) { struct rdma_netdev *rn; rn = netdev_priv(priv->dev); rn->free_rdma_netdev(priv->dev); kfree(priv); } return result; }

Contributors

PersonTokensPropCommitsCommitProp
Or Gerlitz14948.38%17.69%
Erez Shitrit6721.75%430.77%
Shalom Lagziel3511.36%17.69%
Alex Vesker247.79%215.38%
Roland Dreier206.49%323.08%
Feras Daoud134.22%215.38%
Total308100.00%13100.00%


int ipoib_vlan_delete(struct net_device *pdev, unsigned short pkey) { struct ipoib_dev_priv *ppriv, *priv, *tpriv; struct net_device *dev = NULL; if (!capable(CAP_NET_ADMIN)) return -EPERM; ppriv = ipoib_priv(pdev); if (test_bit(IPOIB_FLAG_GOING_DOWN, &ppriv->flags)) return -EPERM; if (!mutex_trylock(&ppriv->sysfs_mutex)) return restart_syscall(); if (!rtnl_trylock()) { mutex_unlock(&ppriv->sysfs_mutex); return restart_syscall(); } if (!down_write_trylock(&ppriv->vlan_rwsem)) { rtnl_unlock(); mutex_unlock(&ppriv->sysfs_mutex); return restart_syscall(); } list_for_each_entry_safe(priv, tpriv, &ppriv->child_intfs, list) { if (priv->pkey == pkey && priv->child_type == IPOIB_LEGACY_CHILD) { list_del(&priv->list); dev = priv->dev; break; } } up_write(&ppriv->vlan_rwsem); if (dev) { ipoib_dbg(ppriv, "delete child vlan %s\n", dev->name); unregister_netdevice(dev); } rtnl_unlock(); mutex_unlock(&ppriv->sysfs_mutex); if (dev) { struct rdma_netdev *rn; rn = netdev_priv(dev); rn->free_rdma_netdev(priv->dev); kfree(priv); return 0; } return -ENODEV; }

Contributors

PersonTokensPropCommitsCommitProp
Roland Dreier12047.43%428.57%
Erez Shitrit5320.95%428.57%
Feras Daoud228.70%17.14%
Alex Vesker228.70%214.29%
Shalom Lagziel218.30%17.14%
Eric W. Biedermann93.56%17.14%
Or Gerlitz62.37%17.14%
Total253100.00%14100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Roland Dreier41741.78%517.24%
Or Gerlitz21121.14%413.79%
Erez Shitrit12912.93%620.69%
Shalom Lagziel565.61%13.45%
Alex Vesker464.61%26.90%
Feras Daoud353.51%310.34%
Mark Bloch303.01%13.45%
Eli Cohen282.81%13.45%
Greg Kroah-Hartman131.30%13.45%
Michael S. Tsirkin121.20%13.45%
Eric W. Biedermann90.90%13.45%
Shirley Ma80.80%13.45%
Ingo Molnar30.30%13.45%
Linus Torvalds10.10%13.45%
Total998100.00%29100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.