|
@@ -379,6 +379,23 @@ static ssize_t store_multicast_snooping(struct device *d,
|
|
|
static DEVICE_ATTR(multicast_snooping, S_IRUGO | S_IWUSR,
|
|
|
show_multicast_snooping, store_multicast_snooping);
|
|
|
|
|
|
+static ssize_t show_multicast_querier(struct device *d,
|
|
|
+ struct device_attribute *attr,
|
|
|
+ char *buf)
|
|
|
+{
|
|
|
+ struct net_bridge *br = to_bridge(d);
|
|
|
+ return sprintf(buf, "%d\n", br->multicast_querier);
|
|
|
+}
|
|
|
+
|
|
|
+static ssize_t store_multicast_querier(struct device *d,
|
|
|
+ struct device_attribute *attr,
|
|
|
+ const char *buf, size_t len)
|
|
|
+{
|
|
|
+ return store_bridge_parm(d, buf, len, br_multicast_set_querier);
|
|
|
+}
|
|
|
+static DEVICE_ATTR(multicast_querier, S_IRUGO | S_IWUSR,
|
|
|
+ show_multicast_querier, store_multicast_querier);
|
|
|
+
|
|
|
static ssize_t show_hash_elasticity(struct device *d,
|
|
|
struct device_attribute *attr, char *buf)
|
|
|
{
|
|
@@ -702,6 +719,7 @@ static struct attribute *bridge_attrs[] = {
|
|
|
#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
|
|
|
&dev_attr_multicast_router.attr,
|
|
|
&dev_attr_multicast_snooping.attr,
|
|
|
+ &dev_attr_multicast_querier.attr,
|
|
|
&dev_attr_hash_elasticity.attr,
|
|
|
&dev_attr_hash_max.attr,
|
|
|
&dev_attr_multicast_last_member_count.attr,
|