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
05e3aa09
Commit
05e3aa09
authored
Jul 16, 2011
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
net: Create and use new helper, neigh_output().
Signed-off-by:
David S. Miller
<
davem@davemloft.net
>
parent
a2928297
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
14 deletions
+15
-14
include/net/neighbour.h
include/net/neighbour.h
+9
-0
net/ipv4/ip_output.c
net/ipv4/ip_output.c
+3
-7
net/ipv6/ip6_output.c
net/ipv6/ip6_output.c
+3
-7
No files found.
include/net/neighbour.h
View file @
05e3aa09
...
...
@@ -344,6 +344,15 @@ static inline int neigh_hh_output(struct hh_cache *hh, struct sk_buff *skb)
return
hh
->
hh_output
(
skb
);
}
static
inline
int
neigh_output
(
struct
neighbour
*
n
,
struct
sk_buff
*
skb
)
{
struct
hh_cache
*
hh
=
&
n
->
hh
;
if
(
hh
->
hh_len
)
return
neigh_hh_output
(
hh
,
skb
);
else
return
n
->
output
(
skb
);
}
static
inline
struct
neighbour
*
__neigh_lookup
(
struct
neigh_table
*
tbl
,
const
void
*
pkey
,
struct
net_device
*
dev
,
int
creat
)
{
...
...
net/ipv4/ip_output.c
View file @
05e3aa09
...
...
@@ -205,13 +205,9 @@ static inline int ip_finish_output2(struct sk_buff *skb)
}
neigh
=
dst
->
neighbour
;
if
(
neigh
)
{
struct
hh_cache
*
hh
=
&
neigh
->
hh
;
if
(
hh
->
hh_len
)
return
neigh_hh_output
(
hh
,
skb
);
else
return
neigh
->
output
(
skb
);
}
if
(
neigh
)
return
neigh_output
(
neigh
,
skb
);
if
(
net_ratelimit
())
printk
(
KERN_DEBUG
"ip_finish_output2: No header cache and no neighbour!
\n
"
);
kfree_skb
(
skb
);
...
...
net/ipv6/ip6_output.c
View file @
05e3aa09
...
...
@@ -136,13 +136,9 @@ static int ip6_finish_output2(struct sk_buff *skb)
}
neigh
=
dst
->
neighbour
;
if
(
neigh
)
{
struct
hh_cache
*
hh
=
&
neigh
->
hh
;
if
(
hh
->
hh_len
)
return
neigh_hh_output
(
hh
,
skb
);
else
return
neigh
->
output
(
skb
);
}
if
(
neigh
)
return
neigh_output
(
neigh
,
skb
);
IP6_INC_STATS_BH
(
dev_net
(
dst
->
dev
),
ip6_dst_idev
(
dst
),
IPSTATS_MIB_OUTNOROUTES
);
kfree_skb
(
skb
);
...
...
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