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
0ed14272
Commit
0ed14272
authored
Jun 08, 2002
by
Sam Ravnborg
Committed by
David S. Miller
Jun 08, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ip_gre.c: Use named struct initializers
parent
d5e15dc8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
net/ipv4/ip_gre.c
net/ipv4/ip_gre.c
+4
-2
No files found.
net/ipv4/ip_gre.c
View file @
0ed14272
...
...
@@ -120,11 +120,13 @@ static int ipgre_tunnel_init(struct net_device *dev);
static
int
ipgre_fb_tunnel_init
(
struct
net_device
*
dev
);
static
struct
net_device
ipgre_fb_tunnel_dev
=
{
"gre0"
,
0x0
,
0x0
,
0x0
,
0x0
,
0
,
0
,
0
,
0
,
0
,
NULL
,
ipgre_fb_tunnel_init
,
name:
"gre0"
,
init:
ipgre_fb_tunnel_init
};
static
struct
ip_tunnel
ipgre_fb_tunnel
=
{
NULL
,
&
ipgre_fb_tunnel_dev
,
{
0
,
},
0
,
0
,
0
,
0
,
0
,
0
,
0
,
{
"gre0"
,
}
dev:
&
ipgre_fb_tunnel_dev
,
parms:
{
name
:
"gre0"
}
};
/* Tunnel hash table */
...
...
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