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

Subversion Repositories or1k

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

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

Rev 1275 Rev 1765
/* net/atm/ipcommon.c - Common items for all ways of doing IP over ATM */
/* net/atm/ipcommon.c - Common items for all ways of doing IP over ATM */
 
 
/* Written 1996-2000 by Werner Almesberger, EPFL LRC/ICA */
/* Written 1996-2000 by Werner Almesberger, EPFL LRC/ICA */
 
 
 
 
#include <linux/module.h>
#include <linux/module.h>
#include <linux/string.h>
#include <linux/string.h>
#include <linux/skbuff.h>
#include <linux/skbuff.h>
#include <linux/netdevice.h>
#include <linux/netdevice.h>
#include <linux/in.h>
#include <linux/in.h>
#include <linux/atmdev.h>
#include <linux/atmdev.h>
#include <linux/atmclip.h>
#include <linux/atmclip.h>
 
 
#include "common.h"
#include "common.h"
#include "ipcommon.h"
#include "ipcommon.h"
 
 
 
 
#if 0
#if 0
#define DPRINTK(format,args...) printk(KERN_DEBUG format,##args)
#define DPRINTK(format,args...) printk(KERN_DEBUG format,##args)
#else
#else
#define DPRINTK(format,args...)
#define DPRINTK(format,args...)
#endif
#endif
 
 
 
 
const unsigned char llc_oui[] = {
const unsigned char llc_oui[] = {
        0xaa,   /* DSAP: non-ISO */
        0xaa,   /* DSAP: non-ISO */
        0xaa,   /* SSAP: non-ISO */
        0xaa,   /* SSAP: non-ISO */
        0x03,   /* Ctrl: Unnumbered Information Command PDU */
        0x03,   /* Ctrl: Unnumbered Information Command PDU */
        0x00,   /* OUI: EtherType */
        0x00,   /* OUI: EtherType */
        0x00,
        0x00,
        0x00 };
        0x00 };
 
 
 
 
/*
/*
 * skb_migrate appends the list at "from" to "to", emptying "from" in the
 * skb_migrate appends the list at "from" to "to", emptying "from" in the
 * process. skb_migrate is atomic with respect to all other skb operations on
 * process. skb_migrate is atomic with respect to all other skb operations on
 * "from" and "to". Note that it locks both lists at the same time, so beware
 * "from" and "to". Note that it locks both lists at the same time, so beware
 * of potential deadlocks.
 * of potential deadlocks.
 *
 *
 * This function should live in skbuff.c or skbuff.h.
 * This function should live in skbuff.c or skbuff.h.
 */
 */
 
 
 
 
void skb_migrate(struct sk_buff_head *from,struct sk_buff_head *to)
void skb_migrate(struct sk_buff_head *from,struct sk_buff_head *to)
{
{
        struct sk_buff *skb;
        struct sk_buff *skb;
        unsigned long flags;
        unsigned long flags;
        struct sk_buff *skb_from = (struct sk_buff *) from;
        struct sk_buff *skb_from = (struct sk_buff *) from;
        struct sk_buff *skb_to = (struct sk_buff *) to;
        struct sk_buff *skb_to = (struct sk_buff *) to;
        struct sk_buff *prev;
        struct sk_buff *prev;
 
 
        spin_lock_irqsave(&from->lock,flags);
        spin_lock_irqsave(&from->lock,flags);
        spin_lock(&to->lock);
        spin_lock(&to->lock);
        prev = from->prev;
        prev = from->prev;
        from->next->prev = to->prev;
        from->next->prev = to->prev;
        prev->next = skb_to;
        prev->next = skb_to;
        to->prev->next = from->next;
        to->prev->next = from->next;
        to->prev = from->prev;
        to->prev = from->prev;
        for (skb = from->next; skb != skb_to; skb = skb->next)
        for (skb = from->next; skb != skb_to; skb = skb->next)
                skb->list = to;
                skb->list = to;
        to->qlen += from->qlen;
        to->qlen += from->qlen;
        spin_unlock(&to->lock);
        spin_unlock(&to->lock);
        from->prev = skb_from;
        from->prev = skb_from;
        from->next = skb_from;
        from->next = skb_from;
        from->qlen = 0;
        from->qlen = 0;
        spin_unlock_irqrestore(&from->lock,flags);
        spin_unlock_irqrestore(&from->lock,flags);
}
}
 
 
 
 
EXPORT_SYMBOL(llc_oui);
EXPORT_SYMBOL(llc_oui);
EXPORT_SYMBOL(skb_migrate);
EXPORT_SYMBOL(skb_migrate);
 
 

powered by: WebSVN 2.1.0

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