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
88a66e25
Commit
88a66e25
authored
May 14, 2003
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[IPV6]: extern __inline__ --> static inline.
parent
6b994273
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
net/ipv6/reassembly.c
net/ipv6/reassembly.c
+3
-3
No files found.
net/ipv6/reassembly.c
View file @
88a66e25
...
...
@@ -132,19 +132,19 @@ static __inline__ unsigned int ip6qhashfn(u32 id, struct in6_addr *saddr,
atomic_t
ip6_frag_mem
=
ATOMIC_INIT
(
0
);
/* Memory Tracking Functions. */
extern
__inline__
void
frag_kfree_skb
(
struct
sk_buff
*
skb
)
static
inline
void
frag_kfree_skb
(
struct
sk_buff
*
skb
)
{
atomic_sub
(
skb
->
truesize
,
&
ip6_frag_mem
);
kfree_skb
(
skb
);
}
extern
__inline__
void
frag_free_queue
(
struct
frag_queue
*
fq
)
static
inline
void
frag_free_queue
(
struct
frag_queue
*
fq
)
{
atomic_sub
(
sizeof
(
struct
frag_queue
),
&
ip6_frag_mem
);
kfree
(
fq
);
}
extern
__inline__
struct
frag_queue
*
frag_alloc_queue
(
void
)
static
inline
struct
frag_queue
*
frag_alloc_queue
(
void
)
{
struct
frag_queue
*
fq
=
kmalloc
(
sizeof
(
struct
frag_queue
),
GFP_ATOMIC
);
...
...
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