Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
4a432d7f
Commit
4a432d7f
authored
Sep 11, 2003
by
Chas Williams
Committed by
Hideaki Yoshifuji
Sep 11, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ATM]: exporting llc_oui[] isn't worth it (from mitch@sfgoth.com)
parent
787f6543
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
19 deletions
+18
-19
include/linux/atmclip.h
include/linux/atmclip.h
+0
-4
net/atm/clip.c
net/atm/clip.c
+7
-0
net/atm/ipcommon.c
net/atm/ipcommon.c
+0
-10
net/sched/sch_atm.c
net/sched/sch_atm.c
+11
-5
No files found.
include/linux/atmclip.h
View file @
4a432d7f
...
...
@@ -18,8 +18,4 @@
#define SIOCMKCLIP _IO('a',ATMIOC_CLIP)
/* create IP interface */
#ifdef __KERNEL__
extern
const
unsigned
char
llc_oui
[
6
];
#endif
#endif
net/atm/clip.c
View file @
4a432d7f
...
...
@@ -189,6 +189,13 @@ static int clip_arp_rcv(struct sk_buff *skb)
return
0
;
}
static
const
unsigned
char
llc_oui
[]
=
{
0xaa
,
/* DSAP: non-ISO */
0xaa
,
/* SSAP: non-ISO */
0x03
,
/* Ctrl: Unnumbered Information Command PDU */
0x00
,
/* OUI: EtherType */
0x00
,
0x00
};
static
void
clip_push
(
struct
atm_vcc
*
vcc
,
struct
sk_buff
*
skb
)
{
...
...
net/atm/ipcommon.c
View file @
4a432d7f
...
...
@@ -22,15 +22,6 @@
#endif
const
unsigned
char
llc_oui
[]
=
{
0xaa
,
/* DSAP: non-ISO */
0xaa
,
/* SSAP: non-ISO */
0x03
,
/* Ctrl: Unnumbered Information Command PDU */
0x00
,
/* OUI: EtherType */
0x00
,
0x00
};
/*
* 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
...
...
@@ -67,5 +58,4 @@ void skb_migrate(struct sk_buff_head *from,struct sk_buff_head *to)
}
EXPORT_SYMBOL
(
llc_oui
);
EXPORT_SYMBOL
(
skb_migrate
);
net/sched/sch_atm.c
View file @
4a432d7f
...
...
@@ -216,6 +216,13 @@ static void sch_atm_pop(struct atm_vcc *vcc,struct sk_buff *skb)
tasklet_schedule
(
&
p
->
task
);
}
static
const
u8
llc_oui_ip
[]
=
{
0xaa
,
/* DSAP: non-ISO */
0xaa
,
/* SSAP: non-ISO */
0x03
,
/* Ctrl: Unnumbered Information Command PDU */
0x00
,
/* OUI: EtherType */
0x00
,
0x00
,
0x08
,
0x00
};
/* Ethertype IP (0800) */
static
int
atm_tc_change
(
struct
Qdisc
*
sch
,
u32
classid
,
u32
parent
,
struct
rtattr
**
tca
,
unsigned
long
*
arg
)
...
...
@@ -322,11 +329,10 @@ static int atm_tc_change(struct Qdisc *sch, u32 classid, u32 parent,
flow
->
next
=
p
->
link
.
next
;
p
->
link
.
next
=
flow
;
flow
->
hdr_len
=
hdr_len
;
if
(
hdr
)
memcpy
(
flow
->
hdr
,
hdr
,
hdr_len
);
else
{
memcpy
(
flow
->
hdr
,
llc_oui
,
sizeof
(
llc_oui
));
((
u16
*
)
flow
->
hdr
)[
3
]
=
htons
(
ETH_P_IP
);
}
if
(
hdr
)
memcpy
(
flow
->
hdr
,
hdr
,
hdr_len
);
else
memcpy
(
flow
->
hdr
,
llc_oui_ip
,
sizeof
(
llc_oui_ip
));
*
arg
=
(
unsigned
long
)
flow
;
return
0
;
err_out:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment