psnap.c (b981d8b3f5e008ff10d993be633ad00564fc22cd) psnap.c (82524746c27fa418c250a56dd7606b9d3fc79826)
1/*
2 * SNAP data link layer. Derived from 802.2
3 *
4 * Alan Cox <Alan.Cox@linux.org>,
5 * from the 802.2 layer by Greg Page.
6 * Merged in additions from Greg Page's psnap.c.
7 *
8 * This program is free software; you can redistribute it and/or

--- 6 unchanged lines hidden (view full) ---

15#include <linux/netdevice.h>
16#include <linux/skbuff.h>
17#include <net/datalink.h>
18#include <net/llc.h>
19#include <net/psnap.h>
20#include <linux/mm.h>
21#include <linux/in.h>
22#include <linux/init.h>
1/*
2 * SNAP data link layer. Derived from 802.2
3 *
4 * Alan Cox <Alan.Cox@linux.org>,
5 * from the 802.2 layer by Greg Page.
6 * Merged in additions from Greg Page's psnap.c.
7 *
8 * This program is free software; you can redistribute it and/or

--- 6 unchanged lines hidden (view full) ---

15#include <linux/netdevice.h>
16#include <linux/skbuff.h>
17#include <net/datalink.h>
18#include <net/llc.h>
19#include <net/psnap.h>
20#include <linux/mm.h>
21#include <linux/in.h>
22#include <linux/init.h>
23#include <linux/rculist.h>
23
24static LIST_HEAD(snap_list);
25static DEFINE_SPINLOCK(snap_lock);
26static struct llc_sap *snap_sap;
27
28/*
29 * Find a snap client by matching the 5 bytes.
30 */

--- 137 unchanged lines hidden ---
24
25static LIST_HEAD(snap_list);
26static DEFINE_SPINLOCK(snap_lock);
27static struct llc_sap *snap_sap;
28
29/*
30 * Find a snap client by matching the 5 bytes.
31 */

--- 137 unchanged lines hidden ---