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
869759b9
Commit
869759b9
authored
Jul 25, 2011
by
David Miller
Committed by
David S. Miller
Nov 30, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
atm: clip: Convert over to neighbour_priv()
Signed-off-by:
David S. Miller
<
davem@davemloft.net
>
parent
76cc714e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
15 deletions
+15
-15
include/net/atmclip.h
include/net/atmclip.h
+0
-2
net/atm/clip.c
net/atm/clip.c
+15
-13
No files found.
include/net/atmclip.h
View file @
869759b9
...
...
@@ -15,7 +15,6 @@
#define CLIP_VCC(vcc) ((struct clip_vcc *) ((vcc)->user_back))
#define NEIGH2ENTRY(neigh) ((struct atmarp_entry *) (neigh)->primary_key)
struct
sk_buff
;
...
...
@@ -36,7 +35,6 @@ struct clip_vcc {
struct
atmarp_entry
{
__be32
ip
;
/* IP address */
struct
clip_vcc
*
vccs
;
/* active VCCs; NULL if resolution is
pending */
unsigned
long
expires
;
/* entry expiration time */
...
...
net/atm/clip.c
View file @
869759b9
...
...
@@ -119,7 +119,7 @@ static void unlink_clip_vcc(struct clip_vcc *clip_vcc)
/* The neighbour entry n->lock is held. */
static
int
neigh_check_cb
(
struct
neighbour
*
n
)
{
struct
atmarp_entry
*
entry
=
NEIGH2ENTRY
(
n
);
struct
atmarp_entry
*
entry
=
neighbour_priv
(
n
);
struct
clip_vcc
*
cv
;
for
(
cv
=
entry
->
vccs
;
cv
;
cv
=
cv
->
next
)
{
...
...
@@ -262,8 +262,10 @@ static void clip_pop(struct atm_vcc *vcc, struct sk_buff *skb)
static
void
clip_neigh_solicit
(
struct
neighbour
*
neigh
,
struct
sk_buff
*
skb
)
{
__be32
*
ip
=
(
__be32
*
)
neigh
->
primary_key
;
pr_debug
(
"(neigh %p, skb %p)
\n
"
,
neigh
,
skb
);
to_atmarpd
(
act_need
,
PRIV
(
neigh
->
dev
)
->
number
,
NEIGH2ENTRY
(
neigh
)
->
ip
);
to_atmarpd
(
act_need
,
PRIV
(
neigh
->
dev
)
->
number
,
*
ip
);
}
static
void
clip_neigh_error
(
struct
neighbour
*
neigh
,
struct
sk_buff
*
skb
)
...
...
@@ -284,13 +286,13 @@ static const struct neigh_ops clip_neigh_ops = {
static
int
clip_constructor
(
struct
neighbour
*
neigh
)
{
struct
atmarp_entry
*
entry
=
NEIGH2ENTRY
(
neigh
);
struct
atmarp_entry
*
entry
=
neighbour_priv
(
neigh
);
struct
net_device
*
dev
=
neigh
->
dev
;
struct
in_device
*
in_dev
;
struct
neigh_parms
*
parms
;
pr_debug
(
"(neigh %p, entry %p)
\n
"
,
neigh
,
entry
);
neigh
->
type
=
inet_addr_type
(
&
init_net
,
entry
->
ip
);
neigh
->
type
=
inet_addr_type
(
&
init_net
,
*
((
__be32
*
)
neigh
->
primary_key
)
);
if
(
neigh
->
type
!=
RTN_UNICAST
)
return
-
EINVAL
;
...
...
@@ -398,12 +400,12 @@ static netdev_tx_t clip_start_xmit(struct sk_buff *skb,
dev
->
stats
.
tx_dropped
++
;
return
NETDEV_TX_OK
;
}
entry
=
NEIGH2ENTRY
(
n
);
entry
=
neighbour_priv
(
n
);
if
(
!
entry
->
vccs
)
{
if
(
time_after
(
jiffies
,
entry
->
expires
))
{
/* should be resolved */
entry
->
expires
=
jiffies
+
ATMARP_RETRY_DELAY
*
HZ
;
to_atmarpd
(
act_need
,
PRIV
(
dev
)
->
number
,
entry
->
ip
);
to_atmarpd
(
act_need
,
PRIV
(
dev
)
->
number
,
*
((
__be32
*
)
n
->
primary_key
)
);
}
if
(
entry
->
neigh
->
arp_queue
.
qlen
<
ATMARP_MAX_UNRES_PACKETS
)
skb_queue_tail
(
&
entry
->
neigh
->
arp_queue
,
skb
);
...
...
@@ -510,7 +512,7 @@ static int clip_setentry(struct atm_vcc *vcc, __be32 ip)
ip_rt_put
(
rt
);
if
(
!
neigh
)
return
-
ENOMEM
;
entry
=
NEIGH2ENTRY
(
neigh
);
entry
=
neighbour_priv
(
neigh
);
if
(
entry
!=
clip_vcc
->
entry
)
{
if
(
!
clip_vcc
->
entry
)
pr_debug
(
"add
\n
"
);
...
...
@@ -771,9 +773,10 @@ static void svc_addr(struct seq_file *seq, struct sockaddr_atmsvc *addr)
/* This means the neighbour entry has no attached VCC objects. */
#define SEQ_NO_VCC_TOKEN ((void *) 2)
static
void
atmarp_info
(
struct
seq_file
*
seq
,
struct
ne
t_device
*
dev
,
static
void
atmarp_info
(
struct
seq_file
*
seq
,
struct
ne
ighbour
*
n
,
struct
atmarp_entry
*
entry
,
struct
clip_vcc
*
clip_vcc
)
{
struct
net_device
*
dev
=
n
->
dev
;
unsigned
long
exp
;
char
buf
[
17
];
int
svc
,
llc
,
off
;
...
...
@@ -793,8 +796,7 @@ static void atmarp_info(struct seq_file *seq, struct net_device *dev,
seq_printf
(
seq
,
"%-6s%-4s%-4s%5ld "
,
dev
->
name
,
svc
?
"SVC"
:
"PVC"
,
llc
?
"LLC"
:
"NULL"
,
exp
);
off
=
scnprintf
(
buf
,
sizeof
(
buf
)
-
1
,
"%pI4"
,
&
entry
->
ip
);
off
=
scnprintf
(
buf
,
sizeof
(
buf
)
-
1
,
"%pI4"
,
n
->
primary_key
);
while
(
off
<
16
)
buf
[
off
++
]
=
' '
;
buf
[
off
]
=
'\0'
;
...
...
@@ -865,7 +867,7 @@ static void *clip_seq_sub_iter(struct neigh_seq_state *_state,
{
struct
clip_seq_state
*
state
=
(
struct
clip_seq_state
*
)
_state
;
return
clip_seq_vcc_walk
(
state
,
NEIGH2ENTRY
(
n
),
pos
);
return
clip_seq_vcc_walk
(
state
,
neighbour_priv
(
n
),
pos
);
}
static
void
*
clip_seq_start
(
struct
seq_file
*
seq
,
loff_t
*
pos
)
...
...
@@ -884,10 +886,10 @@ static int clip_seq_show(struct seq_file *seq, void *v)
seq_puts
(
seq
,
atm_arp_banner
);
}
else
{
struct
clip_seq_state
*
state
=
seq
->
private
;
struct
neighbour
*
n
=
v
;
struct
clip_vcc
*
vcc
=
state
->
vcc
;
struct
neighbour
*
n
=
v
;
atmarp_info
(
seq
,
n
->
dev
,
NEIGH2ENTRY
(
n
),
vcc
);
atmarp_info
(
seq
,
n
,
neighbour_priv
(
n
),
vcc
);
}
return
0
;
}
...
...
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