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
2608bab9
Commit
2608bab9
authored
Oct 16, 2003
by
Stephen Hemminger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[NET]: Mark init_etherdev() as deprecated.
parent
eb1a40d9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
3 deletions
+13
-3
drivers/net/net_init.c
drivers/net/net_init.c
+6
-2
include/linux/etherdevice.h
include/linux/etherdevice.h
+7
-1
No files found.
drivers/net/net_init.c
View file @
2608bab9
...
...
@@ -197,9 +197,13 @@ static struct net_device *init_netdev(struct net_device *dev, int sizeof_priv,
*
* If an empty string area is passed as dev->name, or a new structure is made,
* a new name string is constructed.
*
* Deprecated because of exposed window between device registration
* and interfaces pointers that need to be set by driver.
* Use alloc_etherdev and register_netdev instead.
*/
struct
net_device
*
init_etherdev
(
struct
net_device
*
dev
,
int
sizeof_priv
)
struct
net_device
*
__
init_etherdev
(
struct
net_device
*
dev
,
int
sizeof_priv
)
{
return
init_netdev
(
dev
,
sizeof_priv
,
"eth%d"
,
ether_setup
);
}
...
...
@@ -222,7 +226,7 @@ struct net_device *alloc_etherdev(int sizeof_priv)
return
alloc_netdev
(
sizeof_priv
,
"eth%d"
,
ether_setup
);
}
EXPORT_SYMBOL
(
init_etherdev
);
EXPORT_SYMBOL
(
__
init_etherdev
);
EXPORT_SYMBOL
(
alloc_etherdev
);
static
int
eth_mac_addr
(
struct
net_device
*
dev
,
void
*
p
)
...
...
include/linux/etherdevice.h
View file @
2608bab9
...
...
@@ -38,7 +38,13 @@ extern int eth_header_cache(struct neighbour *neigh,
struct
hh_cache
*
hh
);
extern
int
eth_header_parse
(
struct
sk_buff
*
skb
,
unsigned
char
*
haddr
);
extern
struct
net_device
*
init_etherdev
(
struct
net_device
*
dev
,
int
sizeof_priv
);
extern
struct
net_device
*
__init_etherdev
(
struct
net_device
*
dev
,
int
sizeof_priv
);
static
inline
__deprecated
struct
net_device
*
init_etherdev
(
struct
net_device
*
dev
,
int
sizeof_priv
)
{
return
__init_etherdev
(
dev
,
sizeof_priv
);
}
extern
struct
net_device
*
alloc_etherdev
(
int
sizeof_priv
);
static
inline
void
eth_copy_and_sum
(
struct
sk_buff
*
dest
,
unsigned
char
*
src
,
int
len
,
int
base
)
{
...
...
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