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
cd7b5396
Commit
cd7b5396
authored
May 02, 2010
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
net: Use explicit "unsigned int" instead of plain "unsigned" in netdevice.h
Signed-off-by:
David S. Miller
<
davem@davemloft.net
>
parent
dee42870
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
include/linux/netdevice.h
include/linux/netdevice.h
+5
-5
No files found.
include/linux/netdevice.h
View file @
cd7b5396
...
...
@@ -878,7 +878,7 @@ struct net_device {
unsigned
char
operstate
;
/* RFC2863 operstate */
unsigned
char
link_mode
;
/* mapping policy to operstate */
unsigned
mtu
;
/* interface MTU value */
unsigned
int
mtu
;
/* interface MTU value */
unsigned
short
type
;
/* interface hardware type */
unsigned
short
hard_header_len
;
/* hardware hdr length */
...
...
@@ -1381,10 +1381,10 @@ struct softnet_data {
struct
sk_buff_head
process_queue
;
/* stats */
unsigned
processed
;
unsigned
time_squeeze
;
unsigned
cpu_collision
;
unsigned
received_rps
;
unsigned
int
processed
;
unsigned
int
time_squeeze
;
unsigned
int
cpu_collision
;
unsigned
int
received_rps
;
#ifdef CONFIG_RPS
struct
softnet_data
*
rps_ipi_list
;
...
...
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