OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [net/] [bridge/] [br_notify.c] - Diff between revs 1275 and 1765

Only display areas with differences | Details | Blame | View Log

Rev 1275 Rev 1765
/*
/*
 *      Device event handling
 *      Device event handling
 *      Linux ethernet bridge
 *      Linux ethernet bridge
 *
 *
 *      Authors:
 *      Authors:
 *      Lennert Buytenhek               <buytenh@gnu.org>
 *      Lennert Buytenhek               <buytenh@gnu.org>
 *
 *
 *      $Id: br_notify.c,v 1.1.1.1 2004-04-15 01:16:27 phoenix Exp $
 *      $Id: br_notify.c,v 1.1.1.1 2004-04-15 01:16:27 phoenix Exp $
 *
 *
 *      This program is free software; you can redistribute it and/or
 *      This program is free software; you can redistribute it and/or
 *      modify it under the terms of the GNU General Public License
 *      modify it under the terms of the GNU General Public License
 *      as published by the Free Software Foundation; either version
 *      as published by the Free Software Foundation; either version
 *      2 of the License, or (at your option) any later version.
 *      2 of the License, or (at your option) any later version.
 */
 */
 
 
#include <linux/kernel.h>
#include <linux/kernel.h>
#include <linux/if_bridge.h>
#include <linux/if_bridge.h>
#include "br_private.h"
#include "br_private.h"
 
 
static int br_device_event(struct notifier_block *unused, unsigned long event, void *ptr);
static int br_device_event(struct notifier_block *unused, unsigned long event, void *ptr);
 
 
struct notifier_block br_device_notifier =
struct notifier_block br_device_notifier =
{
{
        br_device_event,
        br_device_event,
        NULL,
        NULL,
        0
        0
};
};
 
 
static int br_device_event(struct notifier_block *unused, unsigned long event, void *ptr)
static int br_device_event(struct notifier_block *unused, unsigned long event, void *ptr)
{
{
        struct net_device *dev;
        struct net_device *dev;
        struct net_bridge_port *p;
        struct net_bridge_port *p;
 
 
        dev = ptr;
        dev = ptr;
        p = dev->br_port;
        p = dev->br_port;
 
 
        if (p == NULL)
        if (p == NULL)
                return NOTIFY_DONE;
                return NOTIFY_DONE;
 
 
        switch (event)
        switch (event)
        {
        {
        case NETDEV_CHANGEADDR:
        case NETDEV_CHANGEADDR:
                read_lock(&p->br->lock);
                read_lock(&p->br->lock);
                br_fdb_changeaddr(p, dev->dev_addr);
                br_fdb_changeaddr(p, dev->dev_addr);
                br_stp_recalculate_bridge_id(p->br);
                br_stp_recalculate_bridge_id(p->br);
                read_unlock(&p->br->lock);
                read_unlock(&p->br->lock);
                break;
                break;
 
 
        case NETDEV_GOING_DOWN:
        case NETDEV_GOING_DOWN:
                /* extend the protocol to send some kind of notification? */
                /* extend the protocol to send some kind of notification? */
                break;
                break;
 
 
        case NETDEV_DOWN:
        case NETDEV_DOWN:
                if (p->br->dev.flags & IFF_UP) {
                if (p->br->dev.flags & IFF_UP) {
                        read_lock(&p->br->lock);
                        read_lock(&p->br->lock);
                        br_stp_disable_port(dev->br_port);
                        br_stp_disable_port(dev->br_port);
                        read_unlock(&p->br->lock);
                        read_unlock(&p->br->lock);
                }
                }
                break;
                break;
 
 
        case NETDEV_UP:
        case NETDEV_UP:
                if (p->br->dev.flags & IFF_UP) {
                if (p->br->dev.flags & IFF_UP) {
                        read_lock(&p->br->lock);
                        read_lock(&p->br->lock);
                        br_stp_enable_port(dev->br_port);
                        br_stp_enable_port(dev->br_port);
                        read_unlock(&p->br->lock);
                        read_unlock(&p->br->lock);
                }
                }
                break;
                break;
 
 
        case NETDEV_UNREGISTER:
        case NETDEV_UNREGISTER:
                br_del_if(dev->br_port->br, dev);
                br_del_if(dev->br_port->br, dev);
                break;
                break;
        }
        }
 
 
        return NOTIFY_DONE;
        return NOTIFY_DONE;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.