2009-06-15 15:11:30 -07:00
|
|
|
/*
|
2010-04-12 15:53:39 -04:00
|
|
|
* Copyright (c) 2009, 2010 Nicira Networks.
|
2009-06-15 15:11:30 -07:00
|
|
|
* Distributed under the terms of the GNU GPL version 2.
|
|
|
|
|
*
|
|
|
|
|
* Significant portions of this file may be copied from parts of the Linux
|
|
|
|
|
* kernel, by Linus Torvalds and others.
|
|
|
|
|
*/
|
|
|
|
|
|
2010-08-30 00:24:54 -07:00
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
|
|
2009-07-08 13:19:16 -07:00
|
|
|
#include <linux/version.h>
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Sysfs attributes of bridge for Open vSwitch
|
|
|
|
|
*
|
|
|
|
|
* This has been shamelessly copied from the kernel sources.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <linux/capability.h>
|
|
|
|
|
#include <linux/device.h>
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
|
#include <linux/netdevice.h>
|
|
|
|
|
#include <linux/if_bridge.h>
|
|
|
|
|
#include <linux/rtnetlink.h>
|
|
|
|
|
#include <linux/version.h>
|
|
|
|
|
|
2009-08-05 12:56:23 -07:00
|
|
|
#include "dp_sysfs.h"
|
2009-07-08 13:19:16 -07:00
|
|
|
#include "datapath.h"
|
2010-04-12 15:53:39 -04:00
|
|
|
#include "vport-internal_dev.h"
|
2009-07-08 13:19:16 -07:00
|
|
|
|
2009-06-12 16:45:01 -07:00
|
|
|
#ifdef CONFIG_SYSFS
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
|
|
|
/* Hack to attempt to build on more platforms. */
|
|
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,21)
|
2010-04-12 15:53:39 -04:00
|
|
|
#define INTERNAL_DEVICE_ATTR CLASS_DEVICE_ATTR
|
2009-06-12 16:45:01 -07:00
|
|
|
#define DEVICE_PARAMS struct class_device *d
|
|
|
|
|
#define DEVICE_ARGS d
|
|
|
|
|
#define DEV_ATTR(NAME) class_device_attr_##NAME
|
2009-07-08 13:19:16 -07:00
|
|
|
#else
|
2010-04-12 15:53:39 -04:00
|
|
|
#define INTERNAL_DEVICE_ATTR DEVICE_ATTR
|
2009-06-12 16:45:01 -07:00
|
|
|
#define DEVICE_PARAMS struct device *d, struct device_attribute *attr
|
|
|
|
|
#define DEVICE_ARGS d, attr
|
|
|
|
|
#define DEV_ATTR(NAME) dev_attr_##NAME
|
2009-07-08 13:19:16 -07:00
|
|
|
#endif
|
|
|
|
|
|
2010-04-12 15:53:39 -04:00
|
|
|
struct datapath *sysfs_get_dp(struct net_device *netdev)
|
|
|
|
|
{
|
2010-07-29 15:59:36 -07:00
|
|
|
struct vport *vport = internal_dev_get_vport(netdev);
|
|
|
|
|
struct dp_port *dp_port;
|
|
|
|
|
|
|
|
|
|
if (!vport)
|
|
|
|
|
return NULL;
|
2010-04-12 15:53:39 -04:00
|
|
|
|
2010-07-29 15:59:36 -07:00
|
|
|
dp_port = vport_get_dp_port(vport);
|
|
|
|
|
if (!dp_port)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
return dp_port->dp;
|
|
|
|
|
}
|
2009-07-08 13:19:16 -07:00
|
|
|
/*
|
|
|
|
|
* Common code for storing bridge parameters.
|
|
|
|
|
*/
|
2009-06-12 16:45:01 -07:00
|
|
|
static ssize_t store_bridge_parm(DEVICE_PARAMS,
|
2009-07-08 13:19:16 -07:00
|
|
|
const char *buf, size_t len,
|
|
|
|
|
void (*set)(struct datapath *, unsigned long))
|
|
|
|
|
{
|
|
|
|
|
char *endp;
|
|
|
|
|
unsigned long val;
|
2010-07-29 15:59:36 -07:00
|
|
|
ssize_t result = len;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
|
|
|
if (!capable(CAP_NET_ADMIN))
|
|
|
|
|
return -EPERM;
|
|
|
|
|
|
|
|
|
|
val = simple_strtoul(buf, &endp, 0);
|
|
|
|
|
if (endp == buf)
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
|
|
/* xxx We use a default value of 0 for all fields. If the caller is
|
|
|
|
|
* xxx attempting to set the value to our default, just silently
|
2010-08-30 00:24:53 -07:00
|
|
|
* xxx ignore the request.
|
2009-07-08 13:19:16 -07:00
|
|
|
*/
|
|
|
|
|
if (val != 0) {
|
2010-07-29 15:59:36 -07:00
|
|
|
struct datapath *dp;
|
|
|
|
|
|
|
|
|
|
rcu_read_lock();
|
|
|
|
|
|
|
|
|
|
dp = sysfs_get_dp(to_net_dev(d));
|
|
|
|
|
if (dp)
|
2010-08-30 00:24:53 -07:00
|
|
|
printk("%s: xxx writing dp parms not supported yet!\n",
|
2010-07-29 15:59:36 -07:00
|
|
|
dp_name(dp));
|
|
|
|
|
else
|
|
|
|
|
result = -ENODEV;
|
|
|
|
|
|
|
|
|
|
rcu_read_unlock();
|
2009-07-08 13:19:16 -07:00
|
|
|
}
|
2010-07-29 14:42:17 -07:00
|
|
|
|
2010-07-29 15:59:36 -07:00
|
|
|
return result;
|
2009-07-08 13:19:16 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2009-06-12 16:45:01 -07:00
|
|
|
static ssize_t show_forward_delay(DEVICE_PARAMS, char *buf)
|
2009-07-08 13:19:16 -07:00
|
|
|
{
|
|
|
|
|
return sprintf(buf, "%d\n", 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void set_forward_delay(struct datapath *dp, unsigned long val)
|
|
|
|
|
{
|
|
|
|
|
printk("%s: xxx attempt to set_forward_delay()\n", dp_name(dp));
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-12 16:45:01 -07:00
|
|
|
static ssize_t store_forward_delay(DEVICE_PARAMS,
|
2009-07-08 13:19:16 -07:00
|
|
|
const char *buf, size_t len)
|
|
|
|
|
{
|
2009-06-12 16:45:01 -07:00
|
|
|
return store_bridge_parm(DEVICE_ARGS, buf, len, set_forward_delay);
|
2009-07-08 13:19:16 -07:00
|
|
|
}
|
2010-04-12 15:53:39 -04:00
|
|
|
static INTERNAL_DEVICE_ATTR(forward_delay, S_IRUGO | S_IWUSR,
|
2009-07-08 13:19:16 -07:00
|
|
|
show_forward_delay, store_forward_delay);
|
|
|
|
|
|
2009-06-12 16:45:01 -07:00
|
|
|
static ssize_t show_hello_time(DEVICE_PARAMS, char *buf)
|
2009-07-08 13:19:16 -07:00
|
|
|
{
|
|
|
|
|
return sprintf(buf, "%d\n", 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void set_hello_time(struct datapath *dp, unsigned long val)
|
|
|
|
|
{
|
|
|
|
|
printk("%s: xxx attempt to set_hello_time()\n", dp_name(dp));
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-12 16:45:01 -07:00
|
|
|
static ssize_t store_hello_time(DEVICE_PARAMS,
|
2009-07-08 13:19:16 -07:00
|
|
|
const char *buf,
|
|
|
|
|
size_t len)
|
|
|
|
|
{
|
2009-06-12 16:45:01 -07:00
|
|
|
return store_bridge_parm(DEVICE_ARGS, buf, len, set_hello_time);
|
2009-07-08 13:19:16 -07:00
|
|
|
}
|
2010-04-12 15:53:39 -04:00
|
|
|
static INTERNAL_DEVICE_ATTR(hello_time, S_IRUGO | S_IWUSR, show_hello_time,
|
2009-07-08 13:19:16 -07:00
|
|
|
store_hello_time);
|
|
|
|
|
|
2009-06-12 16:45:01 -07:00
|
|
|
static ssize_t show_max_age(DEVICE_PARAMS, char *buf)
|
2009-07-08 13:19:16 -07:00
|
|
|
{
|
|
|
|
|
return sprintf(buf, "%d\n", 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void set_max_age(struct datapath *dp, unsigned long val)
|
|
|
|
|
{
|
|
|
|
|
printk("%s: xxx attempt to set_max_age()\n", dp_name(dp));
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-12 16:45:01 -07:00
|
|
|
static ssize_t store_max_age(DEVICE_PARAMS,
|
2009-07-08 13:19:16 -07:00
|
|
|
const char *buf, size_t len)
|
|
|
|
|
{
|
2009-06-12 16:45:01 -07:00
|
|
|
return store_bridge_parm(DEVICE_ARGS, buf, len, set_max_age);
|
2009-07-08 13:19:16 -07:00
|
|
|
}
|
2010-04-12 15:53:39 -04:00
|
|
|
static INTERNAL_DEVICE_ATTR(max_age, S_IRUGO | S_IWUSR, show_max_age, store_max_age);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
2009-06-12 16:45:01 -07:00
|
|
|
static ssize_t show_ageing_time(DEVICE_PARAMS, char *buf)
|
2009-07-08 13:19:16 -07:00
|
|
|
{
|
|
|
|
|
return sprintf(buf, "%d\n", 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void set_ageing_time(struct datapath *dp, unsigned long val)
|
|
|
|
|
{
|
|
|
|
|
printk("%s: xxx attempt to set_ageing_time()\n", dp_name(dp));
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-12 16:45:01 -07:00
|
|
|
static ssize_t store_ageing_time(DEVICE_PARAMS,
|
2009-07-08 13:19:16 -07:00
|
|
|
const char *buf, size_t len)
|
|
|
|
|
{
|
2009-06-12 16:45:01 -07:00
|
|
|
return store_bridge_parm(DEVICE_ARGS, buf, len, set_ageing_time);
|
2009-07-08 13:19:16 -07:00
|
|
|
}
|
2010-04-12 15:53:39 -04:00
|
|
|
static INTERNAL_DEVICE_ATTR(ageing_time, S_IRUGO | S_IWUSR, show_ageing_time,
|
2009-07-08 13:19:16 -07:00
|
|
|
store_ageing_time);
|
|
|
|
|
|
2009-06-12 16:45:01 -07:00
|
|
|
static ssize_t show_stp_state(DEVICE_PARAMS, char *buf)
|
2009-07-08 13:19:16 -07:00
|
|
|
{
|
|
|
|
|
return sprintf(buf, "%d\n", 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2009-06-12 16:45:01 -07:00
|
|
|
static ssize_t store_stp_state(DEVICE_PARAMS,
|
2009-07-08 13:19:16 -07:00
|
|
|
const char *buf,
|
|
|
|
|
size_t len)
|
|
|
|
|
{
|
2010-07-29 15:59:36 -07:00
|
|
|
struct datapath *dp;
|
|
|
|
|
ssize_t result = len;
|
|
|
|
|
|
|
|
|
|
rcu_read_lock();
|
2009-07-08 13:19:16 -07:00
|
|
|
|
2010-07-29 15:59:36 -07:00
|
|
|
dp = sysfs_get_dp(to_net_dev(d));
|
|
|
|
|
if (dp)
|
|
|
|
|
printk("%s: xxx attempt to set_stp_state()\n", dp_name(dp));
|
|
|
|
|
else
|
|
|
|
|
result = -ENODEV;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
2010-07-29 15:59:36 -07:00
|
|
|
rcu_read_unlock();
|
|
|
|
|
|
|
|
|
|
return result;
|
2009-07-08 13:19:16 -07:00
|
|
|
}
|
2010-04-12 15:53:39 -04:00
|
|
|
static INTERNAL_DEVICE_ATTR(stp_state, S_IRUGO | S_IWUSR, show_stp_state,
|
2009-07-08 13:19:16 -07:00
|
|
|
store_stp_state);
|
|
|
|
|
|
2009-06-12 16:45:01 -07:00
|
|
|
static ssize_t show_priority(DEVICE_PARAMS, char *buf)
|
2009-07-08 13:19:16 -07:00
|
|
|
{
|
|
|
|
|
return sprintf(buf, "%d\n", 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void set_priority(struct datapath *dp, unsigned long val)
|
|
|
|
|
{
|
|
|
|
|
printk("%s: xxx attempt to set_priority()\n", dp_name(dp));
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-12 16:45:01 -07:00
|
|
|
static ssize_t store_priority(DEVICE_PARAMS,
|
2009-07-08 13:19:16 -07:00
|
|
|
const char *buf, size_t len)
|
|
|
|
|
{
|
2009-06-12 16:45:01 -07:00
|
|
|
return store_bridge_parm(DEVICE_ARGS, buf, len, set_priority);
|
2009-07-08 13:19:16 -07:00
|
|
|
}
|
2010-04-12 15:53:39 -04:00
|
|
|
static INTERNAL_DEVICE_ATTR(priority, S_IRUGO | S_IWUSR, show_priority, store_priority);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
2009-06-12 16:45:01 -07:00
|
|
|
static ssize_t show_root_id(DEVICE_PARAMS, char *buf)
|
2009-07-08 13:19:16 -07:00
|
|
|
{
|
|
|
|
|
return sprintf(buf, "0000.010203040506\n");
|
|
|
|
|
}
|
2010-04-12 15:53:39 -04:00
|
|
|
static INTERNAL_DEVICE_ATTR(root_id, S_IRUGO, show_root_id, NULL);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
2009-06-12 16:45:01 -07:00
|
|
|
static ssize_t show_bridge_id(DEVICE_PARAMS, char *buf)
|
2009-07-08 13:19:16 -07:00
|
|
|
{
|
2010-07-29 15:59:36 -07:00
|
|
|
struct vport *vport;
|
|
|
|
|
ssize_t result;
|
|
|
|
|
|
|
|
|
|
rcu_read_lock();
|
|
|
|
|
|
|
|
|
|
vport = internal_dev_get_vport(to_net_dev(d));
|
|
|
|
|
if (vport) {
|
|
|
|
|
const unsigned char *addr;
|
|
|
|
|
|
|
|
|
|
addr = vport_get_addr(vport);
|
|
|
|
|
result = sprintf(buf, "%.2x%.2x.%.2x%.2x%.2x%.2x%.2x%.2x\n",
|
|
|
|
|
0, 0, addr[0], addr[1], addr[2], addr[3], addr[4], addr[5]);
|
|
|
|
|
} else
|
|
|
|
|
result = -ENODEV;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
2010-07-29 15:59:36 -07:00
|
|
|
rcu_read_unlock();
|
|
|
|
|
|
|
|
|
|
return result;
|
2009-07-08 13:19:16 -07:00
|
|
|
}
|
2010-04-12 15:53:39 -04:00
|
|
|
static INTERNAL_DEVICE_ATTR(bridge_id, S_IRUGO, show_bridge_id, NULL);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
2009-06-12 16:45:01 -07:00
|
|
|
static ssize_t show_root_port(DEVICE_PARAMS, char *buf)
|
2009-07-08 13:19:16 -07:00
|
|
|
{
|
|
|
|
|
return sprintf(buf, "%d\n", 0);
|
|
|
|
|
}
|
2010-04-12 15:53:39 -04:00
|
|
|
static INTERNAL_DEVICE_ATTR(root_port, S_IRUGO, show_root_port, NULL);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
2009-06-12 16:45:01 -07:00
|
|
|
static ssize_t show_root_path_cost(DEVICE_PARAMS, char *buf)
|
2009-07-08 13:19:16 -07:00
|
|
|
{
|
|
|
|
|
return sprintf(buf, "%d\n", 0);
|
|
|
|
|
}
|
2010-04-12 15:53:39 -04:00
|
|
|
static INTERNAL_DEVICE_ATTR(root_path_cost, S_IRUGO, show_root_path_cost, NULL);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
2009-06-12 16:45:01 -07:00
|
|
|
static ssize_t show_topology_change(DEVICE_PARAMS, char *buf)
|
2009-07-08 13:19:16 -07:00
|
|
|
{
|
|
|
|
|
return sprintf(buf, "%d\n", 0);
|
|
|
|
|
}
|
2010-04-12 15:53:39 -04:00
|
|
|
static INTERNAL_DEVICE_ATTR(topology_change, S_IRUGO, show_topology_change, NULL);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
2009-06-12 16:45:01 -07:00
|
|
|
static ssize_t show_topology_change_detected(DEVICE_PARAMS, char *buf)
|
2009-07-08 13:19:16 -07:00
|
|
|
{
|
|
|
|
|
return sprintf(buf, "%d\n", 0);
|
|
|
|
|
}
|
2010-04-12 15:53:39 -04:00
|
|
|
static INTERNAL_DEVICE_ATTR(topology_change_detected, S_IRUGO,
|
2009-07-08 13:19:16 -07:00
|
|
|
show_topology_change_detected, NULL);
|
|
|
|
|
|
2009-06-12 16:45:01 -07:00
|
|
|
static ssize_t show_hello_timer(DEVICE_PARAMS, char *buf)
|
2009-07-08 13:19:16 -07:00
|
|
|
{
|
|
|
|
|
return sprintf(buf, "%d\n", 0);
|
|
|
|
|
}
|
2010-04-12 15:53:39 -04:00
|
|
|
static INTERNAL_DEVICE_ATTR(hello_timer, S_IRUGO, show_hello_timer, NULL);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
2009-06-12 16:45:01 -07:00
|
|
|
static ssize_t show_tcn_timer(DEVICE_PARAMS, char *buf)
|
2009-07-08 13:19:16 -07:00
|
|
|
{
|
|
|
|
|
return sprintf(buf, "%d\n", 0);
|
|
|
|
|
}
|
2010-04-12 15:53:39 -04:00
|
|
|
static INTERNAL_DEVICE_ATTR(tcn_timer, S_IRUGO, show_tcn_timer, NULL);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
2009-06-12 16:45:01 -07:00
|
|
|
static ssize_t show_topology_change_timer(DEVICE_PARAMS, char *buf)
|
2009-07-08 13:19:16 -07:00
|
|
|
{
|
|
|
|
|
return sprintf(buf, "%d\n", 0);
|
|
|
|
|
}
|
2010-04-12 15:53:39 -04:00
|
|
|
static INTERNAL_DEVICE_ATTR(topology_change_timer, S_IRUGO, show_topology_change_timer,
|
2009-07-08 13:19:16 -07:00
|
|
|
NULL);
|
|
|
|
|
|
2009-06-12 16:45:01 -07:00
|
|
|
static ssize_t show_gc_timer(DEVICE_PARAMS, char *buf)
|
2009-07-08 13:19:16 -07:00
|
|
|
{
|
|
|
|
|
return sprintf(buf, "%d\n", 0);
|
|
|
|
|
}
|
2010-04-12 15:53:39 -04:00
|
|
|
static INTERNAL_DEVICE_ATTR(gc_timer, S_IRUGO, show_gc_timer, NULL);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
2009-06-12 16:45:01 -07:00
|
|
|
static ssize_t show_group_addr(DEVICE_PARAMS, char *buf)
|
2009-07-08 13:19:16 -07:00
|
|
|
{
|
|
|
|
|
return sprintf(buf, "00:01:02:03:04:05\n");
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-12 16:45:01 -07:00
|
|
|
static ssize_t store_group_addr(DEVICE_PARAMS,
|
2009-07-08 13:19:16 -07:00
|
|
|
const char *buf, size_t len)
|
|
|
|
|
{
|
2010-07-29 15:59:36 -07:00
|
|
|
struct datapath *dp;
|
|
|
|
|
ssize_t result = len;
|
|
|
|
|
|
|
|
|
|
rcu_read_lock();
|
|
|
|
|
|
|
|
|
|
dp = sysfs_get_dp(to_net_dev(d));
|
|
|
|
|
if (dp)
|
|
|
|
|
printk("%s: xxx attempt to store_group_addr()\n", dp_name(dp));
|
|
|
|
|
else
|
|
|
|
|
result = -ENODEV;
|
|
|
|
|
|
|
|
|
|
rcu_read_unlock();
|
2009-07-08 13:19:16 -07:00
|
|
|
|
2010-07-29 15:59:36 -07:00
|
|
|
return result;
|
2009-07-08 13:19:16 -07:00
|
|
|
}
|
|
|
|
|
|
2010-04-12 15:53:39 -04:00
|
|
|
static INTERNAL_DEVICE_ATTR(group_addr, S_IRUGO | S_IWUSR,
|
2009-07-08 13:19:16 -07:00
|
|
|
show_group_addr, store_group_addr);
|
|
|
|
|
|
|
|
|
|
static struct attribute *bridge_attrs[] = {
|
2009-06-12 16:45:01 -07:00
|
|
|
&DEV_ATTR(forward_delay).attr,
|
|
|
|
|
&DEV_ATTR(hello_time).attr,
|
|
|
|
|
&DEV_ATTR(max_age).attr,
|
|
|
|
|
&DEV_ATTR(ageing_time).attr,
|
|
|
|
|
&DEV_ATTR(stp_state).attr,
|
|
|
|
|
&DEV_ATTR(priority).attr,
|
|
|
|
|
&DEV_ATTR(bridge_id).attr,
|
|
|
|
|
&DEV_ATTR(root_id).attr,
|
|
|
|
|
&DEV_ATTR(root_path_cost).attr,
|
|
|
|
|
&DEV_ATTR(root_port).attr,
|
|
|
|
|
&DEV_ATTR(topology_change).attr,
|
|
|
|
|
&DEV_ATTR(topology_change_detected).attr,
|
|
|
|
|
&DEV_ATTR(hello_timer).attr,
|
|
|
|
|
&DEV_ATTR(tcn_timer).attr,
|
|
|
|
|
&DEV_ATTR(topology_change_timer).attr,
|
|
|
|
|
&DEV_ATTR(gc_timer).attr,
|
|
|
|
|
&DEV_ATTR(group_addr).attr,
|
2009-07-08 13:19:16 -07:00
|
|
|
NULL
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static struct attribute_group bridge_group = {
|
2009-08-14 13:41:44 -07:00
|
|
|
.name = SYSFS_BRIDGE_ATTR, /* "bridge" */
|
2009-07-08 13:19:16 -07:00
|
|
|
.attrs = bridge_attrs,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Add entries in sysfs onto the existing network class device
|
|
|
|
|
* for the bridge.
|
|
|
|
|
* Adds a attribute group "bridge" containing tuning parameters.
|
|
|
|
|
* Sub directory to hold links to interfaces.
|
|
|
|
|
*
|
|
|
|
|
* Note: the ifobj exists only to be a subdirectory
|
|
|
|
|
* to hold links. The ifobj exists in the same data structure
|
|
|
|
|
* as its parent the bridge so reference counting works.
|
|
|
|
|
*/
|
2009-08-05 12:56:23 -07:00
|
|
|
int dp_sysfs_add_dp(struct datapath *dp)
|
2009-07-08 13:19:16 -07:00
|
|
|
{
|
2010-04-12 15:53:39 -04:00
|
|
|
struct kobject *kobj = vport_get_kobj(dp->ports[ODPP_LOCAL]->vport);
|
2009-07-08 13:19:16 -07:00
|
|
|
int err;
|
|
|
|
|
|
2009-08-14 13:41:44 -07:00
|
|
|
/* Create /sys/class/net/<devname>/bridge directory. */
|
2009-07-08 13:19:16 -07:00
|
|
|
err = sysfs_create_group(kobj, &bridge_group);
|
|
|
|
|
if (err) {
|
|
|
|
|
pr_info("%s: can't create group %s/%s\n",
|
|
|
|
|
__func__, dp_name(dp), bridge_group.name);
|
|
|
|
|
goto out1;
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-19 13:03:46 -07:00
|
|
|
/* Create /sys/class/net/<devname>/brif directory. */
|
|
|
|
|
err = kobject_add(&dp->ifobj, kobj, SYSFS_BRIDGE_PORT_SUBDIR);
|
2009-07-08 13:19:16 -07:00
|
|
|
if (err) {
|
|
|
|
|
pr_info("%s: can't add kobject (directory) %s/%s\n",
|
2009-06-12 16:45:01 -07:00
|
|
|
__FUNCTION__, dp_name(dp), kobject_name(&dp->ifobj));
|
2009-07-08 13:19:16 -07:00
|
|
|
goto out2;
|
|
|
|
|
}
|
2009-08-05 13:45:13 -07:00
|
|
|
kobject_uevent(&dp->ifobj, KOBJ_ADD);
|
2009-07-08 13:19:16 -07:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
out2:
|
|
|
|
|
sysfs_remove_group(kobj, &bridge_group);
|
|
|
|
|
out1:
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-05 12:56:23 -07:00
|
|
|
int dp_sysfs_del_dp(struct datapath *dp)
|
2009-07-08 13:19:16 -07:00
|
|
|
{
|
2010-04-12 15:53:39 -04:00
|
|
|
struct kobject *kobj = vport_get_kobj(dp->ports[ODPP_LOCAL]->vport);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
2009-08-05 13:45:13 -07:00
|
|
|
kobject_del(&dp->ifobj);
|
2009-07-08 13:19:16 -07:00
|
|
|
sysfs_remove_group(kobj, &bridge_group);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2009-06-12 16:45:01 -07:00
|
|
|
#else /* !CONFIG_SYSFS */
|
2009-08-05 12:56:23 -07:00
|
|
|
int dp_sysfs_add_dp(struct datapath *dp) { return 0; }
|
|
|
|
|
int dp_sysfs_del_dp(struct datapath *dp) { return 0; }
|
2010-04-12 15:53:39 -04:00
|
|
|
int dp_sysfs_add_if(struct dp_port *p) { return 0; }
|
|
|
|
|
int dp_sysfs_del_if(struct dp_port *p) { return 0; }
|
2009-06-12 16:45:01 -07:00
|
|
|
#endif /* !CONFIG_SYSFS */
|